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

:root {
  --bg: #0a0908;
  --bg-2: #0e0c0b;
  --card: #131110;
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.18);
  --text: #f4f1ee;
  --muted: #a29b94;
  --faint: #6e6862;
  --accent: #ff5a1e;
  --accent-bright: #ff7a3c;
  --accent-dim: rgba(255, 90, 30, 0.14);
  --font-jp: 'Noto Sans JP', sans-serif;
  --font-en: 'Space Grotesk', 'Noto Sans JP', sans-serif;
  --font-mono: 'IBM Plex Mono', 'Menlo', monospace;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --nav-h: 72px;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 24px);
}

body {
  font-family: var(--font-jp);
  background: var(--bg);
  color: var(--text);
  line-height: 1.8;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

::selection {
  background: var(--accent);
  color: #fff;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 40px);
}

/* Common */

.kicker {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.kicker::before {
  content: '';
  width: 34px;
  height: 1px;
  background: var(--accent);
  opacity: 0.7;
  flex: none;
}

.section {
  padding: clamp(4.5rem, 9vw, 7.5rem) 0;
}

.section + .section {
  border-top: 1px solid var(--line);
}

.section-head {
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.section-title {
  font-size: clamp(1.9rem, 4vw, 2.9rem);
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: 0.01em;
  margin-top: 1.1rem;
}

.section-lead {
  color: var(--muted);
  margin-top: 0.9rem;
  max-width: 42em;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  padding: 0.95rem 1.9rem;
  border: 1px solid var(--line-strong);
  border-radius: 2px;
  transition: border-color 0.35s var(--ease-out), background 0.35s var(--ease-out), color 0.35s var(--ease-out);
}

.btn .arrow {
  font-family: var(--font-en);
  transition: transform 0.35s var(--ease-out);
}

.btn:hover .arrow {
  transform: translateX(5px);
}

.btn-primary {
  background: var(--accent);
  border-color: var(--accent);
  color: #140904;
}

.btn-primary:hover {
  background: var(--accent-bright);
  border-color: var(--accent-bright);
}

.btn-ghost {
  color: var(--text);
}

.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent-bright);
}

.chip {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--muted);
  border: 1px solid var(--line-strong);
  border-radius: 2px;
  padding: 0.14rem 0.7rem;
  white-space: nowrap;
}

/* Nav */

#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  border-bottom: 1px solid transparent;
  background: linear-gradient(rgba(10, 9, 8, 0.55), rgba(10, 9, 8, 0));
  transition: background 0.4s ease, border-color 0.4s ease;
}

#navbar.scrolled {
  background: rgba(10, 9, 8, 0.84);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
}

#navbar:has(.nav-links.active) {
  background: rgba(10, 9, 8, 0.97);
  border-bottom-color: var(--line);
}

.nav-inner {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 40px);
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex: none;
}

.brand-logo {
  display: block;
  height: clamp(15px, 4.2vw, 19px);
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.2rem;
}

.nav-links a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--muted);
  transition: color 0.3s ease;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s var(--ease-out);
}

.nav-links a:hover {
  color: var(--text);
}

.nav-links a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-links a.nav-cta {
  color: var(--text);
  border: 1px solid var(--line-strong);
  border-radius: 2px;
  padding: 0.45rem 1.15rem;
  transition: border-color 0.3s ease, color 0.3s ease;
}

.nav-links a.nav-cta::after {
  display: none;
}

.nav-links a.nav-cta:hover {
  border-color: var(--accent);
  color: var(--accent-bright);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.6rem 0.2rem;
  flex-direction: column;
  gap: 7px;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 1.5px;
  background: var(--text);
  transition: transform 0.35s var(--ease-out), opacity 0.3s ease;
  transform-origin: center;
}

.nav-toggle.active span:nth-child(1) {
  transform: translateY(4.25px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
  transform: translateY(-4.25px) rotate(-45deg);
}

/* Hero */

.hero {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding-top: var(--nav-h);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 72px 72px;
  -webkit-mask-image: radial-gradient(120% 90% at 50% 0%, #000 30%, transparent 78%);
  mask-image: radial-gradient(120% 90% at 50% 0%, #000 30%, transparent 78%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  inset: auto 0 0 0;
  height: 62%;
  background: radial-gradient(115% 78% at 50% 112%,
    rgba(255, 90, 30, 0.26) 0%,
    rgba(255, 90, 30, 0.1) 38%,
    transparent 72%);
  pointer-events: none;
}

#embers {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  padding-bottom: 4rem;
}

.hero-logo-wrap {
  margin: 0 0 2.2rem;
}

.hero-logo {
  display: block;
  width: clamp(280px, 56vw, 640px);
  height: auto;
  opacity: 0;
  transform: translateY(26px);
  animation: logo-in 1.1s var(--ease-out) 0.15s forwards;
}

@keyframes logo-in {
  to {
    opacity: 1;
    transform: none;
  }
}

.hero-tagline {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  font-size: clamp(0.98rem, 1.7vw, 1.2rem);
  font-weight: 700;
  letter-spacing: 0.32em;
  margin-bottom: 1.6rem;
}

.hero-tagline::before {
  content: '';
  width: 44px;
  height: 1px;
  background: var(--accent);
  flex: none;
}

.hero-lead {
  color: var(--muted);
  font-size: clamp(1rem, 1.6vw, 1.14rem);
  max-width: 36em;
}

.hero-actions {
  margin-top: 2.9rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-foot {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  border-top: 1px solid var(--line);
}

.hero-foot-inner {
  max-width: 1360px;
  margin: 0 auto;
  padding: 1.05rem clamp(20px, 4vw, 40px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--faint);
}

.scroll-cue {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
}

.scroll-cue::after {
  content: '';
  width: 44px;
  height: 1px;
  background: var(--faint);
  transform-origin: left;
  animation: cue-sweep 2.2s var(--ease-out) infinite;
}

@keyframes cue-sweep {
  0% { transform: scaleX(0); opacity: 0; }
  35% { transform: scaleX(1); opacity: 1; }
  100% { transform: scaleX(1) translateX(18px); opacity: 0; }
}

/* Marquee */

.marquee {
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  padding: 1.15rem 0;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 46s linear infinite;
}

.marquee:hover .marquee-track {
  animation-play-state: paused;
}

.marquee-track span {
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  color: var(--faint);
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
}

.marquee-track span::after {
  content: '*';
  font-family: var(--font-mono);
  color: var(--accent);
  margin: 0 2.4rem;
  opacity: 0.85;
}

@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}

/* Stats */

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.stat {
  background: var(--bg);
  padding: 2.4rem 2rem 2.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.stat-num {
  font-family: var(--font-en);
  font-weight: 700;
  font-size: clamp(2.3rem, 3.6vw, 3.3rem);
  line-height: 1.1;
  letter-spacing: 0.01em;
}

.stat-label {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text);
  line-height: 1.6;
}

.stat-note {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-top: 0.55rem;
}

/* Apps */

.apps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.2rem;
}

.app-card {
  display: flex;
  flex-direction: column;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 3px;
  overflow: hidden;
  transition: border-color 0.4s var(--ease-out), transform 0.4s var(--ease-out);
}

.app-card:hover {
  border-color: rgba(255, 90, 30, 0.55);
  transform: translateY(-4px);
}

.app-media {
  position: relative;
  aspect-ratio: 16 / 10;
  display: grid;
  place-items: center;
  background:
    radial-gradient(90% 90% at 50% 110%, rgba(255, 90, 30, 0.07), transparent 60%),
    var(--bg-2);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.app-media img {
  max-width: 74%;
  max-height: 74%;
  object-fit: contain;
  border-radius: 14px;
  transition: transform 0.55s var(--ease-out);
}

.app-card:hover .app-media img {
  transform: scale(1.045);
}

.app-flag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  font-family: var(--font-mono);
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid rgba(255, 90, 30, 0.45);
  border-radius: 2px;
  padding: 0.2rem 0.65rem;
  background: rgba(10, 9, 8, 0.6);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}

.app-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1.6rem 1.6rem 1.35rem;
}

.app-name {
  font-size: 1.22rem;
  font-weight: 700;
  line-height: 1.4;
}

.app-desc {
  color: var(--muted);
  font-size: 0.93rem;
  margin-top: 0.55rem;
  flex: 1;
}

.app-foot {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-top: 1.5rem;
  padding-top: 1.1rem;
  border-top: 1px solid var(--line);
}

.app-date {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.1em;
  color: var(--faint);
}

.app-foot .chip {
  margin-right: auto;
}

.app-cta {
  font-family: var(--font-en);
  font-size: 0.95rem;
  color: var(--faint);
  transition: color 0.3s ease, transform 0.35s var(--ease-out);
}

.app-card:hover .app-cta {
  color: var(--accent-bright);
  transform: translate(3px, -3px);
}

.app-card--more {
  background: transparent;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 300px;
  padding: 2rem;
}

.app-card--more:hover {
  border-color: var(--line);
  transform: none;
}

.more-title {
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 1.9rem;
  letter-spacing: 0.04em;
  color: var(--text);
}

.more-text {
  color: var(--muted);
  font-size: 0.9rem;
  margin-top: 0.7rem;
}

.more-cta {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  color: var(--accent);
  margin-top: 1.5rem;
}

@media (min-width: 940px) {
  .app-card--featured {
    grid-column: 1 / -1;
    flex-direction: row;
  }

  .app-card--featured .app-media {
    width: 54%;
    aspect-ratio: auto;
    border-bottom: none;
    border-right: 1px solid var(--line);
  }

  .app-card--featured .app-body {
    width: 46%;
    justify-content: center;
    padding: 2.6rem;
  }

  .app-card--featured .app-name {
    font-size: 1.8rem;
  }

  .app-card--featured .app-desc {
    flex: none;
    margin-top: 0.9rem;
  }
}

/* News */

.news-list {
  border-top: 1px solid var(--line);
}

.news-row {
  display: grid;
  grid-template-columns: 130px 170px 1fr auto;
  align-items: baseline;
  gap: 1.6rem;
  padding: 1.7rem 0.6rem;
  border-bottom: 1px solid var(--line);
  transition: background 0.3s ease;
}

.news-row:hover {
  background: rgba(255, 255, 255, 0.025);
}

.news-date {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  color: var(--faint);
  white-space: nowrap;
}

.news-tag {
  justify-self: start;
}

.news-title {
  font-size: 0.98rem;
  font-weight: 500;
  line-height: 1.7;
}

.news-arrow {
  font-family: var(--font-en);
  color: var(--faint);
  transition: color 0.3s ease, transform 0.35s var(--ease-out);
}

.news-row:hover .news-arrow {
  color: var(--accent-bright);
  transform: translate(3px, -3px);
}

/* CTA */

.cta-band {
  border-top: 1px solid var(--line);
  padding: clamp(4.5rem, 9vw, 7rem) 0;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(60% 120% at 85% 120%, rgba(255, 90, 30, 0.09), transparent 65%);
  pointer-events: none;
}

.cta-band-inner {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2.5rem;
}

.cta-band .section-title {
  max-width: 22em;
}

/* Page head */

.page-head {
  padding: calc(var(--nav-h) + clamp(4rem, 9vw, 6.5rem)) 0 clamp(3rem, 6vw, 4.5rem);
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}

.page-head::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(52% 110% at 88% -10%, rgba(255, 90, 30, 0.1), transparent 62%);
  pointer-events: none;
}

.page-head .container {
  position: relative;
}

.page-title {
  font-size: clamp(2.3rem, 6vw, 4.1rem);
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: 0.01em;
  margin: 1.4rem 0 0.7rem;
}

.page-sub {
  color: var(--muted);
  font-size: 0.98rem;
}

/* Statement */

.statement {
  font-size: clamp(1.7rem, 4.2vw, 3rem);
  font-weight: 800;
  line-height: 1.55;
  letter-spacing: 0.01em;
  margin-top: 1.4rem;
  max-width: 24em;
}

.statement em {
  font-style: normal;
  color: var(--accent);
}

.statement-body {
  color: var(--muted);
  margin-top: 1.8rem;
  max-width: 40em;
}

/* Spec table */

.spec {
  border-top: 1px solid var(--line-strong);
}

.spec-row {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 1.5rem;
  padding: 1.7rem 0.4rem;
  border-bottom: 1px solid var(--line);
}

.spec-row dt {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--muted);
  line-height: 1.9;
}

.spec-row dd {
  font-size: 0.98rem;
  line-height: 1.9;
}

.spec-row dd a {
  color: var(--accent-bright);
  border-bottom: 1px solid rgba(255, 122, 60, 0.35);
  transition: border-color 0.3s ease;
}

.spec-row dd a:hover {
  border-bottom-color: var(--accent-bright);
}

/* Business */

.biz-list {
  border-top: 1px solid var(--line-strong);
}

.biz-item {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 1.5rem;
  padding: 2.1rem 0.4rem;
  border-bottom: 1px solid var(--line);
}

.biz-num {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  color: var(--accent);
  padding-top: 0.4rem;
}

.biz-title {
  font-size: 1.22rem;
  font-weight: 700;
}

.biz-desc {
  color: var(--muted);
  font-size: 0.95rem;
  margin-top: 0.35rem;
}

/* Legal prose */

.prose {
  max-width: 800px;
}

.prose > p {
  color: #ccc5be;
  margin-bottom: 1.4rem;
}

.prose h2 {
  font-size: 1.28rem;
  font-weight: 700;
  line-height: 1.5;
  margin-top: 3.2rem;
  padding-top: 2.4rem;
  border-top: 1px solid var(--line);
  display: flex;
  gap: 0.9rem;
  align-items: baseline;
}

.prose h2::before {
  content: '';
  width: 10px;
  height: 10px;
  border: 1px solid var(--accent);
  border-radius: 1px;
  flex: none;
  transform: translateY(-1px) rotate(45deg);
}

.prose ol {
  list-style: decimal;
  padding-left: 1.6em;
  color: #ccc5be;
  margin-top: 1.1rem;
}

.prose ol li {
  margin-bottom: 0.85em;
  padding-left: 0.3em;
}

.prose ul {
  list-style: none;
  padding-left: 1.4em;
  margin: 0.4em 0;
}

.prose a {
  color: var(--accent-bright);
  border-bottom: 1px solid rgba(255, 122, 60, 0.35);
}

.prose .right {
  text-align: right;
  color: var(--faint);
  font-size: 0.9rem;
  margin-top: 0.6rem;
}

.prose-dates {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}

/* Footer */

.site-footer {
  border-top: 1px solid var(--line);
  background: var(--bg-2);
  margin-top: auto;
  overflow: hidden;
}

.footer-inner {
  max-width: 1360px;
  margin: 0 auto;
  padding: clamp(3.5rem, 7vw, 5.5rem) clamp(20px, 4vw, 40px) 2.2rem;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2.8rem;
  padding-bottom: clamp(2.5rem, 5vw, 4rem);
}

.footer-brand .brand {
  margin-bottom: 1rem;
}

.footer-tag {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--faint);
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: 0.8rem 3.5rem;
}

.footer-nav a {
  font-size: 0.9rem;
  color: var(--muted);
  transition: color 0.3s ease;
}

.footer-nav a:hover {
  color: var(--text);
}

.footer-mark {
  font-family: var(--font-en);
  font-weight: 700;
  font-size: clamp(2.6rem, 8.5vw, 6.8rem);
  line-height: 1;
  letter-spacing: 0.02em;
  white-space: nowrap;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.07);
  user-select: none;
  pointer-events: none;
  margin-bottom: 2rem;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
  font-size: 0.82rem;
  color: var(--faint);
}

.footer-bottom .footer-loc {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

/* Reveal */

.js .reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
  transition-delay: var(--d, 0s);
}

.js .reveal.in {
  opacity: 1;
  transform: none;
}

/* Responsive */

@media (max-width: 900px) {
  .stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .news-row {
    grid-template-columns: 1fr auto;
    gap: 0.4rem 1.2rem;
    align-items: center;
  }

  .news-date {
    grid-column: 1;
    grid-row: 1;
  }

  .news-tag {
    display: none;
  }

  .news-title {
    grid-column: 1;
    grid-row: 2;
  }

  .news-arrow {
    grid-column: 2;
    grid-row: 1 / 3;
  }

  .spec-row {
    grid-template-columns: 1fr;
    gap: 0.15rem;
    padding: 1.4rem 0.2rem;
  }

  .biz-item {
    grid-template-columns: 1fr;
    gap: 0.4rem;
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: var(--nav-h);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(10, 9, 8, 0.97);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--line);
    padding: 0.8rem clamp(20px, 4vw, 40px) 1.6rem;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links li {
    border-bottom: 1px solid var(--line);
  }

  .nav-links li:last-child {
    border-bottom: none;
    margin-top: 1.1rem;
  }

  .nav-links a {
    display: block;
    padding: 1rem 0.2rem;
    font-size: 1rem;
  }

  .nav-links a::after {
    display: none;
  }

  .nav-links a.nav-cta {
    text-align: center;
    padding: 0.9rem 1rem;
  }

  .hero-foot-inner .hero-meta {
    display: none;
  }

  .footer-nav {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .stats {
    grid-template-columns: 1fr;
  }
}

/* Reduced motion */

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .js .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .hero-logo {
    animation: none;
    opacity: 1;
    transform: none;
  }

  .marquee-track {
    animation: none;
  }

  .scroll-cue::after {
    animation: none;
  }
}
