/* landing.css — 3SKID marketing site. Dark, technical, cyan-ice brand.
   Self-contained (its own tokens); pairs with landing.js. Theme via
   :root[data-theme="light"|"dark"] + prefers-color-scheme. */

/* Palette locked to the app (style.css): pure-black ground, cyan-ice accent,
   the same card/border greys and Segoe UI face, so the site reads as one product. */
:root {
  --bg: #000000;
  --bg-soft: #0a0a0a;
  --panel: #0a0a0a;
  --card: #141416;
  --card-2: #1e1e20;
  --line: #28282c;
  --line-2: #34343a;
  --fg: #f0f0f0;
  --fg-2: #bcbcc2;
  --mute: #808085;
  --accent: #42e8e0;
  --accent-2: #86f2ec;
  --accent-deep: #17b8af;
  --accent-ink: #04211f;
  --green: #4bd07a;
  --glow: 66, 232, 224;
  --maxw: 1160px;
  --radius: 16px;
  --radius-sm: 11px;
  --font: "Segoe UI", -apple-system, BlinkMacSystemFont, Roboto, "Helvetica Neue", sans-serif;
  --mono: "SF Mono", "JetBrains Mono", "Cascadia Code", Consolas, ui-monospace, monospace;
}
@media (prefers-color-scheme: light) {
  :root:not([data-theme="dark"]) {
    --bg: #e7e9ed; --bg-soft: #dfe2e7; --panel: #ffffff; --card: #ffffff; --card-2: #f3f5f8;
    --line: #d5d8de; --line-2: #c2c6cd; --fg: #1b1d21; --fg-2: #44474d; --mute: #6a6d73;
    --accent: #0d9c94; --accent-2: #11b3aa; --accent-deep: #0a7a73; --accent-ink: #ffffff; --glow: 13, 156, 148;
  }
}
:root[data-theme="light"] {
  --bg: #e7e9ed; --bg-soft: #dfe2e7; --panel: #ffffff; --card: #ffffff; --card-2: #f3f5f8;
  --line: #d5d8de; --line-2: #c2c6cd; --fg: #1b1d21; --fg-2: #44474d; --mute: #6a6d73;
  --accent: #0d9c94; --accent-2: #11b3aa; --accent-deep: #0a7a73; --accent-ink: #ffffff; --glow: 13, 156, 148;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 84px; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
h1, h2, h3 { margin: 0; line-height: 1.12; letter-spacing: -0.02em; text-wrap: balance; }
p { margin: 0; }

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.section { padding: clamp(64px, 9vw, 120px) 0; position: relative; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12.5px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--accent); padding: 6px 12px; border-radius: 999px;
  background: rgba(var(--glow), 0.09); border: 1px solid rgba(var(--glow), 0.22);
}
.section-head { max-width: 640px; margin: 0 auto clamp(40px, 5vw, 64px); text-align: center; }
.section-head h2 { font-size: clamp(28px, 4vw, 44px); font-weight: 800; }
.section-head p { margin-top: 14px; color: var(--fg-2); font-size: clamp(15px, 1.5vw, 18px); }

/* ── buttons ── */
/* [hidden] reset — .btn/.acct set an explicit `display`, which overrides the
   UA `[hidden]{display:none}` rule (specificity). Without this, landing.js
   setting `el.hidden = true` on the signed-out Log in / Get started buttons
   does NOT hide them, so they show alongside the signed-in account chip.
   Mirrors credits5gb.css's scoped reset, applied here to the landing nav. */
[hidden] { display: none !important; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  height: 46px; padding: 0 22px; border-radius: 11px; font-size: 15px; font-weight: 650;
  border: 1px solid transparent; cursor: pointer; white-space: nowrap;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease, color .2s ease;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--accent); color: var(--accent-ink); box-shadow: 0 8px 26px -8px rgba(var(--glow), 0.6); }
.btn-primary:hover { background: var(--accent-2); box-shadow: 0 12px 32px -8px rgba(var(--glow), 0.8); }
.btn-ghost { background: transparent; color: var(--fg); border-color: var(--line-2); }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }
.btn-sm { height: 40px; padding: 0 16px; font-size: 14px; border-radius: 10px; }
.btn-lg { height: 52px; padding: 0 28px; font-size: 16px; }

/* ── header ── */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: color-mix(in srgb, var(--bg) 78%, transparent);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; gap: 22px; height: 68px; }
.brand { display: flex; align-items: center; gap: 10px; font-weight: 800; letter-spacing: 2.5px; font-size: 19px; }
.brand .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 14px 1px rgba(var(--glow), 0.9); }
.nav-links { display: flex; align-items: center; gap: 6px; margin-inline-start: 14px; }
.nav-links a { padding: 8px 12px; border-radius: 9px; color: var(--fg-2); font-size: 14.5px; font-weight: 550; transition: color .15s, background .15s; }
.nav-links a:hover { color: var(--fg); background: var(--card-2); }
.nav-actions { display: flex; align-items: center; gap: 10px; margin-inline-start: auto; }

.icon-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 7px;
  height: 40px; min-width: 40px; padding: 0 10px; border-radius: 10px;
  background: var(--card); border: 1px solid var(--line); color: var(--fg); cursor: pointer;
  font-size: 14px; font-weight: 600; transition: border-color .15s, background .15s, color .15s;
}
.icon-btn:hover { border-color: var(--accent); color: var(--accent); }

/* language dropdown */
.lang { position: relative; }
.lang-panel {
  position: absolute; inset-inline-end: 0; top: calc(100% + 8px);
  min-width: 168px; padding: 6px; border-radius: 12px;
  background: var(--card); border: 1px solid var(--line-2); box-shadow: 0 18px 40px -12px rgba(0,0,0,.55);
  display: none; z-index: 120;
}
.lang-panel.open { display: block; }
.lang-panel button {
  display: flex; width: 100%; align-items: center; gap: 10px; padding: 9px 11px; border-radius: 8px;
  background: transparent; border: 0; color: var(--fg); font-size: 14px; font-weight: 550; cursor: pointer; text-align: start;
}
.lang-panel button:hover { background: var(--card-2); }
.lang-panel button[aria-current="true"] { color: var(--accent); }
.lang-panel button .tick { margin-inline-start: auto; opacity: 0; }
.lang-panel button[aria-current="true"] .tick { opacity: 1; }

/* mobile menu button */
.menu-toggle { display: none; }

/* ── signed-in account control ── */
.acct { position: relative; }
.acct-btn {
  display: inline-flex; align-items: center; gap: 9px; height: 40px; padding: 0 10px 0 6px;
  background: var(--card); border: 1px solid var(--line); border-radius: 999px; cursor: pointer;
  color: var(--fg); font-size: 14px; font-weight: 600; transition: border-color .15s;
}
.acct-btn:hover { border-color: var(--accent); }
.acct-av {
  flex: none; width: 28px; height: 28px; border-radius: 50%; display: grid; place-items: center;
  background: var(--accent); color: var(--accent-ink); font-weight: 800; font-size: 13px; text-transform: uppercase;
}
.acct-name { max-width: 160px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.acct-chev { opacity: .6; }
.acct-menu {
  position: absolute; inset-inline-end: 0; top: calc(100% + 8px); min-width: 240px; padding: 6px;
  background: var(--card); border: 1px solid var(--line-2); border-radius: 14px;
  box-shadow: 0 18px 44px -12px rgba(0,0,0,.6); display: none; z-index: 120;
}
.acct-menu.open { display: block; }
.acct-head { display: flex; align-items: center; gap: 10px; padding: 10px 10px 12px; border-bottom: 1px solid var(--line); margin-bottom: 6px; }
.acct-email { font-size: 13.5px; color: var(--fg-2); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.acct-item {
  display: flex; width: 100%; align-items: center; gap: 10px; padding: 11px 12px; border-radius: 9px;
  background: transparent; border: 0; color: var(--fg); font-size: 14.5px; font-weight: 550; cursor: pointer; text-align: start;
}
.acct-item:hover { background: var(--card-2); }
.acct-item svg { flex: none; opacity: .8; }
.acct-open { color: var(--accent); }
.acct-open svg { opacity: 1; }
.acct-logout { color: var(--fg-2); }

/* ── hero ── */
.hero { position: relative; padding-top: clamp(52px, 7vw, 96px); padding-bottom: clamp(48px, 6vw, 88px); overflow: hidden; }
.hero::before {
  content: ""; position: absolute; inset: -10% -20% auto; height: 620px; z-index: -1;
  background: radial-gradient(60% 60% at 60% 20%, rgba(var(--glow), 0.16), transparent 70%);
  pointer-events: none;
}
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(32px, 5vw, 64px); align-items: center; }
.hero h1 { font-size: clamp(34px, 5.4vw, 62px); font-weight: 850; }
.hero h1 .grad { background: linear-gradient(120deg, var(--accent-2), var(--accent-deep)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero .lede { margin-top: 22px; font-size: clamp(16px, 1.7vw, 19px); color: var(--fg-2); max-width: 34em; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.hero-note { margin-top: 16px; font-size: 13.5px; color: var(--mute); display: flex; align-items: center; gap: 8px; }
.hero-note svg { color: var(--accent); flex: none; }

/* demo card */
.demo {
  border-radius: var(--radius); border: 1px solid var(--line-2); overflow: hidden;
  background: linear-gradient(180deg, var(--card), var(--panel));
  box-shadow: 0 30px 70px -30px rgba(0,0,0,.7), 0 0 0 1px rgba(var(--glow), 0.05);
}
.demo-bar { display: flex; align-items: center; gap: 8px; padding: 12px 14px; border-bottom: 1px solid var(--line); background: var(--card-2); }
.demo-bar .dots { display: flex; gap: 6px; }
.demo-bar .dots i { width: 10px; height: 10px; border-radius: 50%; background: var(--line-2); }
.demo-bar .title { margin-inline-start: 8px; font-size: 12.5px; color: var(--mute); font-weight: 600; letter-spacing: .04em; }
.demo-body { padding: 10px; font-family: var(--mono); font-size: 12.5px; }
.demo-row { display: flex; align-items: center; gap: 10px; padding: 9px 10px; border-radius: 9px; }
.demo-row + .demo-row { margin-top: 2px; }
.demo-row.ok { background: rgba(75, 208, 122, 0.06); }
.demo-email { color: var(--fg-2); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; flex: 1 1 0; min-width: 0; }
.demo-badge { flex: none; font-weight: 700; font-size: 11px; letter-spacing: .04em; padding: 3px 9px; border-radius: 999px; color: var(--green); background: rgba(75, 208, 122, 0.13); }
.demo-badge.bind { color: var(--accent); background: rgba(var(--glow), 0.13); }
.demo-charged { flex: none; color: var(--mute); font-size: 11px; }
.demo-foot { padding: 11px 14px; border-top: 1px solid var(--line); color: var(--mute); font-size: 12px; display: flex; justify-content: space-between; }
.demo-foot b { color: var(--green); }

/* ── trust strip ── */
.trust { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--bg-soft); }
.trust .wrap { display: flex; flex-wrap: wrap; gap: 14px 34px; justify-content: center; padding: 22px 24px; }
.trust span { display: inline-flex; align-items: center; gap: 9px; color: var(--fg-2); font-weight: 600; font-size: 14.5px; }
.trust span svg { color: var(--accent); flex: none; }

/* ── how it works ── */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.step { position: relative; padding: 28px 24px; border-radius: var(--radius); background: var(--card); border: 1px solid var(--line); }
.step .num { font-family: var(--mono); font-size: 13px; font-weight: 700; color: var(--accent-ink); background: var(--accent); width: 30px; height: 30px; border-radius: 9px; display: grid; place-items: center; }
.step h3 { margin-top: 18px; font-size: 19px; font-weight: 700; }
.step p { margin-top: 9px; color: var(--fg-2); font-size: 14.5px; }
.step::after { content: ""; position: absolute; inset-inline-end: -10px; top: 46px; width: 20px; height: 1px; background: var(--line-2); display: none; }

/* ── services ── */
.cards3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.card {
  display: flex; flex-direction: column; padding: 28px 24px; border-radius: var(--radius);
  background: linear-gradient(180deg, var(--card), var(--panel)); border: 1px solid var(--line);
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.card:hover { transform: translateY(-4px); border-color: rgba(var(--glow), 0.4); box-shadow: 0 22px 50px -26px rgba(var(--glow), 0.5); }
.card .ico { width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center; color: var(--accent); background: rgba(var(--glow), 0.1); border: 1px solid rgba(var(--glow), 0.2); }
.card h3 { margin-top: 18px; font-size: 20px; font-weight: 750; }
.card p { margin-top: 10px; color: var(--fg-2); font-size: 14.5px; flex: 1; }
.card .chip { margin-top: 18px; align-self: flex-start; font-family: var(--mono); font-size: 12.5px; font-weight: 600; color: var(--accent); padding: 5px 11px; border-radius: 999px; background: rgba(var(--glow), 0.1); border: 1px solid rgba(var(--glow), 0.2); }
.card .card-link { margin-top: 16px; color: var(--accent); font-weight: 600; font-size: 14px; display: inline-flex; align-items: center; gap: 6px; }
.card .card-link:hover { gap: 10px; }

/* ── pricing ── */
.pricing-wrap { display: grid; grid-template-columns: 1fr; max-width: 620px; margin: 0 auto; }
.price-card { border-radius: var(--radius); border: 1px solid var(--line-2); overflow: hidden; background: var(--card); }
.price-top { padding: 30px 28px; text-align: center; background: linear-gradient(180deg, rgba(var(--glow), 0.08), transparent); border-bottom: 1px solid var(--line); }
.price-top .amt { font-size: 46px; font-weight: 850; letter-spacing: -0.03em; }
.price-top .amt small { font-size: 20px; color: var(--mute); font-weight: 600; }
.price-top .amt-label { color: var(--fg-2); font-size: 14px; margin-top: 4px; }
.price-rows { padding: 10px 12px; }
.price-row { display: flex; align-items: center; justify-content: space-between; padding: 15px 16px; border-radius: 11px; }
.price-row + .price-row { border-top: 1px solid var(--line); }
.price-row span { color: var(--fg-2); font-size: 15px; }
.price-row b { font-family: var(--mono); font-size: 15px; font-weight: 700; }
.price-row b em { font-style: normal; color: var(--mute); font-weight: 500; font-size: 13px; }
.price-foot { padding: 20px 28px 28px; text-align: center; }
.price-foot p { color: var(--mute); font-size: 13.5px; margin-bottom: 18px; }

/* ── features grid ── */
.feats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.feat { padding: 24px; border-radius: var(--radius-sm); background: var(--card); border: 1px solid var(--line); }
.feat .ico { width: 40px; height: 40px; border-radius: 10px; display: grid; place-items: center; color: var(--accent); background: rgba(var(--glow), 0.09); }
.feat h3 { margin-top: 15px; font-size: 16.5px; font-weight: 700; }
.feat p { margin-top: 7px; color: var(--fg-2); font-size: 14px; }

/* ── faq ── */
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item { border: 1px solid var(--line); border-radius: var(--radius-sm); background: var(--card); overflow: hidden; }
.faq-q { display: flex; width: 100%; align-items: center; gap: 16px; padding: 20px 22px; background: transparent; border: 0; color: var(--fg); font-size: 16px; font-weight: 650; cursor: pointer; text-align: start; }
.faq-q .plus { margin-inline-start: auto; flex: none; width: 22px; height: 22px; position: relative; transition: transform .2s ease; color: var(--accent); }
.faq-q .plus::before, .faq-q .plus::after { content: ""; position: absolute; inset: 50% 2px auto 2px; height: 2px; background: currentColor; border-radius: 2px; transition: opacity .2s; }
.faq-q .plus::after { transform: rotate(90deg); }
.faq-item.open .faq-q .plus::after { opacity: 0; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .28s ease; }
.faq-a p { padding: 0 22px 20px; color: var(--fg-2); font-size: 15px; }

/* ── final cta ── */
.cta-band { position: relative; overflow: hidden; }
.cta-inner { position: relative; text-align: center; padding: clamp(48px, 7vw, 80px) 28px; border-radius: 24px; border: 1px solid rgba(var(--glow), 0.3); background: radial-gradient(70% 120% at 50% 0%, rgba(var(--glow), 0.14), var(--card)); }
.cta-inner h2 { font-size: clamp(26px, 3.6vw, 40px); font-weight: 830; }
.cta-inner p { margin-top: 14px; color: var(--fg-2); font-size: 17px; }
.cta-inner .hero-cta { justify-content: center; margin-top: 28px; }

/* ── footer ── */
.footer { border-top: 1px solid var(--line); background: var(--bg-soft); padding: 56px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; }
.footer .brand { margin-bottom: 14px; }
.footer-tag { color: var(--fg-2); font-size: 14px; max-width: 30ch; }
.footer h4 { font-size: 12.5px; letter-spacing: .12em; text-transform: uppercase; color: var(--mute); margin: 0 0 14px; }
.footer ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.footer ul a { color: var(--fg-2); font-size: 14.5px; }
.footer ul a:hover { color: var(--accent); }
.footer-bottom { margin-top: 44px; padding-top: 22px; border-top: 1px solid var(--line); display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; align-items: center; }
.footer-bottom .disc { color: var(--mute); font-size: 12.5px; max-width: 62ch; }
.footer-bottom .copy { color: var(--mute); font-size: 13px; }

/* reveal-on-scroll */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* main-website sponsor banner — sits directly above the hero demo card */
.hero-visual { display: flex; flex-direction: column; gap: 14px; }
.sponsor {
  display: flex; align-items: center; gap: 13px; padding: 13px 16px; border-radius: 14px;
  text-decoration: none; color: var(--fg);
  background: linear-gradient(120deg, rgba(var(--glow), 0.16), rgba(var(--glow), 0.03));
  border: 1px solid rgba(var(--glow), 0.42);
  box-shadow: 0 12px 30px -16px rgba(var(--glow), 0.55);
  transition: border-color .18s ease, transform .18s ease, box-shadow .18s ease;
}
.sponsor:hover { border-color: var(--accent); transform: translateY(-2px); box-shadow: 0 18px 42px -16px rgba(var(--glow), 0.8); }
.sponsor-star { color: var(--accent); font-size: 17px; line-height: 1; flex: none; }
.sponsor-text { display: flex; flex-direction: column; gap: 2px; line-height: 1.15; }
.sponsor-tag { font-size: 10.5px; font-weight: 700; letter-spacing: 1.4px; text-transform: uppercase; color: var(--accent); }
.sponsor-name { font-size: 15.5px; font-weight: 700; color: var(--fg); }
.sponsor-arrow { margin-inline-start: auto; color: var(--accent); flex: none; transition: transform .18s ease; }
.sponsor:hover .sponsor-arrow { transform: translateX(3px); }
[dir="rtl"] .sponsor-arrow { transform: scaleX(-1); }
[dir="rtl"] .sponsor:hover .sponsor-arrow { transform: scaleX(-1) translateX(3px); }

/* service shortcut cards (between the sponsor banner and the demo) */
.hero-shortcuts { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.hshort {
  display: flex; flex-direction: column; gap: 7px; padding: 15px 15px 16px;
  border-radius: 14px; text-decoration: none;
  background: var(--card); border: 1px solid var(--line-2);
  transition: border-color .18s ease, transform .18s ease, box-shadow .18s ease;
}
.hshort:hover { border-color: rgba(var(--glow), 0.5); transform: translateY(-3px); box-shadow: 0 16px 36px -20px rgba(var(--glow), 0.5); }
.hshort-top { display: flex; align-items: center; justify-content: space-between; }
.hshort-ico { width: 40px; height: 40px; border-radius: 11px; display: grid; place-items: center; color: var(--accent); background: rgba(var(--glow), 0.1); border: 1px solid rgba(var(--glow), 0.2); }
.hshort-badge { font-family: var(--mono); font-size: 11px; font-weight: 600; color: var(--accent); padding: 3px 9px; border-radius: 999px; background: rgba(var(--glow), 0.1); border: 1px solid rgba(var(--glow), 0.22); }
.hshort-title { font-size: 14.5px; font-weight: 700; color: var(--fg); margin-top: 3px; }
.hshort-sub { font-size: 12.5px; color: var(--fg-2); line-height: 1.35; }

/* ── responsive ── */
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { max-width: 520px; margin-inline: auto; width: 100%; }
  .demo { max-width: 520px; }
  .steps, .cards3, .feats { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
}
@media (max-width: 720px) {
  .steps, .cards3, .feats { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav { gap: 10px; }
  .nav-actions { gap: 7px; }
}
/* Phones: the action bar has many items (language, theme, picker, download,
   log in / get started / account) that overflowed a single fixed-height row and
   pushed Download / Log in / Get started off-screen. Let the header wrap: brand
   on top, the actions on a centered full-width row (or two) below — nothing
   clipped, everything tappable. */
@media (max-width: 640px) {
  .site-header .nav { flex-wrap: wrap; height: auto; padding: 9px 0; row-gap: 9px; }
  .nav-actions { width: 100%; margin-inline-start: 0; flex-wrap: wrap; justify-content: center; gap: 8px; }
  .nav-actions .btn-sm { height: 38px; padding: 0 13px; font-size: 13px; }
  .icon-btn, .tpick-btn { height: 38px; }
  #themeBtn { display: none; }               /* moon is redundant with the picker's Light toggle */
  #navDownload .dl-text { display: none; }    /* download → icon-only to save room */
  #navDownload { padding: 0 11px; }
  .acct-name { max-width: 130px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
  /* keep the dropdowns on-screen now that their buttons are centered */
  .lang-panel { inset-inline-end: auto; inset-inline-start: 0; }
  .tpick-menu { inset-inline-end: auto; inset-inline-start: 0; max-width: 90vw; }
}
@media (max-width: 500px) {
  #langLabel { display: none; }              /* globe only, save room */
  .icon-btn { min-width: 38px; padding: 0 9px; }
  .footer-grid { grid-template-columns: 1fr; }
  .trust .wrap { gap: 12px 20px; }
  .hero-cta .btn { flex: 1 1 auto; }
}
