/* ============================================================
   ApoClock — Landing Page Styles
   Aurora UI · Matches app design tokens exactly
   ============================================================ */

/* ── Design Tokens (mirrored from app tokens.css) ─────────── */
:root {
  --color-bg:               #0D0D1A;
  --color-surface:          #16162A;
  --color-surface-elevated: #1C1C34;
  --color-surface-hover:    #20203C;
  --color-border:           #2A2A4A;
  --color-border-subtle:    #1E1E36;

  --color-purple:           #7C3AED;
  --color-purple-bright:    #A78BFA;
  --color-purple-mid:       #6D28D9;
  --color-purple-glow:      rgba(124, 58, 237, 0.35);
  --color-purple-subtle:    rgba(124, 58, 237, 0.12);

  --color-gold:             #F59E0B;
  --color-gold-bright:      #FCD34D;
  --color-gold-glow:        rgba(245, 158, 11, 0.3);
  --color-gold-subtle:      rgba(245, 158, 11, 0.1);

  --color-blue:             #3B82F6;
  --color-blue-glow:        rgba(59, 130, 246, 0.2);

  --color-discord:          #5865F2;
  --color-discord-glow:     rgba(88, 101, 242, 0.25);

  --color-text-primary:     #E2E8F0;
  --color-text-secondary:   #94A3B8;
  --color-text-muted:       #64748B;

  --font-ui:   'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  --radius-sm:  4px;
  --radius-md:  8px;
  --radius-lg:  12px;
  --radius-xl:  16px;
  --radius-2xl: 24px;

  --shadow-sm:  0 1px 3px rgba(0,0,0,0.5);
  --shadow-md:  0 4px 12px rgba(0,0,0,0.6);
  --shadow-lg:  0 8px 32px rgba(0,0,0,0.7);

  --nav-h: 64px;
  --container: 1140px;
  --section-gap: 120px;
}

/* ── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-ui);
  background-color: var(--color-bg);
  color: var(--color-text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── Aurora background noise texture overlay ──────────────── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}

/* ── Container ─────────────────────────────────────────────── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

/* ── Aurora Orbs ───────────────────────────────────────────── */
.aurora-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}

.aurora-orb--purple {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(124,58,237,0.28) 0%, transparent 70%);
  top: -100px; left: -200px;
  animation: orb-drift 18s ease-in-out infinite;
}
.aurora-orb--gold {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(245,158,11,0.18) 0%, transparent 70%);
  top: 200px; right: -150px;
  animation: orb-drift 22s ease-in-out infinite reverse;
}
.aurora-orb--blue {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(59,130,246,0.12) 0%, transparent 70%);
  bottom: -50px; left: 40%;
  animation: orb-drift 16s ease-in-out infinite 4s;
}
.aurora-orb--right  { left: auto; right: -150px; }
.aurora-orb--left   { right: auto; left: -150px; top: 50%; }
.aurora-orb--cta      { width: 400px; height: 400px; top: -80px; left: -80px; }
.aurora-orb--cta-gold { width: 300px; height: 300px; bottom: -60px; right: -60px; }

@keyframes orb-drift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%       { transform: translate(30px, -20px) scale(1.05); }
  66%       { transform: translate(-20px, 30px) scale(0.97); }
}

/* ── Gradient text ─────────────────────────────────────────── */
.gradient-text {
  background: linear-gradient(135deg, var(--color-purple-bright), var(--color-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Buttons ───────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: linear-gradient(135deg, var(--color-purple), var(--color-purple-mid));
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(167,139,250,0.3);
  box-shadow: 0 0 20px var(--color-purple-glow), var(--shadow-md);
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.btn-primary:hover {
  background: linear-gradient(135deg, #8B5CF6, var(--color-purple));
  box-shadow: 0 0 32px var(--color-purple-glow), 0 0 60px rgba(124,58,237,0.2), var(--shadow-lg);
  transform: translateY(-1px);
}
.btn-primary.btn-lg {
  padding: 14px 28px;
  font-size: 1rem;
  border-radius: var(--radius-xl);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  color: var(--color-text-secondary);
  font-weight: 500;
  font-size: 0.9rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  background: rgba(255,255,255,0.03);
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
  backdrop-filter: blur(8px);
}
.btn-ghost:hover {
  color: var(--color-text-primary);
  border-color: var(--color-purple-bright);
  background: var(--color-purple-subtle);
}
.btn-ghost.btn-lg {
  padding: 14px 28px;
  font-size: 1rem;
  border-radius: var(--radius-xl);
}

/* ── NAV ───────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 100;
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease;
}
.nav.scrolled {
  background: rgba(13,13,26,0.85);
  backdrop-filter: blur(20px);
  border-bottom-color: var(--color-border-subtle);
  box-shadow: 0 4px 24px rgba(0,0,0,0.4);
}
.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.nav-logo-icon {
  width: 32px; height: 32px;
  flex-shrink: 0;
}
.nav-logo-text {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--color-text-primary);
}
.nav-logo-accent { color: var(--color-purple-bright); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
}
.nav-links a {
  padding: 6px 12px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-text-secondary);
  border-radius: var(--radius-md);
  transition: all 0.15s ease;
}
.nav-links a:hover {
  color: var(--color-text-primary);
  background: rgba(255,255,255,0.05);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

/* ── HERO ──────────────────────────────────────────────────── */
.hero {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 48px;
  max-width: var(--container);
  margin: 0 auto;
  padding: calc(var(--nav-h) + 48px) 24px 72px;
  overflow: hidden;
}

.hero-grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(124,58,237,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(124,58,237,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
  pointer-events: none;
}

.hero-content { position: relative; z-index: 2; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(124,58,237,0.12);
  border: 1px solid rgba(124,58,237,0.3);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--color-purple-bright);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.hero-badge-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--color-purple-bright);
  box-shadow: 0 0 8px var(--color-purple-glow);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 8px var(--color-purple-glow); }
  50%       { opacity: 0.6; box-shadow: 0 0 4px var(--color-purple-glow); }
}

.hero-title {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--color-text-primary);
  margin-bottom: 20px;
}
.hero-title-gradient {
  background: linear-gradient(135deg, var(--color-purple-bright) 0%, var(--color-gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--color-text-secondary);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 20px;
}
.hero-stat { text-align: center; }
.hero-stat-value {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--color-purple-bright);
  line-height: 1;
  margin-bottom: 4px;
  font-family: var(--font-mono);
}
.hero-stat-label {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  white-space: nowrap;
}
.hero-stat-divider {
  width: 1px;
  height: 36px;
  background: var(--color-border);
  flex-shrink: 0;
}

.hero-visual {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-img-glow {
  position: absolute;
  inset: -40px;
  background: radial-gradient(ellipse at center, rgba(124,58,237,0.22) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(20px);
  z-index: 0;
}
.hero-img {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 520px;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  border-radius: var(--radius-2xl);
  border: 1px solid var(--color-border);
  box-shadow:
    0 0 0 1px rgba(124,58,237,0.15),
    0 32px 80px rgba(0,0,0,0.8),
    0 0 60px rgba(124,58,237,0.15);
  animation: float 6s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-12px); }
}

/* ── SECTIONS shared ───────────────────────────────────────── */
.section {
  padding: var(--section-gap) 0;
  position: relative;
  overflow: hidden;
}

.section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-purple-bright);
  background: rgba(124,58,237,0.1);
  border: 1px solid rgba(124,58,237,0.25);
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 20px;
}

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 14px;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--color-text-secondary);
  max-width: 480px;
  margin-bottom: 56px;
}

/* ── BENTO GRID ────────────────────────────────────────────── */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 20px;
}

.bento-card {
  position: relative;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-2xl);
  padding: 32px 28px;
  overflow: hidden;
  transition: all 0.3s ease;
}
.bento-card:hover {
  border-color: rgba(124,58,237,0.4);
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.5), 0 0 24px rgba(124,58,237,0.1);
}

.bento-card--large {
  grid-column: span 2;
}
.bento-card--wide {
  grid-column: span 2;
}

.bento-card--purple {
  background: linear-gradient(135deg, #13133A 0%, var(--color-surface) 60%);
  border-color: rgba(124,58,237,0.3);
}
.bento-card--gold {
  background: linear-gradient(135deg, #1A140A 0%, var(--color-surface) 60%);
  border-color: rgba(245,158,11,0.25);
}
.bento-card--gold:hover {
  border-color: rgba(245,158,11,0.5);
  box-shadow: 0 16px 48px rgba(0,0,0,0.5), 0 0 24px rgba(245,158,11,0.1);
}
.bento-card--discord {
  background: linear-gradient(135deg, #0F0F2A 0%, var(--color-surface) 60%);
  border-color: rgba(88,101,242,0.25);
}
.bento-card--discord:hover {
  border-color: rgba(88,101,242,0.5);
  box-shadow: 0 16px 48px rgba(0,0,0,0.5), 0 0 24px rgba(88,101,242,0.12);
}

.bento-icon {
  font-size: 2rem;
  margin-bottom: 16px;
  line-height: 1;
}
.bento-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}
.bento-desc {
  font-size: 0.9rem;
  color: var(--color-text-secondary);
  line-height: 1.65;
  margin-bottom: 20px;
  max-width: 400px;
}

.bento-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag {
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 600;
  background: rgba(124,58,237,0.12);
  border: 1px solid rgba(124,58,237,0.25);
  color: var(--color-purple-bright);
}
.tag--gold {
  background: rgba(245,158,11,0.1);
  border-color: rgba(245,158,11,0.25);
  color: var(--color-gold-bright);
}

.bento-glow {
  position: absolute;
  width: 200px; height: 200px;
  border-radius: 50%;
  right: -40px; bottom: -60px;
  background: radial-gradient(circle, rgba(124,58,237,0.18) 0%, transparent 70%);
  filter: blur(20px);
  pointer-events: none;
}
.bento-glow--gold {
  background: radial-gradient(circle, rgba(245,158,11,0.15) 0%, transparent 70%);
}
.bento-glow--discord {
  background: radial-gradient(circle, rgba(88,101,242,0.15) 0%, transparent 70%);
}

/* Discord layers inside bento card */
.discord-layers {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 20px;
}
.discord-layer {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--color-border-subtle);
  border-radius: var(--radius-lg);
  padding: 12px 16px;
}
.discord-layer-num {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(88,101,242,0.2);
  border: 1px solid rgba(88,101,242,0.4);
  color: #A5B4FC;
  font-size: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.discord-layer-title {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text-primary);
}
.discord-layer-sub {
  font-size: 0.78rem;
  color: var(--color-text-muted);
}

/* ── HOW IT WORKS ──────────────────────────────────────────── */
.how { background: var(--color-surface); }

.steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  position: relative;
  z-index: 1;
}

.step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 24px;
}
.step-num {
  font-size: 3.5rem;
  font-weight: 800;
  font-family: var(--font-mono);
  background: linear-gradient(135deg, var(--color-purple-bright), var(--color-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 20px;
}
.step-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 10px;
}
.step-desc {
  font-size: 0.9rem;
  color: var(--color-text-secondary);
  line-height: 1.65;
}

.step-connector {
  flex-shrink: 0;
  width: 80px;
  height: 2px;
  margin-top: 28px;
  background: linear-gradient(90deg, var(--color-purple-glow), var(--color-gold-glow));
  position: relative;
}
.step-connector::after {
  content: '›';
  position: absolute;
  right: -8px;
  top: -12px;
  color: var(--color-gold);
  font-size: 1.4rem;
  font-weight: 700;
}

/* ── DISCORD CTA ───────────────────────────────────────────── */
.discord-cta { background: transparent; }

.cta-card {
  position: relative;
  background: linear-gradient(135deg, #11112E 0%, #0D0D1A 100%);
  border: 1px solid rgba(124,58,237,0.3);
  border-radius: 32px;
  padding: 72px 48px;
  text-align: center;
  overflow: hidden;
  box-shadow: 0 0 80px rgba(124,58,237,0.12), var(--shadow-lg);
}

.cta-icon {
  margin: 0 auto 28px;
  width: 64px; height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin-bottom: 16px;
  color: var(--color-text-primary);
  position: relative;
  z-index: 1;
}
.cta-sub {
  font-size: 1.05rem;
  color: var(--color-text-secondary);
  max-width: 540px;
  margin: 0 auto 36px;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

/* ── INSTALL ───────────────────────────────────────────────── */
.install-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.install-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-2xl);
  padding: 32px 28px;
  text-align: center;
  transition: all 0.3s ease;
}
.install-card:hover {
  border-color: rgba(124,58,237,0.4);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 30px rgba(124,58,237,0.1);
}
.install-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}
.install-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 10px;
}
.install-card p {
  font-size: 0.875rem;
  color: var(--color-text-secondary);
  line-height: 1.65;
}

/* ── FOOTER ────────────────────────────────────────────────── */
.footer {
  background: var(--color-surface);
  border-top: 1px solid var(--color-border-subtle);
  padding: 40px 0;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.footer-logo { opacity: 0.8; }
.footer-logo:hover { opacity: 1; }
.footer-links {
  display: flex;
  gap: 24px;
}
.footer-links a {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  transition: color 0.15s;
}
.footer-links a:hover { color: var(--color-purple-bright); }
.footer-copy {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  width: 100%;
  text-align: center;
  margin-top: 8px;
}
.footer-copy a { color: var(--color-purple-bright); }
.footer-copy a:hover { text-decoration: underline; }

/* ── Scrollbar ─────────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--color-border); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--color-purple-mid); }

/* ── RESPONSIVE ────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: calc(var(--nav-h) + 36px);
    padding-bottom: 60px;
    gap: 36px;
  }
  .hero-subtitle { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  /* Cap image so it doesn't dominate on tablet */
  .hero-visual { max-width: 480px; margin: 0 auto; }

  .bento-grid { grid-template-columns: 1fr 1fr; }
  .bento-card--large { grid-column: span 2; }
  .bento-card--wide  { grid-column: span 2; }

  .steps { flex-direction: column; align-items: center; gap: 24px; }
  .step-connector { width: 2px; height: 40px; background: linear-gradient(180deg, var(--color-purple-glow), var(--color-gold-glow)); }
  .step-connector::after { content: '↓'; right: -10px; top: auto; bottom: -14px; }
}

@media (max-width: 768px) {
  :root { --section-gap: 64px; }

  .nav-links { display: none; }
  .nav-cta .btn-ghost { display: none; }

  /* Hero image smaller on phones */
  .hero-visual { max-width: 340px; }
  .hero-img { border-radius: var(--radius-xl); }

  /* Tighten hero text */
  .hero-badge { font-size: 0.7rem; }
  .hero-subtitle { font-size: 1rem; }
  .hero-actions { flex-direction: column; align-items: center; gap: 10px; }
  .hero-actions .btn-primary,
  .hero-actions .btn-ghost { width: 100%; justify-content: center; }

  /* Stats: shrink gap, allow wrap */
  .hero-stats { gap: 12px; flex-wrap: wrap; justify-content: center; }
  .hero-stat-divider { display: none; }
  .hero-stat { flex: 1; min-width: 80px; }

  .bento-grid { grid-template-columns: 1fr; }
  .bento-card--large,
  .bento-card--wide { grid-column: span 1; }
  .bento-card { padding: 24px 20px; }

  .install-grid { grid-template-columns: 1fr; }

  .cta-card { padding: 40px 20px; border-radius: var(--radius-2xl); }

  /* Footer: stack links and wrap them */
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .footer-links { flex-wrap: wrap; gap: 12px 20px; }

  /* Section spacing */
  .section-sub { margin-bottom: 36px; }
}

@media (max-width: 400px) {
  :root { --nav-h: 56px; }
  .hero { padding: calc(var(--nav-h) + 24px) 16px 48px; gap: 28px; }
  .hero-visual { max-width: 100%; }
  .nav-inner { padding: 0 16px; }
  .container { padding: 0 16px; }
}
