/* ==========================================================================
   regulia. — Landing Page Stylesheet
   Design system tokens, layout, components
   ========================================================================== */

/* ---------- Tokens --------------------------------------------------------- */
:root {
  /* Colors */
  --bg:            #FAFAF7;
  --bg-2:          #F4F2EB;
  --surface:       #FFFFFF;
  --ink:           #0F1419;
  --ink-2:         #5A5751;
  --ink-3:         #8B8780;
  --accent:        #15573D;
  --accent-hover:  #0F4530;
  --accent-soft:   #E8F0EC;
  --accent-ink:    #0A3324;
  --amber:         #B8731F;
  --amber-soft:    #F6ECDD;
  --amber-ink:     #6E4310;
  --border:        #E8E4D9;
  --border-strong: #D4CFC1;
  --danger:        #8C2A1F;

  /* Type */
  --font-sans: "Geist", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, "SF Mono", Consolas, monospace;

  /* Sizing */
  --container: 1200px;
  --container-narrow: 960px;
  --radius-sm: 6px;
  --radius:    10px;
  --radius-lg: 14px;

  /* Shadows */
  --shadow-xs: 0 1px 0 rgba(15, 20, 25, .04), 0 1px 2px rgba(15, 20, 25, .04);
  --shadow-sm: 0 1px 2px rgba(15, 20, 25, .04), 0 2px 4px rgba(15, 20, 25, .04);
  --shadow-md: 0 2px 4px rgba(15, 20, 25, .05), 0 8px 24px rgba(15, 20, 25, .06);
  --shadow-lg: 0 4px 8px rgba(15, 20, 25, .06), 0 18px 40px rgba(15, 20, 25, .10);

  /* Transitions */
  --t-fast: 120ms cubic-bezier(.2,.0,.2,1);
  --t-med:  200ms cubic-bezier(.2,.0,.2,1);
}

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.55;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

img, svg { display: block; max-width: 100%; }
button { font: inherit; cursor: pointer; border: 0; background: transparent; color: inherit; }
a { color: inherit; text-decoration: none; }
ul, ol { margin: 0; padding: 0; list-style: none; }
p  { margin: 0; }
h1, h2, h3, h4 { margin: 0; font-weight: 600; letter-spacing: -0.02em; line-height: 1.1; color: var(--ink); }

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

/* ---------- Utilities ---------------------------------------------------- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.container-narrow { width: 100%; max-width: var(--container-narrow); margin: 0 auto; padding: 0 24px; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--ink-2);
}
.eyebrow::before {
  content: "";
  width: 22px; height: 1px;
  background: var(--ink-3);
}

.mono { font-family: var(--font-mono); }
.ref {
  font-family: var(--font-mono);
  font-size: .82em;
  font-weight: 500;
  color: var(--accent-ink);
  background: var(--accent-soft);
  padding: 2px 6px;
  border-radius: 4px;
  white-space: nowrap;
}

.text-muted { color: var(--ink-2); }

.section {
  padding: 96px 0;
  position: relative;
}
.section--tight  { padding: 64px 0; }
.section--alt    { background: var(--bg-2); }
.section--ink    { background: var(--ink); color: #F4F2EB; }
.section--ink h2,
.section--ink h3 { color: #fff; }

/* ---------- Buttons ------------------------------------------------------ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 48px;
  padding: 0 22px;
  border-radius: var(--radius);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: -0.005em;
  border: 1px solid transparent;
  transition: background var(--t-fast), color var(--t-fast),
              border-color var(--t-fast), transform var(--t-fast),
              box-shadow var(--t-fast);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 1px 0 rgba(255,255,255,.08) inset, 0 1px 2px rgba(15,20,25,.18);
}
.btn--primary:hover { background: var(--accent-hover); }

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--border-strong);
}
.btn--ghost:hover { background: var(--surface); border-color: var(--ink-3); }

.btn--inverse {
  background: #fff;
  color: var(--ink);
}
.btn--inverse:hover { background: #F4F2EB; }

.btn--sm  { height: 40px; padding: 0 16px; font-size: 14px; }
.btn--lg  { height: 56px; padding: 0 28px; font-size: 16px; }
.btn--block { width: 100%; }

.btn .arrow { transition: transform var(--t-fast); }
.btn:hover .arrow { transform: translateX(2px); }

/* ---------- Header ------------------------------------------------------- */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 250, 247, 0.85);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--t-med), background var(--t-med);
}
.header.is-scrolled {
  background: rgba(250, 250, 247, 0.94);
  border-bottom-color: var(--border);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.brand {
  display: inline-flex;
  align-items: baseline;
  gap: 0;
  font-weight: 500;
  font-size: 19px;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.brand .ia {
  font-weight: 600;
  color: var(--accent);
  letter-spacing: -0.01em;
}
.brand .dot { color: var(--accent); }
.nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav a {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink-2);
  transition: color var(--t-fast);
}
.nav a:hover { color: var(--ink); }

.header__cta { display: flex; align-items: center; gap: 12px; }

.menu-toggle { display: none; }

/* ---------- Hero --------------------------------------------------------- */
.hero {
  padding: 80px 0 96px;
  position: relative;
  overflow: hidden;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 72px;
  align-items: center;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  color: var(--ink-2);
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 28px;
}
.hero__badge .pulse {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 0 rgba(21, 87, 61, .5);
  animation: pulse 2.2s infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(21, 87, 61, .5); }
  70%  { box-shadow: 0 0 0 10px rgba(21, 87, 61, 0); }
  100% { box-shadow: 0 0 0 0 rgba(21, 87, 61, 0); }
}

.hero h1 {
  font-size: clamp(40px, 5.6vw, 68px);
  letter-spacing: -0.035em;
  font-weight: 600;
  line-height: 1.02;
  margin-bottom: 24px;
}
.hero h1 em {
  font-style: normal;
  color: var(--accent);
  position: relative;
}
.hero__sub {
  font-size: 19px;
  line-height: 1.55;
  color: var(--ink-2);
  max-width: 560px;
  margin-bottom: 36px;
}
.hero__ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.hero__trust {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.hero__trust span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--ink-2);
}
.hero__trust svg { color: var(--accent); flex-shrink: 0; }

/* Hero visual: stylized document stack */
.hero__visual {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1.05;
  max-width: 520px;
  margin-left: auto;
}
.doc-stack {
  position: absolute;
  inset: 0;
}
.doc-card {
  position: absolute;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 22px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-2);
  transition: transform 600ms cubic-bezier(.2,0,.2,1);
}
.doc-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border);
  padding-bottom: 12px;
  margin-bottom: 14px;
}
.doc-card__title {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.doc-card__type {
  font-size: 10px;
  font-weight: 500;
  color: var(--accent-ink);
  background: var(--accent-soft);
  padding: 3px 7px;
  border-radius: 4px;
  letter-spacing: .04em;
}
.doc-card__line {
  height: 6px;
  background: var(--bg-2);
  border-radius: 3px;
  margin-bottom: 7px;
}
.doc-card__line.short { width: 60%; }
.doc-card__line.med   { width: 80%; }
.doc-card__art {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--accent-ink);
  background: var(--accent-soft);
  padding: 2px 6px;
  border-radius: 4px;
  margin-top: 10px;
}

.doc-card--3 {
  inset: 14% 0 0 14%;
  transform: rotate(2deg);
  z-index: 1;
}
.doc-card--2 {
  inset: 7% 7% 7% 7%;
  transform: rotate(-1deg);
  z-index: 2;
}
.doc-card--1 {
  inset: 0 14% 14% 0;
  z-index: 3;
}
.hero__visual:hover .doc-card--3 { transform: rotate(3deg) translateY(-4px); }
.hero__visual:hover .doc-card--2 { transform: rotate(-1.5deg) translateY(-2px); }
.hero__visual:hover .doc-card--1 { transform: translateY(-4px); }

/* Floating badge inside visual */
.hero__visual .stamp {
  position: absolute;
  bottom: 4%;
  right: 2%;
  background: var(--ink);
  color: #fff;
  border-radius: var(--radius);
  padding: 14px 18px;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-lg);
}
.hero__visual .stamp .num { font-size: 22px; font-weight: 600; letter-spacing: -0.02em; }
.hero__visual .stamp .lbl { font-size: 11px; color: rgba(255,255,255,.7); font-family: var(--font-mono); text-transform: uppercase; letter-spacing: .08em; }

/* ---------- Reassurance bar ---------------------------------------------- */
.reassure {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.reassure__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding: 28px 0;
}
.reassure__item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0 24px;
  border-right: 1px solid var(--border);
}
.reassure__item:last-child { border-right: none; }
.reassure__item svg { color: var(--accent); flex-shrink: 0; }
.reassure__item div { display: flex; flex-direction: column; }
.reassure__item strong { font-weight: 600; font-size: 14px; color: var(--ink); }
.reassure__item span  { font-size: 12.5px; color: var(--ink-2); }

/* ---------- Deadline counter --------------------------------------------- */
.deadline {
  margin-top: -36px;
  position: relative;
  z-index: 2;
}
.deadline__card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 28px 36px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 32px;
  align-items: center;
}
.deadline__seal {
  display: flex;
  align-items: center;
  gap: 18px;
  border-right: 1px solid var(--border);
  padding-right: 32px;
}
.deadline__num {
  font-family: var(--font-mono);
  font-size: 56px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.04em;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.deadline__num .prefix { color: var(--amber); }
.deadline__seal-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.deadline__seal-meta .lbl {
  font-family: var(--font-mono);
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--ink-3);
  font-weight: 500;
}
.deadline__seal-meta .date {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--ink);
  font-weight: 500;
}
.deadline__body h3 {
  font-size: 18px;
  margin-bottom: 4px;
}
.deadline__body p {
  font-size: 13.5px;
  color: var(--ink-2);
  max-width: 480px;
}
.deadline__amber {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--amber-soft);
  color: var(--amber-ink);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  padding: 5px 10px;
  border-radius: 4px;
  margin-bottom: 8px;
  letter-spacing: .03em;
}

/* ---------- Pricing ------------------------------------------------------ */
.pricing__head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}
.pricing__head h2 {
  font-size: clamp(32px, 4vw, 44px);
  margin-bottom: 16px;
}
.pricing__head p {
  font-size: 17px;
  color: var(--ink-2);
}

.pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
}

.pcard {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform var(--t-med), box-shadow var(--t-med),
              border-color var(--t-med);
}
.pcard:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--border-strong);
}

.pcard--featured {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent), var(--shadow-md);
  transform: translateY(-4px);
}
.pcard--featured:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 0 1px var(--accent), var(--shadow-lg);
}

.pcard__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
}

.pcard__name {
  font-size: 13px;
  font-family: var(--font-mono);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--ink-2);
  margin-bottom: 10px;
}
.pcard__title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 8px;
}
.pcard__desc {
  font-size: 14px;
  color: var(--ink-2);
  margin-bottom: 24px;
  min-height: 42px;
}
.pcard__price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 24px;
}
.pcard__price .amount {
  font-size: 48px;
  font-weight: 600;
  letter-spacing: -0.04em;
  color: var(--ink);
  line-height: 1;
}
.pcard__price .currency {
  font-size: 22px;
  font-weight: 500;
  color: var(--ink);
}
.pcard__price .period {
  font-size: 14px;
  color: var(--ink-2);
}
.pcard__price-note {
  font-size: 13px;
  color: var(--ink-2);
  margin-top: -16px;
  margin-bottom: 24px;
}
.pcard__features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
  flex-grow: 1;
}
.pcard__features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14.5px;
  color: var(--ink);
  line-height: 1.5;
}
.pcard__features svg {
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 4px;
}
.pcard__features li.muted {
  color: var(--ink-3);
}
.pcard__features li.muted svg { color: var(--ink-3); }
.pcard__cta {
  margin-top: auto;
}
.pcard__sub {
  text-align: center;
  font-size: 12px;
  color: var(--ink-3);
  margin-top: 12px;
  font-family: var(--font-mono);
}

/* ---------- How it works ------------------------------------------------- */
.steps__head {
  margin-bottom: 56px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: end;
}
.steps__head h2 {
  font-size: clamp(32px, 4vw, 44px);
}
.steps__head p {
  font-size: 17px;
  color: var(--ink-2);
}

.steps__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
}
.step {
  padding: 32px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-right: none;
  position: relative;
}
.step:first-child { border-radius: var(--radius-lg) 0 0 var(--radius-lg); }
.step:last-child  { border-radius: 0 var(--radius-lg) var(--radius-lg) 0; border-right: 1px solid var(--border); }

.step__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}
.step__num {
  font-family: var(--font-mono);
  font-size: 36px;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: -0.04em;
  line-height: 1;
}
.step__time {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--ink-2);
  background: var(--bg-2);
  padding: 4px 10px;
  border-radius: 4px;
}
.step h3 {
  font-size: 19px;
  margin-bottom: 10px;
}
.step p {
  font-size: 14.5px;
  color: var(--ink-2);
  line-height: 1.55;
}

/* Step illustrations */
.step__viz {
  margin-top: 24px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--ink-2);
  min-height: 96px;
}
.step__viz .row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}
.step__viz .row:last-child { margin-bottom: 0; }
.step__viz .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--ink-3);
  flex-shrink: 0;
}
.step__viz .dot.done { background: var(--accent); }
.step__viz .bar {
  flex-grow: 1;
  height: 6px;
  background: var(--border);
  border-radius: 3px;
  position: relative;
  overflow: hidden;
}
.step__viz .bar::before {
  content: "";
  position: absolute;
  inset: 0;
  width: var(--w, 60%);
  background: var(--accent);
  border-radius: 3px;
}

/* ---------- Documents grid ----------------------------------------------- */
.docs__head { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.docs__head h2 { font-size: clamp(32px, 4vw, 44px); margin-bottom: 16px; }
.docs__head p  { font-size: 17px; color: var(--ink-2); }

.docs__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.doc {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  transition: border-color var(--t-fast), transform var(--t-fast);
}
.doc:hover { border-color: var(--border-strong); transform: translateY(-1px); }
.doc__icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: var(--accent-soft);
  color: var(--accent-ink);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.doc__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 8px;
  gap: 10px;
}
.doc h3 {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.25;
}
.doc__format {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--ink-2);
  background: var(--bg-2);
  padding: 3px 7px;
  border-radius: 4px;
  letter-spacing: .04em;
  font-weight: 500;
  flex-shrink: 0;
}
.doc p {
  font-size: 13.5px;
  color: var(--ink-2);
  line-height: 1.5;
  margin-bottom: 12px;
}

/* ---------- Why now: timeline + sanctions -------------------------------- */
.why__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
}
.why h2 { font-size: clamp(28px, 3.4vw, 36px); margin-bottom: 12px; }
.why p.lead { font-size: 16px; color: var(--ink-2); margin-bottom: 32px; max-width: 540px; }

.timeline {
  position: relative;
  padding-left: 28px;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 7px; top: 8px; bottom: 8px;
  width: 1px;
  background: var(--border-strong);
}
.tl-item {
  position: relative;
  padding-bottom: 28px;
}
.tl-item:last-child { padding-bottom: 0; }
.tl-item::before {
  content: "";
  position: absolute;
  left: -27px; top: 6px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--surface);
  border: 2px solid var(--border-strong);
}
.tl-item.is-done::before  { background: var(--accent); border-color: var(--accent); }
.tl-item.is-current::before {
  background: var(--amber);
  border-color: var(--amber);
  box-shadow: 0 0 0 4px var(--amber-soft);
}
.tl-date {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  color: var(--ink-2);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.tl-status {
  font-size: 10px;
  padding: 2px 6px;
  border-radius: 3px;
  letter-spacing: .05em;
}
.tl-status.passed { background: var(--accent-soft); color: var(--accent-ink); }
.tl-status.next   { background: var(--amber-soft); color: var(--amber-ink); }
.tl-title { font-size: 15.5px; font-weight: 600; margin-bottom: 4px; }
.tl-desc  { font-size: 13.5px; color: var(--ink-2); line-height: 1.5; }

.sanction-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin-bottom: 16px;
}
.sanction-card .sanction-amt {
  font-family: var(--font-mono);
  font-size: 36px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 8px;
}
.sanction-card .sanction-amt .small {
  font-size: 18px;
  color: var(--ink-2);
}
.sanction-card .sanction-cat {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--amber-ink);
  background: var(--amber-soft);
  padding: 3px 8px;
  border-radius: 4px;
  display: inline-block;
  margin-bottom: 12px;
}
.sanction-card p {
  font-size: 13.5px;
  color: var(--ink-2);
  line-height: 1.5;
}

/* ---------- Sources ------------------------------------------------------ */
.sources__head { text-align: center; max-width: 680px; margin: 0 auto 48px; }
.sources__head .eyebrow { margin-bottom: 16px; }
.sources__head h2 { font-size: clamp(28px, 3.4vw, 36px); margin-bottom: 12px; }
.sources__head p  { font-size: 16px; color: var(--ink-2); }

.sources__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.source-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 200px;
}
.source-card .src-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-2);
  letter-spacing: .04em;
  text-transform: uppercase;
}
.source-card h3 { font-size: 15px; line-height: 1.3; }
.source-card p  { font-size: 13px; color: var(--ink-2); line-height: 1.5; }
.source-card .src-link {
  margin-top: auto;
  font-size: 12.5px;
  color: var(--accent);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* ---------- FAQ ---------------------------------------------------------- */
.faq__wrap {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 64px;
}
.faq__head h2 {
  font-size: clamp(32px, 4vw, 44px);
  margin-bottom: 16px;
}
.faq__head p {
  font-size: 16px;
  color: var(--ink-2);
  margin-bottom: 24px;
}
.faq__head a {
  color: var(--accent);
  font-weight: 500;
}

.faq__list { border-top: 1px solid var(--border); }
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item__btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 0;
  text-align: left;
  font-size: 16.5px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.faq-item__btn:hover { color: var(--accent); }
.faq-item__icon {
  flex-shrink: 0;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--bg-2);
  color: var(--ink-2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--t-med), background var(--t-med), color var(--t-med);
}
.faq-item.is-open .faq-item__icon { transform: rotate(45deg); background: var(--accent); color: #fff; }
.faq-item__panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 320ms cubic-bezier(.2,0,.2,1);
}
.faq-item__panel-inner {
  padding: 0 0 24px;
  font-size: 15px;
  color: var(--ink-2);
  line-height: 1.65;
  max-width: 640px;
}
.faq-item__panel-inner p + p { margin-top: 12px; }

/* ---------- Final CTA ---------------------------------------------------- */
.final-cta {
  background: var(--ink);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 72px 56px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(21, 87, 61, .25), transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(184, 115, 31, .15), transparent 55%);
  pointer-events: none;
}
.final-cta > * { position: relative; }
.final-cta h2 {
  color: #fff;
  font-size: clamp(32px, 4.2vw, 48px);
  letter-spacing: -0.03em;
  margin-bottom: 16px;
  max-width: 720px;
  margin-inline: auto;
}
.final-cta p {
  font-size: 17px;
  color: rgba(255,255,255,.72);
  max-width: 560px;
  margin: 0 auto 32px;
}
.final-cta__ctas {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.final-cta .btn--ghost { color: #fff; border-color: rgba(255,255,255,.25); }
.final-cta .btn--ghost:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.5); }

.final-cta__meta {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 28px;
  font-size: 12.5px;
  color: rgba(255,255,255,.55);
  font-family: var(--font-mono);
  flex-wrap: wrap;
}

/* ---------- Disclaimer --------------------------------------------------- */
.disclaimer {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 24px 0;
}
.disclaimer__inner {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  font-size: 13px;
  color: var(--ink-2);
  line-height: 1.55;
}
.disclaimer__inner svg {
  color: var(--ink-3);
  flex-shrink: 0;
  margin-top: 2px;
}
.disclaimer strong { color: var(--ink); font-weight: 500; }

/* ---------- Footer ------------------------------------------------------- */
.footer {
  background: var(--bg);
  padding: 80px 0 32px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
.footer__brand p {
  font-size: 14px;
  color: var(--ink-2);
  margin-top: 16px;
  line-height: 1.55;
  max-width: 280px;
}
.footer__col h4 {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--ink-3);
  margin-bottom: 18px;
}
.footer__col ul { display: flex; flex-direction: column; gap: 10px; }
.footer__col a {
  font-size: 14px;
  color: var(--ink-2);
  transition: color var(--t-fast);
}
.footer__col a:hover { color: var(--ink); }

.footer__bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 12.5px;
  color: var(--ink-3);
  font-family: var(--font-mono);
}

/* ---------- Responsive --------------------------------------------------- */
@media (max-width: 1024px) {
  .hero__grid { grid-template-columns: 1fr; gap: 56px; }
  .hero__visual { max-width: 480px; margin: 0; }
  .reassure__grid { grid-template-columns: repeat(2, 1fr); gap: 24px 0; }
  .reassure__item:nth-child(2) { border-right: none; }
  .docs__grid { grid-template-columns: repeat(2, 1fr); }
  .sources__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 2fr 1fr 1fr; gap: 40px; }
  .footer__brand { grid-column: 1 / -1; }
  .why__grid { grid-template-columns: 1fr; gap: 40px; }
  .faq__wrap { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 760px) {
  .section { padding: 64px 0; }
  .nav { display: none; }
  .header__cta .btn--ghost { display: none; }
  .menu-toggle {
    display: inline-flex;
    width: 40px; height: 40px;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    color: var(--ink);
  }
  .hero { padding: 56px 0 64px; }
  .hero__sub { font-size: 17px; }

  .deadline { margin-top: -28px; }
  .deadline__card { grid-template-columns: 1fr; padding: 24px; gap: 20px; }
  .deadline__seal { border-right: none; border-bottom: 1px solid var(--border); padding: 0 0 20px; }
  .deadline__num { font-size: 44px; }

  .pricing__grid { grid-template-columns: 1fr; }
  .pcard--featured { order: -1; transform: none; }
  .pcard--featured:hover { transform: translateY(-2px); }

  .steps__head { grid-template-columns: 1fr; gap: 16px; }
  .steps__grid { grid-template-columns: 1fr; gap: 0; }
  .step { border: 1px solid var(--border); border-radius: var(--radius-lg) !important; margin-bottom: 12px; }
  .step:last-child { margin-bottom: 0; }

  .docs__grid { grid-template-columns: 1fr; }
  .sources__grid { grid-template-columns: 1fr; }

  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer__brand { grid-column: 1 / -1; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }

  .final-cta { padding: 48px 28px; }
}
@media (max-width: 480px) {
  .reassure__grid { grid-template-columns: 1fr; padding: 16px 0; }
  .reassure__item { padding: 14px 24px; border-right: none; border-bottom: 1px solid var(--border); }
  .reassure__item:last-child { border-bottom: none; }
}
