:root {
  --accent: #e1b23a;
  --dark: #050505;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-600: #4b5563;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  background: var(--dark);
  color: #fff;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

::selection {
  background: var(--accent);
  color: #000;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.page {
  position: relative;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  background: #000;
}

.particles {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.particles canvas {
  display: block;
  width: 100%;
  height: 100%;
  opacity: 0.4;
}

.main {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.wrap {
  width: 100%;
  max-width: 80rem;
  margin: 0 auto;
  padding: 3rem 1.5rem;
}

.grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

.copy {
  text-align: left;
}

.copy > * + * {
  margin-top: 1.5rem;
}

.headline {
  margin: 0;
  font-size: 2.25rem;
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: -0.025em;
}

.glow {
  -webkit-text-stroke: 2px var(--accent);
  color: transparent;
  text-shadow: 0 0 30px rgba(225, 178, 58, 0.4);
}

.suffix {
  color: #fff;
  margin-left: 1rem;
}

.subtitle {
  margin: 0;
  color: var(--accent);
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.4;
}

.description {
  margin: 0;
  max-width: 32rem;
  color: var(--gray-400);
  font-size: 1rem;
  line-height: 1.6;
  white-space: pre-line;
}

.plan-label {
  margin: 0;
  padding-top: 1rem;
  color: var(--gray-300);
  font-size: 0.875rem;
}

.contact {
  padding-top: 1.5rem;
}

.contact-title {
  margin: 0 0 0.75rem;
  font-size: 1.125rem;
  font-weight: 500;
}

.contact-row {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-size: 0.875rem;
}

.contact-row a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gray-300);
  transition: color 0.25s var(--ease);
}

.contact-row a:hover,
.contact-row a:focus-visible {
  color: var(--accent);
}

.plan {
  display: flex;
  justify-content: center;
}

.plan-btn {
  width: 100%;
  max-width: 32rem;
  padding: 0;
  border: 1px solid var(--gray-600);
  border-radius: 1rem;
  overflow: hidden;
  background: transparent;
  cursor: pointer;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.8);
  transition: border-color 0.25s var(--ease);
}

.plan-btn:hover,
.plan-btn:focus-visible {
  border-color: var(--accent);
}

.plan-btn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.footer {
  position: relative;
  z-index: 1;
  padding: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-inner {
  max-width: 80rem;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  font-size: 0.875rem;
  color: var(--gray-400);
}

.footer a {
  transition: color 0.25s var(--ease);
}

.footer a:hover,
.footer a:focus-visible {
  color: var(--accent);
}

.footer-sep {
  color: var(--gray-600);
}

.legal-main {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 4rem 1.5rem;
}

.legal-wrap {
  max-width: 56rem;
  margin: 0 auto;
}

.crumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray-400);
}

.crumb a {
  display: flex;
  color: var(--gray-400);
  transition: color 0.25s var(--ease);
}

.crumb a:hover,
.crumb a:focus-visible {
  color: var(--accent);
}

.crumb-sep {
  color: var(--gray-600);
}

.crumb-current {
  color: var(--accent);
}

.legal-title {
  margin: 0 0 2rem;
  font-size: 2.25rem;
  font-weight: 700;
}

.legal-body {
  color: var(--gray-300);
}

.legal-body section + section {
  margin-top: 2rem;
}

.legal-body h2 {
  margin: 0 0 1rem;
  color: #fff;
  font-size: 1.25rem;
  font-weight: 600;
}

.legal-body p,
.legal-copy {
  margin: 0;
  white-space: pre-line;
  line-height: 1.65;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 20;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(8px);
}

.lightbox.is-open {
  display: flex;
}

.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  z-index: 21;
  padding: 0;
  border: 0;
  background: transparent;
  color: #fff;
  cursor: pointer;
  transition: color 0.25s var(--ease);
}

.lightbox-close:hover,
.lightbox-close:focus-visible {
  color: var(--accent);
}

.lightbox-frame {
  max-width: 64rem;
  max-height: 90vh;
  padding: 1rem;
}

.lightbox-frame img {
  width: 100%;
  height: auto;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 0.75rem;
  border: 1px solid var(--gray-600);
}

body.is-locked {
  overflow: hidden;
}

@media (min-width: 640px) {
  .contact-row {
    flex-direction: row;
  }

  .plan-label {
    font-size: 1rem;
  }

  .description {
    font-size: 1.125rem;
  }
}

@media (min-width: 768px) {
  .headline {
    font-size: 3rem;
  }

  .subtitle {
    font-size: 1.5rem;
  }

  .legal-title {
    font-size: 3rem;
  }
}

@media (min-width: 1024px) {
  .grid {
    grid-template-columns: 1fr 1fr;
  }

  .headline {
    font-size: 3.75rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
