:root {
  color-scheme: dark;
  --navy-990: #020716;
  --navy-960: #061126;
  --navy-920: #091a39;
  --navy-850: #0e2853;
  --ink: #f8fbff;
  --soft: #cbd8eb;
  --muted: #8393aa;
  --line: rgba(203, 216, 235, 0.18);
  --line-strong: rgba(203, 216, 235, 0.32);
  --panel: rgba(7, 18, 40, 0.78);
  --panel-strong: rgba(10, 24, 52, 0.92);
  --fuchsia: #f4209c;
  --fuchsia-strong: #ff3eb2;
  --violet: #7d5cff;
  --cyan: #7edaff;
  --green: #59df8f;
  --warning: #ffd166;
  --radius: 28px;
  --radius-sm: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 12% 12%, rgba(244, 32, 156, 0.22), transparent 30rem),
    radial-gradient(circle at 82% 18%, rgba(126, 218, 255, 0.14), transparent 34rem),
    radial-gradient(circle at 78% 88%, rgba(125, 92, 255, 0.16), transparent 30rem),
    linear-gradient(140deg, var(--navy-990), var(--navy-960) 48%, #020816 100%);
  color: var(--ink);
  font-family: "Raleway", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(rgba(203, 216, 235, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(203, 216, 235, 0.04) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.92), transparent 86%);
}

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

img,
iframe {
  max-width: 100%;
}

#field {
  position: fixed;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px clamp(18px, 4.8vw, 72px);
  background: linear-gradient(to bottom, rgba(2, 7, 22, 0.9), rgba(2, 7, 22, 0.22), transparent);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand img {
  display: block;
  width: clamp(116px, 11vw, 154px);
  height: auto;
}

.brand span {
  padding: 7px 11px;
  border: 1px solid rgba(244, 32, 156, 0.34);
  border-radius: 999px;
  background: rgba(244, 32, 156, 0.12);
  color: #ffd7ef;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 3px;
  padding: 5px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(6, 17, 38, 0.7);
}

.site-nav a,
.nav-cta {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 800;
  white-space: nowrap;
}

.site-nav a {
  padding: 0 14px;
  color: var(--soft);
}

.site-nav a:hover {
  background: rgba(244, 32, 156, 0.12);
  color: var(--ink);
}

.nav-cta {
  padding: 0 17px;
  background: linear-gradient(135deg, var(--fuchsia), var(--violet));
  box-shadow: 0 18px 54px rgba(244, 32, 156, 0.28);
}

.hero,
.section {
  width: min(1180px, calc(100vw - 40px));
  margin-inline: auto;
}

.hero {
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1fr);
  align-items: center;
  gap: clamp(34px, 5vw, 78px);
  padding: 132px 0 76px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--fuchsia-strong);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  display: inline-block;
  width: 22px;
  height: 2px;
  margin-right: 10px;
  vertical-align: middle;
  background: var(--cyan);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 830px;
  margin-bottom: 0;
  font-size: clamp(2.6rem, 6.2vw, 6.9rem);
  line-height: 0.92;
  font-weight: 900;
  letter-spacing: -0.07em;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 4vw, 4.4rem);
  line-height: 0.98;
  font-weight: 900;
  letter-spacing: -0.055em;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
  line-height: 1.2;
}

.hero-lede,
.section-top p,
.split-section p,
.order-intro p {
  color: var(--soft);
  font-size: clamp(1rem, 1.45vw, 1.26rem);
  line-height: 1.72;
}

.hero-lede {
  max-width: 680px;
  margin: 28px 0 0;
}

.hero-actions,
.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  border: 0;
  cursor: pointer;
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border-radius: 999px;
  font: inherit;
  font-size: 0.92rem;
  font-weight: 900;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button.primary {
  background: linear-gradient(135deg, var(--fuchsia), var(--violet));
  color: white;
  box-shadow: 0 24px 70px rgba(244, 32, 156, 0.28);
}

.button.secondary {
  border: 1px solid var(--line-strong);
  background: rgba(7, 18, 40, 0.64);
  color: var(--ink);
}

.button.secondary:hover {
  border-color: rgba(244, 32, 156, 0.62);
}

.hero-visual {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(244, 32, 156, 0.28);
  border-radius: 38px;
  background: linear-gradient(145deg, rgba(248, 251, 255, 0.13), rgba(248, 251, 255, 0.04));
  box-shadow: 0 42px 130px rgba(0, 0, 0, 0.44);
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 42%;
  background: linear-gradient(to bottom, rgba(2, 7, 22, 0.78), transparent);
  pointer-events: none;
}

.hero-visual img {
  display: block;
  width: 100%;
  height: clamp(360px, 46vw, 620px);
  object-fit: cover;
}

.hero-chip,
.hero-stat {
  position: absolute;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(2, 7, 22, 0.72);
  backdrop-filter: blur(14px);
}

.hero-chip {
  top: 18px;
  left: 18px;
  padding: 10px 14px;
  border-radius: 999px;
  color: #ffd7ef;
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-stat {
  left: 18px;
  right: 18px;
  top: 70px;
  display: grid;
  gap: 6px;
  padding: 18px;
  border-radius: 24px;
}

.hero-stat strong {
  font-size: clamp(1.2rem, 2vw, 2rem);
}

.hero-stat span {
  color: var(--soft);
  line-height: 1.5;
}

.section {
  padding: 94px 0;
}

.section-top {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(280px, 0.56fr);
  align-items: end;
  gap: 28px;
  margin-bottom: 34px;
}

.section-top .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -8px;
}

.section-top p {
  margin: 0;
}

.feature-grid,
.future-grid,
.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.feature-grid article,
.future-card,
.faq-grid article,
.resource-card,
.order-form,
.pattern-card,
.video-card,
.manual-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: 0 22px 72px rgba(0, 0, 0, 0.22);
}

.feature-grid article {
  padding: 26px;
}

.feature-grid span {
  display: inline-flex;
  margin-bottom: 34px;
  color: var(--fuchsia-strong);
  font-size: 0.8rem;
  font-weight: 900;
}

.feature-grid p,
.future-card p,
.faq-grid p,
.media-copy p,
.resource-card p,
.form-note {
  margin: 0;
  color: var(--soft);
  line-height: 1.65;
}

.pricing-note {
  margin: 18px 0 0;
  padding: 18px 20px;
  border: 1px solid rgba(244, 32, 156, 0.3);
  border-radius: 20px;
  background: rgba(244, 32, 156, 0.1);
  color: var(--soft);
  line-height: 1.65;
}

.pricing-note strong {
  color: var(--ink);
}

.media-section {
  width: min(1280px, calc(100vw - 40px));
}

.media-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 18px;
  align-items: stretch;
}

.video-card {
  overflow: hidden;
}

.manual-card,
.resource-card {
  overflow: hidden;
}

.video-card {
  grid-row: span 2;
}

.video-frame,
.manual-preview {
  position: relative;
  background: rgba(255, 255, 255, 0.08);
}

.video-frame {
  aspect-ratio: 16 / 9;
}

.manual-preview {
  height: 410px;
}

.video-frame iframe,
.manual-preview iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.media-copy,
.resource-card {
  padding: 24px;
}

.media-copy a,
.resource-card a,
.future-card a {
  display: inline-flex;
  margin-top: 18px;
  color: #ffd7ef;
  font-weight: 900;
}

.resource-icon {
  display: inline-flex;
  width: 68px;
  height: 68px;
  align-items: center;
  justify-content: center;
  margin-bottom: 26px;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--fuchsia), var(--violet));
  font-weight: 900;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.72fr);
  gap: 22px;
  align-items: stretch;
}

.split-section > div:first-child,
.order-intro {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(244, 32, 156, 0.13), rgba(7, 18, 40, 0.76));
  padding: clamp(26px, 4vw, 48px);
}

.check-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 30px;
  color: var(--soft);
  font-weight: 700;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.32em;
  width: 16px;
  height: 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--green), var(--cyan));
}

.pattern-card {
  display: grid;
  align-content: end;
  gap: 24px;
  overflow: hidden;
  padding: 24px;
  background: linear-gradient(145deg, rgba(126, 218, 255, 0.16), rgba(244, 32, 156, 0.1));
}

.pattern-card img {
  width: 100%;
  max-height: 360px;
  object-fit: contain;
  opacity: 0.92;
}

.pattern-card strong,
.pattern-card span {
  display: block;
}

.pattern-card strong {
  margin-bottom: 8px;
  font-size: 1.45rem;
}

.pattern-card span {
  color: var(--soft);
  line-height: 1.6;
}

.future-section {
  padding-top: 26px;
}

.future-card {
  min-height: 260px;
  padding: 26px;
}

.future-card span {
  display: inline-flex;
  margin-bottom: 42px;
  padding: 8px 11px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--soft);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.future-card.featured {
  border-color: rgba(244, 32, 156, 0.46);
  background: linear-gradient(145deg, rgba(244, 32, 156, 0.22), rgba(7, 18, 40, 0.82));
}

.future-card.featured span {
  background: rgba(89, 223, 143, 0.12);
  color: #b6ffd1;
}

.order-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.55fr) minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.order-intro {
  position: sticky;
  top: 110px;
}

.order-form {
  padding: clamp(22px, 3vw, 34px);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

label {
  display: grid;
  gap: 8px;
  color: var(--soft);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

label.wide {
  grid-column: 1 / -1;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line-strong);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.07);
  color: var(--ink);
  font: inherit;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0;
  outline: none;
  padding: 14px 15px;
  text-transform: none;
}

select option {
  background: var(--navy-920);
  color: var(--ink);
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(244, 32, 156, 0.72);
  box-shadow: 0 0 0 4px rgba(244, 32, 156, 0.12);
}

.consent {
  grid-template-columns: auto 1fr;
  align-items: center;
  margin-top: 18px;
  font-size: 0.8rem;
  letter-spacing: 0;
  text-transform: none;
}

.consent input {
  width: 18px;
  height: 18px;
}

.form-note {
  margin-top: 18px;
  font-size: 0.9rem;
}

.faq-section {
  padding-top: 26px;
}

.faq-grid article {
  padding: 26px;
}

.site-footer {
  width: min(1180px, calc(100vw - 40px));
  display: grid;
  grid-template-columns: minmax(180px, 1fr) auto auto;
  align-items: start;
  gap: 28px;
  margin: 40px auto 0;
  padding: 38px 0 48px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.site-footer img {
  width: 136px;
  margin-bottom: 12px;
}

.site-footer p {
  margin: 0;
  line-height: 1.6;
}

.footer-links {
  display: grid;
  gap: 10px;
  color: var(--soft);
  font-size: 0.86rem;
  font-weight: 800;
}

.footer-links a:hover {
  color: #ffd7ef;
}

.footer-legal {
  grid-column: 1 / -1;
  color: var(--muted);
  font-size: 0.78rem;
}

.contact-main {
  width: min(1080px, calc(100vw - 40px));
  min-height: 100svh;
  display: grid;
  align-items: center;
  margin: 0 auto;
  padding: 130px 0 70px;
}

.contact-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.62fr);
  gap: 24px;
  align-items: stretch;
}

.contact-copy,
.contact-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  padding: clamp(26px, 4vw, 48px);
}

.contact-copy h1 {
  margin: 0;
}

.contact-copy p {
  margin: 28px 0 0;
  color: var(--soft);
  font-size: 1.08rem;
  line-height: 1.76;
}

.contact-card {
  overflow: hidden;
  padding: 0;
  background: #f8fbff;
  color: var(--navy-960);
}

.contact-accent {
  height: 6px;
  background: linear-gradient(90deg, var(--fuchsia), var(--violet), var(--cyan));
}

.contact-card-header,
.contact-line {
  padding: 24px 28px;
}

.contact-card-header {
  border-bottom: 1px solid rgba(6, 17, 38, 0.12);
}

.contact-card-header img {
  width: 154px;
}

.contact-line {
  display: grid;
  gap: 7px;
  border-bottom: 1px solid rgba(6, 17, 38, 0.1);
}

.contact-label {
  color: #68778d;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-line a,
.contact-line strong,
.contact-line address {
  color: var(--navy-960);
  font-style: normal;
  font-weight: 800;
  line-height: 1.55;
}

@media (max-width: 1080px) {
  .site-nav {
    display: none;
  }

  .hero,
  .section-top,
  .split-section,
  .order-section,
  .contact-hero {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .order-intro {
    position: static;
  }
}

@media (max-width: 760px) {
  .site-header {
    padding-top: 16px;
  }

  .brand span,
  .nav-cta {
    display: none;
  }

  .hero,
  .section {
    width: min(100vw - 28px, 1180px);
  }

  .hero {
    padding-top: 110px;
  }

  .hero-visual img {
    height: 340px;
  }

  .media-grid,
  .feature-grid,
  .future-grid,
  .faq-grid,
  .form-grid,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .manual-preview {
    height: 360px;
  }

  .form-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
