/* ===== 5-BOB Brand Palette (dark logo) ===== */
:root {
  --color-red: #E61E25;
  --color-yellow: #FFD200;
  --color-green: #39FF14;
  --color-blue: #00AEEF;
  --color-orange: #FF6B00;
  --color-purple: #E040FB;
  --color-teal: #00E5FF;
  --color-magenta: #FF1493;
  --color-brown: #C4A882;

  --color-bg: #1e1e1e;
  --color-bg-soft: #262626;
  --color-bg-card: #2d2d2d;
  --color-bg-elevated: #333333;
  --color-text: #f5f5f5;
  --color-text-muted: #b0b0b0;
  --color-border: rgba(255, 255, 255, 0.12);

  --font-body: 'Outfit', system-ui, sans-serif;
  --font-display: 'Libre Baskerville', Georgia, serif;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
  --shadow-glow: 0 0 30px rgba(230, 30, 37, 0.25);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);

  --gradient-brand: linear-gradient(
    135deg,
    var(--color-yellow),
    var(--color-orange),
    var(--color-magenta),
    var(--color-purple),
    var(--color-blue),
    var(--color-teal),
    var(--color-green),
    var(--color-red)
  );
}

/* ===== Reset & Base ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-body);
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

main,
.header,
.footer {
  position: relative;
  z-index: 1;
}

/* ===== Interactive canvas background ===== */
.interactive-canvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  opacity: 0.55;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

.container {
  width: min(1200px, 92vw);
  margin-inline: auto;
}

/* ===== Cursor Glow ===== */
.cursor-glow {
  position: fixed;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(255, 210, 0, 0.15) 0%,
    rgba(224, 64, 251, 0.1) 25%,
    rgba(0, 229, 255, 0.08) 50%,
    transparent 70%
  );
  pointer-events: none;
  z-index: 0;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s;
  opacity: 0;
}

body:hover .cursor-glow {
  opacity: 1;
}

/* ===== Header ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0.75rem 0;
  transition: background var(--transition), backdrop-filter var(--transition), box-shadow var(--transition);
}

.header.scrolled {
  background: rgba(30, 30, 30, 0.92);
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--color-border);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.logo {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 48px;
  width: auto;
  object-fit: contain;
  transition: opacity var(--transition), filter var(--transition);
}

.logo:hover .logo-img {
  filter: drop-shadow(0 0 12px rgba(255, 210, 0, 0.35));
}

.logo-img--footer {
  height: 72px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-text-muted);
  transition: color var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-red);
  transition: width var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--color-text);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-cta {
  background: var(--color-red) !important;
  color: #fff !important;
  padding: 0.5rem 1.25rem;
  border-radius: 100px;
  font-weight: 600 !important;
}

.nav-cta::after {
  display: none !important;
}

.nav-cta:hover {
  background: #c41920 !important;
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text);
  transition: var(--transition);
}

.nav-toggle.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all var(--transition);
}

.btn-primary {
  background: var(--color-red);
  color: #fff;
  box-shadow: 0 0 20px rgba(230, 30, 37, 0.4), 0 4px 20px rgba(230, 30, 37, 0.25);
}

.btn-primary:hover {
  background: #ff2a32;
  transform: translateY(-2px);
  box-shadow: 0 0 35px rgba(230, 30, 37, 0.55), 0 8px 30px rgba(230, 30, 37, 0.35);
}

.btn-outline {
  border: 2px solid rgba(255, 255, 255, 0.35);
  color: var(--color-text);
  background: transparent;
}

.btn-outline:hover {
  border-color: var(--color-teal);
  color: var(--color-teal);
  box-shadow: 0 0 20px rgba(0, 229, 255, 0.2);
}

.btn-sm {
  padding: 0.625rem 1.5rem;
  font-size: 0.85rem;
}

.btn-full {
  width: 100%;
}

/* ===== Hero ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding: 7rem 0 4rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  opacity: 0.28;
  will-change: transform;
}

.hero-photo-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 75% at 20% 50%, rgba(30, 30, 30, 0.55) 0%, transparent 72%),
    linear-gradient(
      135deg,
      rgba(30, 30, 30, 0.88) 0%,
      rgba(30, 30, 30, 0.7) 50%,
      rgba(38, 38, 38, 0.85) 100%
    );
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  will-change: transform;
  transition: transform 0.15s ease-out;
}

.hero-orb-1 {
  width: 450px;
  height: 450px;
  background: rgba(255, 210, 0, 0.18);
  top: -5%;
  right: 5%;
}

.hero-orb-2 {
  width: 380px;
  height: 380px;
  background: rgba(224, 64, 251, 0.15);
  bottom: 5%;
  left: -5%;
  animation-delay: -4s;
}

.hero-orb-3 {
  width: 300px;
  height: 300px;
  background: rgba(0, 229, 255, 0.12);
  top: 40%;
  left: 40%;
  animation-delay: -2s;
}

.hero-orb-4 {
  width: 220px;
  height: 220px;
  background: rgba(230, 30, 37, 0.1);
  bottom: 20%;
  right: 15%;
  animation-delay: -6s;
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.35;
  background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23FFD200' stroke-width='1' opacity='0.12'%3E%3Cpath d='M20 8 L22 14 L28 14 L23 18 L25 24 L20 20 L15 24 L17 18 L12 14 L18 14 Z'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse at center, black 10%, transparent 75%);
}

.hero-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(700px, 90vw);
  height: min(700px, 90vw);
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: radial-gradient(circle, transparent 40%, rgba(255, 210, 0, 0.03) 70%, transparent 100%);
  animation: ringBreath 8s ease-in-out infinite;
  pointer-events: none;
}

@keyframes ringBreath {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.6; }
  50% { transform: translate(-50%, -50%) scale(1.06); opacity: 1; }
}

@keyframes float {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(20px, -20px); }
}

.hero-center {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 8rem);
  text-align: center;
}

.hero-split {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  min-height: calc(100vh - 8rem);
}

.hero-emblem {
  position: absolute;
  left: 24%;
  top: 50%;
  width: min(78vw, 780px);
  transform: translate(-50%, -50%);
  z-index: 2;
  pointer-events: none;
  opacity: 0.72;
}

.hero-emblem-glow {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(255, 210, 0, 0.16) 0%,
    rgba(224, 64, 251, 0.1) 40%,
    rgba(0, 229, 255, 0.08) 60%,
    transparent 80%
  );
  filter: blur(40px);
  opacity: 0.85;
  animation: emblemGlow 10s ease-in-out infinite alternate;
  pointer-events: none;
}

.hero-emblem-inner {
  position: relative;
  z-index: 1;
  animation: emblemDrift 14s ease-in-out infinite;
}

.hero-emblem-inner::after {
  content: none;
}

.hero-emblem-img {
  display: block;
  width: 100%;
  height: auto;
  opacity: 0.92;
  filter: brightness(1.05) saturate(1.08) drop-shadow(0 0 48px rgba(255, 210, 0, 0.18));
}

@keyframes emblemDrift {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes emblemGlow {
  from { opacity: 0.55; transform: scale(0.97); }
  to { opacity: 0.85; transform: scale(1.03); }
}

.hero-content {
  position: relative;
  max-width: 560px;
  width: min(100%, 52%);
  padding: 2rem 0;
  text-align: left;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.hero-badge {
  display: inline-block;
  padding: 0.4rem 1rem;
  background: rgba(255, 210, 0, 0.1);
  border: 1px solid rgba(255, 210, 0, 0.35);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-yellow);
  margin-bottom: 1.5rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5.5vw, 3.75rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin-bottom: 1.5rem;
}

.hero-lead {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  color: var(--color-text-muted);
  margin-bottom: 1.25rem;
  font-style: italic;
}

.hero-word {
  display: inline-block;
  margin-right: 0.12em;
  opacity: 0;
  transform: translateY(30px);
  animation: wordIn 0.6s ease forwards;
}

.hero-word[data-delay="0"] { animation-delay: 0.1s; }
.hero-word[data-delay="1"] { animation-delay: 0.25s; }
.hero-word[data-delay="2"] { animation-delay: 0.4s; }
.hero-word[data-delay="3"] { animation-delay: 0.55s; }
.hero-word[data-delay="4"] { animation-delay: 0.7s; }

.hero-word-yellow { color: var(--color-yellow); }
.hero-word-green  { color: var(--color-green); }
.hero-word-blue   { color: var(--color-blue); }
.hero-word-orange { color: var(--color-orange); }
.hero-word-red    { color: var(--color-red); }

@keyframes wordIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--color-text-muted);
  max-width: 520px;
  margin: 0 0 2rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: flex-start;
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-text-muted);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  z-index: 1;
}

.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--color-red), transparent);
  animation: scrollPulse 2s ease infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ===== Sections ===== */
.section {
  padding: 6rem 0;
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3.5rem;
}

.section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-red);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 0.75rem;
}

.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 1rem;
  color: var(--color-text);
}

.section-header p {
  color: var(--color-text-muted);
  font-size: 1.05rem;
}

/* ===== Reveal Animation ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Community Story ===== */
.story {
  background: var(--color-bg);
  position: relative;
}

.story-intro {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 4rem;
}

.story-intro h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  margin-bottom: 1.25rem;
}

.story-intro-lead {
  font-size: 1.1rem;
  color: var(--color-text-muted);
  line-height: 1.8;
  font-style: italic;
}

.story-chapter {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 4rem;
}

.story-chapter--reverse .story-chapter-media {
  order: 2;
}

.story-chapter--reverse .story-chapter-body {
  order: 1;
}

.story-chapter-media {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 3;
}

.story-chapter-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.story-chapter:hover .story-chapter-media img {
  transform: scale(1.03);
}

.story-chapter-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.35rem 0.85rem;
  background: rgba(30, 30, 30, 0.85);
  border: 1px solid var(--color-border);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-yellow);
}

.story-chapter-body h3 {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--color-text);
}

.story-chapter-body p {
  color: var(--color-text-muted);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.story-chapter-body p:last-child {
  margin-bottom: 0;
}

.story-chapter-body strong {
  color: var(--color-yellow);
  font-weight: 600;
}

.story-chapter-media--cta {
  background: linear-gradient(135deg, rgba(255, 210, 0, 0.1), rgba(230, 30, 37, 0.12));
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  aspect-ratio: auto;
  min-height: 280px;
}

.story-cta-card {
  text-align: center;
  max-width: 280px;
}

.story-cta-card .story-chapter-tag {
  position: static;
  display: inline-block;
  margin-bottom: 1rem;
}

.story-cta-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

.story-cta-card p {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
  line-height: 1.6;
}

.story-credit {
  text-align: center;
  font-size: 0.8rem;
  color: var(--color-text-muted);
  margin-top: 2rem;
  opacity: 0.7;
}

.story-credit a {
  color: var(--color-teal);
  text-decoration: underline;
}

/* ===== Photo Gallery ===== */
.photo-gallery {
  display: grid;
  grid-template-columns: 1fr 1.4fr 1fr;
  gap: 1rem;
  margin-bottom: 3rem;
}

.photo-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  border: 1px solid var(--color-border);
}

.photo-card--wide {
  aspect-ratio: 16 / 10;
}

.photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.photo-card:hover img {
  transform: scale(1.05);
}

.photo-card figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem 1.25rem;
  background: linear-gradient(transparent, rgba(30, 30, 30, 0.9));
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-text);
}

/* ===== Benefits ===== */
.benefits {
  background: var(--color-bg-soft);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.benefit-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 2rem;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.benefit-card--yellow::before { background: var(--color-yellow); }
.benefit-card--green::before  { background: var(--color-green); }
.benefit-card--blue::before   { background: var(--color-blue); }

.benefit-card--yellow .benefit-icon { background: rgba(255, 210, 0, 0.15); color: var(--color-yellow); }
.benefit-card--green .benefit-icon  { background: rgba(57, 255, 20, 0.1); color: var(--color-green); }
.benefit-card--blue .benefit-icon   { background: rgba(0, 174, 239, 0.12); color: var(--color-blue); }

.benefit-card--yellow .benefit-expand { color: var(--color-yellow); }
.benefit-card--green .benefit-expand  { color: var(--color-green); }
.benefit-card--blue .benefit-expand   { color: var(--color-blue); }

.benefit-card:hover,
.benefit-card:focus-within,
.benefit-card.expanded {
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
  border-color: rgba(255, 255, 255, 0.15);
}

.benefit-card:hover::before,
.benefit-card:focus-within::before,
.benefit-card.expanded::before {
  transform: scaleX(1);
}

.benefit-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.benefit-icon svg {
  width: 24px;
  height: 24px;
}

.benefit-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.benefit-card > p {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.benefit-expand {
  font-weight: 600;
  font-size: 0.85rem;
  transition: opacity var(--transition);
}

.benefit-expand:hover {
  opacity: 0.75;
}

.benefit-detail {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, margin 0.4s ease;
}

.benefit-card.expanded .benefit-detail {
  max-height: 120px;
  margin-top: 1rem;
}

.benefit-detail p {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  padding-top: 1rem;
  border-top: 1px solid var(--color-border);
}

/* ===== How It Works ===== */
.how-it-works {
  background: var(--color-bg);
  position: relative;
}

.how-it-works::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-brand);
}

.steps-container {
  max-width: 800px;
  margin: 0 auto;
}

.step {
  display: flex;
  gap: 1.5rem;
  padding: 2rem;
  margin-bottom: 1rem;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  opacity: 0.55;
  transform: scale(0.97);
  transition: all 0.5s ease;
  box-shadow: var(--shadow);
}

.step.active {
  opacity: 1;
  transform: scale(1);
  border-color: rgba(230, 30, 37, 0.25);
  box-shadow: var(--shadow-glow);
}

.step[data-step="1"].active .step-number { color: var(--color-yellow); }
.step[data-step="2"].active .step-number { color: var(--color-green); }
.step[data-step="3"].active .step-number { color: var(--color-blue); }
.step[data-step="4"].active .step-number { color: var(--color-orange); }

.step-number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-text-muted);
  opacity: 0.5;
  min-width: 60px;
  transition: all var(--transition);
}

.step.active .step-number {
  opacity: 1;
}

.step-content h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.step-content p {
  color: var(--color-text-muted);
  font-size: 0.95rem;
}

.steps-progress {
  height: 6px;
  background: var(--color-border);
  border-radius: 4px;
  margin: 2rem 0 1.5rem;
  overflow: hidden;
}

.steps-progress-bar {
  height: 100%;
  width: 25%;
  background: var(--gradient-brand);
  border-radius: 4px;
  transition: width 0.5s ease;
}

.steps-nav {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
}

.step-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--color-border);
  color: var(--color-text-muted);
  font-weight: 700;
  font-size: 0.9rem;
  transition: all var(--transition);
  background: var(--color-bg-card);
}

.step-btn:nth-child(1):hover, .step-btn:nth-child(1).active { background: var(--color-yellow); border-color: var(--color-yellow); color: #000; }
.step-btn:nth-child(2):hover, .step-btn:nth-child(2).active { background: var(--color-green); border-color: var(--color-green); color: #000; }
.step-btn:nth-child(3):hover, .step-btn:nth-child(3).active { background: var(--color-blue); border-color: var(--color-blue); color: #000; }
.step-btn:nth-child(4):hover, .step-btn:nth-child(4).active { background: var(--color-orange); border-color: var(--color-orange); color: #000; }

/* ===== Rewarding ===== */
.rewarding-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.rewarding-card {
  padding: 2rem;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  transition: transform var(--transition), box-shadow var(--transition);
  box-shadow: var(--shadow);
}

.rewarding-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
}

.rewarding-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.rewarding-card p {
  color: var(--color-text-muted);
  font-size: 0.95rem;
}

.rewarding-card-highlight {
  background: linear-gradient(135deg, rgba(255, 210, 0, 0.08), rgba(230, 30, 37, 0.1));
  border-color: rgba(230, 30, 37, 0.3);
}

.rewarding-card-highlight h3 {
  color: var(--color-red);
}

.rewarding-card-highlight .btn {
  margin-top: 1.25rem;
}

.rewarding-card--green { border-top: 4px solid var(--color-green); }
.rewarding-card--orange { border-top: 4px solid var(--color-orange); }
.rewarding-card--green .benefit-expand { color: var(--color-green); }
.rewarding-card--orange .benefit-expand { color: var(--color-orange); }

/* ===== Data Incentives ===== */
.data-incentives {
  background: var(--color-bg-soft);
  position: relative;
}

.data-incentives::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-brand);
}

.incentives-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}

.incentives-photo {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--color-border);
  grid-row: span 2;
}

.incentives-photo img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  display: block;
}

.incentives-photo-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.25rem;
  background: linear-gradient(transparent, rgba(30, 30, 30, 0.92));
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--color-yellow);
}

.incentives-intro {
  align-self: end;
}

.incentives-grid {
  grid-column: 2;
}

.incentives-intro h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

.incentives-intro p {
  color: var(--color-text-muted);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.incentives-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.incentive-tile {
  padding: 1.5rem 1.25rem;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  transition: all var(--transition);
  box-shadow: var(--shadow);
  cursor: default;
}

.incentive-tile:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
}

.incentive-dot {
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin-bottom: 0.75rem;
}

.incentive-tile[data-color="red"] .incentive-dot    { background: var(--color-red); }
.incentive-tile[data-color="yellow"] .incentive-dot { background: var(--color-yellow); }
.incentive-tile[data-color="green"] .incentive-dot  { background: var(--color-green); }
.incentive-tile[data-color="blue"] .incentive-dot   { background: var(--color-blue); }
.incentive-tile[data-color="orange"] .incentive-dot { background: var(--color-orange); }
.incentive-tile[data-color="purple"] .incentive-dot { background: var(--color-purple); }

.incentive-tile[data-color="red"]:hover    { border-color: rgba(230, 30, 37, 0.3); }
.incentive-tile[data-color="yellow"]:hover { border-color: rgba(255, 210, 0, 0.5); }
.incentive-tile[data-color="green"]:hover  { border-color: rgba(57, 255, 20, 0.35); box-shadow: 0 0 20px rgba(57, 255, 20, 0.15); }
.incentive-tile[data-color="blue"]:hover   { border-color: rgba(0, 174, 239, 0.35); box-shadow: 0 0 20px rgba(0, 174, 239, 0.15); }
.incentive-tile[data-color="orange"]:hover { border-color: rgba(247, 148, 29, 0.3); }
.incentive-tile[data-color="purple"]:hover { border-color: rgba(146, 39, 143, 0.3); }

.incentive-tile h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
}

/* ===== Earn Rewards ===== */
.earn-rewards {
  background: var(--color-bg);
}

.earn-layout {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 2rem;
  align-items: stretch;
}

.earn-photo {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--color-border);
  min-height: 320px;
}

.earn-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.earn-layout .rewarding-grid {
  grid-template-columns: 1fr;
}

/* ===== Spaza Connections ===== */
.spaza-connections {
  background: var(--color-bg-soft);
}

.spaza-banner {
  max-width: 900px;
  margin: 0 auto 2rem;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--color-border);
  max-height: 280px;
}

.spaza-banner img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  object-position: center 35%;
  display: block;
}

.spaza-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-bottom: 2rem;
}

.spaza-tab {
  padding: 0.75rem 1.5rem;
  border-radius: 100px;
  border: 2px solid var(--color-border);
  background: var(--color-bg-card);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--color-text-muted);
  transition: all var(--transition);
}

.spaza-tab:hover {
  border-color: var(--color-red);
  color: var(--color-red);
  box-shadow: 0 0 15px rgba(230, 30, 37, 0.2);
}

.spaza-tab.active {
  background: var(--color-red);
  border-color: var(--color-red);
  color: #fff;
  box-shadow: 0 0 25px rgba(230, 30, 37, 0.4);
}

.spaza-panels {
  display: grid;
  grid-template-columns: 1fr;
  max-width: 800px;
  margin: 0 auto;
}

.spaza-panel {
  grid-area: 1 / 1;
  display: block;
  padding: 2.5rem;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.spaza-panel.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.spaza-panel h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--color-red);
}

.spaza-panel p {
  color: var(--color-text-muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

/* ===== Kasi Spend ===== */
.kasi-spend {
  background: var(--color-bg-soft);
  position: relative;
  overflow: hidden;
}

.kasi-spend-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.kasi-spend-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.25;
}

.kasi-spend-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(30, 30, 30, 0.95), rgba(38, 38, 38, 0.85));
}

.kasi-spend .container {
  position: relative;
  z-index: 1;
}

.kasi-spend-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 3rem;
  background: linear-gradient(135deg, rgba(255, 210, 0, 0.08), rgba(224, 64, 251, 0.06), rgba(0, 229, 255, 0.06), rgba(230, 30, 37, 0.08));
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.kasi-spend-content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.kasi-spend-content p {
  color: var(--color-text-muted);
  max-width: 600px;
  line-height: 1.7;
}

/* ===== About ===== */
.about {
  background: var(--color-bg);
  position: relative;
  scroll-margin-top: 90px;
}

.about::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 20%, rgba(224, 64, 251, 0.06) 0%, transparent 50%),
              radial-gradient(ellipse at 20% 80%, rgba(0, 229, 255, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.about-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  gap: 2rem;
  align-items: start;
  contain: layout style;
}

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  align-content: start;
}

.about-photo {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow);
  aspect-ratio: 3 / 4;
}

.about-photo img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  display: block;
}

.about-content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

.about-content p {
  color: var(--color-text-muted);
  margin-bottom: 1rem;
  line-height: 1.7;
}

.about-steps {
  display: grid;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.about-step {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.875rem 1rem;
  background: var(--color-bg-card);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  border: 1px solid var(--color-border);
  border-left: 3px solid var(--color-green);
}

.about-step span {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--color-red);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.8rem;
  flex-shrink: 0;
}

/* ===== Clients ===== */
.clients {
  background: var(--color-bg);
  position: relative;
  overflow: hidden;
}

.clients-card {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
  padding: 3rem 2rem;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.clients-card h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

.clients-card p {
  color: var(--color-text-muted);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

/* ===== Stats (shared) ===== */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.stat-card {
  text-align: center;
  padding: 2.5rem 1.5rem;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  transition: transform var(--transition), box-shadow var(--transition);
  box-shadow: var(--shadow);
  border-top: 4px solid transparent;
  min-height: 148px;
}

.stat-card--red    { border-top-color: var(--color-red); }
.stat-card--green  { border-top-color: var(--color-green); }
.stat-card--blue   { border-top-color: var(--color-blue); }
.stat-card--orange { border-top-color: var(--color-orange); }

.stat-card--red .stat-number    { color: var(--color-red); }
.stat-card--green .stat-number  { color: var(--color-green); }
.stat-card--blue .stat-number   { color: var(--color-blue); }
.stat-card--orange .stat-number { color: var(--color-orange); }

.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
}

.stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 0.5rem;
  font-variant-numeric: tabular-nums;
  line-height: 1.1;
  min-height: 1.1em;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.4;
}

.stats-tagline {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  color: var(--color-text-muted);
  font-size: 1.05rem;
  font-style: italic;
  font-family: var(--font-display);
}

/* ===== Team ===== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.5rem;
}

.team-card {
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  transition: all var(--transition);
  box-shadow: var(--shadow);
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-glow);
}

.team-avatar {
  width: 154px;
  height: 154px;
  margin: 0 auto 1.25rem;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid rgba(255, 210, 0, 0.45);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.team-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.team-avatar--photo {
  background-image: var(--team-photo);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.team-card:nth-child(8n+1) .team-avatar { border-color: rgba(230, 30, 37, 0.65); }
.team-card:nth-child(8n+2) .team-avatar { border-color: rgba(255, 210, 0, 0.65); }
.team-card:nth-child(8n+3) .team-avatar { border-color: rgba(57, 255, 20, 0.55); }
.team-card:nth-child(8n+4) .team-avatar { border-color: rgba(0, 174, 239, 0.65); }
.team-card:nth-child(8n+5) .team-avatar { border-color: rgba(255, 107, 0, 0.65); }
.team-card:nth-child(8n+6) .team-avatar { border-color: rgba(224, 64, 251, 0.65); }
.team-card:nth-child(8n+7) .team-avatar { border-color: rgba(0, 229, 255, 0.65); }
.team-card:nth-child(8n+8) .team-avatar { border-color: rgba(196, 168, 130, 0.75); }

.team-card h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
}

.team-card p {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  line-height: 1.4;
}

/* ===== Contact ===== */
.contact {
  background: var(--color-bg-soft);
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-info h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

.contact-info > p {
  color: var(--color-text-muted);
  margin-bottom: 2rem;
}

.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.5rem;
  background: var(--color-green);
  color: #000;
  font-weight: 700;
  border-radius: var(--radius);
  font-weight: 600;
  transition: all var(--transition);
}

.whatsapp-btn svg {
  width: 24px;
  height: 24px;
}

.whatsapp-btn:hover {
  background: #2dff50;
  color: #000;
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(57, 255, 20, 0.4);
}

.contact-form {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--color-text-muted);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  background: var(--color-bg-soft);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  color: var(--color-text);
  font-family: inherit;
  font-size: 0.95rem;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #666;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-red);
  box-shadow: 0 0 0 3px rgba(230, 30, 37, 0.15), 0 0 20px rgba(230, 30, 37, 0.1);
  background: var(--color-bg-elevated);
}

.form-group input.error,
.form-group textarea.error {
  border-color: var(--color-red);
}

.form-error {
  display: block;
  font-size: 0.8rem;
  color: var(--color-red);
  margin-top: 0.35rem;
  min-height: 1.2em;
}

.form-status {
  margin-top: 1rem;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  text-align: center;
  display: none;
}

.form-status.success {
  display: block;
  background: rgba(57, 255, 20, 0.08);
  color: var(--color-green);
  border: 1px solid rgba(57, 255, 20, 0.25);
}

.form-status.error {
  display: block;
  background: rgba(230, 30, 37, 0.12);
  color: var(--color-red);
  border: 1px solid rgba(230, 30, 37, 0.3);
}

/* ===== Footer ===== */
.footer {
  padding: 3rem 0;
  border-top: 4px solid transparent;
  border-image: var(--gradient-brand) 1;
  background: var(--color-bg-soft);
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  list-style: none;
}

.footer-links a {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--color-red);
}

.footer-copy {
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  justify-content: center;
  list-style: none;
}

.footer-legal a {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  transition: color var(--transition);
}

.footer-legal a:hover {
  color: var(--color-yellow);
}

/* ===== Legal Pages ===== */
.legal-page {
  padding: 7.5rem 0 4rem;
}

.legal-header {
  max-width: 720px;
  margin: 0 auto 3rem;
  text-align: center;
}

.legal-header h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 1rem;
}

.legal-header p {
  color: var(--color-text-muted);
  font-size: 1.05rem;
  line-height: 1.6;
}

.legal-meta {
  display: block;
  margin-top: 1rem;
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

.legal-content {
  max-width: 720px;
  margin: 0 auto;
  color: var(--color-text-muted);
  line-height: 1.75;
  font-size: 0.98rem;
}

.legal-content h2 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-text);
  margin: 2.5rem 0 1rem;
}

.legal-content h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--color-text);
  margin: 1.75rem 0 0.75rem;
}

.legal-content p {
  margin-bottom: 1rem;
}

.legal-content ul,
.legal-content ol {
  margin: 0 0 1rem 1.25rem;
}

.legal-content li {
  margin-bottom: 0.5rem;
}

.legal-content a {
  color: var(--color-yellow);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.legal-content a:hover {
  color: var(--color-text);
}

.legal-back {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 3rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-text-muted);
  transition: color var(--transition);
}

.legal-back:hover {
  color: var(--color-red);
}

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .hero-split {
    justify-content: center;
    text-align: center;
    padding-top: min(46vw, 240px);
  }

  .hero-emblem {
    left: 50%;
    top: 36%;
    width: min(100vw, 540px);
    opacity: 0.58;
  }

  .hero-emblem-img {
    opacity: 0.85;
    filter: brightness(1.03) saturate(1.05) drop-shadow(0 0 36px rgba(255, 210, 0, 0.15));
  }

  .hero-content {
    width: 100%;
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
  }

  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .story-chapter,
  .story-chapter--reverse {
    grid-template-columns: 1fr;
  }

  .story-chapter--reverse .story-chapter-media,
  .story-chapter--reverse .story-chapter-body {
    order: unset;
  }

  .photo-gallery {
    grid-template-columns: 1fr;
  }

  .photo-card,
  .photo-card--wide {
    aspect-ratio: 16 / 9;
  }

  .incentives-layout {
    grid-template-columns: 1fr;
  }

  .incentives-photo {
    grid-row: auto;
  }

  .incentives-photo img {
    min-height: 260px;
  }

  .incentives-grid {
    grid-column: auto;
    grid-template-columns: repeat(2, 1fr);
  }

  .earn-layout {
    grid-template-columns: 1fr;
  }

  .about-layout {
    grid-template-columns: 1fr;
  }

  .about-photo {
    aspect-ratio: 16 / 10;
  }

  .about-photo img {
    min-height: 0;
  }

  .kasi-spend-card {
    flex-direction: column;
    text-align: center;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
    position: absolute;
    right: 0;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(300px, 80vw);
    height: 100vh;
    background: var(--color-bg-soft);
    flex-direction: column;
    align-items: flex-start;
    padding: 5rem 2rem 2rem;
    gap: 1.5rem;
    transition: right var(--transition);
    border-left: 1px solid var(--color-border);
    box-shadow: -8px 0 32px rgba(0, 0, 0, 0.5);
  }

  .nav-links.open {
    right: 0;
  }

  .hero-scroll {
    display: none;
  }

  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .step {
    flex-direction: column;
    gap: 0.75rem;
  }

  .step-number {
    min-width: auto;
  }

  .incentives-grid {
    grid-template-columns: 1fr;
  }

  .about-stats {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero-emblem {
    width: min(108vw, 460px);
    opacity: 0.5;
    top: 34%;
  }

  .hero-emblem-img {
    opacity: 0.78;
  }

  .hero-split {
    padding-top: min(50vw, 220px);
  }

  .logo-img--footer {
    height: 56px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .interactive-canvas {
    display: none;
  }

  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
