:root {
  color-scheme: dark;
  --bg: #130b08;
  --bg-soft: #1d120d;
  --bg-panel: rgba(255, 247, 238, 0.08);
  --bg-panel-strong: rgba(255, 247, 238, 0.12);
  --ink: #fff7ee;
  --ink-muted: rgba(255, 247, 238, 0.72);
  --line: rgba(255, 247, 238, 0.14);
  --line-strong: rgba(255, 247, 238, 0.24);
  --accent: #ff5b2f;
  --accent-deep: #d83d1b;
  --gold: #ffca61;
  --mint: #81e4cb;
  --cream: #f7ecdc;
  --charcoal: #2d1d16;
  --shadow: 0 24px 64px rgba(5, 4, 3, 0.34);
  --radius-lg: 32px;
  --radius-md: 24px;
  --radius-sm: 18px;
  --container: min(1120px, calc(100vw - 32px));

  /* LOGO CONFIGURATION */
  --logo-header-height-desktop: 44px;
  --logo-header-height-mobile: 54px;
  --logo-footer-height-desktop: 52px;
  --logo-footer-height-mobile: 85px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(255, 91, 47, 0.18), transparent 28%),
    radial-gradient(circle at 85% 0%, rgba(255, 202, 97, 0.16), transparent 26%),
    linear-gradient(180deg, #170d09 0%, #120905 100%);
  color: var(--ink);
  font-family: "Manrope", sans-serif;
  text-rendering: optimizeLegibility;
}

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

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

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.site-shell {
  position: relative;
  overflow: clip;
}

.ambient {
  position: fixed;
  inset: auto;
  border-radius: 999px;
  filter: blur(36px);
  opacity: 0.6;
  pointer-events: none;
  z-index: -1;
}

.ambient-one {
  top: 9rem;
  left: -6rem;
  width: 14rem;
  height: 14rem;
  background: rgba(255, 91, 47, 0.24);
}

.ambient-two {
  top: 28rem;
  right: -4rem;
  width: 11rem;
  height: 11rem;
  background: rgba(129, 228, 203, 0.18);
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.section {
  position: relative;
  padding: 1.25rem 0 5.5rem;
}

.top-anchor {
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 1px;
}

.story-section,
.menu-section,
.system-section,
.franchise-section,
.faq-section,
.contact-section {
  scroll-margin-top: 0;
}

#top {
  scroll-margin-top: 0;
}

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

.js .reveal {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: var(--container);
  margin: 0 auto;
  padding: 1rem 0;
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
}

.brand-logo {
  height: var(--logo-header-height-desktop);
  width: auto;
  object-fit: contain;
}

.brand-copy {
  display: grid;
  gap: 0.05rem;
}

.brand-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.8rem;
  line-height: 0.92;
  letter-spacing: 0.06em;
}

.brand-subtitle {
  color: var(--ink-muted);
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.menu-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.28rem;
  width: 3rem;
  height: 3rem;
  padding: 0.8rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(14, 8, 5, 0.68);
}

.menu-toggle span {
  width: 100%;
  height: 2px;
  border-radius: 99px;
  background: var(--ink);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.menu-toggle.is-open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.site-nav {
  position: fixed;
  inset: 5.25rem 1rem auto;
  display: grid;
  gap: 0.7rem;
  padding: 1rem;
  background:
    linear-gradient(180deg, rgba(22, 12, 8, 0.98), rgba(16, 9, 6, 0.96)),
    rgba(18, 9, 6, 0.96);
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-10px);
  transition:
    opacity 0.25s ease,
    transform 0.25s ease;
}

.site-nav.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.site-nav a {
  padding: 0.9rem 1rem;
  border-radius: 16px;
  color: var(--ink-muted);
  background: rgba(255, 247, 238, 0.03);
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--ink);
  background: rgba(255, 247, 238, 0.08);
}

.nav-cta {
  color: var(--bg) !important;
  font-weight: 800;
  background: linear-gradient(135deg, var(--gold), #fff0c8) !important;
}

.hero {
  padding-top: 1rem;
}

.hero-grid {
  display: grid;
  gap: 2rem;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow-dark {
  color: var(--accent);
}

.hero h1,
.section-heading h2,
.story-intro h2,
.franchise-copy h2,
.contact-copy h2,
.roadmap-intro h2 {
  margin: 0;
  font-family: "Fraunces", serif;
  font-size: clamp(2.9rem, 10vw, 5.6rem);
  line-height: 0.92;
  letter-spacing: -0.04em;
}

.hero h1 span {
  color: var(--gold);
}

.hero-text,
.section-heading p,
.story-intro p,
.franchise-copy p,
.contact-copy p,
.metric-copy,
.system-card p,
.partner-card p,
.roadmap-step p,
.faq-answer p,
.footer-copy,
.footer-meta p,
.value-card p {
  color: var(--ink-muted);
  font-size: 1rem;
  line-height: 1.72;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-top: 1.8rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.45rem;
  padding: 0.95rem 1.2rem;
  border-radius: 999px;
  font-weight: 800;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--bg);
  background: linear-gradient(135deg, var(--gold), #fff3ce);
  box-shadow: 0 18px 40px rgba(255, 202, 97, 0.22);
}

.button-secondary {
  color: var(--ink);
  border: 1px solid var(--line);
  background: rgba(255, 247, 238, 0.04);
}

.button-block {
  width: 100%;
}

.button-icon {
  display: inline-grid;
  place-items: center;
  width: 1.15rem;
  height: 1.15rem;
  margin-right: 0.5rem;
  flex: 0 0 auto;
}

.button-icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem;
  margin-top: 1.5rem;
}

.hero-pills span,
.plate-orbit span {
  padding: 0.45rem 0.7rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink-muted);
  font-size: 0.74rem;
  line-height: 1;
  background: rgba(255, 247, 238, 0.06);
}

.visual-panel {
  position: relative;
  min-height: 31rem;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 202, 97, 0.18), transparent 32%),
    radial-gradient(circle at 80% 72%, rgba(255, 91, 47, 0.22), transparent 30%),
    linear-gradient(180deg, rgba(30, 17, 12, 0.94), rgba(19, 11, 8, 0.9));
  box-shadow: var(--shadow);
  overflow: hidden;
}

.visual-panel::before {
  content: "";
  position: absolute;
  inset: 1rem;
  border-radius: 28px;
  border: 1px solid rgba(255, 247, 238, 0.08);
}

.visual-badge,
.hero-stat,
.floating-card {
  position: relative;
  z-index: 1;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 247, 238, 0.06);
  backdrop-filter: blur(8px);
}

.visual-badge {
  width: max-content;
  max-width: calc(100% - 1rem);
  padding: 0.8rem 1rem;
}

.badge-label,
.floating-tag,
.metric-label,
.system-kicker,
.value-number,
.contact-label,
.menu-index,
.stat-label {
  display: block;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.badge-copy,
.stat-copy,
.floating-foot {
  display: block;
  margin-top: 0.22rem;
  color: var(--ink-muted);
  line-height: 1.5;
}

.hero-stat-main {
  width: min(17rem, 100%);
  margin-top: 1.2rem;
  padding: 1.2rem;
}

.stat-value,
.floating-card strong,
.metric-value {
  margin: 0.35rem 0 0;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2.2rem, 9vw, 3.7rem);
  letter-spacing: 0.04em;
  line-height: 0.95;
}

.floating-card {
  position: absolute;
  padding: 1rem;
}

.floating-speed {
  top: 4.2rem;
  right: 1rem;
  width: 9.25rem;
}

.floating-yield {
  right: 1rem;
  bottom: 6.2rem;
  width: 9.25rem;
}

.floating-leadership {
  left: 1rem;
  bottom: 1rem;
  width: 13rem;
}

.plate-orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  grid-template-columns: repeat(2, max-content);
  gap: 0.7rem;
  transform: translate(-12%, -12%);
}

.hero-marquee {
  margin-top: 2rem;
  overflow: hidden;
}

.marquee-track {
  display: flex;
  gap: 1rem;
  width: max-content;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2rem, 8vw, 3.3rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 247, 238, 0.14);
  animation: marquee 20s linear infinite;
}

.marquee-track span::after {
  content: "•";
  margin-left: 1rem;
  color: rgba(255, 202, 97, 0.5);
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

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

.story-section {
  color: var(--charcoal);
  background:
    radial-gradient(circle at top right, rgba(255, 202, 97, 0.25), transparent 24%),
    linear-gradient(180deg, #f8eddf 0%, #f3e5d4 100%);
}

.story-grid,
.franchise-grid,
.contact-grid {
  display: grid;
  gap: 1.4rem;
}

.founder-feature {
  display: grid;
  gap: 1.2rem;
  margin-top: 2rem;
}

.founder-visual,
.story-photo-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(45, 29, 22, 0.08);
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 24px 54px rgba(86, 56, 42, 0.1);
}

.founder-visual img,
.story-photo-card img,
.menu-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.founder-visual {
  min-height: 24rem;
}

.founder-badge {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  display: grid;
  gap: 0.25rem;
  max-width: min(18rem, calc(100% - 2rem));
  padding: 1rem;
  border: 1px solid rgba(255, 247, 238, 0.12);
  border-radius: 20px;
  color: var(--ink);
  background: rgba(18, 11, 8, 0.72);
  backdrop-filter: blur(12px);
}

.founder-badge strong {
  font-family: "Fraunces", serif;
  font-size: 1.35rem;
  line-height: 1.05;
}

.founder-copy {
  padding: 1.5rem;
  border: 1px solid rgba(45, 29, 22, 0.08);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 24px 54px rgba(86, 56, 42, 0.08);
}

.founder-copy h3,
.story-gallery-heading h3 {
  margin: 0;
  color: var(--charcoal);
  font-family: "Fraunces", serif;
  font-size: clamp(1.75rem, 6vw, 2.5rem);
  line-height: 1;
  letter-spacing: -0.04em;
}

.founder-copy p,
.timeline-copy p,
.story-photo-card figcaption,
.story-gallery-heading p {
  color: rgba(45, 29, 22, 0.78);
  line-height: 1.68;
}

.founder-copy .eyebrow,
.story-gallery-heading .eyebrow {
  color: var(--accent);
}

.founder-timeline {
  position: relative;
  display: grid;
  gap: 0.95rem;
  margin-top: 1.35rem;
  padding-top: 0.2rem;
}

.timeline-rail {
  position: absolute;
  top: 0.32rem;
  bottom: 0.32rem;
  left: 1.08rem;
  width: 1px;
  background: linear-gradient(180deg,
      rgba(184, 118, 72, 0.05),
      rgba(184, 118, 72, 0.5) 18%,
      rgba(184, 118, 72, 0.28) 82%,
      rgba(184, 118, 72, 0.06));
}

.timeline-step {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.85rem;
  align-items: start;
}

.timeline-index {
  display: inline-grid;
  place-items: center;
  width: 2.1rem;
  height: 2.1rem;
  margin-top: 0.06rem;
  border-radius: 999px;
  color: var(--bg);
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0.04em;
  background: linear-gradient(135deg, var(--gold), #fff0cf);
  box-shadow: 0 10px 24px rgba(184, 118, 72, 0.16);
  z-index: 1;
}

.timeline-copy {
  display: grid;
  gap: 0.2rem;
  padding: 0.05rem 0 0.18rem;
}

.timeline-label {
  margin: 0;
  color: var(--accent);
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.02rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.timeline-copy strong {
  color: var(--charcoal);
  font-family: "Fraunces", serif;
  font-size: 1.18rem;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.timeline-copy p:last-child {
  margin: 0;
  color: rgba(45, 29, 22, 0.72);
  line-height: 1.5;
}

.story-gallery {
  margin-top: 1.4rem;
}

.story-gallery-heading {
  max-width: 42rem;
}

.story-gallery-grid {
  display: grid;
  gap: 1rem;
  margin-top: 1.25rem;
}

.story-photo-card {
  min-height: 18rem;
}

.story-photo-card figcaption {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  max-width: min(22rem, calc(100% - 2rem));
  margin: 0;
  padding: 0.8rem 0.9rem;
  border: 1px solid rgba(255, 247, 238, 0.12);
  border-radius: 18px;
  color: var(--ink);
  background: rgba(18, 11, 8, 0.72);
  backdrop-filter: blur(12px);
}

.story-intro h2,
.franchise-copy h2,
.contact-copy h2,
.roadmap-intro h2,
.story-section .section-heading h2,
.system-section .section-heading h2 {
  color: var(--charcoal);
  font-size: clamp(2.3rem, 9vw, 4.2rem);
}

.story-intro p,
.franchise-copy p,
.contact-copy p,
.story-section .quote-meta,
.story-section .value-card p,
.system-section .section-heading p,
.roadmap-step p {
  color: rgba(45, 29, 22, 0.78);
}

.story-quote {
  align-self: end;
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(45, 29, 22, 0.09);
  box-shadow: 0 24px 54px rgba(86, 56, 42, 0.1);
}

.quote-copy {
  margin: 0;
  font-family: "Fraunces", serif;
  font-size: clamp(2rem, 8vw, 3.5rem);
  line-height: 1;
  letter-spacing: -0.05em;
}

.quote-meta {
  margin: 0.8rem 0 0;
}

.value-grid,
.system-grid,
.metrics-grid,
.menu-grid,
.partner-points,
.faq-list {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

.value-card,
.system-card,
.metric-card,
.menu-card,
.partner-card,
.roadmap-step,
.contact-card,
.faq-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
}

.value-card {
  padding: 1.35rem;
  border: 1px solid rgba(45, 29, 22, 0.08);
  background: rgba(255, 255, 255, 0.62);
}

.menu-section {
  background:
    radial-gradient(circle at 15% 15%, rgba(255, 202, 97, 0.1), transparent 24%),
    radial-gradient(circle at 88% 16%, rgba(129, 228, 203, 0.12), transparent 22%);
}

.section-heading {
  max-width: 46rem;
}

.menu-grid {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

.menu-card {
  display: grid;
  align-content: start;
  min-height: 15rem;
  padding: 1.4rem;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 247, 238, 0.06), rgba(255, 247, 238, 0.03)),
    rgba(26, 14, 10, 0.78);
}

.menu-media {
  position: relative;
  z-index: 1;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  margin-bottom: 1rem;
  border: 1px solid rgba(255, 247, 238, 0.1);
  border-radius: 18px;
  background: rgba(255, 247, 238, 0.08);
}

.menu-card h3,
.system-card h3,
.partner-card h3,
.roadmap-step h3,
.value-card h3 {
  margin: 0.4rem 0 0.7rem;
  font-size: 1.35rem;
  line-height: 1.1;
}

.menu-card p,
.partner-card p,
.system-card p,
.roadmap-step p {
  margin: 0;
  color: var(--ink-muted);
}

.menu-burst {
  position: absolute;
  top: -1.3rem;
  right: -1.3rem;
  width: 7rem;
  height: 7rem;
  border-radius: 999px;
  filter: blur(10px);
  opacity: 0.82;
}

.menu-burst-red {
  background: rgba(255, 91, 47, 0.52);
}

.menu-burst-gold {
  background: rgba(255, 202, 97, 0.52);
}

.menu-burst-teal {
  background: rgba(129, 228, 203, 0.42);
}

.menu-burst-cream {
  background: rgba(247, 236, 220, 0.45);
}

.menu-burst-orange {
  background: rgba(233, 123, 35, 0.5);
}

/* VIDEO HIGHLIGHTS CAROUSEL */
.menu-highlights {
  margin-top: 4.5rem;
  padding-bottom: 0.5rem;
}

.highlights-heading {
  margin-bottom: 2.5rem;
  text-align: center;
}

.highlights-heading h3 {
  margin: 0.5rem 0 0;
  font-family: "Fraunces", serif;
  font-size: clamp(2.2rem, 8vw, 3.5rem);
  line-height: 1.1;
  letter-spacing: -0.04em;
  color: var(--gold);
}

.highlights-carousel {
  display: flex;
  gap: 1.25rem;
  padding: 1rem 0 2rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  margin: 0 -1rem;
  padding-left: 1rem;
  padding-right: 1rem;
}

.highlights-carousel::-webkit-scrollbar {
  display: none;
}

.carousel-item {
  flex: 0 0 280px;
  scroll-snap-align: center;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 9 / 16;
  background: var(--bg-soft);
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  transition: transform 0.4s cubic-bezier(0.2, 1, 0.3, 1);
  position: relative;
}

.carousel-item:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: var(--gold);
}

.carousel-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  display: block;
}

.highlights-footer {
  margin-top: 1.5rem;
  text-align: center;
  color: rgba(45, 29, 22, 0.6);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 800;
}

@media (min-width: 720px) {
  .highlights-carousel {
    margin: 0;
    padding-left: 0;
    padding-right: 0;
    justify-content: center;
    gap: 1.5rem;
    overflow-x: hidden;
  }

  .carousel-item {
    flex: 0 0 calc(25% - 1.25rem);
    max-width: 320px;
    scroll-snap-align: none;
  }
}

.system-section {
  color: var(--charcoal);
  background:
    linear-gradient(180deg, #fff8ef 0%, #f7eddf 100%);
}

.system-section .section-heading {
  position: relative;
  z-index: 1;
  padding: 1.2rem;
  border: 1px solid rgba(45, 29, 22, 0.08);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 40px rgba(86, 56, 42, 0.06);
}

.system-section .section-heading h2 {
  color: var(--charcoal);
  text-shadow: none;
}

.system-card,
.metric-card,
.roadmap,
.contact-card,
.faq-item {
  border: 1px solid rgba(45, 29, 22, 0.09);
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 18px 40px rgba(86, 56, 42, 0.08);
}

.system-card {
  padding: 1.4rem;
}

.system-card p,
.metric-copy,
.contact-section .form-note {
  color: rgba(45, 29, 22, 0.76);
}

.system-card-dark {
  color: var(--ink);
  background:
    radial-gradient(circle at top right, rgba(255, 202, 97, 0.18), transparent 30%),
    linear-gradient(180deg, #1d100c 0%, #150b08 100%);
  border-color: rgba(255, 247, 238, 0.08);
}

.system-card-dark p {
  color: var(--ink-muted);
}

.metrics-grid {
  margin-top: 1rem;
}

.metric-card {
  display: grid;
  gap: 0.4rem;
  padding: 1.4rem;
  min-height: 11rem;
}

.metric-card p {
  margin: 0;
}

.metric-value {
  color: var(--charcoal);
  line-height: 0.95;
}

.franchise-section {
  background:
    radial-gradient(circle at 10% 12%, rgba(255, 91, 47, 0.14), transparent 28%),
    linear-gradient(180deg, #150c08 0%, #0f0705 100%);
}

.franchise-grid {
  align-items: start;
}

.franchise-copy {
  color: var(--ink);
}

.franchise-copy h2 {
  color: var(--ink);
}

.franchise-copy p {
  color: rgba(255, 247, 238, 0.78);
}

.partner-card {
  padding: 1.35rem;
  border: 1px solid var(--line);
  background: rgba(255, 247, 238, 0.05);
}

.partner-card h3 {
  color: var(--ink);
}

.partner-card p {
  color: rgba(255, 247, 238, 0.74);
}

.roadmap {
  margin-top: 2rem;
  padding: 1.5rem;
  background:
    radial-gradient(circle at top right, rgba(255, 202, 97, 0.14), transparent 28%),
    rgba(255, 248, 241, 0.96);
}

.roadmap-track {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}

.roadmap-step {
  display: grid;
  gap: 0.55rem;
  padding: 1.2rem;
  border: 1px solid rgba(45, 29, 22, 0.09);
  color: var(--charcoal);
  background: rgba(255, 255, 255, 0.78);
}

.roadmap-step span {
  display: inline-grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  color: var(--bg);
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.3rem;
  background: linear-gradient(135deg, var(--gold), #fff2d1);
}

.roadmap-step h3 {
  color: var(--charcoal);
}

.roadmap-step p {
  color: rgba(45, 29, 22, 0.74);
}

.faq-section {
  background:
    radial-gradient(circle at top left, rgba(255, 202, 97, 0.1), transparent 24%),
    linear-gradient(180deg, #120905 0%, #1a0f0c 100%);
}

.faq-item {
  border: 1px solid var(--line);
  background: rgba(255, 247, 238, 0.05);
}

.faq-question {
  width: 100%;
  padding: 1.25rem 3.5rem 1.25rem 1.25rem;
  border: 0;
  color: var(--ink);
  font-size: 1rem;
  font-weight: 700;
  text-align: left;
  background: transparent;
}

.faq-question::after {
  content: "+";
  position: absolute;
  top: 1.05rem;
  right: 1.2rem;
  color: var(--gold);
  font-size: 1.8rem;
  line-height: 1;
  transition: transform 0.2s ease;
}

.faq-question[aria-expanded="true"]::after {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.28s ease;
}

.faq-answer p {
  margin: 0;
  padding: 0 1.25rem 1.3rem;
}

.contact-section {
  color: var(--charcoal);
  background:
    radial-gradient(circle at top right, rgba(129, 228, 203, 0.16), transparent 24%),
    linear-gradient(180deg, #f8ecdc 0%, #f1e2cf 100%);
}

.contact-points {
  margin: 1.4rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.7rem;
}

.contact-points li {
  position: relative;
  padding-left: 1.3rem;
  color: rgba(45, 29, 22, 0.78);
}

.contact-points li::before {
  content: "";
  position: absolute;
  top: 0.58rem;
  left: 0;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 999px;
  background: var(--accent);
}

.contact-card {
  padding: 1.5rem;
}

.inquiry-form {
  display: grid;
  gap: 0.95rem;
}

.inquiry-form label {
  display: grid;
  gap: 0.5rem;
}

.inquiry-form span {
  font-size: 0.92rem;
  font-weight: 700;
}

.inquiry-form input,
.inquiry-form textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(45, 29, 22, 0.12);
  border-radius: 16px;
  color: var(--charcoal);
  background: rgba(255, 255, 255, 0.85);
}

.inquiry-form input:focus,
.inquiry-form textarea:focus {
  outline: 2px solid rgba(216, 61, 27, 0.22);
  border-color: rgba(216, 61, 27, 0.28);
}

.form-note {
  margin: 0;
}

.site-footer {
  padding: 1.6rem 0 6rem;
  background: #100805;
}

.footer-row {
  display: grid;
  gap: 1rem;
}

.footer-brand-container {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 0.85rem;
}

.footer-logo {
  height: var(--logo-footer-height-desktop);
  width: auto;
  object-fit: contain;
}

.footer-brand {
  margin: 0;
  font-family: "Bebas Neue", sans-serif;
  font-size: 2rem;
  line-height: 1;
  letter-spacing: 0.08em;
}

.footer-copy,
.footer-meta p,
.footer-meta a {
  margin: 0.35rem 0 0;
  color: var(--ink-muted);
}

.sticky-cta {
  position: fixed;
  right: 1rem;
  bottom: 5.25rem;
  z-index: 22;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  min-height: 3.4rem;
  padding: 0.85rem 1.2rem;
  border-radius: 999px;
  color: var(--bg);
  font-weight: 800;
  background: linear-gradient(135deg, var(--accent), #ff7c3f);
  box-shadow: 0 16px 38px rgba(216, 61, 27, 0.35);
}

.sticky-cta__icon {
  width: 1.05rem;
  height: 1.05rem;
  flex: 0 0 auto;
  fill: currentColor;
}

.bottom-nav {
  position: fixed;
  left: 50%;
  bottom: 1rem;
  z-index: 23;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  width: min(calc(100vw - 1rem), 38rem);
  padding: 0.45rem;
  overflow: hidden;
  transform: translateX(-50%);
  border: 1px solid rgba(255, 247, 238, 0.12);
  border-radius: 999px;
  background: rgba(15, 8, 6, 0.76);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 42px rgba(5, 4, 3, 0.34);
}

.bottom-nav__pill {
  flex: 1 1 0;
  min-width: 0;
  padding: 0.68rem 0.4rem;
  border-radius: 999px;
  color: var(--ink-muted);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  white-space: nowrap;
  text-align: center;
  background: transparent;
  border: 1px solid transparent;
  transition:
    transform 0.2s ease,
    color 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease;
}

.bottom-nav__pill:hover,
.bottom-nav__pill:focus-visible {
  color: var(--ink);
  transform: translateY(-1px);
}

.bottom-nav__pill.is-active {
  color: var(--bg);
  border-color: rgba(255, 247, 238, 0.18);
  background: linear-gradient(135deg, var(--gold), #fff0cf);
  box-shadow: 0 10px 24px rgba(255, 202, 97, 0.18);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

@media (min-width: 720px) {
  .section {
    padding-bottom: 7rem;
  }

  .topbar {
    padding: 1.2rem 0;
  }

  .hero {
    padding-top: 2rem;
  }

  .hero-actions {
    flex-direction: row;
  }

  .hero-pills {
    justify-content: flex-start;
  }

  .hero-grid,
  .story-grid,
  .founder-feature,
  .franchise-grid,
  .contact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: center;
  }

  .story-gallery-grid {
    grid-template-columns: 1.3fr 0.7fr;
  }

  .founder-timeline {
    gap: 0.8rem;
  }

  .value-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .menu-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .menu-card:nth-child(5) {
    grid-column: span 2;
  }

  .system-grid,
  .metrics-grid,
  .partner-points,
  .roadmap-track {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-row {
    grid-template-columns: 1.4fr 1fr;
    align-items: end;
  }
}

@media (min-width: 980px) {
  :root {
    --container: min(1240px, calc(100vw - 56px));
  }

  .menu-toggle {
    display: none;
  }

  .section {
    padding: 2rem 0 7.5rem;
  }

  .topbar {
    margin-top: 0.9rem;
    padding: 0.95rem 1.15rem;
    border: 1px solid rgba(255, 247, 238, 0.1);
    border-radius: 30px;
    background:
      linear-gradient(180deg, rgba(31, 18, 13, 0.88), rgba(18, 10, 8, 0.74)),
      rgba(19, 11, 8, 0.74);
    box-shadow: 0 20px 50px rgba(7, 5, 4, 0.22);
  }

  .brand {
    gap: 1rem;
  }

  .brand-mark {
    width: 3.2rem;
    height: 3.2rem;
    border-radius: 18px;
    font-size: 1.65rem;
  }

  .brand-title {
    font-size: 2.05rem;
  }

  .brand-subtitle {
    font-size: 0.82rem;
    letter-spacing: 0.18em;
  }

  .site-nav {
    position: static;
    display: flex;
    align-items: center;
    gap: 0.55rem;
    margin-left: auto;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .site-nav a {
    padding: 0.78rem 1rem;
    border-radius: 999px;
    color: rgba(255, 247, 238, 0.78);
    font-size: 1rem;
    font-weight: 700;
    background: transparent;
  }

  .site-nav a:hover,
  .site-nav a:focus-visible {
    color: var(--ink);
    background: rgba(255, 247, 238, 0.06);
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
    gap: 3.1rem;
    align-items: start;
  }

  .hero {
    padding-top: 2.25rem;
  }

  .hero-copy {
    padding-top: 0.8rem;
  }

  .hero h1 {
    font-size: clamp(4.45rem, 6.85vw, 6.55rem);
    line-height: 0.9;
    letter-spacing: -0.065em;
  }

  .hero-text {
    max-width: 42rem;
    margin-top: 1.45rem;
    font-size: 1.12rem;
    line-height: 1.82;
  }

  .hero-actions {
    gap: 1rem;
    margin-top: 2.1rem;
  }

  .hero-pills {
    gap: 0.55rem;
    margin-top: 1.6rem;
  }

  .hero-pills span {
    padding: 0.52rem 0.82rem;
    font-size: 0.72rem;
    background: rgba(255, 247, 238, 0.05);
  }

  .hero-marquee {
    margin-top: 2.8rem;
  }

  .marquee-track {
    font-size: clamp(2.35rem, 4.4vw, 3.5rem);
  }

  .visual-panel {
    display: grid;
    min-height: 36rem;
    grid-template-columns: minmax(0, 1.12fr) repeat(2, minmax(0, 0.72fr));
    grid-template-areas:
      "badge badge badge"
      "main speed yield"
      "main speed yield"
      "leadership orbit orbit";
    gap: 1rem 0.95rem;
    align-content: start;
    align-items: stretch;
    padding: 1.3rem;
  }

  .visual-panel::before {
    inset: 1.15rem;
    border-radius: 30px;
  }

  .visual-badge {
    grid-area: badge;
    width: auto;
    max-width: none;
    padding: 1rem 1.2rem;
  }

  .hero-stat-main {
    grid-area: main;
    width: auto;
    max-width: none;
    min-height: 20rem;
    margin-top: 0;
    padding: 1.35rem;
  }

  .hero-stat-main .stat-value {
    font-size: clamp(4rem, 5vw, 5.3rem);
  }

  .hero-stat-main .stat-copy {
    max-width: 19rem;
    font-size: 1rem;
    line-height: 1.65;
  }

  .floating-card {
    position: relative;
    width: auto;
    min-height: 12.25rem;
    padding: 1.15rem;
    background: rgba(255, 247, 238, 0.05);
  }

  .floating-speed {
    grid-area: speed;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    width: auto;
  }

  .floating-speed strong,
  .floating-yield strong {
    font-size: clamp(3.2rem, 4vw, 4.25rem);
  }

  .floating-yield {
    grid-area: yield;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    width: auto;
  }

  .floating-leadership {
    grid-area: leadership;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    width: auto;
    min-height: auto;
  }

  .floating-leadership strong {
    font-size: clamp(3rem, 4vw, 4rem);
  }

  .plate-orbit {
    grid-area: orbit;
    position: relative;
    top: auto;
    left: auto;
    display: flex;
    flex-wrap: wrap;
    align-content: flex-start;
    gap: 0.7rem;
    justify-content: start;
    transform: none;
  }

  .plate-orbit span {
    min-height: auto;
    padding: 0.58rem 0.84rem;
    font-size: 0.78rem;
    white-space: nowrap;
    background: rgba(255, 247, 238, 0.04);
  }

  .founder-feature {
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  }

  .timeline-rail {
    left: 1.05rem;
  }

  .menu-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 1.15rem;
  }

  .menu-card:nth-child(5) {
    grid-column: span 1;
  }

  .menu-card {
    min-height: 100%;
  }

  .system-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.15rem;
  }

  .metrics-grid,
  .partner-points {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.15rem;
  }

  .roadmap-track {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.15rem;
  }

  .story-grid,
  .franchise-grid,
  .contact-grid {
    gap: 2rem;
    align-items: start;
  }

  .section-heading {
    max-width: 52rem;
  }

  .story-quote,
  .roadmap,
  .contact-card {
    padding: 1.8rem;
  }

  .metric-card,
  .system-card,
  .partner-card,
  .roadmap-step {
    padding: 1.45rem;
  }

  .sticky-cta {
    bottom: 5.7rem;
    right: 1.4rem;
  }

  .bottom-nav {
    bottom: 1.25rem;
    width: min(calc(100vw - 3rem), 52rem);
  }
}

@media (max-width: 719px) {
  .topbar {
    width: 100%;
    margin: 0;
    padding: 0.8rem 0.75rem;
  }

  .brand-logo {
    height: var(--logo-header-height-mobile);
  }

  .footer-logo {
    height: var(--logo-footer-height-mobile);
  }

  .section {
    padding-bottom: 5.25rem;
  }

  .story-section,
  .menu-section,
  .system-section,
  .franchise-section,
  .faq-section,
  .contact-section {
    scroll-margin-top: 0;
  }

  .hero h1,
  .section-heading h2,
  .story-intro h2,
  .franchise-copy h2,
  .contact-copy h2,
  .roadmap-intro h2 {
    font-size: clamp(2.45rem, 11vw, 3.15rem);
    line-height: 0.97;
  }

  .system-section .section-heading {
    padding: 1rem;
  }

  .system-section .section-heading h2 {
    font-size: clamp(2.05rem, 8.8vw, 2.8rem);
    color: var(--charcoal);
  }

  .hero-pills {
    gap: 0.45rem;
  }

  .hero-pills span,
  .plate-orbit span {
    padding: 0.38rem 0.58rem;
    font-size: 0.68rem;
  }

  .hero-visual {
    margin-top: 0.25rem;
  }

  .visual-panel {
    display: grid;
    gap: 0.75rem;
    min-height: auto;
    padding: 0.85rem;
  }

  .visual-panel::before {
    inset: 0.75rem;
  }

  .visual-badge,
  .hero-stat,
  .floating-card {
    position: relative;
    inset: auto;
    width: 100%;
  }

  .visual-badge {
    max-width: 100%;
  }

  .hero-stat-main {
    margin-top: 0;
    padding: 1rem;
  }

  .floating-card {
    padding: 0.85rem 0.9rem;
  }

  .floating-speed,
  .floating-yield,
  .floating-leadership {
    width: 100%;
  }

  .floating-speed {
    top: auto;
  }

  .floating-yield {
    bottom: auto;
  }

  .floating-leadership {
    left: auto;
    bottom: auto;
  }

  .plate-orbit {
    display: none;
  }

  .marquee-track {
    font-size: clamp(1.55rem, 8vw, 2.2rem);
  }

  .metrics-grid {
    gap: 0.9rem;
  }

  .metric-card {
    min-height: auto;
    padding: 1.1rem;
  }

  .metric-value {
    font-size: clamp(2rem, 12vw, 2.8rem);
  }

  .roadmap {
    padding: 1.1rem;
  }

  .roadmap-step {
    padding: 1rem;
  }

  .roadmap-step h3 {
    font-size: 1.15rem;
  }

  .partner-points {
    gap: 0.85rem;
  }

  .partner-card {
    padding: 1.1rem;
  }

  .founder-timeline {
    gap: 0.78rem;
    margin-top: 1.1rem;
  }

  .timeline-step {
    gap: 0.72rem;
  }

  .timeline-rail {
    left: 1rem;
  }

  .timeline-index {
    width: 1.95rem;
    height: 1.95rem;
    font-size: 1.02rem;
  }

  .timeline-copy strong {
    font-size: 1.08rem;
  }

  .bottom-nav {
    bottom: 0.9rem;
    width: calc(100vw - 0.65rem);
    padding: 0.42rem;
    gap: 0.24rem;
  }

  .bottom-nav__pill {
    padding: 0.6rem 0.32rem;
    font-size: 0.66rem;
  }

  .sticky-cta {
    right: 0.75rem;
    bottom: 4.25rem;
    min-height: 3.1rem;
    padding: 0.76rem 0.95rem;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}