/* Sitebox landing — matches webapp / mobile theme.css (light only) */

:root {
  /* Aligned with sitexWebapp/src/styles/theme.css */
  --sb-primary: #2b7fff;
  --sb-primary-dark: #155dfc;
  --sb-primary-alt: #2c66c3;
  --sb-primary-light: #3b82f6;
  --sb-appbar: #fffcfd;
  --sb-text-primary: #1c1f24;
  --sb-text-secondary: #1e2939;
  --sb-text-muted: #4a5565;
  --sb-text-placeholder: #959fb7;
  --sb-bg-white: #ffffff;
  --sb-bg-gray: #f3f4f6;
  --sb-bg-light: #f9fafb;
  --sb-border-light: #e0e7ff;
  --sb-border-gray: #e5e7eb;
  --sb-border-card: #f3f4f6;
  --sb-stat-users-bg: #edeeff;
  --sb-shadow-light: rgba(0, 0, 0, 0.05);
  --sb-shadow: rgba(0, 0, 0, 0.1);
  --sb-deletion: #e80404;

  --bg-page: var(--sb-bg-light);
  --surface: var(--sb-bg-white);
  --surface-strong: var(--sb-bg-gray);
  --border: var(--sb-border-gray);
  --border-card: var(--sb-border-card);
  --text: var(--sb-text-primary);
  --muted: var(--sb-text-muted);
  --accent: var(--sb-primary-alt);
  --accent-hot: var(--sb-deletion);
  --gradient: linear-gradient(135deg, var(--sb-primary-alt) 0%, var(--sb-primary-light) 100%);
  --gradient-soft: linear-gradient(135deg, rgba(44, 102, 195, 0.12) 0%, rgba(59, 130, 246, 0.1) 100%);
  --shadow-lg: 0 24px 60px rgba(44, 102, 195, 0.12);
  --shadow-card: 0 1px 3px var(--sb-shadow-light);
  --radius: 18px;
  --radius-sm: 12px;
  /* One square size (width = height) for crisp lockup; header bar follows it */
  --logo-mark-size: clamp(52px, 7.5dvh, 72px);
  --header-h: max(72px, calc(var(--logo-mark-size) + 18px));
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --font-display: "Poppins", system-ui, sans-serif;
  --font-body: "Poppins", system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  color-scheme: light;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg-page);
  overflow-x: hidden;
}

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

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

button {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  cursor: pointer;
}

.container {
  width: min(1120px, calc(100% - 40px));
  margin-inline: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Ambient */
.noise {
  pointer-events: none;
  position: fixed;
  inset: 0;
  opacity: 0.035;
  z-index: 0;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.55;
  z-index: 0;
  animation: orbFloat 18s var(--ease-out) infinite alternate;
}

.orb-a {
  width: 420px;
  height: 420px;
  background: rgba(43, 127, 255, 0.22);
  top: -120px;
  right: -80px;
}

.orb-b {
  width: 360px;
  height: 360px;
  background: rgba(224, 231, 255, 0.9);
  bottom: 10%;
  left: -100px;
  animation-delay: -4s;
}

.orb-c {
  width: 280px;
  height: 280px;
  background: rgba(59, 130, 246, 0.18);
  top: 40%;
  right: 15%;
  animation-delay: -8s;
}

@keyframes orbFloat {
  from {
    transform: translate3d(0, 0, 0) scale(1);
  }
  to {
    transform: translate3d(30px, -40px, 0) scale(1.08);
  }
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header-h);
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-bottom: 1px solid transparent;
  transition: background 0.35s var(--ease-out), border-color 0.35s, backdrop-filter 0.35s;
}

.site-header.is-scrolled {
  background: rgba(255, 252, 253, 0.92);
  backdrop-filter: blur(16px);
  border-bottom-color: var(--border);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.04);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.logo-mark {
  position: relative;
  padding: 0;
  display: block;
  flex-shrink: 0;
  border-radius: 12px;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(44, 102, 195, 0.28);
}

/* Square mark: identical width & height so the asset scales evenly (header + footer) */
.logo-mark.logo-mark--header {
  min-width: 0;
  --logo-box: min(var(--logo-mark-size), calc(var(--header-h) - 20px));
  width: var(--logo-box);
  height: var(--logo-box);
  aspect-ratio: 1;
  margin-block: auto;
  border-radius: 12px;
}

.logo-mark.logo-mark--footer {
  width: var(--logo-mark-size);
  height: var(--logo-mark-size);
  aspect-ratio: 1;
  border-radius: 12px;
  box-shadow: 0 4px 14px rgba(44, 102, 195, 0.2);
}

.logo-mark img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  object-fit: cover;
  object-position: 50% 50%;
  display: block;
}

.nav-desktop {
  display: flex;
  gap: 28px;
  font-size: 0.95rem;
  color: var(--muted);
}

.nav-desktop a {
  position: relative;
  padding-block: 6px;
  transition: color 0.25s;
}

.nav-desktop a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease-out);
}

.nav-desktop a:hover {
  color: var(--sb-primary-alt);
}

.nav-desktop a:hover::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--sb-bg-white);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s var(--ease-out), opacity 0.3s;
}

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

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

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

.mobile-nav {
  display: none;
  flex-direction: column;
  padding: 16px 20px 24px;
  gap: 8px;
  border-bottom: 1px solid var(--border);
  background: var(--sb-appbar);
}

.mobile-nav a {
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  color: var(--muted);
  border: 1px solid transparent;
  transition: background 0.25s, color 0.25s, border-color 0.25s;
}

.mobile-nav a:hover {
  color: var(--sb-primary-alt);
  background: var(--sb-stat-users-bg);
  border-color: var(--sb-border-light);
}

.mobile-nav[hidden] {
  display: none !important;
}

@media (max-width: 860px) {
  .nav-desktop {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .site-header.is-open .mobile-nav {
    display: flex;
  }

  .header-actions .btn-ghost {
    display: none;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid transparent;
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s, background 0.25s, border-color 0.25s,
    color 0.25s;
  position: relative;
  overflow: hidden;
}

.btn-sm {
  padding: 8px 16px;
  font-size: 0.875rem;
}

.btn-lg {
  padding: 14px 24px;
  font-size: 1rem;
}

.btn-primary {
  background: var(--gradient);
  color: #fff;
  border: none;
  font-weight: 600;
  box-shadow: 0 8px 24px rgba(44, 102, 195, 0.25);
}

.btn-primary:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #23539f 0%, var(--sb-primary-alt) 100%);
  box-shadow: 0 12px 32px rgba(44, 102, 195, 0.32);
}

.btn-outline {
  border-color: var(--sb-primary-alt);
  background: var(--sb-bg-white);
  color: var(--sb-primary-alt);
}

.btn-outline:hover {
  border-color: var(--sb-primary-alt);
  background: var(--sb-primary-alt);
  color: #fff;
  transform: translateY(-2px);
}

.btn-ghost {
  border-color: var(--border);
  background: transparent;
  color: var(--muted);
}

.btn-ghost:hover {
  color: var(--sb-primary-alt);
  border-color: var(--sb-border-light);
  background: var(--sb-stat-users-bg);
}

/* Hero */
.hero {
  position: relative;
  z-index: 1;
  padding: clamp(32px, 6vw, 72px) 0 48px;
  background: linear-gradient(180deg, var(--sb-bg-white) 0%, var(--sb-bg-light) 100%);
}

.features {
  background: var(--sb-bg-white);
}

.workflow {
  background: var(--sb-bg-light);
}

.testimonials {
  background: var(--sb-bg-white);
}

.impact {
  background: var(--sb-bg-light);
}

.download {
  background: linear-gradient(180deg, var(--sb-bg-light) 0%, var(--sb-bg-white) 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 20px;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--sb-primary);
  box-shadow: 0 0 0 0 rgba(44, 102, 195, 0.45);
  animation: pulse 2s ease-out infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(44, 102, 195, 0.4);
  }
  70% {
    box-shadow: 0 0 0 12px rgba(44, 102, 195, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(44, 102, 195, 0);
  }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.2vw, 3.6rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin: 0 0 20px;
  color: var(--sb-text-primary);
}

.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-lead {
  color: var(--muted);
  font-size: 1.1rem;
  max-width: 520px;
  margin: 0 0 32px;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 40px;
}

.hero-store-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: -16px 0 28px;
}

.hero-store-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--sb-border-light);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 8px 20px rgba(44, 102, 195, 0.08);
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s, border-color 0.25s;
}

.hero-store-pill:hover {
  transform: translateY(-2px);
  border-color: rgba(44, 102, 195, 0.35);
  box-shadow: 0 12px 28px rgba(44, 102, 195, 0.16);
}

.hero-store-pill span {
  font-size: 0.72rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-store-pill strong {
  font-size: 0.86rem;
  color: var(--sb-text-primary);
}

.hero-metrics {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  max-width: 480px;
}

.hero-metrics strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2rem);
  letter-spacing: -0.02em;
  margin-bottom: 4px;
  color: var(--sb-primary-alt);
}

.hero-metrics span {
  font-size: 0.85rem;
  color: var(--muted);
}

.hero-trustline {
  margin: 18px 0 0;
  font-size: 0.85rem;
  color: var(--muted);
}

@media (max-width: 520px) {
  .hero-metrics {
    grid-template-columns: 1fr 1fr;
  }

  .hero-metrics li:last-child {
    grid-column: span 2;
  }
}

/* Phone */
.hero-visual {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.phone-stage {
  position: relative;
  width: min(320px, 80vw);
  transform-style: preserve-3d;
  perspective: 900px;
}

.phone-glow {
  position: absolute;
  inset: -20%;
  background: radial-gradient(circle at 50% 30%, rgba(44, 102, 195, 0.25), transparent 55%),
    radial-gradient(circle at 70% 70%, rgba(59, 130, 246, 0.2), transparent 50%);
  filter: blur(24px);
  z-index: 0;
  animation: glowPulse 6s ease-in-out infinite alternate;
}

@keyframes glowPulse {
  from {
    opacity: 0.7;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1.05);
  }
}

.phone-frame {
  position: relative;
  z-index: 1;
  border-radius: 40px;
  padding: 14px;
  background: linear-gradient(160deg, #e8ecf3 0%, #d4dae6 100%);
  border: 1px solid var(--sb-border-gray);
  box-shadow: var(--shadow-lg), inset 0 2px 0 #fff;
}

.phone-notch {
  position: absolute;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: 96px;
  height: 26px;
  background: #c5ccd8;
  border-radius: 20px;
  z-index: 2;
}

.phone-screen {
  border-radius: 30px;
  background: linear-gradient(180deg, var(--sb-bg-white) 0%, var(--sb-bg-light) 100%);
  padding: 52px 16px 20px;
  min-height: 420px;
  border: 1px solid var(--sb-border-card);
  overflow: hidden;
}

.app-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.app-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--sb-text-primary);
}

.app-badge {
  font-size: 0.7rem;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--sb-stat-users-bg);
  color: var(--sb-primary-alt);
  border: 1px solid var(--sb-border-light);
  font-weight: 600;
}

.app-card {
  padding: 12px 14px;
  border-radius: 16px;
  background: var(--sb-bg-white);
  border: 1px solid var(--sb-border-card);
  box-shadow: var(--shadow-card);
  margin-bottom: 10px;
  animation: cardBob 5s ease-in-out infinite;
}

.app-card-2 {
  animation-delay: -1.2s;
}

.app-card-3 {
  animation-delay: -2.4s;
}

@keyframes cardBob {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

.app-row {
  display: flex;
  gap: 10px;
  align-items: center;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.dot-green {
  background: #34d399;
  box-shadow: 0 0 12px #34d39988;
}

.dot-amber {
  background: #fbbf24;
  box-shadow: 0 0 12px #fbbf2488;
}

.app-line-title {
  margin: 0;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--sb-text-primary);
}

.app-line-sub {
  margin: 2px 0 0;
  font-size: 0.75rem;
  color: var(--muted);
}

.app-chart {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 64px;
  margin-bottom: 10px;
}

.app-chart span {
  flex: 1;
  border-radius: 6px;
  background: linear-gradient(180deg, rgba(44, 102, 195, 0.35), var(--sb-primary-light));
  animation: barGrow 2.4s var(--ease-out) infinite alternate;
}

.app-chart span:nth-child(1) {
  height: 40%;
  animation-delay: 0s;
}
.app-chart span:nth-child(2) {
  height: 65%;
  animation-delay: 0.1s;
}
.app-chart span:nth-child(3) {
  height: 50%;
  animation-delay: 0.2s;
}
.app-chart span:nth-child(4) {
  height: 80%;
  animation-delay: 0.3s;
}
.app-chart span:nth-child(5) {
  height: 55%;
  animation-delay: 0.4s;
}

@keyframes barGrow {
  from {
    transform: scaleY(0.85);
    opacity: 0.75;
  }
  to {
    transform: scaleY(1);
    opacity: 1;
  }
}

.app-chart-label {
  margin: 0;
  font-size: 0.78rem;
  color: var(--muted);
}

.float-card {
  position: absolute;
  z-index: 2;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid var(--sb-border-card);
  backdrop-filter: blur(12px);
  font-size: 0.75rem;
  color: var(--muted);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.08);
  transition: transform 0.15s linear;
}

.float-card strong {
  display: block;
  margin-top: 4px;
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--text);
}

.float-card-a {
  top: 18%;
  right: -8%;
}

.float-card-b {
  bottom: 14%;
  left: -12%;
}

@media (max-width: 520px) {
  .float-card-a {
    right: -2%;
  }
  .float-card-b {
    left: -2%;
  }
}

.hero-photo-stack {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  width: min(390px, 92vw);
}

.hero-photo-stack img {
  width: 100%;
  height: 108px;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid var(--sb-border-light);
  box-shadow: 0 10px 24px rgba(44, 102, 195, 0.14);
}

.hero-photo-stack img:first-child {
  transform: rotate(-2deg);
}

.hero-photo-stack img:last-child {
  transform: rotate(2deg);
}

/* Marquee */
.hero-marquee {
  margin-top: 48px;
  border-block: 1px solid var(--sb-border-gray);
  background: var(--sb-bg-white);
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.marquee-track {
  display: flex;
  gap: 48px;
  width: max-content;
  padding-block: 18px;
  animation: marquee 28s linear infinite;
}

.marquee-track span {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: var(--muted);
  white-space: nowrap;
}

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

/* Reveal */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
  transition-delay: calc(var(--reveal-delay, 0) * 120ms);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

/* Sections */
.section {
  position: relative;
  z-index: 1;
  padding: clamp(64px, 10vw, 110px) 0;
}

.section-head {
  max-width: 640px;
  margin-bottom: 48px;
}

.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  letter-spacing: -0.02em;
  margin: 0 0 16px;
  color: var(--sb-text-primary);
}

.section-lead {
  color: var(--muted);
  margin: 0;
  font-size: 1.05rem;
}

/* Logo strip */
.logos {
  padding-block: 40px 20px;
  background: var(--sb-bg-white);
}

.logos-label {
  text-align: center;
  color: var(--muted);
  font-size: 0.9rem;
  margin: 0 0 12px;
}

.about-title {
  margin: 0;
  text-align: center;
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2rem);
  letter-spacing: -0.02em;
  color: var(--sb-text-primary);
}

.about-copy {
  margin: 14px auto 24px;
  max-width: 720px;
  text-align: center;
  color: var(--muted);
}

.about-gallery {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  gap: 12px;
  margin: 0 auto 22px;
}

.about-shot {
  margin: 0;
}

.about-shot img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 16px;
  border: 1px solid var(--sb-border-light);
  box-shadow: 0 12px 28px rgba(44, 102, 195, 0.12);
}

.about-credit {
  margin: 20px 0 0;
  text-align: center;
  font-size: 0.8rem;
  color: var(--muted);
}

.about-credit a {
  color: var(--sb-primary-alt);
  font-weight: 600;
}

@media (max-width: 700px) {
  .about-gallery {
    grid-template-columns: 1fr;
  }
}

.logo-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 28px 40px;
  font-family: var(--font-display);
  font-weight: 600;
  color: #5c6578;
  letter-spacing: 0.04em;
}

.logo-strip span {
  transition: color 0.35s, transform 0.35s var(--ease-out);
}

.logo-strip span.is-lit {
  color: var(--text);
  transform: translateY(-2px);
}

/* Bento */
.feature-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 24px;
  align-items: start;
}

.feature-intro {
  position: sticky;
  top: calc(var(--header-h) + 18px);
  padding: 28px;
  border-radius: calc(var(--radius) + 4px);
  background: linear-gradient(145deg, #ffffff, #f4f7ff);
  border: 1px solid var(--sb-border-light);
  box-shadow: 0 16px 38px rgba(44, 102, 195, 0.09);
}

.feature-intro h2 {
  margin: 0 0 14px;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.8vw, 2.4rem);
  letter-spacing: -0.02em;
  color: var(--sb-text-primary);
}

.feature-intro .section-lead {
  margin-bottom: 20px;
}

.feature-intro-metric {
  padding: 14px 16px;
  border-radius: 14px;
  background: var(--sb-bg-white);
  border: 1px solid var(--sb-border-light);
}

.feature-intro-metric strong {
  display: block;
  font-size: 1.1rem;
  color: var(--sb-primary-alt);
  font-family: var(--font-display);
}

.feature-intro-metric span {
  display: block;
  margin-top: 4px;
  font-size: 0.86rem;
  color: var(--muted);
}

.feature-rails {
  display: grid;
  gap: 14px;
}

.feature-rail {
  display: grid;
  grid-template-columns: minmax(200px, 0.9fr) minmax(0, 1.1fr);
  gap: 14px;
  padding: 14px;
  border-radius: calc(var(--radius) + 2px);
  background: var(--sb-bg-white);
  border: 1px solid var(--sb-border-card);
  box-shadow: var(--shadow-card);
  align-items: stretch;
}

.feature-rail figure {
  margin: 0;
}

.feature-rail img {
  width: 100%;
  height: 100%;
  min-height: 190px;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid var(--sb-border-light);
}

.rail-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.rail-kicker {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--sb-primary-alt);
  font-weight: 600;
  margin-bottom: 8px;
}

.rail-copy h3 {
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-size: 1.24rem;
  letter-spacing: -0.01em;
  color: var(--sb-text-primary);
}

.rail-copy p {
  margin: 0;
  color: var(--muted);
}

.rail-illustration {
  min-height: 190px;
  border-radius: 14px;
  border: 1px solid var(--sb-border-light);
  background: linear-gradient(150deg, rgba(237, 238, 255, 0.9), rgba(255, 255, 255, 0.92));
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  padding: 16px;
}

.pill {
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--sb-border-light);
  background: var(--sb-bg-white);
  font-size: 0.8rem;
  color: var(--muted);
}

.pill.is-approved {
  background: var(--gradient);
  color: #fff;
  border-color: transparent;
}

@media (max-width: 980px) {
  .feature-layout {
    grid-template-columns: 1fr;
  }

  .feature-intro {
    position: static;
  }
}

@media (max-width: 760px) {
  .feature-rail {
    grid-template-columns: 1fr;
  }
}

/* Legacy bento (kept, unused) */
.bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
}

.bento-card {
  grid-column: span 4;
  padding: 26px;
  border-radius: var(--radius);
  background: var(--sb-bg-white);
  border: 1px solid var(--sb-border-card);
  box-shadow: var(--shadow-card);
  transition: transform 0.35s var(--ease-out), border-color 0.35s, box-shadow 0.35s;
  transform-style: preserve-3d;
}

.bento-card:hover {
  border-color: rgba(44, 102, 195, 0.25);
  box-shadow: 0 12px 40px rgba(44, 102, 195, 0.1);
}

.bento-lg {
  grid-column: span 8;
  min-height: 280px;
  position: relative;
  overflow: hidden;
}

.bento-photo {
  grid-column: span 4;
  padding: 0;
  overflow: hidden;
}

.bento-photo img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  display: block;
}

.bento-wide {
  grid-column: span 12;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: start;
}

@media (max-width: 900px) {
  .bento-card,
  .bento-lg,
  .bento-wide {
    grid-column: span 12;
  }

  .bento-wide {
    grid-template-columns: 1fr;
  }
}

.bento-icon {
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.bento-card h3 {
  font-family: var(--font-display);
  margin: 0 0 10px;
  font-size: 1.25rem;
  color: var(--sb-text-primary);
}

.bento-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.bento-mock,
.design-lines {
  position: absolute;
  right: 24px;
  bottom: 24px;
  width: 45%;
  max-width: 220px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.design-mock {
  position: absolute;
  inset: auto 24px 24px auto;
  width: 56%;
  max-width: 290px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--sb-border-light);
  border-radius: 16px;
  padding: 12px;
  box-shadow: 0 10px 26px rgba(44, 102, 195, 0.12);
}

.swatch {
  display: inline-block;
  width: 26px;
  height: 26px;
  border-radius: 8px;
  margin-right: 8px;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.swatch-a {
  background: #e9d8c5;
}

.swatch-b {
  background: #d8cab8;
}

.swatch-c {
  background: #bcc7cf;
}

.mini-bar {
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(44, 102, 195, 0.15), rgba(59, 130, 246, 0.55));
  animation: shimmer 2.5s ease-in-out infinite;
}

.mini-bar.short {
  width: 70%;
}

.mini-bar:nth-child(2) {
  animation-delay: -0.8s;
}

.mini-bar:nth-child(3) {
  animation-delay: -1.6s;
}

@keyframes shimmer {
  0%,
  100% {
    opacity: 0.5;
  }
  50% {
    opacity: 1;
  }
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-self: end;
}

.chip {
  font-size: 0.78rem;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid var(--sb-border-light);
  color: var(--muted);
  background: var(--sb-bg-light);
}

/* Workflow */
.workflow-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 5vw, 56px);
  align-items: start;
}

.workflow-panel {
  transition: transform 0.45s var(--ease-out);
  will-change: transform;
}

.workflow-inner .workflow-copy > h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  letter-spacing: -0.02em;
  color: var(--sb-text-primary);
  margin: 0 0 0.5rem;
}

@media (max-width: 900px) {
  .workflow-inner {
    grid-template-columns: 1fr;
  }

  .workflow-panel {
    transform: none !important;
  }
}

.steps {
  list-style: none;
  padding: 0;
  margin: 32px 0 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.step-hit {
  width: 100%;
  text-align: left;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  padding: 18px 18px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  background: transparent;
  transition: background 0.3s, border-color 0.3s, transform 0.3s var(--ease-out);
}

.step-index {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--muted);
  font-size: 0.9rem;
}

.step-body strong {
  display: block;
  font-size: 1.05rem;
  margin-bottom: 4px;
  color: var(--sb-text-primary);
}

.step-body span {
  color: var(--muted);
  font-size: 0.9rem;
}

.steps li.is-active .step-hit {
  background: var(--sb-stat-users-bg);
  border-color: rgba(44, 102, 195, 0.35);
  transform: translateX(6px);
}

.steps li.is-active .step-index {
  color: var(--sb-primary-alt);
}

.panel-window {
  position: relative;
  border-radius: calc(var(--radius) + 6px);
  padding: 32px;
  min-height: 0;
  height: auto;
  background: var(--sb-bg-white);
  border: 1px solid var(--sb-border-card);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

.panel-track {
  display: flex;
  flex-direction: column;
  gap: 24px;
  transform: translateY(0);
  transition: transform 0.65s var(--ease-out);
  will-change: transform;
}

.panel-slide {
  min-height: 0;
  display: grid;
  align-content: start;
  grid-template-rows: auto auto auto auto auto;
}

.panel-slide.is-visible {
  animation: panelFocus 0.55s var(--ease-out);
}

@keyframes panelFocus {
  from {
    opacity: 0.65;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.panel-tag {
  display: inline-block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--sb-primary-alt);
  font-weight: 600;
  margin-bottom: 12px;
}

.panel-slide h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin: 0 0 12px;
  color: var(--sb-text-primary);
}

.panel-slide p {
  margin: 0 0 16px;
  color: var(--muted);
}

.panel-media {
  margin: 0 0 18px;
}

.panel-media img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid var(--sb-border-light);
  box-shadow: 0 8px 24px rgba(44, 102, 195, 0.1);
}

.panel-visual {
  display: grid;
  gap: 12px;
  min-height: 110px;
  align-content: end;
}

.visual-chip {
  border-radius: 12px;
  background: linear-gradient(145deg, #ffffff, #f7f9ff);
  border: 1px solid var(--sb-border-light);
  box-shadow: 0 6px 18px rgba(44, 102, 195, 0.08);
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  animation: rise 3.2s ease-in-out infinite alternate;
}

.panel-visual.plan {
  grid-template-columns: repeat(3, 1fr);
}

.panel-visual.run {
  grid-template-columns: repeat(4, 1fr);
}

.panel-visual.control {
  grid-template-columns: 1fr 1fr;
}

.visual-icon {
  font-size: 0.95rem;
  line-height: 1;
}

.visual-text {
  font-size: 0.76rem;
  color: var(--sb-text-secondary);
  font-weight: 600;
  line-height: 1.2;
}

@media (max-width: 640px) {
  .panel-visual.plan,
  .panel-visual.run,
  .panel-visual.control {
    grid-template-columns: 1fr 1fr;
  }
}

.visual-chip:nth-child(2) {
  animation-delay: 0.3s;
}
.visual-chip:nth-child(3) {
  animation-delay: 0.6s;
}
.visual-chip:nth-child(4) {
  animation-delay: 0.9s;
}

@keyframes rise {
  from {
    transform: translateY(8px);
    opacity: 0.65;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Impact */
.impact-shell {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.6fr);
  gap: 22px;
  padding: clamp(22px, 3vw, 30px);
  border-radius: calc(var(--radius) + 6px);
  border: 1px solid var(--sb-border-light);
  background: linear-gradient(140deg, rgba(255, 255, 255, 0.95), rgba(237, 238, 255, 0.78));
  overflow: hidden;
}

.impact-shell::before {
  content: "";
  position: absolute;
  inset: -30%;
  background: radial-gradient(
    circle at var(--impact-x, 20%) var(--impact-y, 15%),
    rgba(44, 102, 195, 0.2),
    transparent 44%
  );
  transition: background-position 0.15s linear;
  pointer-events: none;
}

.impact-tabs,
.impact-panels,
.impact-main,
.speed-meter {
  position: relative;
  z-index: 1;
}

.impact-main {
  display: grid;
  gap: 14px;
  align-content: start;
}

.impact-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.impact-fact {
  padding: 12px;
  border-radius: 12px;
  border: 1px solid var(--sb-border-light);
  background: rgba(255, 255, 255, 0.84);
}

.impact-fact strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.06rem;
  color: var(--sb-primary-alt);
  margin-bottom: 2px;
}

.impact-fact span {
  font-size: 0.8rem;
  color: var(--muted);
}

.impact-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  align-items: center;
}

.impact-tab {
  flex: 0 0 auto;
  border-radius: 999px;
  padding: 9px 14px;
  border: 1px solid var(--sb-border-light);
  background: rgba(255, 255, 255, 0.8);
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--muted);
  transition: all 0.25s var(--ease-out);
}

.impact-tab.is-active {
  color: var(--sb-primary-alt);
  border-color: rgba(44, 102, 195, 0.35);
  box-shadow: 0 8px 22px rgba(44, 102, 195, 0.12);
}

.impact-panels {
  min-height: 280px;
  display: grid;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--sb-border-light);
  border-radius: 18px;
  padding: 18px;
}

.impact-panel {
  grid-area: 1 / 1;
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity 0.35s var(--ease-out), transform 0.35s var(--ease-out);
}

.impact-panel.is-visible {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}

.impact-panel h3 {
  margin: 0 0 12px;
  font-family: var(--font-display);
  letter-spacing: -0.01em;
  color: var(--sb-text-primary);
}

.impact-panel p {
  margin: 0 0 16px;
  color: var(--muted);
}

.impact-points {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.impact-points li {
  position: relative;
  padding-left: 20px;
  color: var(--sb-text-secondary);
}

.impact-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--gradient);
}

.speed-meter {
  align-self: start;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid var(--sb-border-light);
  border-radius: var(--radius);
  padding: 18px;
}

.speed-media {
  margin: 0 0 12px;
}

.speed-media img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid var(--sb-border-light);
}

.speed-title {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--sb-text-primary);
}

.speed-illustration {
  height: 58px;
  border-radius: 12px;
  background: linear-gradient(150deg, rgba(44, 102, 195, 0.08), rgba(59, 130, 246, 0.15));
  border: 1px solid var(--sb-border-light);
  margin-bottom: 14px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  align-items: end;
  padding: 10px;
}

.speed-illustration span {
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(59, 130, 246, 0.9), rgba(44, 102, 195, 0.35));
  animation: speedPulse 2.8s ease-in-out infinite;
}

.speed-illustration span:nth-child(1) {
  height: 45%;
}

.speed-illustration span:nth-child(2) {
  height: 85%;
  animation-delay: -0.3s;
}

.speed-illustration span:nth-child(3) {
  height: 65%;
  animation-delay: -0.6s;
}

@keyframes speedPulse {
  0%,
  100% {
    transform: scaleY(0.86);
    opacity: 0.8;
  }
  50% {
    transform: scaleY(1);
    opacity: 1;
  }
}

.speed-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.speed-chip {
  border-radius: 999px;
  border: 1px solid var(--sb-border-light);
  background: var(--sb-bg-white);
  padding: 7px 12px;
  font-size: 0.78rem;
  color: var(--muted);
  transition: all 0.2s var(--ease-out);
}

.speed-chip.is-active {
  color: #fff;
  border-color: transparent;
  background: var(--gradient);
}

.speed-card {
  padding: 16px;
  border-radius: 14px;
  border: 1px solid var(--sb-border-card);
  background: linear-gradient(150deg, #fff, rgba(243, 244, 246, 0.95));
}

.speed-card strong {
  display: block;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  letter-spacing: -0.02em;
  color: var(--sb-primary-alt);
  font-family: var(--font-display);
}

.speed-card span {
  display: block;
  margin-top: 4px;
  font-size: 0.88rem;
  color: var(--muted);
}

.speed-notes {
  margin-top: 12px;
  display: grid;
  gap: 8px;
}

.speed-note {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  color: var(--muted);
  font-size: 0.8rem;
}

.speed-note p {
  margin: 0;
}

.dot-mini {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  margin-top: 0.45em;
  background: var(--sb-primary-alt);
  flex: 0 0 auto;
}

@media (max-width: 940px) {
  .impact-shell {
    grid-template-columns: 1fr;
  }

  .impact-panels {
    min-height: 320px;
  }

  .impact-facts {
    grid-template-columns: 1fr;
  }
}

/* Testimonials */
.testimonial-slider {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 16px;
  align-items: center;
}

.slider-viewport {
  overflow: hidden;
  border-radius: var(--radius);
}

.slider-track {
  display: flex;
  transition: transform 0.55s var(--ease-out);
}

.quote-card {
  min-width: 100%;
  margin: 0;
  padding: clamp(24px, 4vw, 36px);
  background: var(--sb-bg-white);
  border: 1px solid var(--sb-border-card);
  box-shadow: var(--shadow-card);
  border-radius: var(--radius);
}

.quote-card p {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  line-height: 1.55;
  margin: 0 0 24px;
  color: var(--sb-text-secondary);
}

.quote-card footer {
  display: flex;
  gap: 14px;
  align-items: center;
  color: var(--muted);
  font-size: 0.9rem;
}

.quote-card cite {
  font-style: normal;
  font-weight: 600;
  color: var(--text);
  display: block;
}

.avatar {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 0.85rem;
  background: var(--gradient);
  color: #fff;
}

.slider-nav {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--sb-border-gray);
  background: var(--sb-bg-white);
  color: var(--sb-primary-alt);
  font-size: 1.4rem;
  line-height: 1;
  transition: transform 0.25s, border-color 0.25s, background 0.25s;
}

.slider-nav:hover {
  transform: scale(1.06);
  border-color: var(--sb-primary-alt);
  background: var(--sb-stat-users-bg);
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}

.slider-dots button {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #cbd5e1;
  padding: 0;
  border: none;
  transition: transform 0.25s, background 0.25s;
}

.slider-dots button.is-active {
  background: var(--sb-primary-alt);
  transform: scale(1.2);
}

@media (max-width: 640px) {
  .slider-nav {
    display: none;
  }
}

/* Download */
.download-card {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  padding: clamp(28px, 5vw, 48px);
  border-radius: calc(var(--radius) + 8px);
  background: linear-gradient(
    120deg,
    var(--sb-stat-users-bg) 0%,
    rgba(224, 231, 255, 0.65) 45%,
    var(--sb-bg-white) 100%
  );
  border: 1px solid var(--sb-border-light);
  position: relative;
  overflow: hidden;
}

.download-card::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: radial-gradient(circle at 20% 20%, rgba(44, 102, 195, 0.12), transparent 45%);
  pointer-events: none;
}

.download-copy {
  position: relative;
  z-index: 1;
}

.download-card h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin: 0 0 12px;
  color: var(--sb-text-primary);
}

.download-card > .download-copy > p {
  margin: 0 0 28px;
  color: var(--muted);
  max-width: 460px;
}

.store-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 28px;
}

.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px;
  border-radius: 14px;
  background: var(--sb-bg-white);
  border: 1px solid var(--sb-border-card);
  box-shadow: var(--shadow-card);
  min-width: 200px;
  transition: transform 0.25s var(--ease-out), border-color 0.25s, box-shadow 0.25s;
}

.store-badge:hover {
  transform: translateY(-3px);
  border-color: var(--sb-primary-alt);
  box-shadow: 0 8px 28px rgba(44, 102, 195, 0.15);
}

.store-icon {
  font-size: 1.6rem;
  width: 36px;
  text-align: center;
}

.store-icon.play {
  font-size: 1.1rem;
  color: var(--sb-primary-alt);
}

.store-badge small {
  display: block;
  font-size: 0.68rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.store-badge strong {
  font-size: 1rem;
  color: var(--sb-text-primary);
}

.company-request-form {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 620px;
}

.company-request-form input,
.company-request-form textarea {
  flex: 1 1 240px;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid var(--sb-border-light);
  background: var(--sb-bg-white);
  color: var(--text);
  outline: none;
  font: inherit;
  transition: border-color 0.25s, box-shadow 0.25s;
}

.company-request-form textarea {
  min-height: 84px;
  resize: vertical;
}

.company-request-form input::placeholder,
.company-request-form textarea::placeholder {
  color: var(--sb-text-placeholder);
}

.company-request-form input:focus,
.company-request-form textarea:focus {
  border-color: var(--sb-primary-alt);
  box-shadow: 0 0 0 3px rgba(44, 102, 195, 0.12);
}

.company-request-form button {
  margin-top: 4px;
}

.form-hint {
  min-height: 1.4em;
  margin: 10px 0 0;
  font-size: 0.9rem;
  color: var(--sb-primary-alt);
}

.download-art {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.request-side-card {
  border-radius: 16px;
  border: 1px solid var(--sb-border-light);
  background: rgba(255, 255, 255, 0.88);
  padding: 18px;
  max-width: 280px;
  box-shadow: 0 10px 24px rgba(44, 102, 195, 0.1);
}

.request-side-card strong {
  display: block;
  margin-bottom: 10px;
  font-family: var(--font-display);
  color: var(--sb-text-primary);
}

.request-side-card ol {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  display: grid;
  gap: 8px;
  font-size: 0.9rem;
}

@media (max-width: 800px) {
  .download-card {
    grid-template-columns: 1fr;
  }
}

/* Footer */
.site-footer {
  position: relative;
  z-index: 1;
  padding: 48px 0 56px;
  border-top: 1px solid var(--border);
  background: var(--sb-bg-white);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(220px, 1.3fr) repeat(3, minmax(140px, 1fr));
  gap: 24px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--sb-text-primary);
}

.footer-copy {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.footer-links {
  display: grid;
  align-content: start;
  gap: 8px;
}

.footer-head {
  margin: 0 0 6px;
  font-family: var(--font-display);
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--sb-text-secondary);
}

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

.footer-links a:hover {
  color: var(--sb-primary-alt);
}

.footer-top {
  color: var(--sb-primary-alt) !important;
  font-weight: 600;
}

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

@media (max-width: 620px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* Ripple */
.ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  transform: scale(0);
  animation: ripple 0.6s ease-out forwards;
  pointer-events: none;
}

.btn-outline .ripple,
.store-badge .ripple {
  background: rgba(44, 102, 195, 0.2);
}

@keyframes ripple {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

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

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

  .marquee-track {
    animation: none;
  }
}
