/* =========================================================================
   OnlineFileCabinet — marketing site. Shares the product's design language
   (IBM Plex + clean-clinical OKLCH palette) so signup feels continuous.
   ========================================================================= */
:root {
  --bg: oklch(0.99 0.004 240);
  --surface: #ffffff;
  --surface-2: oklch(0.975 0.005 240);
  --surface-3: oklch(0.955 0.006 240);
  --ink: oklch(0.26 0.02 260);
  --ink-2: oklch(0.46 0.02 260);
  --ink-3: oklch(0.6 0.015 260);
  --line: oklch(0.91 0.008 250);
  --line-2: oklch(0.95 0.005 250);

  --accent: oklch(0.56 0.13 255);
  --accent-strong: oklch(0.48 0.14 255);
  --accent-ink: oklch(0.45 0.14 255);
  --accent-soft: oklch(0.96 0.03 255);
  --accent-line: oklch(0.86 0.06 255);

  --dark: oklch(0.26 0.03 262);
  --radius: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 1px 2px oklch(0.3 0.03 260 / .06), 0 1px 1px oklch(0.3 0.03 260 / .04);
  --shadow-md: 0 8px 26px oklch(0.3 0.03 260 / .09), 0 2px 6px oklch(0.3 0.03 260 / .05);
  --shadow-lg: 0 26px 70px oklch(0.25 0.04 260 / .22), 0 8px 22px oklch(0.25 0.04 260 / .1);
  --font: "IBM Plex Sans", system-ui, -apple-system, sans-serif;
  --mono: "IBM Plex Mono", ui-monospace, Menlo, monospace;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; font-family: var(--font); background: var(--bg); color: var(--ink);
  font-size: 16px; line-height: 1.5; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }
a { color: inherit; text-decoration: none; }
svg { display: block; }
.wrap { width: 100%; max-width: 1140px; margin: 0 auto; padding: 0 24px; }

/* ---------- type ---------- */
h1 { font-size: clamp(36px, 5.4vw, 60px); line-height: 1.04; letter-spacing: -0.03em; font-weight: 700; margin: 0; }
h2 { font-size: clamp(27px, 3.6vw, 40px); line-height: 1.1; letter-spacing: -0.025em; font-weight: 700; margin: 0 0 12px; }
h3 { font-size: 18px; font-weight: 600; letter-spacing: -0.01em; margin: 0 0 6px; }
.lead { font-size: clamp(17px, 1.6vw, 20px); color: var(--ink-2); margin: 18px 0 26px; max-width: 36ch; }
.muted { color: var(--ink-2); font-size: 17px; max-width: 52ch; }
.eyebrow { display: inline-block; font-size: 12.5px; font-weight: 600; letter-spacing: 0.09em; text-transform: uppercase;
  color: var(--accent-ink); background: var(--accent-soft); border: 1px solid var(--accent-line); padding: 5px 11px; border-radius: 999px; margin-bottom: 18px; }
.eyebrow--ink { color: var(--accent-ink); }
.eyebrow--light { color: oklch(0.85 0.05 255); background: oklch(1 0 0 / .08); border-color: oklch(1 0 0 / .14); }
.center { text-align: center; }
.center__lead { margin: 14px auto 0; max-width: 60ch; }
.section { padding: clamp(64px, 9vw, 112px) 0; }
.section--tint { background: var(--surface-2); border-top: 1px solid var(--line-2); border-bottom: 1px solid var(--line-2); }

/* ---------- buttons ---------- */
.btn { display: inline-flex; align-items: center; gap: 8px; font: inherit; font-size: 15px; font-weight: 600;
  border-radius: 11px; padding: 11px 18px; border: 1px solid transparent; cursor: pointer; transition: all .15s; white-space: nowrap; }
.btn--lg { font-size: 16px; padding: 14px 22px; border-radius: 12px; }
.btn--primary { background: var(--accent); color: #fff; box-shadow: var(--shadow-sm); }
.btn--primary:hover { background: var(--accent-strong); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn--ghost { background: var(--surface); color: var(--ink); border-color: var(--line); }
.btn--ghost:hover { background: var(--surface-2); border-color: var(--accent-line); }

/* ---------- nav ---------- */
.nav { position: sticky; top: 0; z-index: 50; background: oklch(1 0 0 / .82); backdrop-filter: saturate(160%) blur(14px); border-bottom: 1px solid var(--line); }
.nav__inner { display: flex; align-items: center; gap: 18px; height: 66px; }
.brand { display: flex; align-items: center; gap: 10px; }
.brand__mark { width: 32px; height: 32px; border-radius: 9px; display: grid; place-items: center; background: var(--accent); color: #fff; box-shadow: var(--shadow-sm); }
.brand__name { font-size: 16.5px; color: var(--ink-2); font-weight: 400; }
.brand__name strong { color: var(--ink); font-weight: 700; }
.nav__links { display: flex; gap: 26px; margin-left: 22px; }
.nav__links a { font-size: 14.5px; font-weight: 500; color: var(--ink-2); }
.nav__links a:hover { color: var(--accent-ink); }
.nav__cta { margin-left: auto; display: flex; align-items: center; gap: 10px; }
.nav__phone { display: flex; align-items: center; gap: 6px; font-size: 14px; font-weight: 600; color: var(--accent); white-space: nowrap; }
.nav__phone svg { color: var(--accent); }
@media (max-width: 980px) { .nav__phone { display: none; } }
.nav__burger { display: none; margin-left: auto; width: 42px; height: 38px; border: 1px solid var(--line); border-radius: 9px; background: var(--surface); flex-direction: column; gap: 4px; align-items: center; justify-content: center; cursor: pointer; }
.nav__burger span { width: 18px; height: 2px; background: var(--ink); border-radius: 2px; }

/* ---------- hero ---------- */
.hero { padding: clamp(48px, 7vw, 92px) 0 clamp(56px, 8vw, 100px);
  background: radial-gradient(1200px 560px at 78% -8%, var(--accent-soft), transparent 60%), var(--bg); overflow: hidden; }
.hero__grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 56px; align-items: center; }
/* rotating question headline */
/* min-height reserves space for the TALLEST rotating question (up to 3-4 lines)
   so a long one never overflows onto the sub-text below it. */
.hero__q { position: relative; min-height: 3.5em; }
.hero__q-line { position: absolute; left: 0; right: 0; top: 0; opacity: 0; transform: translateY(12px);
  transition: opacity .55s ease, transform .55s ease; }
.hero__q-line.is-on { opacity: 1; transform: none; }
@media (max-width: 900px) { .hero__q { min-height: 4.6em; } }
@media (max-width: 520px) { .hero__q { min-height: 5.6em; } }
@media (prefers-reduced-motion: reduce) { .hero__q-line { transition: none; } }

.hero__actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hero__ticks { list-style: none; display: flex; flex-wrap: wrap; gap: 8px 22px; margin: 26px 0 0; padding: 0; }
.hero__ticks li { display: flex; align-items: center; gap: 7px; font-size: 14px; color: var(--ink-2); font-weight: 500; }
.hero__ticks svg { color: oklch(0.62 0.14 150); }
.hero__trust { display: flex; align-items: center; gap: 8px; margin: 18px 0 0; font-size: 13.5px; color: var(--ink-2); }
.hero__trust svg { color: var(--accent); flex-shrink: 0; }

/* product peek */
.hero__peek { position: relative; }
.peek { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); overflow: hidden; }
.peek__bar { display: flex; align-items: center; gap: 7px; padding: 12px 14px; border-bottom: 1px solid var(--line-2); background: var(--surface-2); }
.peek__bar > span { width: 10px; height: 10px; border-radius: 50%; background: var(--line); }
.peek__search { margin-left: 10px; flex: 1; display: flex; align-items: center; gap: 8px; height: 30px; padding: 0 11px; border-radius: 8px; border: 1px solid var(--line); background: var(--surface); color: var(--ink-3); font-size: 12.5px; }
/* app-accurate hero: drawers sidebar + folder file list */
.peek__app { display: grid; grid-template-columns: 178px 1fr; }
.peek__side { border-right: 1px solid var(--line-2); background: var(--surface-2); padding: 12px 10px; }
.peek__sidelabel { font-size: 9.5px; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-3); font-weight: 700; padding: 2px 8px 9px; }
.peek__nav { display: flex; flex-direction: column; gap: 2px; }
.peek__navitem { display: flex; align-items: center; gap: 8px; padding: 7px 9px; border-radius: 8px; font-size: 12px; font-weight: 500; color: var(--ink-2); white-space: nowrap; }
.peek__navitem svg { color: oklch(0.55 0.12 var(--c)); flex: none; }
.peek__navitem span { overflow: hidden; text-overflow: ellipsis; }
.peek__navitem b { margin-left: auto; font-family: var(--mono); font-size: 10px; color: var(--ink-3); font-weight: 600; }
.peek__navitem.is-active { background: var(--accent-soft); color: var(--accent-ink); font-weight: 600; }
.peek__navitem.is-active b { color: var(--accent-ink); }
.peek__navitem--muted svg { color: var(--ink-3); opacity: .6; }
.peek__main { padding: 14px 16px 16px; min-width: 0; }
.peek__info { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; padding: 11px 14px; border: 1px solid var(--line-2); border-radius: 11px; margin-bottom: 11px; }
.peek__infocell { display: flex; flex-direction: column; gap: 3px; }
.peek__infocell span { font-size: 9px; letter-spacing: .05em; text-transform: uppercase; color: var(--ink-3); font-weight: 700; }
.peek__infocell b { font-size: 13px; font-weight: 600; }
.peek__filesearch { display: flex; align-items: center; gap: 8px; height: 32px; padding: 0 11px; border-radius: 8px; border: 1px solid var(--line); background: var(--surface-2); color: var(--ink-3); font-size: 12px; margin-bottom: 11px; }
.peek__filesearch em { margin-left: auto; font-style: normal; font-size: 11px; }
.peek__crumb { font-size: 11px; color: var(--ink-3); margin-bottom: 12px; }
.peek__crumb b { color: var(--ink-2); font-weight: 600; }
.peek__crumb span { margin: 0 5px; color: var(--line); }
.peek__fhead { display: flex; align-items: center; gap: 11px; margin-bottom: 13px; }
.peek__ficon { width: 38px; height: 38px; border-radius: 11px; display: grid; place-items: center; color: var(--accent-ink); background: var(--accent-soft); flex: none; }
.peek__fmeta { margin-right: auto; min-width: 0; }
.peek__ftitle { font-weight: 700; font-size: 17px; line-height: 1.15; }
.peek__fsub { font-size: 11.5px; color: var(--ink-3); }
.peek__btn { display: inline-flex; align-items: center; gap: 6px; padding: 7px 12px; border-radius: 8px; font-size: 12px; font-weight: 600; border: 1px solid var(--line); color: var(--ink-2); flex: none; }
.peek__btn--primary { background: var(--accent); color: #fff; border-color: transparent; }
.peek__table { border: 1px solid var(--line-2); border-radius: 11px; overflow: hidden; }
.peek__tr { display: grid; grid-template-columns: 1.7fr 1.1fr 0.9fr; align-items: center; gap: 10px; padding: 10px 13px; font-size: 12px; border-top: 1px solid var(--line-2); }
.peek__tr:first-child { border-top: 0; }
.peek__tr--head { background: var(--surface-2); font-size: 9.5px; letter-spacing: .05em; text-transform: uppercase; color: var(--ink-3); font-weight: 700; }
.peek__cell { display: flex; align-items: center; gap: 9px; font-weight: 500; min-width: 0; }
.peek__cell { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.peek__desc, .peek__updated { color: var(--ink-3); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.peek__glyph { width: 26px; height: 30px; border-radius: 6px; display: grid; place-items: center; font-family: var(--mono); font-size: 8px; font-weight: 700; font-style: normal; flex: none;
  background: oklch(0.95 0.045 12); color: oklch(0.5 0.13 12); }
.peek__glyph--i { background: oklch(0.95 0.045 150); color: oklch(0.5 0.13 150); }
.peek__chip { position: absolute; display: flex; align-items: center; gap: 7px; padding: 8px 13px; background: var(--surface); border: 1px solid var(--line);
  border-radius: 999px; box-shadow: var(--shadow-md); font-size: 13px; font-weight: 600; }
.peek__chip svg { color: var(--accent); }
.peek__chip--a { top: 18px; left: -26px; }
.peek__chip--b { bottom: 26px; right: -22px; }

/* ---------- trust band ---------- */
.band { padding: 26px 0; border-bottom: 1px solid var(--line-2); background: var(--surface); }
.band__inner { display: flex; align-items: center; gap: 26px; flex-wrap: wrap; justify-content: center; }
.band__label { font-size: 13px; font-weight: 600; color: var(--ink-3); margin: 0; }
.band__list { list-style: none; display: flex; flex-wrap: wrap; gap: 10px 22px; margin: 0; padding: 0; }
.band__list li { font-size: 14px; font-weight: 600; color: var(--ink-2); }

/* ---------- split / problem ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.split--center { align-items: center; }
.problem { list-style: none; margin: 0; padding: 0; display: grid; gap: 11px; }
.problem li { display: flex; align-items: center; gap: 13px; background: var(--surface); border: 1px solid var(--line); border-radius: 12px; padding: 15px 18px; font-weight: 500; box-shadow: var(--shadow-sm); }
.problem__ico { width: 34px; height: 34px; border-radius: 9px; display: grid; place-items: center; color: var(--accent-ink); background: var(--accent-soft); flex: none; }

/* ---------- chain (how it works) ---------- */
.chain { display: flex; align-items: stretch; gap: 14px; margin-top: 46px; }
.chain__node { flex: 1; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px 20px; text-align: center; box-shadow: var(--shadow-sm); }
.chain__ico { width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center; margin: 0 auto 14px; color: oklch(0.5 0.13 var(--c)); background: oklch(0.96 0.035 var(--c)); }
.chain__node p { font-size: 14px; color: var(--ink-3); margin: 0; }
.chain__arrow { align-self: center; color: var(--ink-3); flex-shrink: 0; }
.hint { display: inline-flex; align-items: center; gap: 8px; margin-top: 26px; font-size: 14.5px; color: var(--ink-2); background: var(--surface-2); border: 1px solid var(--line); padding: 9px 16px; border-radius: 999px; }
.hint svg { color: var(--accent); }

/* ---------- cards / features ---------- */
.cards3, .grid3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 42px; }
.uc { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; box-shadow: var(--shadow-sm); transition: transform .15s, box-shadow .15s, border-color .15s; }
.uc:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--accent-line); }
.uc__scheme { font-size: 14px; color: var(--ink-2); margin: 0; }
.uc__scheme b { color: var(--ink); }
.feat { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow-sm); transition: transform .15s, box-shadow .15s; }
.feat:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.feat__ico { width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center; margin-bottom: 14px; color: oklch(0.5 0.13 var(--c)); background: oklch(0.96 0.035 var(--c)); }
.feat p { color: var(--ink-2); font-size: 15px; margin: 0; }

/* ---------- dark / differentiator ---------- */
.section--dark { background:
  radial-gradient(900px 420px at 20% 0%, oklch(0.34 0.06 262), transparent 60%), var(--dark); color: oklch(0.92 0.01 260); }
.on-dark { color: #fff; }
.muted--light { color: oklch(0.78 0.02 260); font-size: 17px; }
.versus { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 44px; }
.versus__col { border-radius: var(--radius); padding: 26px; }
.versus__col h4 { margin: 0 0 16px; font-size: 15px; letter-spacing: .02em; text-transform: uppercase; }
.versus__col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.versus__col li { display: flex; align-items: center; gap: 10px; font-size: 15px; }
.versus__col--them { background: oklch(1 0 0 / .04); border: 1px solid oklch(1 0 0 / .08); color: oklch(0.72 0.02 260); }
.versus__col--them h4 { color: oklch(0.66 0.02 260); }
.versus__col--us { background: oklch(1 0 0 / .07); border: 1px solid var(--accent-line); }
.versus__col--us h4 { color: oklch(0.84 0.06 255); }
.versus__col--us li svg { color: oklch(0.78 0.12 150); flex-shrink: 0; }
.versus__col--us em { color: #fff; font-style: normal; font-weight: 600; }

/* ---------- security ---------- */
.security { list-style: none; margin: 0; padding: 0; display: grid; gap: 11px; }
.security li { display: flex; align-items: center; gap: 13px; background: var(--surface); border: 1px solid var(--line); border-radius: 12px; padding: 15px 18px; font-weight: 500; box-shadow: var(--shadow-sm); }
.security svg { color: var(--accent); flex-shrink: 0; }

/* ---------- pricing ---------- */
.guarantees { list-style: none; display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 22px; margin: 18px 0 0; padding: 0; }
.guarantees li { display: flex; align-items: center; gap: 7px; font-size: 14px; font-weight: 600; color: var(--ink-2); }
.guarantees svg { color: oklch(0.62 0.14 150); }
.guarantees li:last-child svg { color: var(--accent); }
.pricing__call { margin: 16px 0 0; font-size: 14px; color: var(--ink-2); }
.pricing__call a { color: var(--accent); font-weight: 600; }
.pricing { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 44px; align-items: start; }
.plan { position: relative; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 28px 26px; box-shadow: var(--shadow-sm); }
.plan--featured { border-color: var(--accent); box-shadow: var(--shadow-lg); transform: translateY(-8px); }
.plan__badge { position: absolute; top: -12px; left: 26px; background: var(--accent); color: #fff; font-size: 12px; font-weight: 600; padding: 4px 11px; border-radius: 999px; }
.plan__desc { color: var(--ink-3); font-size: 14px; margin: 2px 0 16px; }
.plan__price { font-size: 16px; color: var(--ink-3); margin-bottom: 18px; }
.plan__price span { font-size: 38px; font-weight: 700; color: var(--ink); letter-spacing: -0.02em; }
.plan ul { list-style: none; margin: 0 0 22px; padding: 0; display: grid; gap: 10px; }
.plan li { display: flex; align-items: center; gap: 9px; font-size: 14.5px; color: var(--ink-2); }
.plan li svg { color: var(--accent); flex-shrink: 0; }
.plan .btn { width: 100%; justify-content: center; }

/* ---------- faq ---------- */
.faq { max-width: 800px; margin: 38px auto 0; display: grid; gap: 10px; }
.faq__item { background: var(--surface); border: 1px solid var(--line); border-radius: 12px; padding: 4px 20px; box-shadow: var(--shadow-sm); }
.faq__item summary { display: flex; align-items: center; justify-content: space-between; gap: 12px; cursor: pointer; list-style: none; padding: 16px 0; font-weight: 600; font-size: 16px; }
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary svg { color: var(--ink-3); transition: transform .2s; flex-shrink: 0; }
.faq__item[open] summary svg { transform: rotate(90deg); color: var(--accent); }
.faq__item p { margin: 0 0 18px; color: var(--ink-2); font-size: 15px; max-width: 64ch; }
.faq__item a { color: var(--accent-ink); font-weight: 600; }

/* ---------- final cta ---------- */
.cta { padding: clamp(56px, 8vw, 96px) 0; background:
  radial-gradient(800px 380px at 50% -20%, var(--accent-soft), transparent 60%), var(--surface-2); border-top: 1px solid var(--line-2); }
.cta__inner { text-align: center; max-width: 680px; margin: 0 auto; }
.cta__inner p { color: var(--ink-2); font-size: 18px; margin: 14px 0 26px; }

/* ---------- footer ---------- */
.foot { background: var(--dark); color: oklch(0.78 0.02 260); padding: 52px 0 26px; }
.foot__grid { display: grid; grid-template-columns: 1.2fr 2fr; gap: 40px; padding-bottom: 34px; border-bottom: 1px solid oklch(1 0 0 / .1); }
.foot .brand__name { color: oklch(0.8 0.02 260); }
.foot .brand__name strong { color: #fff; }
.foot .brand__mark { background: oklch(1 0 0 / .12); }
.foot__tag { font-size: 14px; margin: 14px 0 0; max-width: 30ch; }
.foot__phone { display: inline-flex; align-items: center; gap: 7px; margin-top: 12px; font-size: 14.5px; font-weight: 600; color: oklch(0.86 0.04 230); }
.foot__cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.foot__cols h5 { font-size: 12px; letter-spacing: .08em; text-transform: uppercase; color: oklch(0.62 0.02 260); margin: 0 0 12px; }
.foot__cols a { display: block; font-size: 14.5px; color: oklch(0.82 0.02 260); margin-bottom: 9px; }
.foot__cols a:hover { color: #fff; }
.foot__bar { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; padding-top: 22px; font-size: 13px; color: oklch(0.62 0.02 260); }
.foot__legal a:hover { color: #fff; }

/* ---------- reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ---------- responsive ---------- */
@media (max-width: 900px) {
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: flex; }
  .nav.open .nav__links { display: flex; position: absolute; top: 66px; left: 0; right: 0; flex-direction: column; gap: 0; background: var(--surface); border-bottom: 1px solid var(--line); padding: 8px 0; margin: 0; }
  .nav.open .nav__links a { padding: 13px 24px; }
  .hero__grid, .split, .versus, .band__inner { grid-template-columns: 1fr; }
  .band__inner { justify-content: flex-start; }
  .cards3, .grid3, .pricing { grid-template-columns: 1fr; }
  .chain { flex-direction: column; }
  .chain__arrow { transform: rotate(90deg); }
  .plan--featured { transform: none; }
  .peek__chip--a { left: 8px; } .peek__chip--b { right: 8px; }
  .foot__grid { grid-template-columns: 1fr; }
  .foot__cols { grid-template-columns: 1fr 1fr; }
}
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } html { scroll-behavior: auto; } }

/* ── Older-browser fallback ───────────────────────────────────────────────
   oklch() colors only work in Chrome 111+. In older Chrome var(--accent) is
   invalid, so .btn--primary (white text on var(--accent)) — incl. "Sign in" /
   "Start free" — renders invisibly. Browsers without oklch get these hex
   equivalents; modern ones keep oklch. Last so it wins the cascade. */
@supports not (color: oklch(0% 0 0)) {
  :root {
    --bg: #fbfcfd; --surface-2: #f6f7f9; --surface-3: #eef0f3;
    --ink: #2f3540; --ink-2: #5b6270; --ink-3: #7e8593;
    --line: #dde1e8; --line-2: #eceef2;
    --accent: #3b6fd4; --accent-strong: #2d5cc6; --accent-ink: #2a55ba;
    --accent-soft: #ecf1fc; --accent-line: #c4d4f2;
    --shadow-sm: 0 1px 2px rgba(30,40,70,0.08), 0 1px 1px rgba(30,40,70,0.05);
    --shadow-md: 0 4px 14px rgba(30,40,70,0.10), 0 1px 3px rgba(30,40,70,0.06);
    --shadow-lg: 0 18px 50px rgba(25,35,65,0.20), 0 4px 14px rgba(25,35,65,0.10);
  }
}
