:root {
  --ink: #171326;
  --ink-soft: #3f3654;
  --paper: #fff7df;
  --paper-deep: #f4ddb7;
  --plum: #35124f;
  --violet: #6b2be6;
  --lime: #d7ff46;
  --aqua: #5fffe8;
  --clay: #d87a45;
  --rose: #ff6f91;
  --line: rgba(53, 18, 79, .18);
  --shadow: 0 28px 80px rgba(34, 16, 57, .22);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(215, 255, 70, .32), transparent 36rem),
    linear-gradient(120deg, #fff7df 0%, #ffe6d1 47%, #efe6ff 100%);
  line-height: 1.6;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(53, 18, 79, .04) 1px, transparent 1px), linear-gradient(90deg, rgba(53, 18, 79, .04) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(to bottom, black, transparent 88%);
}

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

a:hover {
  color: var(--violet);
}

.topbar {
  width: min(1180px, calc(100% - 32px));
  margin: 18px auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 247, 223, .76);
  backdrop-filter: blur(16px);
  position: sticky;
  top: 14px;
  z-index: 10;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: -.02em;
}

.brand-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--plum);
  color: var(--lime);
  box-shadow: inset 0 0 0 2px rgba(215, 255, 70, .25);
}

.nav {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav a {
  font-size: 14px;
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--ink-soft);
}

.nav a:hover {
  background: rgba(215, 255, 70, .4);
  color: var(--ink);
}

main {
  position: relative;
}

.hero {
  width: min(1180px, calc(100% - 32px));
  margin: 28px auto 0;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) 390px;
  gap: 18px;
  align-items: stretch;
}

.hero-copy {
  min-height: 620px;
  padding: clamp(34px, 7vw, 86px);
  border-radius: 44px;
  background:
    linear-gradient(135deg, rgba(53, 18, 79, .92), rgba(107, 43, 230, .88)),
    radial-gradient(circle at 20% 20%, rgba(95, 255, 232, .45), transparent 18rem);
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.hero-copy::after {
  content: "PDF\A ROUTINE\A NOTES";
  white-space: pre;
  position: absolute;
  top: 34px;
  right: 38px;
  font-size: clamp(38px, 7vw, 92px);
  line-height: .82;
  font-weight: 900;
  letter-spacing: -.08em;
  color: rgba(215, 255, 70, .13);
  text-align: right;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--violet);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.hero-copy .eyebrow,
.thanks-card .eyebrow {
  color: var(--lime);
}

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

h1 {
  max-width: 840px;
  font-size: clamp(44px, 7vw, 86px);
  line-height: .9;
  letter-spacing: -.075em;
  margin-bottom: 22px;
}

h2 {
  font-size: clamp(32px, 4.8vw, 64px);
  line-height: .96;
  letter-spacing: -.06em;
  margin-bottom: 16px;
}

h3 {
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1;
  letter-spacing: -.045em;
  margin-bottom: 12px;
}

.hero-text {
  max-width: 650px;
  color: rgba(255, 255, 255, .82);
  font-size: clamp(18px, 2vw, 22px);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 19px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 850;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.button:hover {
  transform: translateY(-2px);
  color: inherit;
}

.button.primary {
  background: var(--lime);
  color: var(--ink);
  box-shadow: 0 18px 35px rgba(215, 255, 70, .22);
}

.button.primary:hover {
  background: var(--aqua);
}

.button.ghost {
  border-color: rgba(255, 255, 255, .32);
  color: white;
  background: rgba(255, 255, 255, .06);
}

.hero-panel {
  padding: 28px;
  border-radius: 44px;
  background:
    linear-gradient(160deg, rgba(215, 255, 70, .9), rgba(95, 255, 232, .65)),
    var(--lime);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow);
  min-height: 620px;
}

.panel-label {
  display: inline-block;
  width: fit-content;
  padding: 7px 11px;
  border: 1px solid rgba(23, 19, 38, .24);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

address {
  font-style: normal;
}

.hero-panel address {
  padding-top: 280px;
  font-size: 18px;
}

.stripe-note {
  width: min(1180px, calc(100% - 32px));
  margin: 18px auto;
  padding: 18px 24px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--paper);
  text-align: center;
}

.stripe-note p {
  margin: 0;
  font-weight: 750;
}

.section {
  width: min(1180px, calc(100% - 32px));
  margin: 22px auto;
  padding: clamp(34px, 6vw, 78px);
  border-radius: 44px;
}

.split-feature {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 34px;
  background: rgba(255, 247, 223, .58);
  border: 1px solid var(--line);
}

.narrow {
  max-width: 420px;
}

.guide-stack {
  display: grid;
  gap: 14px;
}

.guide-card {
  padding: 24px;
  border-radius: 30px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 22px;
  align-items: end;
  color: white;
  min-height: 210px;
}

.guide-card p {
  color: rgba(255, 255, 255, .8);
  max-width: 600px;
}

.guide-a {
  background: linear-gradient(120deg, #35124f, #6b2be6);
}

.guide-b {
  background: linear-gradient(120deg, #113b43, #0c8a78);
}

.guide-c {
  background: linear-gradient(120deg, #8b2e48, #d87a45);
}

.guide-number {
  display: inline-block;
  margin-bottom: 44px;
  font-weight: 950;
  color: var(--lime);
}

.price {
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1;
  letter-spacing: -.06em;
  color: var(--lime);
}

.format-grid {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 22px;
  background: #0d2530;
  color: white;
}

.format-grid .eyebrow {
  color: var(--aqua);
}

.format-lead {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.format-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.format-card {
  min-height: 310px;
  padding: 22px;
  border-radius: 28px;
  background: rgba(255, 255, 255, .09);
  border: 1px solid rgba(255, 255, 255, .14);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.format-card span {
  font-size: 42px;
  font-weight: 950;
  letter-spacing: -.08em;
  color: var(--lime);
}

.format-card p {
  color: rgba(255, 255, 255, .76);
  margin: 0;
}

.benefits {
  background: linear-gradient(135deg, var(--paper-deep), #ffd1e1);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 38px;
}

.benefit-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.benefit-list li {
  padding: 18px;
  border-left: 8px solid var(--violet);
  background: rgba(255, 247, 223, .62);
  border-radius: 18px 28px 28px 18px;
}

.process {
  background: #f7ffe0;
  border: 1px solid rgba(53, 18, 79, .16);
}

.process-rail {
  list-style: none;
  counter-reset: step;
  padding: 0;
  margin: 30px 0 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
}

.process-rail li {
  min-height: 260px;
  padding: 18px;
  border-radius: 24px;
  background: white;
  border: 1px solid rgba(53, 18, 79, .12);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.process-rail span {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--plum);
  color: var(--lime);
  font-weight: 950;
}

.process-rail p {
  margin: 0;
  color: var(--ink-soft);
}

.faq {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: 34px;
  background: #35124f;
  color: white;
}

.faq .eyebrow {
  color: var(--lime);
}

.faq-list {
  display: grid;
  gap: 10px;
}

details {
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 22px;
  padding: 18px 20px;
  background: rgba(255, 255, 255, .08);
}

summary {
  cursor: pointer;
  font-weight: 850;
}

details p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, .76);
}

.request-section {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 28px;
  background: #fff7df;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.request-form {
  display: grid;
  gap: 14px;
}

label {
  display: grid;
  gap: 7px;
  font-weight: 850;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(53, 18, 79, .2);
  border-radius: 18px;
  padding: 14px 15px;
  background: #fffdf4;
  color: var(--ink);
  font: inherit;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(215, 255, 70, .9);
  border-color: var(--violet);
}

.footer {
  width: min(1180px, calc(100% - 32px));
  margin: 22px auto 28px;
  padding: 28px;
  border-radius: 34px;
  background: var(--ink);
  color: var(--paper);
  display: grid;
  grid-template-columns: 1fr 1.4fr auto;
  gap: 24px;
  align-items: start;
}

.disclaimer {
  font-size: 13px;
  color: inherit;
  opacity: .76;
}

.legal-links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.legal-links a {
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 999px;
}

.legal-body {
  background:
    radial-gradient(circle at 70% 0%, rgba(215, 255, 70, .38), transparent 28rem),
    linear-gradient(135deg, #35124f, #0d2530 64%, #171326);
  color: white;
}

.legal-top {
  background: rgba(23, 19, 38, .72);
  border-color: rgba(255, 255, 255, .14);
  color: white;
}

.legal-shell {
  width: min(940px, calc(100% - 32px));
  margin: 46px auto;
}

.legal-card {
  padding: clamp(30px, 6vw, 70px);
  border-radius: 42px;
  background: rgba(255, 247, 223, .96);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.legal-card h1 {
  font-size: clamp(40px, 6vw, 72px);
}

.legal-card h2 {
  font-size: 26px;
  margin-top: 32px;
}

.neon-edge {
  border: 4px solid var(--lime);
}

.clay-edge {
  border: 4px solid var(--clay);
}

.stacked-address {
  padding: 18px;
  border-radius: 22px;
  background: rgba(107, 43, 230, .08);
  border: 1px solid rgba(107, 43, 230, .14);
}

.thankyou-body {
  min-height: 100vh;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 111, 145, .45), transparent 28rem),
    linear-gradient(145deg, #171326 0%, #35124f 58%, #d87a45 100%);
  color: white;
  display: grid;
  place-items: center;
  padding: 24px;
}

.thanks-wrap {
  width: min(780px, 100%);
}

.thanks-card {
  padding: clamp(30px, 7vw, 72px);
  border-radius: 46px;
  background: rgba(23, 19, 38, .76);
  border: 1px solid rgba(255, 255, 255, .14);
  box-shadow: 0 34px 90px rgba(0, 0, 0, .34);
}

.thanks-card h1 {
  font-size: clamp(40px, 7vw, 76px);
}

.thanks-card .stacked-address {
  margin: 24px 0;
  background: rgba(255, 255, 255, .08);
  border-color: rgba(255, 255, 255, .14);
}

@media (max-width: 920px) {
  .topbar,
  .footer {
    border-radius: 24px;
  }

  .hero,
  .split-feature,
  .format-grid,
  .benefits,
  .faq,
  .request-section,
  .footer {
    grid-template-columns: 1fr;
  }

  .hero-copy,
  .hero-panel {
    min-height: auto;
  }

  .hero-panel address {
    padding-top: 120px;
  }

  .format-cards,
  .process-rail {
    grid-template-columns: 1fr;
  }

  .process-rail li,
  .format-card {
    min-height: auto;
  }
}

@media (max-width: 620px) {
  .topbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav {
    justify-content: flex-start;
  }

  .hero,
  .section,
  .footer,
  .stripe-note {
    width: min(100% - 20px, 1180px);
  }

  .hero-copy,
  .section,
  .legal-card,
  .thanks-card {
    border-radius: 28px;
  }

  .guide-card {
    grid-template-columns: 1fr;
  }
}
