/* =============================================================================
   Adunai · Marketing Home · LIGHT · Ethereum-inspired, edge-to-edge
   Full-bleed tinted bands, big rounded cards, brand gold + foundation teal.
   ============================================================================= */

:root {
  /* Brand */
  --gold-50:  #FAF6EC;
  --gold-100: #F5EAD0;
  --gold-200: #E9D6A6;
  --gold-400: #CFAA52;
  --gold-500: #C89B3C;
  --gold-600: #A37E2A;
  --gold-700: #826322;

  --teal-50:  #EAF2F0;
  --teal-100: #D6E7E3;
  --teal-300: #5F9B91;
  --teal-400: #3F7E73;
  --teal-500: #0A3B36;
  --teal-600: #08322E;
  --teal-700: #062825;

  --success: #10B981;

  /* Surfaces */
  --paper:      #FCFBF7;
  --cream:      #FAF6EC;
  --teal-tint:  #EAF2F0;
  --gold-tint:  #F6ECD6;
  --white:      #FFFFFF;

  /* Ink */
  --ink:    #10231F;
  --text:   #384743;
  --muted:  #6A7773;
  --faint:  #97A29E;

  --border:      rgba(10, 59, 54, 0.12);
  --border-soft: rgba(10, 59, 54, 0.08);
  --border-gold: rgba(200, 155, 60, 0.32);

  --font-display: 'Manrope', system-ui, sans-serif;
  --font-ui:      'Inter', system-ui, sans-serif;
  --font-mono:    'IBM Plex Mono', Menlo, Monaco, monospace;

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --dur: 220ms;

  --maxw: 1500px;
  --gutter: clamp(22px, 5.5vw, 88px);
  --radius: 24px;
  --radius-sm: 14px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: 84px; }

body {
  font-family: var(--font-ui);
  background: var(--paper);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
::selection { background: var(--gold-200); color: var(--ink); }
a { color: inherit; text-decoration: none; }

/* ---- layout primitives ---- */
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter); width: 100%; }

.band { position: relative; }
.band-cream { background: var(--cream); }
.band-teal  { background: var(--teal-tint); }
.band-gold  { background: var(--gold-tint); }
.band-white { background: var(--white); }
.band-paper { background: var(--paper); }

.eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-600);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before { content: ''; width: 22px; height: 1px; background: currentColor; }
.eyebrow.center { justify-content: center; }
.eyebrow.on-teal { color: var(--teal-300); }

/* ---- buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-ui);
  font-size: 15px;
  font-weight: 600;
  padding: 15px 28px;
  border-radius: 999px;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: background var(--dur) var(--ease), border-color var(--dur) var(--ease), color var(--dur) var(--ease), transform 80ms var(--ease);
  line-height: 1;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--teal-500); color: #fff; }
.btn-primary:hover { background: var(--teal-600); }
.btn-gold { background: var(--gold-500); color: var(--ink); }
.btn-gold:hover { background: var(--gold-400); }
.btn-ghost { border-color: var(--border); color: var(--ink); background: var(--white); }
.btn-ghost:hover { border-color: var(--teal-500); }
.btn .arr { transition: transform var(--dur) var(--ease); }
.btn:hover .arr { transform: translateX(3px); }

/* =============================================================================
   HEADER
   ============================================================================= */
.hdr {
  position: sticky; top: 0; z-index: 60;
  background: color-mix(in oklab, var(--paper) 82%, transparent);
  backdrop-filter: blur(14px) saturate(1.4);
  border-bottom: 1px solid var(--border-soft);
}
.hdr-inner {
  max-width: var(--maxw); margin: 0 auto;
  padding: 16px var(--gutter);
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.brand { display: flex; align-items: center; gap: 11px; }
.brand svg { width: 18px; height: 22px; display: block; }
.brand-name { font-family: var(--font-display); font-weight: 600; letter-spacing: 0.18em; font-size: 15px; color: var(--ink); }
.hdr-nav { display: flex; align-items: center; gap: 32px; }
.hdr-nav a { font-size: 14.5px; font-weight: 500; color: var(--muted); transition: color var(--dur) var(--ease); }
.hdr-nav a:hover { color: var(--ink); }
.hdr-nav .docs-link { display: inline-flex; align-items: center; gap: 6px; }
.hdr-cta {
  font-family: var(--font-ui); font-size: 14px; font-weight: 600;
  color: #fff; background: var(--teal-500);
  padding: 11px 22px; border-radius: 999px;
  transition: background var(--dur) var(--ease);
}
.hdr-cta:hover { background: var(--teal-600); }
@media (max-width: 860px) { .hdr-nav a:not(.docs-link) { display: none; } }

/* =============================================================================
   SECTION HEADS
   ============================================================================= */
.sect { padding: clamp(80px, 10vw, 148px) 0; }
.sect-tight { padding: clamp(64px, 8vw, 120px) 0; }

.section-head { max-width: 760px; margin-bottom: clamp(44px, 5vw, 68px); }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(32px, 4.4vw, 54px);
  letter-spacing: -0.03em;
  line-height: 1.06;
  color: var(--ink);
  margin: 18px 0 0;
  text-wrap: balance;
}
.section-title strong { font-weight: 700; color: var(--gold-600); }
.section-lede {
  font-size: clamp(16px, 1.5vw, 19px);
  color: var(--text);
  line-height: 1.6;
  margin-top: 22px;
  max-width: 62ch;
  text-wrap: pretty;
}
.section-head.center .section-lede { margin-left: auto; margin-right: auto; }

/* =============================================================================
   HERO, two column, edge to edge
   ============================================================================= */
.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(120% 90% at 88% 0%, var(--gold-tint) 0%, transparent 52%),
    radial-gradient(90% 80% at 0% 100%, var(--teal-tint) 0%, transparent 50%),
    var(--cream);
  border-bottom: 1px solid var(--border-soft);
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
  padding: clamp(56px, 8vw, 104px) 0 clamp(56px, 8vw, 104px);
}
@media (max-width: 940px) { .hero-inner { grid-template-columns: 1fr; gap: 48px; } }
.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--teal-500); background: rgba(255,255,255,0.7);
  border: 1px solid var(--border); border-radius: 999px; padding: 7px 14px;
  margin-bottom: 26px;
}
.hero-badge .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--teal-400); }
.hero h1 {
  font-family: var(--font-display);
  font-weight: 250;
  font-size: clamp(40px, 5.8vw, 78px);
  letter-spacing: -0.038em;
  line-height: 1.0;
  color: var(--ink);
  text-wrap: balance;
  margin-bottom: 26px;
}
.hero h1 em { font-style: normal; font-weight: 600; color: var(--gold-600); }
.hero-sub {
  font-size: clamp(17px, 1.7vw, 21px);
  line-height: 1.55;
  color: var(--text);
  max-width: 56ch;
  text-wrap: pretty;
  margin-bottom: 34px;
}
.hero-sub strong { color: var(--ink); font-weight: 600; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }

/* hero visual, identity card illustration */
.hero-visual { position: relative; display: grid; place-items: center; }
.id-card {
  width: 100%; max-width: 430px;
  background: linear-gradient(155deg, var(--teal-500), var(--teal-700));
  border-radius: var(--radius);
  padding: 30px 30px 26px;
  color: #EAF2F0;
  box-shadow: 0 40px 80px -34px rgba(10,59,54,0.55), 0 2px 4px rgba(10,59,54,0.1);
  position: relative;
  overflow: hidden;
  transform: rotate(-1.6deg);
}
.id-card::after {
  content: ''; position: absolute; width: 320px; height: 320px; right: -120px; top: -140px;
  background: radial-gradient(circle, rgba(200,155,60,0.28), transparent 66%);
}
.id-card-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 30px; position: relative; z-index: 1; }
.id-card-brand { display: flex; align-items: center; gap: 9px; font-family: var(--font-display); font-weight: 500; letter-spacing: 0.16em; font-size: 13px; color: #fff; }
.id-card-brand svg { width: 16px; height: 19px; }
.id-card-chip { font-family: var(--font-mono); font-size: 9.5px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold-200); border: 1px solid rgba(200,155,60,0.4); border-radius: 999px; padding: 4px 10px; }
.id-card-face { display: flex; align-items: center; gap: 14px; margin-bottom: 26px; position: relative; z-index: 1; }
.id-card-avatar { width: 54px; height: 54px; border-radius: 50%; background: linear-gradient(140deg, var(--gold-500), var(--gold-700)); display: grid; place-items: center; font-family: var(--font-display); font-weight: 700; font-size: 22px; color: var(--teal-700); }
.id-card-handle { font-family: var(--font-display); font-weight: 600; font-size: 19px; color: #fff; }
.id-card-did { font-family: var(--font-mono); font-size: 11px; color: var(--teal-300); letter-spacing: 0.02em; margin-top: 2px; }
.id-card-claims { display: grid; gap: 9px; position: relative; z-index: 1; }
.id-card-claim { display: flex; align-items: center; gap: 10px; font-size: 13px; color: #DCEAE7; }
.id-card-claim .tick { width: 18px; height: 18px; border-radius: 50%; background: rgba(16,185,129,0.18); display: grid; place-items: center; flex-shrink: 0; }
.id-card-claim .tick svg { width: 11px; height: 11px; stroke: var(--success); fill: none; stroke-width: 2.4; }
.id-card-foot { margin-top: 26px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,0.12); display: flex; justify-content: space-between; font-family: var(--font-mono); font-size: 9.5px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--teal-300); position: relative; z-index: 1; }

/* trust strip under hero */
.hero-strip {
  border-top: 1px solid var(--border-soft);
  background: rgba(255,255,255,0.45);
}
.hero-strip-inner {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
@media (max-width: 720px) { .hero-strip-inner { grid-template-columns: repeat(2, 1fr); } }
.hs-cell { padding: 26px var(--gutter); border-left: 1px solid var(--border-soft); }
.hs-cell:first-child { border-left: none; }
@media (max-width: 720px) { .hs-cell { padding: 22px var(--gutter); } .hs-cell:nth-child(2n+1){ border-left:none; } }
.hs-cell .k { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold-600); margin-bottom: 9px; }
.hs-cell .v { font-family: var(--font-display); font-weight: 500; font-size: 15px; color: var(--ink); line-height: 1.35; }

/* =============================================================================
   PROBLEM
   ============================================================================= */
.problem-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 76px); align-items: center;
}
@media (max-width: 900px) { .problem-grid { grid-template-columns: 1fr; } }
.problem-copy .big-line {
  font-family: var(--font-display); font-weight: 300;
  font-size: clamp(24px, 3vw, 34px); line-height: 1.28; letter-spacing: -0.02em;
  color: var(--ink); text-wrap: pretty;
}
.problem-copy .big-line b { color: var(--gold-600); font-weight: 600; }
.problem-copy p { margin-top: 22px; font-size: 16px; color: var(--text); line-height: 1.7; max-width: 52ch; }
.problem-copy p em { color: var(--ink); font-style: italic; }
.reprove {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden; box-shadow: 0 24px 50px -34px rgba(10,59,54,0.3);
}
.reprove-row {
  padding: 20px 26px; display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 16px;
  border-bottom: 1px solid var(--border-soft);
}
.reprove-row .who { font-size: 14.5px; color: var(--text); }
.reprove-row .who b { color: var(--ink); font-weight: 600; }
.reprove-row .status {
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--muted); border: 1px solid var(--border); border-radius: 999px; padding: 5px 11px; white-space: nowrap;
}
.reprove-row.blocked .status { color: #C0603C; border-color: rgba(192,96,60,0.32); background: rgba(192,96,60,0.06); }
.reprove-cap {
  padding: 16px 26px; background: var(--cream);
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.06em; color: var(--muted);
}

/* =============================================================================
   WHAT IT DOES, ethereum-style big rounded feature cards
   ============================================================================= */
.does-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
@media (max-width: 760px) { .does-grid { grid-template-columns: 1fr; } }
.does-cell {
  border-radius: var(--radius); padding: clamp(28px, 3vw, 44px);
  display: grid; gap: 14px; align-content: start;
  border: 1px solid var(--border-soft);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.does-cell:nth-child(1) { background: var(--gold-tint); }
.does-cell:nth-child(2) { background: var(--teal-tint); }
.does-cell:nth-child(3) { background: var(--teal-tint); }
.does-cell:nth-child(4) { background: var(--gold-tint); }
.does-cell:hover { transform: translateY(-4px); box-shadow: 0 30px 60px -40px rgba(10,59,54,0.4); }
.does-chip {
  width: 52px; height: 52px; border-radius: 15px; display: grid; place-items: center;
  background: var(--white); box-shadow: 0 6px 16px -8px rgba(10,59,54,0.28);
}
.does-chip svg { width: 26px; height: 26px; }
.does-cell .n { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.16em; color: var(--gold-600); }
.does-cell h3 { font-family: var(--font-display); font-weight: 600; font-size: clamp(21px, 2.3vw, 27px); letter-spacing: -0.02em; line-height: 1.15; color: var(--ink); }
.does-cell p { font-size: 15.5px; color: var(--text); line-height: 1.6; max-width: 44ch; }

/* =============================================================================
   aID DEMO, light band
   ============================================================================= */
.demo-sect {
  background:
    radial-gradient(90% 70% at 50% 0%, var(--teal-tint) 0%, transparent 55%),
    var(--paper);
}
.demo-label {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--teal-400); background: var(--white);
  border: 1px solid var(--border); padding: 6px 12px; border-radius: 999px; margin-top: 20px;
}
.demo-label .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--teal-400); }

.demo-stage {
  margin-top: clamp(36px, 4vw, 56px);
  display: grid; grid-template-columns: 300px 1fr;
  gap: clamp(28px, 4vw, 60px); align-items: start;
}
@media (max-width: 920px) { .demo-stage { grid-template-columns: 1fr; } }

.demo-guide { display: grid; gap: 2px; position: sticky; top: 100px; }
@media (max-width: 920px) { .demo-guide { position: static; } }
.demo-step {
  display: grid; grid-template-columns: 40px 1fr; gap: 14px; align-items: start;
  padding: 20px; border-radius: var(--radius-sm); cursor: pointer;
  border: 1px solid transparent;
  opacity: 0.55; transition: opacity var(--dur) var(--ease), background var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.demo-step.active { opacity: 1; background: var(--white); border-color: var(--border-soft); box-shadow: 0 18px 40px -34px rgba(10,59,54,0.4); }
.demo-step .sn {
  font-family: var(--font-mono); font-size: 12px; font-weight: 600; color: var(--gold-600);
  width: 30px; height: 30px; border-radius: 50%; background: var(--gold-50); border: 1px solid var(--border-gold);
  display: grid; place-items: center;
}
.demo-step.active .sn { background: var(--gold-500); color: var(--ink); border-color: var(--gold-500); }
.demo-step .st { font-family: var(--font-display); font-weight: 600; font-size: 16px; color: var(--ink); }
.demo-step .sd { font-size: 13px; color: var(--muted); line-height: 1.5; margin-top: 4px; }

/* device */
.demo-device-wrap {
  display: grid; place-items: center; padding: clamp(24px, 3vw, 48px);
  background: linear-gradient(160deg, var(--teal-tint), var(--gold-tint));
  border: 1px solid var(--border-soft); border-radius: var(--radius); min-height: 580px;
}
.device {
  width: 348px; max-width: 100%;
  background: #fff; border: 1px solid var(--border); border-radius: 30px; padding: 12px;
  box-shadow: 0 50px 90px -34px rgba(10,59,54,0.4), 0 0 0 1px rgba(255,255,255,0.6) inset;
}
.device-screen {
  background: var(--white); border-radius: 20px; overflow: hidden; min-height: 528px;
  display: flex; flex-direction: column; position: relative;
  border: 1px solid var(--border-soft);
}
.device-bar {
  display: flex; align-items: center; justify-content: space-between; padding: 13px 18px 7px;
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.08em; color: var(--faint);
}
.device-bar .dots { display: flex; gap: 5px; }
.device-bar .dots i { width: 5px; height: 5px; border-radius: 50%; background: var(--border); }

.screen-pane { display: none; padding: 6px 20px 22px; flex: 1; flex-direction: column; animation: paneIn 360ms var(--ease); }
.screen-pane.active { display: flex; }
@keyframes paneIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }

/* partner trigger */
.rp-context { display: flex; align-items: center; gap: 12px; padding: 14px 0 18px; border-bottom: 1px solid var(--border-soft); }
.rp-logo { width: 42px; height: 42px; border-radius: 11px; background: linear-gradient(135deg, var(--teal-400), var(--teal-600)); display: grid; place-items: center; font-family: var(--font-display); font-weight: 700; font-size: 18px; color: #fff; }
.rp-name { font-weight: 600; font-size: 15px; color: var(--ink); }
.rp-desc { font-size: 12px; color: var(--muted); }
.rp-hero { flex: 1; display: flex; flex-direction: column; justify-content: center; gap: 14px; padding: 24px 0; }
.rp-hero h4 { font-family: var(--font-display); font-weight: 600; font-size: 22px; letter-spacing: -0.02em; line-height: 1.2; color: var(--ink); }
.rp-hero p { font-size: 13px; color: var(--text); line-height: 1.55; }
.rp-form { display: grid; gap: 9px; margin-top: 4px; }
.rp-field { border: 1px solid var(--border); border-radius: 10px; padding: 12px 14px; font-size: 12px; color: var(--muted); background: var(--paper); }
.siwa-btn {
  width: 100%; display: flex; align-items: center; justify-content: center; gap: 10px;
  background: var(--teal-500); color: #fff;
  font-family: var(--font-ui); font-weight: 600; font-size: 14.5px;
  border: none; border-radius: 12px; padding: 15px; cursor: pointer;
  transition: background var(--dur) var(--ease), transform 60ms var(--ease);
}
.siwa-btn:hover { background: var(--teal-600); }
.siwa-btn:active { transform: scale(0.985); }
.siwa-btn svg { width: 15px; height: 18px; }
.rp-alt { text-align: center; font-size: 11px; color: var(--faint); margin-top: 12px; }

/* consent */
.consent-head { padding: 14px 0 16px; border-bottom: 1px solid var(--border-soft); }
.consent-brand { display: flex; align-items: center; gap: 9px; margin-bottom: 14px; }
.consent-brand svg { width: 15px; height: 18px; }
.consent-brand span { font-family: var(--font-display); font-weight: 600; letter-spacing: 0.16em; font-size: 12px; color: var(--ink); }
.consent-head h4 { font-family: var(--font-display); font-weight: 600; font-size: 19px; letter-spacing: -0.015em; line-height: 1.28; color: var(--ink); }
.consent-head h4 b { font-weight: 700; color: var(--gold-600); }
.consent-sub { font-size: 12px; color: var(--muted); margin-top: 8px; line-height: 1.5; }
.consent-you { display: flex; align-items: center; gap: 12px; padding: 14px 0; border-bottom: 1px solid var(--border-soft); }
.consent-avatar { width: 38px; height: 38px; border-radius: 50%; background: linear-gradient(135deg, var(--gold-500), var(--gold-700)); display: grid; place-items: center; font-family: var(--font-display); font-weight: 700; color: #fff; font-size: 15px; }
.consent-handle { font-weight: 600; font-size: 14px; color: var(--ink); }
.consent-did { font-family: var(--font-mono); font-size: 10.5px; color: var(--faint); }
.disclosure-title { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--faint); margin: 16px 0 8px; }
.claims { display: grid; gap: 8px; margin-bottom: 6px; }
.claim {
  display: flex; align-items: center; gap: 12px; padding: 12px 13px;
  border: 1px solid var(--border-soft); border-radius: 12px; background: var(--paper);
  cursor: pointer; user-select: none;
  transition: border-color var(--dur) var(--ease), background var(--dur) var(--ease), opacity var(--dur) var(--ease);
}
.claim.on { border-color: var(--border-gold); background: var(--gold-50); }
.claim.off { opacity: 0.5; }
.claim.locked { cursor: default; background: var(--teal-tint); border-color: var(--border-soft); }
.claim-icon { width: 30px; height: 30px; border-radius: 8px; flex-shrink: 0; background: var(--white); border: 1px solid var(--border-soft); display: grid; place-items: center; }
.claim-icon svg { width: 15px; height: 15px; stroke: var(--teal-500); fill: none; stroke-width: 1.6; }
.claim-text { flex: 1; min-width: 0; }
.claim-label { font-size: 13px; font-weight: 600; line-height: 1.25; color: var(--ink); }
.claim-value { font-size: 11.5px; color: var(--muted); margin-top: 2px; }
.claim-toggle { width: 38px; height: 22px; border-radius: 999px; flex-shrink: 0; background: #D5DAD8; position: relative; transition: background var(--dur) var(--ease); }
.claim.on .claim-toggle { background: var(--gold-500); }
.claim-toggle::after { content: ''; position: absolute; top: 2px; left: 2px; width: 18px; height: 18px; border-radius: 50%; background: #fff; transition: transform var(--dur) var(--ease); box-shadow: 0 1px 2px rgba(0,0,0,0.2); }
.claim.on .claim-toggle::after { transform: translateX(16px); }
.claim.locked .claim-toggle { background: var(--teal-500); }
.claim-req { font-family: var(--font-mono); font-size: 8.5px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--teal-400); }
.consent-foot { margin-top: auto; padding-top: 14px; display: grid; gap: 10px; }
.consent-privacy { font-size: 11px; color: var(--muted); line-height: 1.5; display: flex; gap: 8px; align-items: flex-start; }
.consent-privacy svg { width: 13px; height: 13px; flex-shrink: 0; margin-top: 2px; stroke: var(--teal-400); fill: none; stroke-width: 1.6; }
.consent-actions { display: grid; grid-template-columns: 1fr 1.6fr; gap: 9px; }
.c-btn { border-radius: 12px; padding: 13px; font-family: var(--font-ui); font-weight: 600; font-size: 13.5px; cursor: pointer; border: 1px solid transparent; transition: all var(--dur) var(--ease); }
.c-btn.decline { background: transparent; border-color: var(--border); color: var(--muted); }
.c-btn.decline:hover { color: var(--ink); border-color: var(--teal-500); }
.c-btn.approve { background: var(--teal-500); color: #fff; }
.c-btn.approve:hover { background: var(--teal-600); }

/* granted */
.granted { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; gap: 8px; padding: 20px 8px; }
.granted-check { width: 68px; height: 68px; margin-bottom: 6px; }
.granted-check circle { fill: none; stroke: var(--success); stroke-width: 2; stroke-dasharray: 176; stroke-dashoffset: 176; }
.granted-check path { fill: none; stroke: var(--success); stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; stroke-dasharray: 40; stroke-dashoffset: 40; }
.screen-pane.active .granted-check circle { animation: dash 600ms var(--ease) 120ms forwards; }
.screen-pane.active .granted-check path { animation: dash 320ms var(--ease) 500ms forwards; }
@keyframes dash { to { stroke-dashoffset: 0; } }
.granted h4 { font-family: var(--font-display); font-weight: 600; font-size: 22px; letter-spacing: -0.02em; color: var(--ink); }
.granted h4 b { font-weight: 700; color: var(--gold-600); }
.granted p { font-size: 13px; color: var(--text); line-height: 1.55; max-width: 30ch; }
.granted-receipt { margin-top: 16px; width: 100%; text-align: left; border: 1px solid var(--border-soft); border-radius: 12px; overflow: hidden; background: var(--paper); }
.receipt-row { display: flex; justify-content: space-between; gap: 12px; padding: 10px 14px; border-bottom: 1px solid var(--border-soft); font-family: var(--font-mono); font-size: 10.5px; }
.receipt-row:last-child { border-bottom: none; }
.receipt-row .rk { color: var(--faint); text-transform: uppercase; letter-spacing: 0.1em; }
.receipt-row .rv { color: var(--text); text-align: right; }
.receipt-row .rv.ok { color: var(--success); }
.granted-restart { margin-top: 16px; font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); background: transparent; border: 1px solid var(--border); padding: 10px 18px; border-radius: 999px; cursor: pointer; transition: all var(--dur) var(--ease); }
.granted-restart:hover { color: var(--ink); border-color: var(--teal-500); }

/* identity home */
.id-home { padding-top: 6px; }
.id-hero { display: flex; align-items: center; gap: 13px; padding: 14px 0 18px; border-bottom: 1px solid var(--border-soft); }
.id-hero .consent-avatar { width: 46px; height: 46px; font-size: 18px; }
.id-hero .consent-handle { font-size: 16px; }
.id-metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin: 16px 0; }
.id-metric { background: var(--paper); border: 1px solid var(--border-soft); border-radius: 12px; padding: 13px 10px; text-align: center; }
.id-metric .mv { font-family: var(--font-display); font-weight: 600; font-size: 22px; color: var(--gold-600); }
.id-metric .mk { font-family: var(--font-mono); font-size: 8.5px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--faint); margin-top: 4px; }
.id-list-title { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--faint); margin: 4px 0 8px; }
.id-att { display: flex; align-items: center; gap: 11px; padding: 11px 0; border-bottom: 1px solid var(--border-soft); }
.id-att:last-child { border-bottom: none; }
.id-att .claim-icon { width: 28px; height: 28px; }
.id-att .claim-icon svg { stroke: var(--teal-500); }
.id-att .a-name { font-size: 13px; font-weight: 600; color: var(--ink); }
.id-att .a-by { font-size: 11px; color: var(--muted); }
.id-att .a-badge { margin-left: auto; font-family: var(--font-mono); font-size: 8.5px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--teal-400); border: 1px solid var(--border); border-radius: 999px; padding: 3px 8px; }

.device-tabs { display: flex; gap: 8px; justify-content: center; margin-top: 22px; }
.device-tab {
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--muted); background: var(--white); border: 1px solid var(--border);
  padding: 9px 16px; border-radius: 999px; cursor: pointer; transition: all var(--dur) var(--ease);
}
.device-tab:hover { color: var(--ink); }
.device-tab.active { color: #fff; background: var(--teal-500); border-color: var(--teal-500); }

/* =============================================================================
   USE CASES
   ============================================================================= */
.cases { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 900px) { .cases { grid-template-columns: 1fr; } }
.case {
  background: var(--white); border: 1px solid var(--border-soft); border-radius: var(--radius);
  padding: clamp(28px, 3vw, 40px); display: grid; gap: 18px; align-content: start;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.case:hover { transform: translateY(-4px); box-shadow: 0 30px 60px -42px rgba(10,59,54,0.4); }
.case-tag { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold-600); }
.case-quote { font-family: var(--font-display); font-weight: 400; font-size: clamp(18px, 1.9vw, 21px); line-height: 1.42; letter-spacing: -0.01em; color: var(--ink); text-wrap: pretty; }
.case-quote b { color: var(--gold-600); font-weight: 600; }
.case-who { margin-top: auto; padding-top: 18px; border-top: 1px solid var(--border-soft); display: flex; align-items: center; gap: 12px; }
.case-avatar { width: 36px; height: 36px; border-radius: 50%; flex-shrink: 0; background: linear-gradient(140deg, var(--teal-400), var(--teal-600)); display: grid; place-items: center; font-family: var(--font-display); font-weight: 700; font-size: 15px; color: #fff; }
.case-who .cn { font-size: 13.5px; font-weight: 600; color: var(--ink); }
.case-who .cl { font-size: 11.5px; color: var(--muted); }

/* =============================================================================
   TRUST
   ============================================================================= */
.trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(22px, 3vw, 44px); }
@media (max-width: 900px) { .trust-grid { grid-template-columns: 1fr; } }
.trust-item { display: grid; gap: 14px; align-content: start; }
.trust-item .glyph-chip { width: 54px; height: 54px; border-radius: 16px; background: var(--white); border: 1px solid var(--border-soft); display: grid; place-items: center; box-shadow: 0 8px 20px -12px rgba(10,59,54,0.3); }
.trust-item .glyph { width: 28px; height: 28px; stroke: var(--gold-600); fill: none; stroke-width: 1.4; }
.trust-item h3 { font-family: var(--font-display); font-weight: 600; font-size: 21px; letter-spacing: -0.015em; color: var(--ink); }
.trust-item p { font-size: 15px; color: var(--text); line-height: 1.6; }
.trust-item .lnk { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); display: inline-flex; align-items: center; gap: 7px; margin-top: 2px; transition: color var(--dur) var(--ease); }
.trust-item .lnk:hover { color: var(--gold-600); }

/* =============================================================================
   BUILDERS, deep teal full-bleed CTA band
   ============================================================================= */
.builders {
  background:
    radial-gradient(80% 120% at 90% 10%, rgba(200,155,60,0.16), transparent 55%),
    linear-gradient(160deg, var(--teal-500), var(--teal-700));
  color: #EAF2F0;
}
.builders-inner { display: grid; grid-template-columns: 1.2fr 1fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
@media (max-width: 860px) { .builders-inner { grid-template-columns: 1fr; } }
.builders .eyebrow { color: var(--gold-200); }
.builders h2 { font-family: var(--font-display); font-weight: 300; font-size: clamp(28px, 3.6vw, 46px); letter-spacing: -0.03em; line-height: 1.06; color: #fff; text-wrap: balance; margin-top: 16px; }
.builders h2 strong { font-weight: 700; color: var(--gold-400); }
.builders > .wrap > .builders-inner > div > p { font-size: 16.5px; color: #C6DAD5; line-height: 1.6; margin-top: 20px; max-width: 46ch; }
.builders-links { display: grid; gap: 10px; }
.builders-link {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); border-radius: var(--radius-sm);
  padding: 20px 24px; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  transition: background var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.builders-link:hover { background: rgba(255,255,255,0.11); transform: translateX(3px); }
.builders-link .bl-name { font-family: var(--font-display); font-weight: 600; font-size: 16px; color: #fff; }
.builders-link .bl-desc { font-size: 12.5px; color: #A9C4BE; margin-top: 3px; }
.builders-link .arr { color: var(--gold-400); font-size: 18px; transition: transform var(--dur) var(--ease); }
.builders-link:hover .arr { transform: translateX(4px); }

/* =============================================================================
   FOOTER
   ============================================================================= */
.ftr { background: var(--cream); border-top: 1px solid var(--border-soft); padding: clamp(56px, 6vw, 84px) 0 40px; }
.ftr-top { display: grid; grid-template-columns: 1.4fr repeat(4, 1fr); gap: 36px; padding-bottom: 44px; border-bottom: 1px solid var(--border); }
@media (max-width: 820px) { .ftr-top { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 520px) { .ftr-top { grid-template-columns: 1fr; } }
.ftr-brand .brand { margin-bottom: 16px; }
.ftr-brand p { font-size: 14px; color: var(--muted); line-height: 1.6; max-width: 36ch; }
.ftr-col h5 { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--faint); margin-bottom: 15px; }
.ftr-col a { display: block; font-size: 14px; color: var(--text); padding: 5px 0; transition: color var(--dur) var(--ease); }
.ftr-col a:hover { color: var(--gold-600); }
.ftr-bottom { padding-top: 26px; display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--faint); }
.ftr-bottom .langs { display: flex; gap: 14px; }
.ftr-bottom .langs span { color: var(--muted); }
.ftr-bottom .langs span.on { color: var(--gold-600); }

/* reveal */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 700ms var(--ease), transform 700ms var(--ease); }
.reveal.in { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  * { scroll-behavior: auto; }
}

.ftr-social { display: inline-flex; align-items: center; }
.ftr-social a { display: inline-flex; align-items: center; gap: 7px; color: var(--muted);
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.04em; text-transform: none;
  transition: color var(--dur) var(--ease); }
.ftr-social a:hover { color: var(--gold-600); }
.ftr-social svg { display: block; }
