/* ═══════════════════════════════════════════════════════════════
   DESIGN TOKENS — single source of truth, never override below
   ═══════════════════════════════════════════════════════════════ */
:root {
  --bg:            #fffbf5;
  --bg2:           #fff7ed;
  --surface:       #ffffff;
  --surface-soft:  #fffaf3;
  --text:          #1c0a00;
  --muted:         #6f4e37;
  --dimmed:        #9a7358;
  --border:        rgba(28,10,0,0.08);
  --border-strong: rgba(28,10,0,0.14);
  --primary:       #1e3a5f;
  --primary-dark:  #172f4d;
  --primary-soft:  #dbe7f5;
  --accent:        #ea580c;
  --accent-dark:   #c2410c;
  --accent-soft:   #ffedd5;
  --success-bg:    #ffedd5;
  --success-text:  #c2410c;
  --red:           #dc2626;
  --yellow:        #d97706;
  --shadow:        0 10px 30px rgba(28,10,0,0.06);
  --shadow-strong: 0 24px 70px rgba(28,10,0,0.10);
  --radius:        24px;
  --container:     1180px;
}

/* ── RESET ───────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html  { scroll-behavior: smooth; }
body  { margin:0; background:var(--bg); color:var(--text); font-family:Inter,system-ui,sans-serif; line-height:1.6; -webkit-font-smoothing:antialiased; }
a     { color:inherit; text-decoration:none; }
button, input { font:inherit; }
p     { color:var(--muted); }
.container { width:min(100% - 40px, var(--container)); margin-inline:auto; }

/* ── NAVBAR ──────────────────────────────────────────────────── */
.navbar { position:sticky; top:0; z-index:100; background:rgba(255,251,245,0.92); backdrop-filter:blur(14px); border-bottom:1px solid var(--border); }
.nav-inner { height:84px; display:flex; align-items:center; justify-content:space-between; gap:24px; }
.brand { display:flex; align-items:center; gap:12px; font-weight:800; letter-spacing:-0.03em; }
.brand-logo { width:38px; height:38px; border-radius:12px; background:var(--accent); color:#fff; display:grid; place-items:center; font-size:13px; box-shadow:0 10px 24px rgba(234,88,12,0.22); flex:0 0 auto; }
.nav-links { display:flex; gap:32px; }
.nav-links a { color:var(--muted); font-size:14px; font-weight:600; }
.nav-links a:hover { color:var(--accent); }
.nav-right { display:flex; align-items:center; gap:18px; }
.mobile-toggle { display:none; width:42px; height:42px; border:1px solid var(--border); border-radius:14px; background:var(--surface); cursor:pointer; }
.mobile-toggle span { display:block; width:20px; height:2px; background:var(--text); margin:5px auto; }
.lang-toggle { display:flex; padding:4px; background:var(--surface); border:1px solid var(--border); border-radius:999px; }
.lang-btn { border:0; background:transparent; height:34px; padding-inline:14px; border-radius:999px; cursor:pointer; font-weight:700; color:var(--muted); }
.lang-btn.active { background:var(--accent-soft); color:var(--accent-dark); }

/* ── BUTTONS ─────────────────────────────────────────────────── */
.btn { min-height:48px; border:0; padding:0 22px; border-radius:999px; font-weight:700; cursor:pointer; display:inline-flex; align-items:center; justify-content:center; transition:transform .2s ease, box-shadow .2s ease, background .2s ease; white-space:nowrap; }
.btn:hover { transform:translateY(-1px); }
.btn-primary { background:var(--accent); color:#fff; box-shadow:0 12px 26px rgba(234,88,12,0.22); }
.btn-primary:hover { background:var(--accent-dark); box-shadow:0 14px 30px rgba(194,65,12,0.28); }
.btn-secondary { background:var(--surface); border:1px solid var(--border-strong); color:var(--text); }

/* ── HERO ────────────────────────────────────────────────────── */
.hero { padding:96px 0 78px; }
.hero-grid { display:grid; grid-template-columns:1fr .95fr; gap:70px; align-items:center; }
.hero-badge { display:inline-flex; align-items:center; gap:10px; padding:10px 16px; border-radius:999px; background:#fff; border:1px solid rgba(234,88,12,0.18); font-size:14px; color:var(--primary-dark); box-shadow:0 4px 16px rgba(28,10,0,0.035); }
.hero-dot { width:8px; height:8px; border-radius:50%; background:var(--accent); }

/* headline: max-width constrains line length regardless of container */
h1 { margin:28px 0 24px; font-size:clamp(36px,4.4vw,58px); line-height:1.04; letter-spacing:-0.05em; max-width:660px; }

.hero-sub { max-width:600px; font-size:18px; line-height:1.75; color:var(--muted); }
.hero-privacy { display:inline-flex; align-items:center; width:fit-content; margin:18px 0 0; padding:10px 14px; border:1px solid rgba(234,88,12,0.26); border-radius:999px; background:var(--accent-soft); color:var(--accent-dark); font-size:13px; font-weight:800; letter-spacing:0.04em; text-transform:uppercase; }
.hero-actions { display:flex; gap:14px; margin-top:34px; flex-wrap:wrap; }
.hero-trust { display:flex; flex-wrap:wrap; gap:10px; margin-top:28px; }
.hero-trust span { padding:8px 12px; border-radius:999px; background:var(--surface); border:1px solid var(--border); font-size:13px; color:var(--muted); }

/* preview window */
.preview-window { background:var(--surface); border:1px solid var(--border); border-radius:30px; padding:22px; box-shadow:var(--shadow-strong); }
.window-top { display:flex; justify-content:space-between; align-items:center; margin-bottom:18px; gap:16px; }
.window-dots { display:flex; gap:6px; }
.window-dots span { width:10px; height:10px; border-radius:50%; background:#e7d7cc; }
.preview-card, .soep-box, .ttl-box { border:1px solid var(--border); border-radius:22px; padding:18px; background:#fffaf5; }
.preview-card, .ttl-box { display:flex; justify-content:space-between; align-items:center; gap:14px; }
.label { margin:0 0 4px; font-size:11px; color:var(--dimmed); letter-spacing:.08em; font-weight:700; text-transform:uppercase; }
.status { padding:7px 10px; border-radius:999px; font-size:12px; font-weight:700; }
.success, .warning { background:var(--success-bg); color:var(--success-text); }
.workflow-progress { display:flex; align-items:flex-start; margin:20px 0 0; }
.step-wrap { display:flex; flex-direction:column; align-items:center; gap:6px; flex-shrink:0; }

.step {
  width:36px; height:36px; border-radius:50%;
  display:grid; place-items:center;
  border:1px solid var(--border);
  color:var(--muted); background:var(--surface);
  font-weight:700;
  transition: background .4s ease, border-color .4s ease, color .4s ease, box-shadow .4s ease;
}
.step.done {
  background:var(--accent-soft);
  color:var(--accent-dark);
  border-color:rgba(234,88,12,0.24);
}
.step.current {
  background:var(--accent);
  color:#fff;
  border-color:var(--accent);
  box-shadow:0 0 0 4px rgba(234,88,12,0.18);
  animation: step-pulse 1.8s ease-in-out infinite;
}
@keyframes step-pulse {
  0%,100% { box-shadow:0 0 0 4px rgba(234,88,12,0.18); }
  50%      { box-shadow:0 0 0 7px rgba(234,88,12,0.08); }
}

.step-label {
  font-size:10.5px; font-weight:600;
  color:var(--dimmed); white-space:nowrap;
  letter-spacing:0.01em;
  transition:color .3s;
}
.step-label.active-label { color:var(--accent-dark); font-weight:700; }

.line {
  flex:1; height:1px;
  background:var(--border);
  margin-top:18px;
  transition:background .5s ease;
}
.line.done { background:rgba(234,88,12,0.34); }

/* animated description under stepper */
.step-desc {
  min-height:36px;
  margin:14px 0 18px;
  font-size:13px;
  color:var(--muted);
  line-height:1.55;
  text-align:center;
  opacity:1;
  transition:opacity .3s ease;
}
.step-desc.fade { opacity:0; }
.soep-head { display:flex; justify-content:space-between; align-items:center; gap:16px; margin-bottom:18px; }
.soep-lines span { display:block; height:10px; margin-bottom:12px; border-radius:999px; background:rgba(28,10,0,.08); }
.soep-lines span:nth-child(2){ width:82%; } .soep-lines span:nth-child(3){ width:66%; } .soep-lines span:nth-child(4){ width:48%; }
.ttl-box { margin-top:18px; }
.ttl-icon { font-size:24px; color:var(--accent); }

/* ── SECTIONS ────────────────────────────────────────────────── */
.section { padding:110px 0; }
.alt-section { background:var(--bg2); }
.section-head { margin-bottom:42px; }
.center { text-align:center; }
.section-kicker { margin:0 0 12px; color:var(--accent); font-size:13px; font-weight:800; text-transform:uppercase; letter-spacing:.04em; }

/* section title — max-width prevents runaway wide lines */
h2 { font-size:clamp(26px,2.6vw,38px); line-height:1.1; letter-spacing:-0.035em; margin:0; max-width:700px; }
.center h2 { margin-inline:auto; }
h3 { line-height:1.2; letter-spacing:-0.025em; }
.section-sub { margin:20px 0 0; color:var(--muted); font-size:17px; max-width:680px; }
.center .section-sub { margin-inline: auto; }

/* ── CARDS ───────────────────────────────────────────────────── */
.cards-grid, .workflow-grid { display:grid; gap:18px; grid-template-columns:repeat(4,1fr); }
.card, .workflow-card, .role-card, .architecture-card { background:var(--surface); border:1px solid var(--border); border-radius:var(--radius); padding:28px; box-shadow:0 6px 18px rgba(28,10,0,.035); }
.card:hover, .workflow-card:hover, .role-card:hover, .architecture-card:hover { border-color:rgba(234,88,12,0.24); }
.card h3, .workflow-card h3, .role-card h3, .architecture-card h3 { margin-top:0; }
.workflow-card span { color:var(--accent); font-weight:800; }
.role-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:18px; }
.role-card { border-radius:26px; padding:32px; }
.role-card span { display:inline-flex; margin-bottom:18px; color:var(--accent); font-weight:800; }

/* ── SPLIT + PRINCIPLES ──────────────────────────────────────── */
.split-grid { display:grid; grid-template-columns:.9fr 1.1fr; gap:70px; align-items:start; }
.principle-list { background:var(--surface); border:1px solid var(--border); border-radius:28px; overflow:hidden; box-shadow:var(--shadow); }
.principle-row { display:grid; grid-template-columns:.75fr 1fr; gap:24px; padding:24px; border-bottom:1px solid var(--border); }
.principle-row:last-child { border-bottom:0; }
.principle-row strong { color:var(--primary-dark); }
.principle-row span { color:var(--muted); }

/* ── ARCHITECTURE ────────────────────────────────────────────── */
.architecture-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:18px; }
.architecture-card { min-height:210px; }

/* ── SECURITY ────────────────────────────────────────────────── */
.security-grid { display:grid; grid-template-columns:1fr 1fr; gap:70px; align-items:center; }
.security-panel { background:var(--surface); border:1px solid var(--border); border-radius:28px; overflow:hidden; box-shadow:var(--shadow); }
.security-row { display:flex; justify-content:space-between; gap:24px; padding:22px; border-bottom:1px solid var(--border); color:var(--muted); }
.security-row:last-child { border-bottom:0; }
.security-row strong { color:var(--primary-dark); text-align:right; }

/* ── CONSOLE ─────────────────────────────────────────────────── */
.preview-grid { display:grid; grid-template-columns:1fr 1fr; gap:70px; align-items:center; }
.console-panel { background:var(--surface); border:1px solid var(--border); border-radius:30px; padding:22px; overflow:hidden; box-shadow:var(--shadow-strong); }
.console-header { display:flex; justify-content:space-between; align-items:center; margin-bottom:18px; }
.console-layout { display:grid; grid-template-columns:.9fr 1.1fr; gap:16px; }
.console-list { display:grid; gap:10px; }
.console-list button { border:1px solid var(--border); background:var(--surface-soft); border-radius:18px; padding:16px; text-align:left; cursor:pointer; }
.console-list button.selected { background:var(--accent-soft); border-color:rgba(234,88,12,0.24); }
.console-list button strong { display:block; color:var(--text); }
.console-list button span { display:block; margin-top:4px; color:var(--muted); font-size:13px; }
.console-detail { border:1px solid var(--border); background:var(--surface-soft); border-radius:22px; padding:20px; }
.draft-line { height:10px; border-radius:999px; background:rgba(28,10,0,.08); margin:12px 0; }
.draft-line.short { width:56%; }
.review-note { margin-top:24px; padding:16px; border-radius:18px; background:var(--accent-soft); color:var(--accent-dark); font-weight:600; font-size:14px; }

/* ── FAQ ─────────────────────────────────────────────────────── */
.faq-wrap { max-width:860px; }
.faq-list { display:grid; gap:14px; }
.faq-item { background:var(--surface); border:1px solid var(--border); border-radius:22px; overflow:hidden; }
.faq-item button { width:100%; background:transparent; border:0; padding:22px; display:flex; justify-content:space-between; gap:18px; cursor:pointer; font-size:16px; font-weight:700; color:var(--text); text-align:left; }
.faq-item p { display:none; padding:0 22px 22px; color:var(--muted); margin:0; }
.faq-item.open p { display:block; }
.faq-item.open strong { transform:rotate(45deg); }
.faq-item strong { color:var(--accent); transition:transform .2s ease; }

/* ── COMPLIANCE ──────────────────────────────────────────────── */
.compliance-box { background:var(--surface); border:1px solid var(--border); border-radius:32px; padding:46px; display:grid; grid-template-columns:1fr .8fr; gap:50px; align-items:center; box-shadow:var(--shadow); }
.compliance-tags { display:flex; flex-wrap:wrap; gap:12px; }
.compliance-tags span { padding:10px 14px; border-radius:999px; background:var(--surface-soft); border:1px solid var(--border); color:var(--muted); font-weight:700; font-size:13px; }

/* ── CTA / WAITLIST ──────────────────────────────────────────── */
.cta-box { background:var(--surface); border:1px solid var(--border); border-radius:30px; padding:48px; box-shadow:var(--shadow); }
.cta-box-pilot { display:grid; grid-template-columns:1fr 1.4fr; gap:56px; align-items:start; }
.pilot-perks { list-style:none; padding:0; margin:22px 0 0; display:grid; gap:10px; }
.pilot-perks li { display:flex; align-items:center; gap:9px; font-size:14px; font-weight:600; color:var(--text); }
.pilot-perks li::before { content:''; width:16px; height:16px; border-radius:50%; flex-shrink:0; background:var(--accent-soft); border:1.5px solid rgba(234,88,12,0.3); background-image:url("data:image/svg+xml,%3Csvg width='9' height='7' viewBox='0 0 9 7' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 3.5L3 5.5L8 1' stroke='%23ea580c' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); background-repeat:no-repeat; background-position:center; }
.pilot-form { display:grid; gap:14px; }
.pilot-row { display:grid; grid-template-columns:1fr 1fr; gap:12px; }
.pilot-field { display:flex; flex-direction:column; gap:6px; }
.pilot-field-full { grid-column:1/-1; }
.pilot-field label { font-size:13px; font-weight:700; color:var(--text); }
.field-optional { font-weight:400; color:var(--dimmed); font-size:12px; }
.pilot-field input, .pilot-field select, .pilot-field textarea { height:46px; border-radius:14px; border:1px solid var(--border-strong); padding:0 14px; background:var(--surface-soft); color:var(--text); font-size:14px; font-family:inherit; outline:none; transition:border-color .2s, box-shadow .2s; appearance:none; -webkit-appearance:none; }
.pilot-field select { background-image:url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L5 5L9 1' stroke='%239a7358' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); background-repeat:no-repeat; background-position:right 14px center; padding-right:36px; cursor:pointer; }
.pilot-field textarea { height:auto; padding:12px 14px; resize:vertical; min-height:80px; }
.pilot-field input:focus, .pilot-field select:focus, .pilot-field textarea:focus { outline:none; border-color:rgba(234,88,12,0.45); box-shadow:0 0 0 3px rgba(234,88,12,0.10); }
.pilot-field input::placeholder, .pilot-field textarea::placeholder { color:var(--dimmed); }
.pilot-submit-row { display:flex; align-items:center; gap:16px; margin-top:4px; }
.pilot-note { margin:0; font-size:13px; color:var(--dimmed); }
.form-message { min-height:20px; margin:0; font-size:14px; color:var(--accent); }

/* ── FOOTER ──────────────────────────────────────────────────── */
.footer { padding:44px 0; border-top:1px solid var(--border); background:var(--bg2); }
.footer-grid { display:grid; grid-template-columns:1fr 1fr; gap:40px; align-items:start; }
.footer-links { display:flex; gap:18px; flex-wrap:wrap; justify-content:flex-end; }
.footer-links a { color:var(--muted); font-weight:600; font-size:14px; }
.footer-links a:hover { color:var(--accent); }
.footer-note { margin:18px 0 0; color:var(--muted); font-size:13px; }

/* ── REVEAL ──────────────────────────────────────────────────── */
.reveal { opacity:0; transform:translateY(16px); transition:opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity:1; transform:translateY(0); }

/* ── RESPONSIVE ──────────────────────────────────────────────── */
@media (max-width:1080px) {
  .nav-links { display:none; }
  .mobile-toggle { display:block; }
  .nav-links.open { position:absolute; top:74px; left:20px; right:20px; display:grid; gap:4px; padding:14px; background:var(--surface); border:1px solid var(--border); border-radius:22px; box-shadow:var(--shadow); }
  .nav-links.open a { padding:12px; }
  .hero-grid, .security-grid, .preview-grid, .split-grid, .compliance-box, .cta-box { grid-template-columns:1fr; }
  .cards-grid, .workflow-grid { grid-template-columns:repeat(2,1fr); }
  .role-grid, .architecture-grid { grid-template-columns:repeat(2,1fr); }
  .console-layout { grid-template-columns:1fr; }
}
@media (max-width:768px) {
  .container { width:min(100% - 28px, var(--container)); }
  .nav-inner { height:74px; }
  .nav-cta { display:none; }
  .hero { padding:70px 0 54px; }
  h1 { font-size:clamp(32px,10vw,50px); }
  h2 { font-size:clamp(22px,7vw,32px); }
  .hero-actions { flex-direction:column; }
  .pilot-row { grid-template-columns:1fr; }
  .cta-box-pilot { grid-template-columns:1fr; gap:28px; }
  .pilot-submit-row { flex-direction:column; align-items:flex-start; }
  .cards-grid, .workflow-grid, .role-grid, .architecture-grid { grid-template-columns:1fr; }
  .principle-row { grid-template-columns:1fr; gap:8px; }
  .compliance-box, .cta-box { padding:24px 22px; }
  .footer-grid { grid-template-columns:1fr; }
  .footer-links { justify-content:flex-start; }
}
@media (max-width:520px) {
  .nav-right { gap:8px; }
  .lang-btn { padding-inline:10px; }
  .preview-card, .ttl-box, .soep-head, .security-row, .console-header { align-items:flex-start; flex-direction:column; }
}

/* ── SOEP fields in hero preview ─────────────────────────────── */
.soep-fields {
  display: grid;
  gap: 9px;
}
.soep-field {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  align-items: baseline;
}
.soep-key {
  font-size: 11px;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: 0.04em;
  padding-top: 1px;
}
.soep-val {
  font-size: 12.5px;
  color: var(--muted);
  line-height: 1.55;
}

/* ═══════════════════════════════════════════════════════════════
   READING PROGRESS BAR
   ═══════════════════════════════════════════════════════════════ */
#reading-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: var(--accent);
  z-index: 300;
  transition: width .08s linear;
  border-radius: 0 2px 2px 0;
}

/* ═══════════════════════════════════════════════════════════════
   HERO PRIVACY PILL — subtle pulse to catch the eye
   ═══════════════════════════════════════════════════════════════ */
.hero-privacy {
  animation: privacy-pulse 3.5s ease-in-out 1.2s infinite;
}
@keyframes privacy-pulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(234,88,12,0); }
  50%      { box-shadow: 0 0 0 6px rgba(234,88,12,0.12); }
}

/* ═══════════════════════════════════════════════════════════════
   LIVE COUNTER
   ═══════════════════════════════════════════════════════════════ */
.hero-counter {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  font-size: 13px;
  color: var(--dimmed);
}
.hero-counter strong {
  color: var(--accent-dark);
  font-size: 15px;
  font-variant-numeric: tabular-nums;
}
.hero-counter-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--accent);
  animation: privacy-pulse 2s ease-in-out infinite;
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════════════════
   LINK FLOW SECTION — "One link. That's it."
   ═══════════════════════════════════════════════════════════════ */
.link-flow-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.link-flow-list {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
  display: grid;
  gap: 12px;
}
.link-flow-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: var(--text);
  font-weight: 500;
}
.link-flow-list li::before {
  content: '';
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--accent-soft);
  border: 1.5px solid rgba(234,88,12,0.3);
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='8' viewBox='0 0 10 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 4L3.5 6.5L9 1' stroke='%23ea580c' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

/* phone mockup card */
.phone-wrap { display: flex; justify-content: center; }

.phone-card {
  width: 100%;
  max-width: 360px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow-strong);
}
.phone-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 20px 14px;
  border-bottom: 1px solid var(--border);
}
.phone-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 12px;
  font-weight: 800;
  flex-shrink: 0;
}
.phone-sender {
  display: flex;
  flex-direction: column;
  gap: 1px;
  flex: 1;
}
.phone-sender strong { font-size: 14px; color: var(--text); }
.phone-sender span   { font-size: 12px; color: var(--dimmed); }
.phone-time          { font-size: 12px; color: var(--dimmed); white-space: nowrap; }

.phone-messages {
  padding: 18px 20px;
  display: grid;
  gap: 10px;
}
.phone-bubble {
  background: var(--surface-soft);
  border: 1px solid var(--border);
  border-radius: 18px 18px 18px 4px;
  padding: 12px 16px;
}
.phone-bubble p { margin: 0; font-size: 13.5px; color: var(--text); line-height: 1.55; }

.phone-bubble-link {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--accent-soft);
  border-color: rgba(234,88,12,0.2);
}
.phone-link-icon { font-size: 18px; flex-shrink: 0; }
.phone-link-url  { display: block; font-size: 13px; font-weight: 700; color: var(--accent-dark); font-family: monospace; word-break: break-all; }
.phone-link-meta { display: block; font-size: 11.5px; color: var(--muted); margin-top: 3px; }

.phone-footer {
  padding: 12px 20px;
  border-top: 1px solid var(--border);
  font-size: 12px;
  color: var(--dimmed);
  text-align: center;
  background: var(--bg);
}

.soep-field-draft .soep-key { opacity: 0.5; }
.soep-field-draft .soep-val { color: var(--dimmed); font-style: italic; }
.soep-approve-bar {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}
.soep-approve-hint {
  font-size: 12px;
  color: var(--dimmed);
  font-weight: 600;
}

/* ═══════════════════════════════════════════════════════════════
   AHA MOMENT — sessionCode layout
   ═══════════════════════════════════════════════════════════════ */
.aha-code-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: center;
  margin-top: 42px;
}
.aha-phone-label, .aha-phone-label + * {
  font-size: 12px;
  font-weight: 700;
  color: var(--dimmed);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 10px;
}
.aha-sms-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.aha-sms-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px 10px;
  border-bottom: 1px solid var(--border);
}
.aha-sms-avatar {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 10px;
  font-weight: 800;
  flex-shrink: 0;
}
.aha-sms-header strong { font-size: 13px; color: var(--text); display: block; }
.aha-sms-header span   { font-size: 11px; color: var(--dimmed); }
.aha-sms-time { font-size: 11px; color: var(--dimmed); margin-left: auto; white-space: nowrap; }
.aha-sms-bubble {
  margin: 12px 14px 0;
  background: var(--surface-soft);
  border: 1px solid var(--border);
  border-radius: 14px 14px 14px 4px;
  padding: 10px 13px;
}
.aha-sms-bubble p { margin: 0; font-size: 13px; color: var(--text); line-height: 1.55; }
.aha-sms-link {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 8px 14px 14px;
  background: var(--accent-soft);
  border: 1px solid rgba(234,88,12,0.2);
  border-radius: 12px;
  padding: 10px 13px;
}
.aha-sms-lock { font-size: 16px; flex-shrink: 0; }
.aha-sms-url  { display: block; font-size: 12px; font-weight: 700; color: var(--accent-dark); font-family: monospace; word-break: break-all; }
.aha-sms-meta { display: block; font-size: 11px; color: var(--muted); margin-top: 2px; }

.aha-code-display {
  margin-top: 12px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 20px;
  text-align: center;
  box-shadow: var(--shadow);
}
.aha-code-label { font-size: 11px; font-weight: 700; color: var(--dimmed); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 8px; }
.aha-code-value {
  font-size: 34px;
  font-weight: 800;
  letter-spacing: 0.18em;
  color: var(--text);
  font-family: 'SF Mono', 'Fira Mono', monospace;
  text-transform: uppercase;
}
.aha-code-sub { font-size: 11px; color: var(--dimmed); margin-top: 6px; }

.aha-doctor-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow);
}
.aha-sms-translation {
  margin: 8px 0 0;
  padding-top: 8px;
  border-top: 1px solid var(--border);
  font-size: 12px;
  color: var(--dimmed);
  font-style: italic;
  line-height: 1.55;
}
.aha-symptoms-card {
  margin-top: 10px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: var(--shadow);
}
.aha-symptoms-header, .aha-symptoms-divider {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  color: var(--dimmed);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.aha-symptoms-header { margin-bottom: 10px; }
.aha-symptoms-divider { margin: 12px 0 8px; }
.aha-symptoms-pl {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.65;
  color: var(--text);
  font-style: italic;
}
.aha-symptoms-nl {
  margin: 0;
  font-size: 12.5px;
  line-height: 1.6;
  color: var(--dimmed);
}
.aha-lang-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px; height: 26px;
  border-radius: 6px;
  background: var(--accent-soft);
  color: var(--accent-dark);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
  flex-shrink: 0;
}
.aha-lang-nl {
  background: var(--primary-soft);
  color: var(--primary-dark);
}
.aha-doctor-input-label { font-size: 12px; font-weight: 700; color: var(--dimmed); text-transform: uppercase; letter-spacing: 0.06em; display: block; margin-bottom: 6px; }
.aha-doctor-input-field {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--bg2);
  border: 1.5px solid var(--accent);
  border-radius: 10px;
  padding: 10px 14px;
  box-shadow: 0 0 0 3px rgba(234,88,12,0.1);
}
.aha-doctor-code {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0.16em;
  color: var(--text);
  font-family: 'SF Mono', 'Fira Mono', monospace;
  text-transform: uppercase;
}
.aha-doctor-enter {
  font-size: 18px;
  color: var(--accent);
  font-weight: 700;
}
.soep-fields-interactive { display: grid; gap: 0; }
.soep-field-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 11px 0;
  border-bottom: 1px solid var(--border);
}
.soep-field-row:last-child { border-bottom: 0; }
.soep-field-content {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  flex: 1;
  min-width: 0;
}
.soep-copy-btn {
  flex-shrink: 0;
  height: 28px;
  padding: 0 10px;
  border: 1px solid var(--border-strong);
  border-radius: 6px;
  background: var(--surface);
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
  transition: background .15s, color .15s, border-color .15s;
  white-space: nowrap;
}
.soep-copy-btn:hover { background: var(--accent-soft); color: var(--accent-dark); border-color: rgba(234,88,12,0.3); }
.soep-approve-row {
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.soep-approve-btn {
  width: 100%;
  min-height: 42px;
  border: 0;
  border-radius: 10px;
  background: var(--accent);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: background .2s;
}
.soep-approve-btn:hover { background: var(--accent-dark); }
.soep-approve-note {
  font-size: 11px;
  color: var(--dimmed);
  text-align: center;
}
.aha-review-badge {
  margin-top: 14px;
  padding: 10px 14px;
  background: var(--accent-soft);
  border: 1px solid rgba(234,88,12,0.2);
  border-radius: 10px;
  font-size: 12px;
  font-weight: 700;
  color: var(--accent-dark);
}
.aha-arrow {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 0 8px;
}
.aha-arrow-icon { font-size: 28px; color: var(--accent); }
.aha-arrow-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--dimmed);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  white-space: nowrap;
}

/* ═══════════════════════════════════════════════════════════════
   6-STEP FLOW
   ═══════════════════════════════════════════════════════════════ */
.flow-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 42px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.flow-step {
  display: flex;
  gap: 16px;
  padding: 26px 24px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.flow-step:nth-child(3n) { border-right: 0; }
.flow-step:nth-child(4),
.flow-step:nth-child(5),
.flow-step:nth-child(6) { border-bottom: 0; }
.flow-step-num {
  font-size: 11px;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: 0.06em;
  flex-shrink: 0;
  margin-top: 2px;
}
.flow-step-body strong { display: block; font-size: 15px; color: var(--text); margin-bottom: 6px; letter-spacing: -0.01em; }
.flow-step-body p { margin: 0; font-size: 13.5px; color: var(--muted); line-height: 1.6; }

@media (max-width: 900px) {
  .aha-code-grid { grid-template-columns: 1fr; }
  .aha-arrow { flex-direction: row; justify-content: center; padding: 8px 0; }
  .aha-arrow-icon { transform: rotate(90deg); }
  .flow-steps { grid-template-columns: 1fr; }
  .flow-step { border-right: 0; }
  .flow-step:nth-child(6) { border-bottom: 0; }
  .flow-step:nth-child(3) { border-bottom: 1px solid var(--border); }
}

/* ═══════════════════════════════════════════════════════════════
   FULL CYCLE SECTION
   ═══════════════════════════════════════════════════════════════ */
.cycle-track {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.cycle-step {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 24px;
  padding: 32px 0;
  border-bottom: 1px solid var(--border);
}
.cycle-step:last-child { border-bottom: 0; }
.cycle-step-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  padding-top: 2px;
}
.cycle-num {
  font-size: 13px;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: 0.06em;
}
.cycle-num-final {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 13px;
}
.cycle-role {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
}
.cycle-role-reception { background: var(--primary-soft); color: var(--primary-dark); }
.cycle-role-patient   { background: #e8f5e9; color: #2e7d32; }
.cycle-role-ai        { background: var(--accent-soft); color: var(--accent-dark); }
.cycle-role-doctor    { background: #fff3e0; color: #e65100; }
.cycle-role-system    { background: var(--surface); color: var(--dimmed); border: 1px solid var(--border); }

.cycle-step-content { display: flex; flex-direction: column; gap: 8px; }
.cycle-step-content > strong { font-size: 17px; color: var(--text); letter-spacing: -0.02em; }
.cycle-step-content > p { margin: 0; font-size: 15px; color: var(--muted); line-height: 1.65; max-width: 620px; }

.cycle-connector { height: 0; }

.cycle-visual { margin-top: 16px; }

/* SMS mini */
.cycle-sms-mini {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  max-width: 480px;
  box-shadow: var(--shadow);
}
.cycle-sms-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-bottom: 1px solid var(--border);
  font-size: 12px;
}
.cycle-avatar {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 9px;
  font-weight: 800;
  flex-shrink: 0;
}
.cycle-sms-header strong { font-size: 12px; color: var(--text); display: block; }
.cycle-sms-header span   { font-size: 11px; color: var(--dimmed); }
.cycle-sms-header > span:last-child { margin-left: auto; }
.cycle-sms-body {
  padding: 12px 14px;
  border-bottom: 1px solid var(--border);
}
.cycle-sms-body p { margin: 0; font-size: 13px; color: var(--text); line-height: 1.55; }
.cycle-sms-nl { margin-top: 6px !important; padding-top: 6px; border-top: 1px solid var(--border); font-size: 12px !important; color: var(--dimmed) !important; font-style: italic; }
.cycle-sms-link {
  padding: 10px 14px;
  font-size: 11.5px;
  font-family: monospace;
  color: var(--accent-dark);
  background: var(--accent-soft);
}
.cycle-sms-link span { color: var(--dimmed); font-family: inherit; }

/* Quote mini */
.cycle-quote {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  max-width: 480px;
  box-shadow: var(--shadow);
}
.cycle-quote p { margin: 0; font-size: 14px; color: var(--text); line-height: 1.6; font-style: italic; }
.cycle-quote-nl {
  margin-top: 8px;
  background: var(--bg2);
}
.cycle-quote-nl p { color: var(--dimmed); font-size: 13px; }

/* Code mini */
.cycle-code-mini {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 16px 28px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: var(--shadow);
}
.cycle-code-label { font-size: 11px; font-weight: 700; color: var(--dimmed); text-transform: uppercase; letter-spacing: 0.08em; }
.cycle-code-val {
  font-size: 30px;
  font-weight: 800;
  letter-spacing: 0.2em;
  color: var(--text);
  font-family: 'SF Mono', 'Fira Mono', monospace;
  text-transform: uppercase;
}

/* Doctor mini */
.cycle-doctor-mini {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  max-width: 480px;
  box-shadow: var(--shadow);
}
.cycle-doctor-input {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  background: var(--bg2);
}
.cycle-code-input {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0.16em;
  color: var(--text);
  font-family: 'SF Mono', 'Fira Mono', monospace;
  text-transform: uppercase;
}
.cycle-enter { font-size: 16px; color: var(--accent); font-weight: 700; }
.cycle-soep-mini { padding: 4px 0; }
.cycle-soep-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  border-bottom: 1px solid var(--border);
  font-size: 12.5px;
  color: var(--muted);
}
.cycle-soep-row:last-child { border-bottom: 0; }
.cycle-soep-row span:nth-child(2) { flex: 1; line-height: 1.5; }
.cycle-soep-key {
  font-size: 10px;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: 0.06em;
  flex-shrink: 0;
}
.cycle-soep-row button {
  flex-shrink: 0;
  height: 22px;
  padding: 0 8px;
  border: 1px solid var(--border-strong);
  border-radius: 5px;
  background: var(--surface);
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  cursor: pointer;
}
.cycle-approve-btn {
  width: 100%;
  padding: 12px;
  border: 0;
  background: var(--accent);
  color: #fff;
  font-size: 12.5px;
  font-weight: 700;
  cursor: pointer;
}

/* Summary mini */
.cycle-summary-mini {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  max-width: 480px;
  box-shadow: var(--shadow);
}
.cycle-summary-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 14px;
  border-bottom: 1px solid var(--border);
  font-size: 13px;
  color: var(--text);
  line-height: 1.5;
}
.cycle-summary-nl {
  background: var(--bg2);
}
.cycle-summary-nl span:last-child { font-size: 12px; color: var(--dimmed); font-style: italic; }
.cycle-summary-footer {
  padding: 8px 14px;
  font-size: 11px;
  color: var(--dimmed);
  background: var(--bg2);
}

/* Expiry */
.cycle-expiry {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  font-size: 13.5px;
  color: var(--muted);
  font-weight: 500;
}
.cycle-expiry-icon { font-size: 22px; color: var(--dimmed); }
.cycle-step-final .cycle-step-content > strong { color: var(--dimmed); }

/* ═══════════════════════════════════════════════════════════════
   WHY GRID
   ═══════════════════════════════════════════════════════════════ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 42px;
}
.why-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: 0 4px 14px rgba(28,10,0,.035);
}
.why-card:hover { border-color: rgba(234,88,12,0.24); }
.why-icon { font-size: 24px; margin-bottom: 14px; display: block; }
.why-card strong { display: block; font-size: 15px; color: var(--text); margin-bottom: 8px; }
.why-card p { margin: 0; font-size: 13.5px; color: var(--muted); line-height: 1.65; }
.why-card-note { margin-top: 10px !important; padding-top: 10px; border-top: 1px solid var(--border); font-size: 12px !important; color: var(--dimmed) !important; font-style: italic; }

@media (max-width: 900px) {
  .cycle-step { grid-template-columns: 1fr; gap: 12px; }
  .cycle-step-meta { flex-direction: row; align-items: center; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .why-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════════════
   SECURITY BY ARCHITECTURE SECTION
.no-integ-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: center;
}
.no-integ-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.no-integ-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 22px;
  box-shadow: 0 4px 14px rgba(28,10,0,.035);
}
.no-integ-card-highlight {
  grid-column: span 2;
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 16px;
  align-items: start;
}
.no-integ-card-highlight strong,
.no-integ-card-highlight p { grid-column: 2; }
.no-integ-card-icon {
  font-size: 22px;
  margin-bottom: 12px;
  display: block;
}
.no-integ-card-highlight .no-integ-card-icon {
  grid-row: span 2;
  margin-bottom: 0;
  margin-top: 2px;
  font-size: 20px;
}
.no-integ-card strong { display: block; font-size: 15px; color: var(--text); margin-bottom: 6px; }
.no-integ-card p { margin: 0; font-size: 13.5px; color: var(--muted); line-height: 1.6; }

/* ═══════════════════════════════════════════════════════════════
   CLOSING THE LOOP SECTION
   ═══════════════════════════════════════════════════════════════ */
.loop-steps {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}
.loop-step {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 15px;
  color: var(--text);
  font-weight: 500;
}
.loop-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--accent-soft);
  border: 1.5px solid rgba(234,88,12,0.3);
  color: var(--accent-dark);
  font-size: 12px;
  font-weight: 800;
  flex-shrink: 0;
}
.loop-phone { display: flex; flex-direction: column; gap: 10px; }
.loop-summary-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.loop-summary-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
  font-size: 13px;
  font-weight: 700;
  color: var(--muted);
}
.loop-summary-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  font-size: 13.5px;
  color: var(--text);
  line-height: 1.55;
}
.loop-summary-key {
  font-size: 11px;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: 0.06em;
  flex-shrink: 0;
  margin-top: 2px;
}
.loop-summary-row-nl {
  background: var(--bg2);
  border-bottom: 1px solid var(--border);
}
.loop-summary-row-nl span:last-child {
  font-size: 12.5px;
  color: var(--dimmed);
  font-style: italic;
}
.loop-summary-key-nl {
  color: var(--primary-dark) !important;
  opacity: 0.6;
}
  padding: 10px 16px;
  font-size: 11.5px;
  color: var(--dimmed);
  background: var(--bg2);
}

@media (max-width: 768px) {
  .no-integ-grid { grid-template-columns: 1fr; gap: 32px; }
  .no-integ-cards { grid-template-columns: 1fr; }
  .no-integ-card-highlight { grid-column: span 1; grid-template-columns: 1fr; }
  .no-integ-card-highlight .no-integ-card-icon { grid-row: auto; }
  .no-integ-card-highlight strong,
  .no-integ-card-highlight p { grid-column: 1; }
}

/* ═══════════════════════════════════════════════════════════════
   SECURITY BY ARCHITECTURE SECTION
   ═══════════════════════════════════════════════════════════════ */
.security-arch-section { padding: 80px 0; }
.security-merged-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 32px;
}
.security-merged-copy .section-sub { margin-top: 16px; }

.security-arch-terminal {
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
.terminal-header {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
}
.terminal-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: #e7d7cc;
}
.terminal-label {
  margin-left: 10px;
  font-size: 12px;
  font-weight: 700;
  color: var(--dimmed);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.terminal-list {
  list-style: none;
  padding: 6px 0;
  margin: 0;
  display: grid;
  gap: 0;
}
.terminal-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 13px 24px;
  border-bottom: 1px solid var(--border);
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.5;
}
.terminal-list li:last-child { border-bottom: 0; }
.terminal-tick {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--accent-soft);
  border: 1.5px solid rgba(234,88,12,0.3);
  flex-shrink: 0;
  margin-top: 2px;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='8' viewBox='0 0 10 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 4L3.5 6.5L9 1' stroke='%23ea580c' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  font-size: 0;
}

.security-arch-footnote {
  margin: 32px auto 0;
  text-align: center;
  font-size: 13px;
  color: var(--dimmed);
  max-width: 600px;
  padding: 14px 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
}

@media (max-width: 768px) {
  .security-arch-grid { grid-template-columns: 1fr; gap: 32px; }
  .security-arch-copy h2 { max-width: none; }
}


.sticky-cta {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 190;                          /* above navbar (100) and progress bar (300 only 3px) */
  background: rgba(255,251,245,0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid var(--border);
  padding: 12px 0;
  transform: translateY(110%);           /* 110% ensures shadow doesn't peek on mobile */
  transition: transform .4s cubic-bezier(.16,1,.3,1);
  box-shadow: 0 -8px 32px rgba(28,10,0,0.09);
}
/* disable blur on mobile — can break position:fixed on some Android browsers */
@media (max-width: 768px) {
  .sticky-cta { backdrop-filter: none; -webkit-backdrop-filter: none; background: #fffbf5; }
}
.sticky-cta.visible {
  transform: translateY(0);
}
.sticky-inner {
  display: flex;
  align-items: center;
  gap: 20px;
}
.sticky-brand {
  display: flex;
  align-items: center;
  gap: 9px;
  font-weight: 800;
  font-size: 15px;
  color: var(--text);
  letter-spacing: -0.02em;
  flex-shrink: 0;
}
.sticky-logo {
  width: 28px !important;
  height: 28px !important;
  font-size: 10px !important;
  border-radius: 8px !important;
  box-shadow: none !important;
}
.sticky-text {
  flex: 1;
  margin: 0;
  font-size: 14px;
  color: var(--muted);
}
.btn-sm {
  min-height: 40px;
  padding: 0 18px;
  font-size: 13.5px;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .security-merged-grid { grid-template-columns: 1fr; gap: 32px; }
  .link-flow-grid { grid-template-columns: 1fr; }
  .sticky-text    { display: none; }
  .sticky-inner   { justify-content: space-between; }
}
