:root {
  --ink: #1b1027;
  --aubergine: #2e1a47;
  --aubergine-deep: #211032;
  --amber: #d98b1f;
  --amber-bright: #f0a93a;
  --amber-soft: #f6e2c0;
  --bg: #f0ede6;
  --surface: #ffffff;
  --muted: #6e6480;
  --muted-light: #a79cb8;
  --line: #e6e0d6;
  --line-strong: #d7cfc1;
  --maxw: 1140px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0
}

html {
  scroll-behavior: smooth
}

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

body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  font-size: 17px;
}

.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 28px
}

h1,
h2,
h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.01em
}

.hero h1,
.sec-head h2,
.closing h2,
.pull .q {
  font-style: italic
}

.cap h3,
.step-card h3 {
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 600;
  letter-spacing: -0.01em
}

.eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber);
}

a {
  color: inherit
}

/* ---------- header ---------- */
header.site {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(240, 237, 230, 0.82);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--line);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px
}

.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  font-weight: 600;
  letter-spacing: -0.01em;
  font-size: 17px
}

.brand a {
  color: var(--muted);
  text-decoration: none
}

.brand small {
  display: block;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: var(--muted);
  margin-top: 1px;
}
.brand span {
  line-height: 1;
}

.brand .dot {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--aubergine);
  box-shadow: 0 0 0 4px rgba(46, 26, 71, 0.12);
  position: relative;
  flex: none;
}

.brand .dot::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--amber-bright);
  transform: scale(0.45);
  animation: pulse 2.6s ease-in-out infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 0.35;
    transform: scale(0.4)
  }

  50% {
    opacity: 1;
    transform: scale(0.55)
  }
}

@media (prefers-reduced-motion:reduce) {
  .brand .dot::after {
    animation: none
  }
}

.nav .cta-link {
  font-size: 14.5px;
  font-weight: 600;
  text-decoration: none;
  padding: 9px 18px;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  transition: background .2s, border-color .2s;
}

.nav .cta-link:hover {
  background: var(--aubergine);
  color: #fff;
  border-color: var(--aubergine)
}

.lang-switch {
  display: flex;
  align-items: center;
  gap: 2px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.lang-switch a,
.lang-switch .current {
  padding: 5px 8px;
  border-radius: 6px;
  text-decoration: none;
}

.lang-switch a {
  color: var(--muted);
  transition: color .2s;
}

.lang-switch a:hover {
  color: var(--ink);
}

.lang-switch .current {
  color: var(--ink);
  background: var(--line-strong);
}

/* ---------- hero ---------- */
.hero {
  padding: 78px 0 64px
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center
}

.hero h1 {
  font-size: clamp(36px, 5vw, 60px);
  margin: 20px 0 0
}

.hero .lede {
  font-size: 19px;
  color: var(--muted);
  max-width: 34ch;
  margin-top: 22px
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px
}

.btn {
  font-family: 'Inter';
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  padding: 14px 26px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  transition: transform .15s, box-shadow .2s, background .2s;
}

.btn-primary {
  background: var(--aubergine);
  color: #fff;
  box-shadow: 0 8px 24px -10px rgba(46, 26, 71, 0.6)
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px -10px rgba(46, 26, 71, 0.65)
}

.btn-ghost {
  color: var(--ink);
  border: 1px solid var(--line-strong)
}

.btn-ghost:hover {
  background: #fff
}

.btn .arrow {
  transition: transform .2s
}

.btn:hover .arrow {
  transform: translateX(3px)
}

/* signature panel */
.panel {
  background: var(--aubergine);
  background-image: radial-gradient(120% 80% at 100% 0%, rgba(240, 169, 58, 0.16), transparent 60%);
  border-radius: 18px;
  color: #fff;
  padding: 30px 30px 26px;
  box-shadow: 0 30px 60px -28px rgba(33, 16, 50, 0.7);
  position: relative;
  overflow: hidden;
}

.panel .scan {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--amber-bright), transparent);
  opacity: .7;
  animation: scan 5.5s linear infinite;
}

@keyframes scan {
  0% {
    transform: translateY(0)
  }

  100% {
    transform: translateY(330px)
  }
}

@media (prefers-reduced-motion:reduce) {
  .panel .scan {
    animation: none;
    opacity: .3
  }
}

.panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px
}

.panel-head .label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--amber-soft)
}

.panel-head .live {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: .1em;
  color: #cfc4dd;
  display: flex;
  align-items: center;
  gap: 7px
}

.panel-head .live::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--amber-bright);
  box-shadow: 0 0 9px var(--amber-bright)
}

.panel .date {
  font-family: 'Fraunces', serif;
  font-size: 34px;
  font-weight: 600;
  margin: 18px 0 2px;
  letter-spacing: -.01em
}

.panel .date small {
  font-family: 'Inter';
  font-size: 14px;
  font-weight: 500;
  color: #c3b6d4;
  display: block;
  margin-top: 2px;
  letter-spacing: 0
}

.countdown {
  display: flex;
  gap: 10px;
  margin: 20px 0 4px
}

.cd {
  flex: 1;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 11px;
  padding: 13px 8px;
  text-align: center
}

.cd .num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 30px;
  font-weight: 700;
  color: var(--amber-bright);
  line-height: 1
}

.cd .unit {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #b6a8c8;
  margin-top: 7px
}

.panel .reporting-note {
  font-size: 12.5px;
  color: #c3b6d4;
  margin-top: 16px;
  line-height: 1.5
}

.chain {
  margin-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 16px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px
}

.chain .step .t {
  font-family: 'JetBrains Mono', monospace;
  font-size: 18px;
  font-weight: 700;
  color: #fff
}

.chain .step .d {
  font-size: 11.5px;
  color: #b6a8c8;
  margin-top: 3px;
  line-height: 1.35
}

/* ---------- generic section ---------- */
.band {
  padding: 72px 0
}

.band-tight {
  padding: 56px 0
}

.sec-head {
  max-width: 62ch
}

.sec-head h2 {
  font-size: clamp(27px, 3.4vw, 40px);
  margin: 14px 0 0
}

.sec-head p.intro {
  color: var(--muted);
  font-size: 18px;
  margin-top: 16px;
  max-width: 56ch
}

/* law facts */
.facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 42px
}

.fact {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 15px;
  padding: 26px 24px
}

.fact .k {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--amber);
  font-weight: 500
}

.fact .big {
  font-family: 'Fraunces', serif;
  font-size: 31px;
  font-weight: 600;
  margin: 12px 0 8px;
  line-height: 1.05
}

.fact p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.55
}

/* scope */
.scope-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 38px;
  align-items: start
}

.scope-grid .lead {
  font-size: 17px;
  color: var(--ink);
  line-height: 1.65
}

.scope-grid .lead p+p {
  margin-top: 16px
}

.scope-box {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 30px
}

.scope-box .mark {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 42px;
  color: var(--amber);
  line-height: .7;
  margin-bottom: 12px
}

.scope-box .intro2 {
  font-size: 15.5px;
  color: var(--ink);
  line-height: 1.6
}

.scope-box .intro2 b {
  font-weight: 600
}

.scope-box ul {
  list-style: none;
  margin: 16px 0 0;
  display: flex;
  flex-direction: column;
  gap: 11px
}

.scope-box li {
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.5;
  padding-left: 18px;
  position: relative
}

.scope-box li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--amber)
}

.scope-box .more {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.55;
  margin-top: 16px
}

.scope-box .src {
  display: block;
  margin-top: 18px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--muted-light);
  text-decoration: none;
  word-break: break-word
}

.scope-box .src:hover {
  color: var(--amber)
}

/* clients */
.clients {
  padding: 8px 0 56px;
  text-align: center
}

.clients .eyebrow {
  color: var(--muted-light)
}

.clients .row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px 26px;
  margin-top: 22px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto
}

.clients .row span {
  font-family: 'Fraunces', serif;
  font-size: 19px;
  color: var(--ink);
  opacity: .6
}

/* pull quote */
.pull {
  background: var(--aubergine);
  color: #fff;
  border-radius: 20px;
  padding: 46px 44px;
  margin-top: 40px;
  position: relative;
  overflow: hidden
}

.pull::before {
  content: "";
  position: absolute;
  right: -40px;
  top: -40px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(240, 169, 58, 0.22), transparent 70%)
}

.pull q {
  quotes: none
}

.pull .q {
  font-family: 'Fraunces', serif;
  font-size: clamp(22px, 2.7vw, 31px);
  font-weight: 500;
  line-height: 1.28;
  max-width: 30ch;
  position: relative
}

.pull .q b {
  color: var(--amber-bright);
  font-weight: 500
}

/* capabilities */
.caps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 42px
}

.cap {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 15px;
  padding: 28px 26px;
  transition: transform .2s, box-shadow .2s, border-color .2s
}

.cap:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px -24px rgba(46, 26, 71, 0.4);
  border-color: var(--line-strong)
}

.cap .ico {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--aubergine);
  color: var(--amber-bright);
  display: grid;
  place-items: center;
  margin-bottom: 18px
}

.cap .ico svg {
  width: 21px;
  height: 21px
}

.cap h3 {
  font-size: 20px;
  font-weight: 600
}

.cap p {
  font-size: 15px;
  color: var(--muted);
  margin-top: 9px;
  line-height: 1.55
}

/* outcomes list */
.outcomes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 40px;
  margin-top: 36px
}

.outcome {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 6px 0
}

.outcome .check {
  flex: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--amber-soft);
  color: var(--aubergine);
  display: grid;
  place-items: center;
  margin-top: 2px
}

.outcome .check svg {
  width: 13px;
  height: 13px
}

.outcome span {
  font-size: 16px
}

/* steps */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 42px;
  counter-reset: s
}

.step-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 15px;
  padding: 30px 26px
}

.step-card .n {
  counter-increment: s;
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  color: var(--amber);
  font-weight: 700
}

.step-card .n::before {
  content: "0" counter(s)
}

.step-card h3 {
  font-size: 19px;
  font-weight: 600;
  margin: 12px 0 8px
}

.step-card p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.55
}

/* pricing strip */
.price {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 34px;
  margin-top: 40px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 36px;
  align-items: center
}

.price .amt {
  border-right: 1px solid var(--line);
  padding-right: 36px
}

.price .amt .num {
  font-family: 'Fraunces', serif;
  font-size: 46px;
  font-weight: 600;
  line-height: 1
}

.price .amt .num small {
  font-size: 18px;
  color: var(--muted);
  font-weight: 500
}

.price .amt .sub {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: var(--amber);
  letter-spacing: .08em;
  margin-top: 8px
}

.price ul {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 28px
}

.price li {
  font-size: 15px;
  color: var(--ink);
  display: flex;
  gap: 10px;
  align-items: baseline
}

.price li::before {
  content: "–";
  color: var(--amber);
  font-weight: 700;
  flex: none
}

/* disclaimer */
.note {
  margin-top: 36px;
  border-left: 3px solid var(--amber);
  background: #fbf6ee;
  border-radius: 0 12px 12px 0;
  padding: 22px 26px
}

.note p {
  font-size: 14.5px;
  color: #5d5468;
  line-height: 1.6
}

/* CTA / footer */
.closing {
  background: var(--aubergine-deep);
  color: #fff;
  margin-top: 80px
}

.closing-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  padding: 74px 28px;
  align-items: center
}

.closing h2 {
  font-size: clamp(28px, 3.6vw, 42px);
  color: #fff
}

.closing p {
  color: #c3b6d4;
  font-size: 18px;
  margin-top: 18px;
  max-width: 42ch
}

.closing .btn-primary {
  background: var(--amber);
  color: var(--ink)
}

.closing .btn-primary:hover {
  background: var(--amber-bright)
}

.card-contact {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 16px;
  padding: 30px
}

.card-contact .who {
  font-family: 'Fraunces', serif;
  font-size: 23px;
  font-weight: 600
}

.card-contact .role {
  font-size: 14px;
  color: #b6a8c8;
  margin-top: 3px
}

.card-contact .line {
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 9px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 14px
}

.card-contact .line a {
  color: var(--amber-bright);
  text-decoration: none
}

.card-contact .line a:hover {
  text-decoration: underline
}

.card-contact .place {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 13.5px;
  color: #b6a8c8;
  line-height: 1.5
}

footer.legal {
  background: var(--aubergine-deep);
  color: #9a8dad;
  font-size: 13px;
  border-top: 1px solid rgba(255, 255, 255, 0.08)
}

.legal-row {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  padding: 24px 0
}

/* reveal */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .6s ease, transform .6s ease
}

.reveal.in {
  opacity: 1;
  transform: none
}

@media (prefers-reduced-motion:reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none
  }
}

:focus-visible {
  outline: 2.5px solid var(--amber);
  outline-offset: 3px;
  border-radius: 4px
}

/* ---------- responsive ---------- */
@media (max-width:880px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px
  }

  .facts {
    grid-template-columns: 1fr
  }

  .scope-grid {
    grid-template-columns: 1fr;
    gap: 28px
  }

  .caps {
    grid-template-columns: 1fr
  }

  .outcomes {
    grid-template-columns: 1fr
  }

  .steps {
    grid-template-columns: 1fr
  }

  .price {
    grid-template-columns: 1fr;
    gap: 24px
  }

  .price .amt {
    border-right: none;
    border-bottom: 1px solid var(--line);
    padding-right: 0;
    padding-bottom: 24px
  }

  .price ul {
    grid-template-columns: 1fr
  }

  .closing-grid {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 56px 28px
  }

  .nav .cta-link {
    display: none
  }
}

@media (max-width:480px) {
  body {
    font-size: 16px
  }

  .hero {
    padding: 54px 0 48px
  }

  .band {
    padding: 56px 0
  }

  .pull {
    padding: 34px 26px
  }

  .countdown {
    gap: 7px
  }

  .cd .num {
    font-size: 24px
  }

  .closing-grid {
    padding: 48px 28px
  }
}
