/* ============================================================
   EuroTrust design system — institutional fintech (Circle-class)
   Palette: deep navy #003399 family + Euro gold #FFCC00
   ============================================================ */
:root {
  --navy-950: #050D24;
  --navy-900: #07123A;
  --navy-800: #0A1A4E;
  --navy-700: #102463;
  --blue: #003399;
  --blue-bright: #1B4DFF;
  --blue-soft: #E8EEFF;
  --gold: #FFCC00;
  --gold-deep: #E6B800;
  --ink: #0B1633;
  --slate: #49587A;
  --slate-light: #7C89A6;
  --line: #E4E9F4;
  --soft: #F5F7FC;
  --white: #FFFFFF;
  --green: #0E9F6E;
  --red: #D6455D;
  --amber: #C77E0A;
  --radius: 14px;
  --radius-lg: 22px;
  --shadow: 0 1px 2px rgba(7, 18, 58, .05), 0 8px 28px rgba(7, 18, 58, .07);
  --shadow-lg: 0 2px 4px rgba(7, 18, 58, .06), 0 18px 60px rgba(7, 18, 58, .14);
  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --mono: "SF Mono", ui-monospace, "Cascadia Code", Menlo, Consolas, monospace;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font); color: var(--ink); background: var(--white);
  -webkit-font-smoothing: antialiased; line-height: 1.6; font-size: 16px;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
.wrap { max-width: 1180px; margin: 0 auto; padding: 0 28px; }
.mono { font-family: var(--mono); }

/* ---------------- nav ---------------- */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100; height: 72px;
  background: rgba(255, 255, 255, .82); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(228, 233, 244, .8);
}
.nav-inner { max-width: 1180px; margin: 0 auto; padding: 0 28px; height: 72px; display: flex; align-items: center; gap: 34px; }
.brand { display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 19px; letter-spacing: -.02em; }
.brand .mark { width: 30px; height: 30px; }
.brand b { color: var(--blue); }
.nav-links { display: flex; gap: 26px; font-size: 14.5px; font-weight: 500; color: var(--slate); flex: 1; }
.nav-links a:hover, .nav-links a.active { color: var(--ink); }
.nav-cta { display: flex; gap: 12px; align-items: center; }
.nav-burger { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-burger span { display: block; width: 20px; height: 2px; background: var(--ink); margin: 4px 0; border-radius: 2px; }

/* ---------------- buttons ---------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font); font-weight: 600; font-size: 14.5px; cursor: pointer;
  border-radius: 999px; padding: 11px 22px; border: 1.5px solid transparent;
  transition: all .18s ease; white-space: nowrap;
}
.btn-primary { background: var(--blue); color: #fff; }
.btn-primary:hover { background: var(--blue-bright); transform: translateY(-1px); box-shadow: 0 8px 22px rgba(27, 77, 255, .28); }
.btn-gold { background: var(--gold); color: var(--navy-900); }
.btn-gold:hover { background: var(--gold-deep); transform: translateY(-1px); }
.btn-ghost { border-color: var(--line); color: var(--ink); background: #fff; }
.btn-ghost:hover { border-color: var(--blue); color: var(--blue); }
.btn-ghost-dark { border-color: rgba(255, 255, 255, .35); color: #fff; background: transparent; }
.btn-ghost-dark:hover { border-color: var(--gold); color: var(--gold); }
.btn-lg { padding: 15px 30px; font-size: 16px; }
.btn-sm { padding: 7px 14px; font-size: 13px; }
.btn:disabled { opacity: .5; cursor: not-allowed; transform: none !important; }

/* ---------------- hero ---------------- */
.hero { position: relative; padding: 168px 0 96px; overflow: hidden; }
.hero-bg {
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(720px 420px at 12% -8%, rgba(0, 51, 153, .10), transparent 64%),
    radial-gradient(640px 420px at 88% 4%, rgba(255, 204, 0, .14), transparent 60%),
    radial-gradient(900px 600px at 55% 120%, rgba(27, 77, 255, .07), transparent 65%),
    var(--white);
}
.hero-grid { display: grid; grid-template-columns: 1.12fr .88fr; gap: 56px; align-items: center; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px; font-size: 12.5px; font-weight: 700;
  letter-spacing: .09em; text-transform: uppercase; color: var(--blue);
  background: var(--blue-soft); border: 1px solid #D5E0FF; padding: 7px 14px; border-radius: 999px;
}
.eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green); animation: pulse 2s infinite; }
@keyframes pulse { 50% { opacity: .35; } }
h1.display {
  font-size: clamp(2.6rem, 5.4vw, 4.3rem); line-height: 1.04; letter-spacing: -.035em;
  font-weight: 700; margin: 22px 0 20px;
}
h1.display .accent { color: var(--blue); }
h1.display .goldline { background: linear-gradient(120deg, var(--blue) 30%, var(--blue-bright)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.lead { font-size: 19px; color: var(--slate); max-width: 540px; }
.hero-ctas { display: flex; gap: 14px; margin: 32px 0 18px; flex-wrap: wrap; }
.hero-note { font-size: 13px; color: var(--slate-light); }

/* live stat card stack */
.stat-stack { display: grid; gap: 16px; }
.stat-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 22px 26px; box-shadow: var(--shadow); position: relative; overflow: hidden;
}
.stat-card.featured { background: linear-gradient(135deg, var(--navy-900), var(--navy-700)); color: #fff; border: 0; }
.stat-card.featured .stat-label { color: #9FB0DE; }
.stat-card .stat-label { font-size: 12.5px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--slate-light); }
.stat-card .stat-value { font-size: clamp(1.7rem, 2.6vw, 2.3rem); font-weight: 700; letter-spacing: -.03em; margin-top: 4px; font-variant-numeric: tabular-nums; }
.stat-card.featured .stat-value { color: var(--gold); }
.stat-card .stat-sub { font-size: 13px; color: var(--slate-light); margin-top: 4px; }
.stat-card.featured .stat-sub { color: #B9C6EA; }
.stat-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ---------------- sections ---------------- */
section { padding: 88px 0; }
.section-soft { background: var(--soft); }
.kicker { font-size: 13px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--blue); margin-bottom: 14px; }
h2.title { font-size: clamp(1.9rem, 3.4vw, 2.7rem); letter-spacing: -.03em; line-height: 1.12; font-weight: 700; max-width: 720px; }
.title + .sub { margin-top: 16px; }
.sub { font-size: 17px; color: var(--slate); max-width: 640px; }
.center { text-align: center; }
.center .title, .center .sub { margin-left: auto; margin-right: auto; }

/* logo strip */
.logos { padding: 34px 0 14px; }
.logos-label { text-align: center; font-size: 12.5px; letter-spacing: .12em; text-transform: uppercase; color: var(--slate-light); font-weight: 600; }
.logo-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 18px 44px; margin-top: 22px; opacity: .82; }
.logo-row span { font-weight: 700; font-size: 15.5px; letter-spacing: -.01em; color: #3A4768; }
.logo-row span i { font-style: normal; color: var(--slate-light); font-weight: 500; }

/* dark trust band */
.band {
  background:
    radial-gradient(640px 320px at 85% -20%, rgba(255, 204, 0, .12), transparent 60%),
    radial-gradient(700px 420px at 0% 110%, rgba(27, 77, 255, .22), transparent 60%),
    var(--navy-900);
  color: #fff; border-radius: 0;
}
.band .kicker { color: var(--gold); }
.band .sub { color: #AEBCE6; }
.band-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 52px; }
.band-stat { border-left: 2px solid rgba(255, 204, 0, .55); padding-left: 20px; }
.band-stat .v { font-size: clamp(1.8rem, 3vw, 2.5rem); font-weight: 700; letter-spacing: -.03em; font-variant-numeric: tabular-nums; }
.band-stat .v em { font-style: normal; color: var(--gold); }
.band-stat .l { color: #9FB0DE; font-size: 14px; margin-top: 6px; }

/* cards */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 30px; box-shadow: var(--shadow); transition: transform .2s ease, box-shadow .2s ease;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.card .icon {
  width: 46px; height: 46px; border-radius: 13px; display: flex; align-items: center; justify-content: center;
  background: var(--blue-soft); color: var(--blue); margin-bottom: 18px; font-size: 21px; font-weight: 700;
}
.card.gold .icon { background: #FFF6CC; color: var(--gold-deep); }
.card h3 { font-size: 19px; letter-spacing: -.02em; margin-bottom: 8px; }
.card p { font-size: 14.5px; color: var(--slate); }
.card .more { display: inline-block; margin-top: 14px; font-size: 14px; font-weight: 600; color: var(--blue); }
.card .more:hover { color: var(--blue-bright); }

/* tabs */
.tabs { display: flex; gap: 8px; flex-wrap: wrap; margin: 36px 0 26px; }
.tab {
  border: 1.5px solid var(--line); background: #fff; border-radius: 999px; padding: 10px 20px;
  font-family: var(--font); font-size: 14px; font-weight: 600; color: var(--slate); cursor: pointer; transition: all .15s;
}
.tab.active { background: var(--navy-900); border-color: var(--navy-900); color: #fff; }
.tab-panel { display: none; }
.tab-panel.active { display: grid; grid-template-columns: 1.05fr .95fr; gap: 44px; align-items: center; }
.tab-panel h3 { font-size: 26px; letter-spacing: -.025em; margin-bottom: 12px; }
.tab-panel p { color: var(--slate); }
.tab-panel ul { margin: 18px 0 0; list-style: none; }
.tab-panel li { padding: 9px 0 9px 30px; position: relative; font-size: 15px; color: var(--ink); }
.tab-panel li::before {
  content: "✓"; position: absolute; left: 0; top: 8px; width: 20px; height: 20px; border-radius: 50%;
  background: var(--blue-soft); color: var(--blue); font-size: 11px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
}
.tab-visual {
  background: linear-gradient(140deg, var(--soft), #fff); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 30px; box-shadow: var(--shadow);
}

/* steps */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 50px; counter-reset: step; }
.step { position: relative; padding: 28px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); }
.step .n {
  width: 38px; height: 38px; border-radius: 50%; background: var(--navy-900); color: var(--gold);
  font-weight: 700; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; font-size: 15px;
}
.step h3 { font-size: 17.5px; margin-bottom: 6px; letter-spacing: -.01em; }
.step p { font-size: 14px; color: var(--slate); }

/* tables */
.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; box-shadow: var(--shadow); }
table.data { width: 100%; border-collapse: collapse; font-size: 14px; min-width: 560px; }
table.data th {
  text-align: left; font-size: 12px; letter-spacing: .07em; text-transform: uppercase; color: var(--slate-light);
  padding: 13px 18px; border-bottom: 1px solid var(--line); background: var(--soft); font-weight: 700;
}
table.data td { padding: 13px 18px; border-bottom: 1px solid var(--line); font-variant-numeric: tabular-nums; }
table.data tr:last-child td { border-bottom: 0; }
table.data td.r, table.data th.r { text-align: right; }

/* pills */
.pill { display: inline-block; font-size: 11.5px; font-weight: 700; letter-spacing: .04em; padding: 4px 11px; border-radius: 999px; text-transform: uppercase; }
.pill-green { background: #E2F7EE; color: #0A7A55; }
.pill-amber { background: #FCF1DC; color: #98620A; }
.pill-red { background: #FCE5EA; color: #B02A45; }
.pill-blue { background: var(--blue-soft); color: var(--blue); }
.pill-gray { background: #EEF1F8; color: var(--slate); }

/* news */
.news-card { border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; background: #fff; box-shadow: var(--shadow); transition: transform .2s; }
.news-card:hover { transform: translateY(-3px); }
.news-card .thumb { height: 150px; background: linear-gradient(135deg, var(--navy-800), var(--blue)); position: relative; }
.news-card.gold .thumb { background: linear-gradient(135deg, var(--gold), #FFE066); }
.news-card.soft .thumb { background: linear-gradient(135deg, #DCE6FF, var(--blue-soft)); }
.news-card .thumb::after { content: "€"; position: absolute; right: 22px; bottom: 12px; font-size: 64px; font-weight: 800; color: rgba(255, 255, 255, .25); }
.news-card .body { padding: 22px 24px 26px; }
.news-card .date { font-size: 12.5px; color: var(--slate-light); font-weight: 600; }
.news-card h3 { font-size: 17px; letter-spacing: -.015em; margin: 8px 0 8px; line-height: 1.35; }
.news-card p { font-size: 14px; color: var(--slate); }

/* CTA */
.cta {
  background:
    radial-gradient(560px 300px at 90% -10%, rgba(255, 204, 0, .18), transparent 55%),
    radial-gradient(620px 380px at 5% 120%, rgba(27, 77, 255, .25), transparent 60%),
    var(--navy-900);
  border-radius: 28px; color: #fff; padding: 72px 60px; text-align: center;
}
.cta h2 { font-size: clamp(1.9rem, 3.4vw, 2.6rem); letter-spacing: -.03em; }
.cta p { color: #AEBCE6; margin: 14px auto 32px; max-width: 520px; }
.cta .row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* footer */
footer { background: var(--navy-950); color: #93A3CF; padding: 70px 0 36px; margin-top: 96px; font-size: 14px; }
.foot-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr; gap: 36px; }
.foot-brand { color: #fff; font-weight: 700; font-size: 19px; display: flex; gap: 10px; align-items: center; }
.foot-brand b { color: var(--gold); }
.foot-col h4 { color: #fff; font-size: 13px; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 16px; }
.foot-col a { display: block; padding: 5px 0; color: #93A3CF; }
.foot-col a:hover { color: var(--gold); }
.foot-legal { border-top: 1px solid rgba(147, 163, 207, .18); margin-top: 48px; padding-top: 28px; font-size: 12.5px; color: #6B7BA8; line-height: 1.7; }
.foot-legal p + p { margin-top: 10px; }

/* reveal animation */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }

/* page hero (interior pages) */
.page-hero { padding: 150px 0 56px; }
.page-hero .hero-bg-soft {
  position: absolute; inset: 0; z-index: -1;
  background: radial-gradient(620px 360px at 80% -20%, rgba(255, 204, 0, .12), transparent 60%),
    radial-gradient(620px 360px at 10% -30%, rgba(0, 51, 153, .09), transparent 60%), #fff;
}

/* code blocks */
pre.code {
  background: var(--navy-950); color: #D7E1FF; border-radius: var(--radius); padding: 22px 24px;
  font-family: var(--mono); font-size: 13px; line-height: 1.65; overflow-x: auto; box-shadow: var(--shadow-lg);
}
pre.code .c { color: #5F6F9E; } pre.code .g { color: #7CE3B1; } pre.code .y { color: var(--gold); } pre.code .b { color: #8FB3FF; }
.endpoint { display: flex; gap: 12px; align-items: baseline; padding: 11px 16px; border: 1px solid var(--line); border-radius: 10px; margin-bottom: 10px; background: #fff; font-size: 13.5px; flex-wrap: wrap; }
.endpoint .m { font-family: var(--mono); font-weight: 700; font-size: 12px; padding: 3px 9px; border-radius: 6px; min-width: 52px; text-align: center; }
.m.get { background: #E2F7EE; color: #0A7A55; } .m.post { background: var(--blue-soft); color: var(--blue); } .m.del { background: #FCE5EA; color: #B02A45; }
.endpoint .p { font-family: var(--mono); color: var(--ink); }
.endpoint .d { color: var(--slate-light); font-size: 13px; }

/* charts */
.chart-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 26px 28px; box-shadow: var(--shadow); }
.chart-card h3 { font-size: 16px; letter-spacing: -.01em; margin-bottom: 4px; }
.chart-card .meta { font-size: 13px; color: var(--slate-light); margin-bottom: 14px; }
.legend { display: flex; gap: 18px; flex-wrap: wrap; font-size: 13px; color: var(--slate); margin-top: 12px; }
.legend i { display: inline-block; width: 10px; height: 10px; border-radius: 3px; margin-right: 7px; }

/* forms */
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 13.5px; font-weight: 600; margin-bottom: 7px; color: var(--ink); }
.field input, .field select, .field textarea {
  width: 100%; font-family: var(--font); font-size: 15px; padding: 12px 15px;
  border: 1.5px solid var(--line); border-radius: 10px; background: #fff; color: var(--ink); transition: border .15s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(0, 51, 153, .1); }
.field .hint { font-size: 12.5px; color: var(--slate-light); margin-top: 6px; }
.alert { border-radius: 10px; padding: 13px 16px; font-size: 14px; margin: 14px 0; }
.alert-ok { background: #E2F7EE; color: #0A7A55; border: 1px solid #BCEBD7; }
.alert-err { background: #FCE5EA; color: #B02A45; border: 1px solid #F6C9D3; }
.alert-info { background: var(--blue-soft); color: var(--blue); border: 1px solid #D5E0FF; }

/* ---------------- app shell (portal/admin) ---------------- */
.app { display: grid; grid-template-columns: 248px 1fr; min-height: 100vh; background: var(--soft); }
.side { background: var(--navy-950); color: #ADB9DE; padding: 26px 18px; display: flex; flex-direction: column; position: sticky; top: 0; height: 100vh; }
.side .brand { color: #fff; padding: 0 10px 24px; font-size: 17px; }
.side a.item {
  display: flex; align-items: center; gap: 11px; padding: 11px 14px; border-radius: 10px;
  font-size: 14px; font-weight: 500; margin-bottom: 3px; cursor: pointer;
}
.side a.item:hover { background: rgba(255, 255, 255, .06); color: #fff; }
.side a.item.active { background: var(--blue); color: #fff; }
.side .spacer { flex: 1; }
.side .who { font-size: 12.5px; padding: 12px 14px; border-top: 1px solid rgba(255,255,255,.1); }
.side .who b { color: #fff; display: block; }
.main { padding: 34px 38px; max-width: 1120px; }
.main h1 { font-size: 24px; letter-spacing: -.02em; margin-bottom: 4px; }
.main .crumb { color: var(--slate-light); font-size: 13.5px; margin-bottom: 26px; }
.kpis { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 26px; }
.kpi { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 18px 20px; box-shadow: var(--shadow); }
.kpi .l { font-size: 12px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--slate-light); }
.kpi .v { font-size: 24px; font-weight: 700; letter-spacing: -.02em; margin-top: 3px; font-variant-numeric: tabular-nums; }
.kpi .s { font-size: 12.5px; color: var(--slate-light); margin-top: 2px; }
.panel { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow); padding: 26px 28px; margin-bottom: 24px; }
.panel h2 { font-size: 17px; letter-spacing: -.015em; margin-bottom: 16px; }
.panel-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; gap: 12px; flex-wrap: wrap; }
.panel-head h2 { margin: 0; }
.login-shell { min-height: 100vh; display: flex; align-items: center; justify-content: center; background:
  radial-gradient(700px 420px at 85% 0%, rgba(255, 204, 0, .12), transparent 60%),
  radial-gradient(700px 480px at 0% 100%, rgba(0, 51, 153, .14), transparent 60%), var(--soft); padding: 24px; }
.login-card { width: 100%; max-width: 420px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); padding: 38px; }
.login-card .brand { margin-bottom: 22px; }
.demo-creds { background: var(--soft); border: 1px dashed #C9D4EC; border-radius: 10px; padding: 13px 16px; font-size: 12.5px; color: var(--slate); margin-top: 18px; line-height: 1.8; }
.demo-creds code { font-family: var(--mono); background: #fff; padding: 1px 6px; border-radius: 5px; border: 1px solid var(--line); }

/* modal */
.modal-bg { position: fixed; inset: 0; background: rgba(5, 13, 36, .55); display: none; align-items: center; justify-content: center; z-index: 200; padding: 20px; }
.modal-bg.open { display: flex; }
.modal { background: #fff; border-radius: var(--radius-lg); max-width: 540px; width: 100%; padding: 32px; box-shadow: var(--shadow-lg); max-height: 88vh; overflow-y: auto; }
.modal h3 { font-size: 19px; margin-bottom: 14px; letter-spacing: -.02em; }

/* utility */
.mt-1 { margin-top: 8px; } .mt-2 { margin-top: 16px; } .mt-3 { margin-top: 28px; } .mt-4 { margin-top: 44px; } .mt-5 { margin-top: 64px; }
.mb-2 { margin-bottom: 16px; } .mb-3 { margin-bottom: 28px; }
.muted { color: var(--slate-light); } .small { font-size: 13px; }
.flex { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }
.right { margin-left: auto; }
.divider { height: 1px; background: var(--line); margin: 26px 0; border: 0; }

/* responsive */
@media (max-width: 1020px) {
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .band-grid { grid-template-columns: 1fr 1fr; gap: 34px; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .kpis { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
  .hero-grid, .tab-panel.active, .grid-2, .grid-3, .steps { grid-template-columns: 1fr; }
  .nav-links { display: none; position: fixed; top: 72px; left: 0; right: 0; background: #fff; flex-direction: column; padding: 18px 28px 26px; gap: 4px; border-bottom: 1px solid var(--line); box-shadow: var(--shadow-lg); }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 10px 0; font-size: 16px; }
  .nav-burger { display: block; }
  .nav-cta .btn-ghost { display: none; }
  .hero { padding-top: 140px; }
  .app { grid-template-columns: 1fr; }
  .side { position: static; height: auto; flex-direction: row; flex-wrap: wrap; align-items: center; gap: 4px; }
  .side .brand { padding: 0 12px 0 0; }
  .side .spacer, .side .who { display: none; }
  .main { padding: 24px 18px; }
  .cta { padding: 52px 26px; }
}
