/* ============================================================
   Tachys v2 — redesign
   Režim: Preserve (brand paleta + maskot). Téma: dark, distinktivní.
   Skilly: Impeccable + Taste + Emil Kowalski.
   ============================================================ */

:root {
  /* Ground (dark, zamčené téma) */
  --bg:        #060A18;
  --bg-soft:   #0A1230;   /* odlišení sekcí v rámci tématu */
  --surface:   #0D1638;
  --surface-2: #122051;
  --line:        rgba(140,165,230,.14);
  --line-strong: rgba(140,165,230,.26);

  /* Ink */
  --ink:   #EAF0FF;
  --ink-2: #AEB9DC;   /* body na tmavé, ≥4.5:1 */
  --ink-3: #7E8BB5;   /* jen velké/nekritické labely */

  /* Brand akcent (preserve) — JEDEN zamčený akcent + vzácný gradient */
  --azure:  #18B6F6;
  --blue:   #3D7BFF;
  --violet: #6A3FF5;
  --accent: var(--azure);
  --accent-ink: #04101F;
  --grad: linear-gradient(120deg, #18B6F6 0%, #3D7BFF 48%, #6A3FF5 100%);

  /* Emil motion tokeny */
  --e-out:    cubic-bezier(0.23, 1, 0.32, 1);
  --e-io:     cubic-bezier(0.77, 0, 0.175, 1);
  --e-drawer: cubic-bezier(0.32, 0.72, 0, 1);

  /* Shape lock: povrchy 18px, tlačítka pill, inputy 10px */
  --r: 18px;
  --r-sm: 10px;
  --maxw: 1180px;

  --font: 'Hanken Grotesk', system-ui, sans-serif;
  --mono: 'JetBrains Mono', ui-monospace, monospace;

  /* z-index škála */
  --z-nav: 50;
  --z-menu: 60;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 86px; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--ink-2);
  line-height: 1.6;
  overflow-wrap: break-word;
  -webkit-font-smoothing: antialiased;
}
img, canvas, svg, video { max-width: 100%; display: block; }
a { color: var(--ink); text-decoration: none; }

h1, h2, h3 { color: var(--ink); font-weight: 800; line-height: 1.05; letter-spacing: -0.03em; text-wrap: balance; }
h1 { font-size: clamp(2.3rem, 5vw, 4.4rem); font-weight: 900; }
h2 { font-size: clamp(2rem, 4.4vw, 3.4rem); }
h3 { font-size: 1.3rem; letter-spacing: -0.02em; }
p { text-wrap: pretty; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.mono { font-family: var(--mono); font-weight: 500; letter-spacing: 0.02em; }

.skip-link {
  position: absolute; left: 16px; top: -60px; z-index: 100;
  background: var(--accent); color: var(--accent-ink); padding: 10px 16px; border-radius: var(--r-sm);
  font-weight: 700; transition: top .2s var(--e-out);
}
.skip-link:focus { top: 16px; }

/* Jemná zrnitá textura (premium feel), nad obsahem, neinteraktivní */
.grain {
  position: fixed; inset: 0; z-index: 200; pointer-events: none; opacity: .045;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ===== Buttons ===== */
.btn {
  --btn-bg: transparent;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font); font-weight: 700; font-size: 1rem; letter-spacing: -0.01em;
  padding: 13px 26px; border-radius: 999px; border: 1px solid transparent; cursor: pointer;
  transition: transform .14s var(--e-out), box-shadow .22s var(--e-out), background-color .2s, border-color .2s, filter .2s;
  white-space: nowrap; text-decoration: none;
}
.btn-lg { padding: 16px 32px; font-size: 1.05rem; }
.btn-sm { padding: 9px 18px; font-size: .92rem; }
.btn-block { width: 100%; }
.btn:active { transform: scale(0.97); }

.btn-accent { background: var(--accent); color: var(--accent-ink); box-shadow: 0 0 0 rgba(24,182,246,0); }
.btn-accent:hover { transform: translateY(-2px); box-shadow: 0 14px 38px rgba(24,182,246,.28); filter: brightness(1.06); }
.btn-accent:active { transform: scale(0.97); }

.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line-strong); }
.btn-ghost:hover { border-color: var(--accent); background: rgba(24,182,246,.06); transform: translateY(-2px); }
.btn-ghost:active { transform: scale(0.97); }

.btn-dark { background: var(--bg); color: var(--ink); }
.btn-dark:hover { transform: translateY(-2px); box-shadow: 0 14px 38px rgba(0,0,0,.4); }
.btn-dark:active { transform: scale(0.97); }

/* ===== Nav ===== */
.nav {
  position: sticky; top: 0; z-index: var(--z-nav);
  background: color-mix(in srgb, var(--bg) 72%, transparent);
  -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent; transition: border-color .25s, background-color .25s;
}
@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .nav { background: color-mix(in srgb, var(--bg) 96%, transparent); }
}
.nav.scrolled { border-color: var(--line); background: color-mix(in srgb, var(--bg) 88%, transparent); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 70px; }
.brand { display: inline-flex; align-items: center; gap: 10px; }
.brand img { border-radius: 7px; }
.brand-name { font-weight: 800; font-size: 1.3rem; letter-spacing: 0.14em; color: var(--ink); }
.nav-links { display: flex; align-items: center; }
.nav-links ul { list-style: none; display: flex; align-items: center; gap: 26px; }
.nav-links a:not(.btn) { color: var(--ink-2); font-weight: 500; font-size: .96rem; transition: color .18s; }
.nav-links a:not(.btn):hover { color: var(--ink); }
.nav-toggle { display: none; flex-direction: column; gap: 6px; background: none; border: 0; cursor: pointer; padding: 10px; }
.nav-toggle span { width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .28s var(--e-out), opacity .2s; }

/* ===== HERO ===== */
.hero { position: relative; overflow: hidden; padding-top: 64px; }
.hero-canvas { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0; opacity: .9; }
.hero-fade {
  position: absolute; left: 0; right: 0; bottom: 0; height: 42%; z-index: 1; pointer-events: none;
  background: linear-gradient(to bottom, transparent, var(--bg));
}
.hero-grid {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1.1fr 1fr; align-items: center; gap: clamp(32px, 5vw, 64px);
  padding: clamp(40px, 7vh, 88px) 24px clamp(30px, 5vh, 60px);
}
.kicker {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: .9rem; color: var(--ink-2); margin-bottom: 26px; font-weight: 600;
}
.kicker .mono {
  font-size: .72rem; color: var(--accent); text-transform: uppercase; letter-spacing: 0.16em;
  border: 1px solid var(--line-strong); padding: 5px 10px; border-radius: 999px;
}
.hero-title { margin-bottom: 26px; }
.hero-title .line { display: block; }
.hero-sub { font-size: clamp(1.05rem, 1.6vw, 1.3rem); color: var(--ink-2); max-width: 36ch; margin-bottom: 34px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; }

.hero-visual { display: flex; justify-content: center; }
.mascot-orb { position: relative; width: min(580px, 100%); display: grid; place-items: center; }
.mascot-orb::before {
  content: ""; position: absolute; inset: -6% 2%; border-radius: 50%;
  background: var(--grad); filter: blur(72px); opacity: .5; z-index: -1;
}
.mascot-orb > * { grid-area: 1 / 1; }
/* alfa video maskota — leti volne na pozadi, zadny ram */
.hero-video {
  display: block; width: 100%; height: auto; position: relative;
  filter: drop-shadow(0 26px 60px rgba(106,63,245,.42));
  opacity: 0; visibility: hidden; transition: opacity .8s var(--e-out), visibility .8s;
}
.mascot-orb.video-live .hero-video { opacity: 1; visibility: visible; }
.hero-static { width: 74%; height: auto; justify-self: center; filter: drop-shadow(0 24px 60px rgba(106,63,245,.4)); transition: opacity .5s var(--e-out); }
.mascot-orb.video-live .hero-static { opacity: 0; }
/* jemna levitace celeho vizualu */
@keyframes floaty { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
html.anim .mascot-orb { animation: floaty 7s ease-in-out infinite; }

.trust-strip {
  position: relative; z-index: 2;
  display: flex; flex-wrap: wrap; align-items: center; gap: 18px 34px;
  padding-top: 14px; padding-bottom: 56px;
}
.trust-label { font-size: .76rem; color: var(--ink-3); text-transform: uppercase; letter-spacing: 0.14em; }
.logos { list-style: none; display: flex; flex-wrap: wrap; align-items: center; gap: 28px; }
.logos img { height: 20px; width: auto; opacity: .7; transition: opacity .2s; filter: saturate(0); }
.logos li:hover img { opacity: 1; filter: saturate(1); }

/* ===== Sekce obecně ===== */
.section { padding: clamp(72px, 11vh, 130px) 0; }
.section-soft { background: var(--bg-soft); }
.section-head { max-width: 720px; margin-bottom: clamp(40px, 6vh, 68px); }
.section-head h2 { margin-bottom: 16px; }
.section-lead { font-size: 1.15rem; color: var(--ink-2); max-width: 56ch; }

/* ===== Služby (editorial split) ===== */
.split-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(32px, 6vw, 80px); }
.split-head { position: sticky; top: 104px; align-self: start; }
.split-head h2 { margin-bottom: 18px; }
.split-head p { color: var(--ink-2); font-size: 1.1rem; max-width: 34ch; }
.pillars { list-style: none; }
.pillar { padding: 34px 0; border-top: 1px solid var(--line); }
.pillar:first-child { border-top: 0; padding-top: 0; }
.pillar h3 { font-size: clamp(1.5rem, 2.6vw, 2.1rem); font-weight: 800; margin-bottom: 12px; }
.pillar p { color: var(--ink-2); font-size: 1.08rem; max-width: 52ch; margin-bottom: 16px; }
.pillar-tag { font-size: .78rem; color: var(--accent); letter-spacing: 0.04em; }

/* ===== Produkty (bento s rytmem) ===== */
.bento {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
  grid-auto-rows: minmax(168px, auto);
}
.bento-cell {
  position: relative; display: flex; flex-direction: column;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r);
  padding: 26px; transition: transform .28s var(--e-out), border-color .28s, background-color .28s;
}
.bento-cell:hover { transform: translateY(-4px); border-color: rgba(24,182,246,.34); box-shadow: 0 18px 50px rgba(8,12,40,.5); }
.bento-cell h3 { margin: 14px 0 10px; }
.bento-cell p { color: var(--ink-2); font-size: .98rem; }
.bento-cell .tag {
  align-self: flex-start; font-size: .68rem; text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--accent); border: 1px solid var(--line-strong); padding: 4px 10px; border-radius: 999px;
}
.cell-feature { grid-column: span 2; grid-row: span 2; }
.bento-cell:nth-child(2) { grid-column: span 2; }
.bento-cell:nth-child(5) { grid-column: span 2; }
.bento-cell:nth-child(6) { grid-column: span 2; }
.cell-feature h3 { font-size: clamp(1.8rem, 3vw, 2.6rem); }
.cell-feature p { font-size: 1.08rem; max-width: 46ch; }
.cell-meta { margin-top: auto; padding-top: 16px; color: var(--accent); font-size: .92rem; }
.bento-cell.tinted { background: linear-gradient(165deg, rgba(24,182,246,.10), rgba(106,63,245,.06)); border-color: rgba(24,182,246,.2); }
.bento-cell.accent {
  background:
    radial-gradient(120% 120% at 0% 0%, rgba(106,63,245,.22), transparent 60%),
    radial-gradient(120% 120% at 100% 100%, rgba(24,182,246,.18), transparent 55%),
    var(--surface-2);
  border-color: rgba(24,182,246,.32);
}
.bento-more { margin-top: 30px; color: var(--ink-3); font-size: .98rem; }
.bento-more strong { color: var(--ink); }

/* ===== Timeline ===== */
.timeline { list-style: none; position: relative; max-width: 760px; }
.timeline::before {
  content: ""; position: absolute; left: 27px; top: 14px; bottom: 14px; width: 2px;
  background: linear-gradient(var(--azure), var(--violet)); opacity: .4;
}
.t-step { position: relative; display: grid; grid-template-columns: 56px 1fr; gap: 26px; padding: 22px 0; }
.t-num {
  position: relative; z-index: 1;
  width: 56px; height: 56px; border-radius: 50%; display: grid; place-items: center;
  font-family: var(--mono); font-weight: 600; font-size: 1.3rem; color: var(--ink);
  background: var(--surface); border: 1px solid var(--line-strong);
}
.t-step:hover .t-num { border-color: var(--accent); color: var(--accent); }
.t-body h3 { font-size: clamp(1.4rem, 2.4vw, 1.9rem); margin-bottom: 8px; }
.t-body p { color: var(--ink-2); font-size: 1.05rem; max-width: 52ch; }

/* ===== Proč Tachys (statement band) ===== */
.proof-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(36px, 6vw, 72px); align-items: center; }
.proof-mascot { width: 144px; height: 144px; margin-bottom: 26px; }
.big-statement { font-size: clamp(2rem, 4.2vw, 3.4rem); font-weight: 800; color: var(--ink); line-height: 1.08; letter-spacing: -0.03em; text-wrap: balance; }
.proof-points { display: grid; gap: 4px; }
.proof-point { padding: 24px 0; border-top: 1px solid var(--line); }
.proof-point:first-child { border-top: 0; }
.proof-point h3 { font-size: 1.25rem; margin-bottom: 8px; }
.proof-point p { color: var(--ink-2); }

/* ===== Ceník (zarovnaný cenový list) ===== */
.pricing { max-width: 900px; }
.price-group + .price-group { margin-top: 12px; }
.price-group-label { display: block; font-size: .72rem; text-transform: uppercase; letter-spacing: 0.14em; color: var(--accent); padding: 28px 22px 10px; }
.price-row {
  display: grid; grid-template-columns: 190px 1fr auto; gap: 28px; align-items: baseline;
  padding: 19px 22px; border-top: 1px solid var(--line); border-radius: var(--r-sm);
  transition: background-color .22s var(--e-out);
}
.price-group .price-row:first-of-type { border-top: 0; }
.price-row:hover { background: var(--surface); }
.pr-name { font-weight: 700; color: var(--ink); letter-spacing: 0.03em; font-size: 1.02rem; }
.pr-desc { color: var(--ink-2); font-size: .96rem; }
.pr-price { color: var(--ink); font-size: 1.02rem; white-space: nowrap; }
.pr-badge { font-size: .58rem; color: var(--accent); border: 1px solid var(--line-strong); padding: 3px 8px; border-radius: 999px; margin-left: 10px; text-transform: uppercase; letter-spacing: 0.1em; }
.price-row.featured {
  border-top: 0; background: var(--surface-2); border: 1px solid rgba(24,182,246,.3);
  box-shadow: 0 16px 44px rgba(8,12,40,.4);
}

/* ===== O nás ===== */
.about-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: clamp(36px, 6vw, 72px); align-items: center; }
.about-text h2 { margin-bottom: 22px; }
.about-text p { color: var(--ink-2); font-size: 1.1rem; margin-bottom: 16px; max-width: 60ch; }
.about-quote {
  font-size: clamp(1.4rem, 2.6vw, 2rem); font-weight: 700; color: var(--ink); line-height: 1.2;
  letter-spacing: -0.02em; border-left: 0; padding-left: 0; text-wrap: balance;
}

/* ===== CTA band (gradient signature) ===== */
.cta-band { background: var(--grad); }
.cta-inner { text-align: center; padding: clamp(64px, 10vh, 110px) 24px; }
.cta-inner h2 { color: #FFFFFF; margin-bottom: 16px; }
.cta-inner p { color: rgba(255,255,255,.92); max-width: 52ch; margin: 0 auto 32px; font-size: 1.15rem; }

/* ===== Kontakt ===== */
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(36px, 6vw, 72px); align-items: start; }
.contact-intro h2 { margin-bottom: 18px; }
.contact-intro p { color: var(--ink-2); font-size: 1.1rem; max-width: 44ch; }
.contact-meta { margin-top: 30px; display: grid; gap: 14px; }
.contact-meta dt { font-size: .72rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--ink-3); margin-bottom: 3px; }
.contact-meta dd a { color: var(--accent); }
.todo { color: var(--ink-3); font-style: italic; }

.contact-form {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r); padding: 30px; display: grid; gap: 18px;
}
.field { display: grid; gap: 7px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field label { font-size: .82rem; font-weight: 600; color: var(--ink); letter-spacing: 0.01em; }
.field input, .field textarea {
  font-family: var(--font); font-size: 1rem; color: var(--ink);
  background: var(--bg); border: 1px solid var(--line-strong); border-radius: var(--r-sm); padding: 13px 15px; width: 100%;
  transition: border-color .16s, box-shadow .16s;
}
.field input::placeholder, .field textarea::placeholder { color: var(--ink-3); }
.field input:focus, .field textarea:focus {
  outline: none; border-color: var(--accent); box-shadow: 0 0 0 4px rgba(24,182,246,.18);
}
.field.invalid input, .field.invalid textarea { border-color: #FF6B81; box-shadow: 0 0 0 4px rgba(255,107,129,.16); }
.field-err { color: #FF99A6; font-size: .82rem; }
.hp { position: absolute; left: -9999px; width: 0; height: 0; opacity: 0; }
.check { display: flex; gap: 11px; align-items: flex-start; font-size: .9rem; color: var(--ink-2); }
.check input { margin-top: 3px; width: 18px; height: 18px; accent-color: var(--accent); flex-shrink: 0; }
.btn .btn-spinner {
  width: 16px; height: 16px; border-radius: 50%; border: 2px solid rgba(4,16,31,.3); border-top-color: var(--accent-ink);
  display: none;
}
.contact-form.loading .btn-label { opacity: .6; }
.contact-form.loading .btn-spinner { display: inline-block; animation: spin .7s linear infinite; }
.contact-form.loading button { pointer-events: none; }
.form-status { font-size: .92rem; min-height: 1.2em; }
.form-status.ok { color: var(--azure); }
.form-status.err { color: #FF99A6; }

/* ===== Footer ===== */
.footer { background: var(--bg); border-top: 1px solid var(--line); padding-top: 56px; }
.footer-inner { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 32px; padding-bottom: 40px; }
.footer-brand p { margin-top: 14px; color: var(--ink-3); font-size: .94rem; }
.footer-nav { display: grid; gap: 11px; align-content: start; }
.footer-nav a { color: var(--ink-2); font-size: .96rem; }
.footer-nav a:hover { color: var(--accent); }
.footer-legal p { color: var(--ink-3); font-size: .9rem; margin-bottom: 6px; }
.footer-bottom { border-top: 1px solid var(--line); padding: 22px 24px; }
.footer-bottom p { color: var(--ink-3); font-size: .82rem; }

/* ===== Motion: reveal (obsah viditelný defaultně, gating jen když JS+motion) ===== */
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes fadeUp { from { opacity: 0; transform: translateY(26px); } to { opacity: 1; transform: none; } }
@keyframes lineUp { from { opacity: 0; transform: translateY(105%); } to { opacity: 1; transform: none; } }

html.anim .reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--e-out), transform .7s var(--e-out); }
html.anim .reveal.in { opacity: 1; transform: none; }
html.anim .reveal-group .reveal { transition-delay: calc(var(--i, 0) * 70ms); }

/* Hero orchestrovaný entrance (jen .anim) */
html.anim .hero-title .line { display: block; opacity: 0; animation: lineUp .95s var(--e-out) forwards; }
html.anim .hero-title .line:nth-child(1) { animation-delay: .06s; }
html.anim .hero-title .line:nth-child(2) { animation-delay: .15s; }
html.anim .kicker,
html.anim .hero-sub,
html.anim .hero-cta,
html.anim .hero-visual,
html.anim .trust-strip { opacity: 0; animation: fadeUp .85s var(--e-out) forwards; }
html.anim .kicker { animation-delay: 0s; }
html.anim .hero-sub { animation-delay: .26s; }
html.anim .hero-cta { animation-delay: .34s; }
html.anim .hero-visual { animation-delay: .2s; }
html.anim .trust-strip { animation-delay: .5s; }

/* Hover jen na zařízeních s kurzorem */
@media (hover: none) {
  .btn:hover, .bento-cell:hover, .logos li:hover img { transform: none; }
}

/* ===== Responsivita ===== */
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; text-align: left; }
  .hero-visual { order: -1; justify-content: flex-start; }
  .mascot-orb { width: min(420px, 92%); }
  .hero-sub { max-width: 46ch; }
  .split-grid { grid-template-columns: 1fr; gap: 36px; }
  .split-head { position: static; }
  .bento { grid-template-columns: repeat(2, 1fr); }
  .cell-feature, .bento-cell:nth-child(2), .bento-cell:nth-child(5), .bento-cell:nth-child(6) { grid-column: span 2; }
  .cell-feature { grid-row: span 1; }
  .proof-grid, .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .nav-toggle { display: flex; }
  .nav-links ul {
    position: absolute; top: 70px; left: 0; right: 0; flex-direction: column; align-items: stretch; gap: 0;
    background: var(--bg); border-bottom: 1px solid var(--line);
    max-height: 0; overflow: hidden; visibility: hidden; transition: max-height .32s var(--e-drawer), visibility .32s;
  }
  .nav-links ul.open { max-height: 360px; visibility: visible; }
  .nav-links li { border-top: 1px solid var(--line); }
  .nav-links li a:not(.btn) { display: block; padding: 16px 24px; }
  .nav-links .btn { margin: 14px 24px; }
  .nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(4px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) { transform: translateY(-4px) rotate(-45deg); }
  .bento { grid-template-columns: 1fr; }
  .cell-feature, .bento-cell:nth-child(2), .bento-cell:nth-child(5), .bento-cell:nth-child(6) { grid-column: span 1; }
  .field-row { grid-template-columns: 1fr; }
  .price-row { grid-template-columns: 1fr auto; gap: 4px 16px; padding: 16px; }
  .pr-desc { grid-column: 1 / -1; }
  .footer-inner { grid-template-columns: 1fr; gap: 26px; }
  .t-step { grid-template-columns: 46px 1fr; gap: 18px; }
  .t-num { width: 46px; height: 46px; font-size: 1.1rem; }
  .timeline::before { left: 22px; }
}

/* ===== Reduced motion ===== */
@media (prefers-reduced-motion: reduce) {
  .hero-video { display: none !important; }
  html.anim .mascot-orb { animation: none; }
  html.anim .reveal { opacity: 1; transform: none; transition: none; }
  html.anim .hero-title .line,
  html.anim .kicker, html.anim .hero-sub, html.anim .hero-cta, html.anim .hero-visual, html.anim .trust-strip { opacity: 1; animation: none; }
  .btn:active, .bento-cell:hover, .btn:hover { transform: none; }
}

/* ===== Focus ===== */
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 4px; }
