/* ── Reset & base ─────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
  color: #1a2937;
  background: #fff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ── Tokens ───────────────────────────────────────────────────────────────── */
:root {
  --navy:       #0d2137;
  --navy-mid:   #143350;
  --teal:       #007a82;
  --teal-bright:#00b4c1;
  --teal-light: #e0f5f7;
  --teal-xlight:#f0fafb;
  --amber:      #e08420;
  --white:      #fff;
  --off-white:  #f4f8f9;
  --text:       #1a2937;
  --text-mid:   #3e5b6e;
  --text-muted: #6b8899;
  --border:     #d0e4e8;
  --radius:     10px;
  --radius-sm:  6px;
  --shadow:     0 2px 12px rgba(13,33,55,.10);
  --shadow-lg:  0 4px 28px rgba(13,33,55,.14);
  --max-w:      1080px;
  --gap:        2rem;
}

/* ── Layout ───────────────────────────────────────────────────────────────── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 4.5rem 0; }
.section-soft { background: var(--off-white); }
.section-dark { background: var(--navy); color: var(--white); }
.section-teal { background: var(--teal); color: var(--white); }
.section-compact { padding: 2.5rem 0; }

.two-column { display: grid; grid-template-columns: 1fr 1fr; gap: var(--gap); align-items: start; }
.split-feature { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }

.section-heading { text-align: center; max-width: 680px; margin: 0 auto 3rem; }
.content-flow { display: flex; flex-direction: column; gap: 1rem; }
.content-flow p { color: var(--text-mid); line-height: 1.75; }
.section-dark .content-flow p,
.section-teal .content-flow p { color: rgba(255,255,255,.8); }

/* ── Skip link ────────────────────────────────────────────────────────────── */
.skip-link {
  position: absolute; top: -100%; left: 1rem; padding: .5rem 1rem;
  background: var(--teal); color: #fff; border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  z-index: 999; font-size: .875rem;
}
.skip-link:focus { top: 0; }

/* ── Header ───────────────────────────────────────────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(13,33,55,.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: .9rem 1.5rem; max-width: var(--max-w); margin: 0 auto;
}
.brand { display: flex; align-items: center; gap: .6rem; }
.brand-logo-img { height: 28px; width: auto; }
.brand-name {
  font-size: 1rem; font-weight: 700; color: #fff;
  letter-spacing: -.01em;
}
.brand-name span { color: var(--teal-bright); }
.brand-tag {
  font-size: .7rem; font-weight: 600; color: var(--teal-bright);
  letter-spacing: .08em; text-transform: uppercase;
  border: 1px solid rgba(0,180,193,.35); border-radius: 4px;
  padding: .1rem .45rem; margin-left: .25rem;
}

.site-nav { display: flex; align-items: center; gap: 1.6rem; }
.site-nav a {
  font-size: .875rem; color: rgba(255,255,255,.75); font-weight: 500;
  transition: color .18s;
}
.site-nav a:hover,
.site-nav a[aria-current="page"] { color: #fff; }
.nav-cta {
  background: var(--teal); color: #fff !important;
  padding: .45rem 1.1rem; border-radius: var(--radius-sm);
  font-weight: 600 !important; font-size: .83rem !important;
  transition: background .18s !important;
}
.nav-cta:hover { background: var(--teal-bright) !important; }

.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: .4rem;
}
.nav-toggle span { display: block; width: 22px; height: 2px; background: #fff; border-radius: 2px; transition: .2s; }

/* ── Typography ───────────────────────────────────────────────────────────── */
h1 { font-size: clamp(2rem, 4.5vw, 3rem); font-weight: 800; line-height: 1.12; letter-spacing: -.03em; }
h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); font-weight: 700; line-height: 1.2; letter-spacing: -.025em; }
h3 { font-size: 1.1rem; font-weight: 700; line-height: 1.3; }
p { line-height: 1.7; }

.eyebrow {
  font-size: .72rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--teal-bright);
  margin-bottom: .5rem; display: block;
}
.section-dark .eyebrow { color: var(--teal-bright); }
.section-teal .eyebrow { color: rgba(255,255,255,.7); }

.hero-lead { font-size: 1.15rem; color: rgba(255,255,255,.8); line-height: 1.7; max-width: 560px; }
.section-dark .hero-lead { color: rgba(255,255,255,.8); }

/* ── Buttons ─────────────────────────────────────────────────────────────── */
.button {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .75rem 1.6rem; border-radius: var(--radius-sm);
  font-size: .9rem; font-weight: 600; cursor: pointer;
  transition: all .18s; border: none; white-space: nowrap;
  text-decoration: none;
}
.button-primary { background: var(--teal-bright); color: var(--navy); }
.button-primary:hover { background: #00c9d8; transform: translateY(-1px); }
.button-secondary {
  background: transparent; color: #fff;
  border: 1.5px solid rgba(255,255,255,.3);
}
.button-secondary:hover { border-color: rgba(255,255,255,.7); background: rgba(255,255,255,.06); }
.button-full { width: 100%; justify-content: center; }
.section-soft .button-secondary { color: var(--text); border-color: var(--border); }
.section-soft .button-secondary:hover { border-color: var(--teal); color: var(--teal); }

.text-link {
  color: var(--teal); font-weight: 600; font-size: .9rem;
  border-bottom: 1.5px solid rgba(0,122,130,.3); padding-bottom: 1px;
  transition: border-color .16s, color .16s;
}
.text-link:hover { color: var(--teal-bright); border-color: var(--teal-bright); }
.section-dark .text-link { color: var(--teal-bright); border-color: rgba(0,180,193,.3); }

.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 1.5rem; }
.inline-actions { margin-top: .75rem; }

/* ── Hero ─────────────────────────────────────────────────────────────────── */
.hero {
  background: var(--navy);
  color: #fff;
  padding: 5.5rem 0 4rem;
  overflow: hidden;
  position: relative;
}
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; position: relative; z-index: 1; }
.hero-copy { display: flex; flex-direction: column; gap: .9rem; }
.hero-copy h1 { color: #fff; }
.trust-line {
  font-size: .8rem; color: rgba(255,255,255,.45); letter-spacing: .05em;
  text-transform: uppercase; margin-top: .75rem;
}

/* Africa SVG glow orbs */
.hero-bg { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.orb { position: absolute; border-radius: 50%; filter: blur(70px); }
.orb-a { width: 420px; height: 420px; background: rgba(0,122,130,.28); top: -80px; right: -60px; }
.orb-b { width: 280px; height: 280px; background: rgba(0,180,193,.15); bottom: -60px; left: 5%; }

/* Hero card */
.hero-card { display: flex; justify-content: center; }
.africa-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 16px;
  padding: 1.5rem;
  width: 100%;
  max-width: 380px;
  backdrop-filter: blur(6px);
}
.africa-card-top {
  display: flex; align-items: center; gap: .6rem;
  font-size: .78rem; color: rgba(255,255,255,.6);
  margin-bottom: 1.2rem;
}
.status-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #4ade80; box-shadow: 0 0 6px #4ade80;
}
.network-visual {
  position: relative; height: 130px; margin: .5rem 0 1rem;
}
.node {
  position: absolute; border-radius: 8px; font-size: .7rem;
  font-weight: 700; padding: .35rem .6rem;
  display: flex; align-items: center; justify-content: center;
}
.node-main { background: var(--teal); color: #fff; top: 50%; left: 50%; transform: translate(-50%,-50%); z-index: 2; font-size: .75rem; }
.node-a { background: rgba(255,255,255,.12); color: rgba(255,255,255,.85); top: 8px; left: 10px; }
.node-b { background: rgba(255,255,255,.12); color: rgba(255,255,255,.85); top: 8px; right: 10px; }
.node-c { background: rgba(255,255,255,.12); color: rgba(255,255,255,.85); bottom: 8px; left: 5px; }
.node-d { background: rgba(255,255,255,.12); color: rgba(255,255,255,.85); bottom: 8px; right: 5px; }
.node-e { background: rgba(255,255,255,.12); color: rgba(255,255,255,.85); bottom: 40px; right: 0; font-size: .65rem; }
.mini-list { list-style: none; display: flex; flex-direction: column; gap: .4rem; }
.mini-list li { font-size: .78rem; color: rgba(255,255,255,.7); display: flex; align-items: center; gap: .4rem; }
.mini-list li::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--teal-bright); flex-shrink: 0; }

/* ── Page hero ────────────────────────────────────────────────────────────── */
.page-hero { padding: 3.5rem 0 3rem; }
.page-hero-inner { max-width: 680px; }
.page-hero h1 { color: #fff; margin: .4rem 0 .8rem; }
.page-hero .hero-lead { margin-top: .25rem; }

/* ── Benefit grid ─────────────────────────────────────────────────────────── */
.benefit-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.benefit-grid-short { grid-template-columns: repeat(2, 1fr); max-width: 720px; margin: 0 auto; }
.benefit { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.5rem; }
.section-dark .benefit { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.1); }
.benefit h3 { margin-bottom: .5rem; }
.benefit p { font-size: .9rem; color: var(--text-mid); }
.section-dark .benefit p { color: rgba(255,255,255,.65); }

/* ── Participation grid ───────────────────────────────────────────────────── */
.participation-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; max-width: 740px; margin: 0 auto 1rem; }
.model-card {
  border: 1.5px solid var(--border); border-radius: var(--radius);
  padding: 1.5rem; background: var(--white);
}
.model-card-accent { background: var(--teal); border-color: var(--teal); color: #fff; }
.model-card-accent .model-label { color: rgba(255,255,255,.7); }
.model-card-accent h3 { color: #fff; }
.model-card-accent p { color: rgba(255,255,255,.85); }
.model-label { font-size: .72rem; font-weight: 600; text-transform: uppercase; letter-spacing: .1em; color: var(--text-muted); margin-bottom: .4rem; }
.model-card h3 { margin-bottom: .4rem; }
.model-card p { font-size: .9rem; color: var(--text-mid); }
.pricing-note { font-size: .83rem; color: var(--text-muted); line-height: 1.5; margin-top: .75rem; }
.pricing-note a { color: var(--teal); }

/* ── Capability grid ─────────────────────────────────────────────────────── */
.capability-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.4rem;
}
.section-soft .card { background: var(--white); }
.card-icon { display: flex; margin-bottom: .8rem; }
.card-icon svg { width: 22px; height: 22px; stroke: var(--teal); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.card h3 { font-size: 1rem; margin-bottom: .4rem; }
.card p { font-size: .875rem; color: var(--text-mid); }

/* ── Flow diagram ─────────────────────────────────────────────────────────── */
.diagram-placeholder {
  background: var(--off-white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.5rem;
}
.diagram-compact { padding: 1.25rem; }
.diagram-title { font-size: .78rem; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: .08em; margin-bottom: .75rem; }
.flow-diagram { display: flex; align-items: stretch; gap: .5rem; flex-wrap: wrap; }
.flow-item { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-sm); padding: .75rem; flex: 1; min-width: 130px; }
.flow-kicker { font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--teal); display: block; margin-bottom: .25rem; }
.flow-item strong { display: block; font-size: .85rem; margin-bottom: .2rem; }
.flow-item span { font-size: .78rem; color: var(--text-muted); }
.flow-core { border-color: var(--teal); }
.flow-arrow { display: flex; align-items: center; color: var(--text-muted); font-size: 1.2rem; align-self: center; }
.flow-tags { display: flex; flex-wrap: wrap; gap: .4rem; margin-top: .75rem; }
.flow-tags span { font-size: .72rem; background: var(--teal-light); color: var(--teal); border-radius: 20px; padding: .2rem .65rem; font-weight: 600; }

/* ── Architecture figure ─────────────────────────────────────────────────── */
.architecture-figure { text-align: center; }
.architecture-figure img { width: 100%; max-width: 820px; margin: 0 auto; border-radius: var(--radius); border: 1px solid var(--border); }
.architecture-figure figcaption { font-size: .8rem; color: var(--text-muted); margin-top: .75rem; }

/* ── Doc layout (technical onboarding) ──────────────────────────────────── */
.doc-layout { display: grid; grid-template-columns: 220px 1fr; gap: 3rem; align-items: start; }
.doc-toc { position: sticky; top: 5rem; }
.doc-toc-inner { background: var(--off-white); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.25rem; }
.doc-toc a { display: block; font-size: .83rem; color: var(--text-mid); padding: .3rem 0; border-bottom: 1px solid transparent; transition: color .16s; }
.doc-toc a:hover { color: var(--teal); }
.doc-section { margin-bottom: 2.5rem; padding-bottom: 2.5rem; border-bottom: 1px solid var(--border); }
.doc-section:last-child { border-bottom: none; }
.doc-section h2 { font-size: 1.3rem; margin: .3rem 0 .9rem; }
.doc-section p { color: var(--text-mid); margin-bottom: .75rem; font-size: .93rem; }

/* ── Tables ───────────────────────────────────────────────────────────────── */
.table-wrap { overflow-x: auto; }
.doc-table { width: 100%; border-collapse: collapse; font-size: .875rem; margin: 1rem 0; }
.doc-table th { background: var(--off-white); font-weight: 700; color: var(--text); text-align: left; padding: .65rem .9rem; border-bottom: 2px solid var(--border); }
.doc-table td { padding: .6rem .9rem; border-bottom: 1px solid var(--border); color: var(--text-mid); }
.doc-table tr:last-child td { border-bottom: none; }
.doc-table td strong { color: var(--text); }
.doc-table code { font-family: monospace; font-size: .82rem; background: var(--off-white); padding: .1rem .35rem; border-radius: 3px; }

/* ── Callout / notice boxes ───────────────────────────────────────────────── */
.notice-box {
  background: var(--teal-xlight); border: 1px solid var(--teal-light);
  border-radius: var(--radius-sm); padding: 1rem 1.2rem;
  font-size: .875rem; color: var(--text-mid); margin: 1rem 0;
}
.notice-box strong { color: var(--teal); display: block; margin-bottom: .3rem; }
.callout-card {
  background: var(--off-white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.5rem;
}
.callout-card .eyebrow { color: var(--teal); }
.callout-card h3 { margin-bottom: .75rem; }

/* ── Check list ───────────────────────────────────────────────────────────── */
.check-list { list-style: none; display: flex; flex-direction: column; gap: .5rem; }
.check-list li { display: flex; align-items: flex-start; gap: .6rem; font-size: .9rem; color: var(--text-mid); }
.check-list li::before { content: '✓'; color: var(--teal); font-weight: 700; flex-shrink: 0; margin-top: .1rem; }
.columns-list { columns: 2; gap: 1.5rem; }
.columns-list li { break-inside: avoid; }

/* ── Formula card ─────────────────────────────────────────────────────────── */
.formula-card {
  background: var(--navy); color: var(--teal-bright);
  border-radius: var(--radius-sm); padding: 1rem 1.25rem;
  font-family: monospace; font-size: .9rem; font-weight: 600;
  margin: 1rem 0; text-align: center;
}
.formula-mini {
  background: rgba(255,255,255,.1); color: var(--teal-bright);
  border-radius: var(--radius-sm); padding: .5rem .9rem;
  font-family: monospace; font-size: .82rem; margin-top: .75rem;
}

/* ── Copy block ───────────────────────────────────────────────────────────── */
.copy-block {
  position: relative; background: var(--navy);
  border-radius: var(--radius-sm); padding: .9rem 3rem .9rem 1rem;
  margin: .75rem 0;
}
.copy-block pre code { color: var(--teal-bright); font-size: .82rem; font-family: monospace; word-break: break-all; }
.copy-button {
  position: absolute; top: .5rem; right: .5rem;
  background: rgba(255,255,255,.1); color: rgba(255,255,255,.7);
  border: none; border-radius: 4px; padding: .25rem .6rem;
  font-size: .72rem; cursor: pointer; transition: background .16s;
}
.copy-button:hover { background: rgba(255,255,255,.2); }

.inline-copy-button {
  background: var(--teal-light); color: var(--teal);
  border: none; border-radius: 3px; padding: .1rem .45rem;
  font-size: .72rem; cursor: pointer; margin-left: .3rem;
  transition: background .16s;
}
.inline-copy-button:hover { background: var(--teal); color: #fff; }

/* ── Key-value table ─────────────────────────────────────────────────────── */
.key-value-table th { width: 200px; }

/* ── FAQ ─────────────────────────────────────────────────────────────────── */
.faq-list { display: flex; flex-direction: column; gap: .5rem; max-width: 780px; margin: 0 auto; }
.faq-item { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-sm); overflow: hidden; }
.faq-item summary {
  cursor: pointer; padding: 1.1rem 1.25rem;
  font-weight: 600; font-size: .93rem; list-style: none;
  display: flex; justify-content: space-between; align-items: center;
  user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-size: 1.2rem; color: var(--teal); font-weight: 400; transition: transform .2s; flex-shrink: 0; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-answer { padding: 0 1.25rem 1.1rem; }
.faq-answer p { font-size: .9rem; color: var(--text-mid); line-height: 1.65; }

/* ── Contact cards ────────────────────────────────────────────────────────── */
.contact-card-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.feature-panel { background: var(--off-white); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.5rem; }
.feature-panel h3 { margin-bottom: .5rem; }
.feature-panel p { font-size: .9rem; color: var(--text-mid); margin-bottom: .9rem; }
.contact-email { font-weight: 700; color: var(--teal) !important; font-size: 1rem !important; }

/* ── Comparison cards ─────────────────────────────────────────────────────── */
.comparison-card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; margin-bottom: 2rem; }
.comparison-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.4rem; }
.comparison-card h3 { font-size: 1rem; margin-bottom: .5rem; }
.comparison-card p { font-size: .88rem; color: var(--text-mid); }

/* ── Pricing table container ─────────────────────────────────────────────── */
.pricing-table-container { margin-top: 1.5rem; }
.pricing-narrow { max-width: 480px; margin: 1.5rem auto 0; }

/* ── WACREN seeding section ─────────────────────────────────────────────────*/
.seed-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; margin-top: 1.5rem; }
.seed-card {
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius); padding: 1.6rem 1.4rem;
  text-align: center;
}
.seed-num { font-size: 2.8rem; font-weight: 800; color: var(--teal-bright); line-height: 1; margin-bottom: .4rem; }
.seed-label { font-size: .9rem; font-weight: 700; color: #fff; margin-bottom: .6rem; }
.seed-desc { font-size: .83rem; color: rgba(255,255,255,.65); line-height: 1.55; }

/* ── Alert banner ─────────────────────────────────────────────────────────── */
.alert-bar {
  background: var(--teal); color: #fff;
  padding: .6rem 1.5rem; text-align: center;
  font-size: .82rem; font-weight: 500; letter-spacing: .01em;
}
.alert-bar a { color: rgba(255,255,255,.85); text-decoration: underline; }

/* ── Final CTA ────────────────────────────────────────────────────────────── */
.final-cta { padding: 5rem 0; }
.final-cta-inner { text-align: center; max-width: 620px; margin: 0 auto; }
.final-cta-inner h2 { margin: .4rem 0 .9rem; }
.final-cta-inner p { color: rgba(255,255,255,.75); margin-bottom: 1.5rem; }
.final-cta-light h2 { color: var(--text); }
.final-cta-light p { color: var(--text-mid); }

/* ── Footer ───────────────────────────────────────────────────────────────── */
.site-footer {
  background: var(--navy); border-top: 1px solid rgba(255,255,255,.07);
  padding: 2rem 0;
}
.footer-inner {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1rem;
}
.footer-brand {
  display: flex; align-items: center; gap: .5rem;
  font-size: .9rem; font-weight: 700; color: rgba(255,255,255,.8);
}
.footer-brand img { height: 22px; }
.site-footer nav { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.site-footer nav a { font-size: .82rem; color: rgba(255,255,255,.5); transition: color .16s; }
.site-footer nav a:hover { color: rgba(255,255,255,.85); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.07); margin-top: 1rem; padding-top: 1rem;
  font-size: .78rem; color: rgba(255,255,255,.3); text-align: center;
}

/* ── Responsive ───────────────────────────────────────────────────────────── */
@media (max-width: 860px) {
  .hero-grid, .two-column, .split-feature { grid-template-columns: 1fr; }
  .hero-card { display: none; }
  .benefit-grid, .capability-grid { grid-template-columns: 1fr 1fr; }
  .comparison-card-grid, .seed-grid { grid-template-columns: 1fr 1fr; }
  .participation-grid, .contact-card-grid { grid-template-columns: 1fr; }
  .doc-layout { grid-template-columns: 1fr; }
  .doc-toc { display: none; }
  .columns-list { columns: 1; }
}
@media (max-width: 560px) {
  .site-nav { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: var(--navy); padding: 1rem 1.5rem; gap: .75rem; border-bottom: 1px solid rgba(255,255,255,.1); }
  .site-nav.open { display: flex; }
  .nav-toggle { display: flex; }
  .benefit-grid, .capability-grid, .comparison-card-grid, .seed-grid { grid-template-columns: 1fr; }
  .flow-diagram { flex-direction: column; }
  .flow-arrow { transform: rotate(90deg); align-self: flex-start; margin-left: 1rem; }
  .hero-actions { flex-direction: column; }
  .header-inner { position: relative; }
}

/* ── Copy button JS hook ─────────────────────────────────────────────────── */
.copy-button.copied { background: rgba(0,180,193,.3); color: var(--teal-bright); }
