/* ============================================================
   Balance Matters — Upright Science
   ============================================================ */

:root {
  --brand: #0095DA;
  --brand-dark: #1E54C0;
  --brand-light: #5B8DF0;
  --brand-soft: #EAF1FE;
  --accent: #16A394;
  --accent-soft: #E6F7F4;
  --ink: #0E1424;
  --ink-2: #1A2235;
  --muted: #5A6478;
  --muted-2: #8A93A6;
  --line: #E6EAF2;
  --bg: #FFFFFF;
  --bg-tint: #F6F8FD;
  --bg-dark: #0B1226;
  --bg-dark-2: #0F1A36;
  --radius: 18px;
  --radius-lg: 28px;
  --shadow-sm: 0 4px 12px rgba(14, 20, 36, 0.06);
  --shadow-md: 0 12px 30px rgba(14, 20, 36, 0.08);
  --shadow-lg: 0 30px 60px -20px rgba(0, 149, 218, 0.35);
  --grad-brand: linear-gradient(135deg, #0095DA 0%, #5B8DF0 60%, #16A394 100%);
  --grad-soft: linear-gradient(180deg, #F6F8FD 0%, #FFFFFF 100%);
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: 'Space Grotesk', 'Inter', sans-serif;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }

/* ============================================================
   LAYOUT
   ============================================================ */

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 120px 0;
  position: relative;
}

.section-tinted {
  background: var(--bg-tint);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-dark {
  background: var(--bg-dark);
  background-image:
    radial-gradient(1200px 600px at 80% 0%, rgba(0, 149, 218, 0.25), transparent),
    radial-gradient(900px 500px at 0% 100%, rgba(22, 163, 148, 0.18), transparent);
  color: #fff;
}

.section-head {
  max-width: 720px;
  margin: 0 auto 64px;
  text-align: center;
}
.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 16px 0;
}
.section-head p {
  color: var(--muted);
  font-size: 1.125rem;
}
.section-head-light h2 { color: #fff; }
.section-head-light p { color: rgba(255, 255, 255, 0.75); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--brand);
  background: var(--brand-soft);
  padding: 6px 12px;
  border-radius: 999px;
}
.eyebrow-light {
  color: #9DBEF5;
  background: rgba(0, 149, 218, 0.18);
}
.eyebrow-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 0 4px rgba(0, 149, 218, 0.2);
  animation: pulse 1.8s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(0, 149, 218, 0.2); }
  50% { box-shadow: 0 0 0 8px rgba(0, 149, 218, 0.05); }
}

/* ============================================================
   BUTTONS
   ============================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  white-space: nowrap;
}
.btn i { width: 18px; height: 18px; }
.btn-lg { padding: 16px 28px; font-size: 1rem; }
.btn-block { width: 100%; justify-content: center; }
.btn-primary {
  background: var(--ink);
  color: #fff;
  box-shadow: var(--shadow-md);
}
.btn-primary:hover {
  background: var(--brand);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--line);
}
.btn-ghost:hover { border-color: var(--brand); color: var(--brand); }

/* ============================================================
   BACKGROUND ORBS
   ============================================================ */

.bg-orbs {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
  animation: float 18s infinite ease-in-out;
}
.orb-1 { width: 500px; height: 500px; background: #0095DA; top: -150px; right: -100px; }
.orb-2 { width: 400px; height: 400px; background: #16A394; top: 40%; left: -100px; animation-delay: -6s; opacity: 0.3; }
.orb-3 { width: 350px; height: 350px; background: #5B8DF0; bottom: -100px; right: 30%; animation-delay: -12s; opacity: 0.25; }
@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(40px, -30px) scale(1.05); }
  66% { transform: translate(-30px, 30px) scale(0.95); }
}

/* ============================================================
   NAV
   ============================================================ */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 16px 0;
  transition: background 0.3s, box-shadow 0.3s, padding 0.3s;
}
.nav.scrolled {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  box-shadow: 0 1px 0 rgba(14, 20, 36, 0.06);
  padding: 10px 0;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.nav-logo img { height: 32px; width: auto; }
.nav-brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.nav-brand span { color: var(--brand); }
.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
  margin-left: auto;
}
.nav-links a {
  color: var(--ink-2);
  font-size: 0.92rem;
  font-weight: 500;
  position: relative;
  padding: 6px 0;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  background: var(--brand);
  transform: scaleX(0);
  transition: transform 0.25s;
  transform-origin: left;
}
.nav-links a:hover::after { transform: scaleX(1); }
.nav-cta { padding: 10px 18px; font-size: 0.9rem; }
.nav-toggle {
  display: none;
  width: 40px; height: 40px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 22px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: 0.3s;
}

/* ============================================================
   HERO
   ============================================================ */

.hero {
  position: relative;
  padding: 160px 0 100px;
  overflow: hidden;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin: 20px 0 24px;
  font-weight: 700;
}
.grad-text {
  background: var(--grad-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
}
.hero-sub {
  font-size: 1.18rem;
  color: var(--muted);
  max-width: 540px;
  margin-bottom: 36px;
}
.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}
.hero-stats {
  display: flex;
  gap: 40px;
  list-style: none;
  flex-wrap: wrap;
}
.hero-stats li {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hero-stats strong {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--ink);
}
.hero-stats span {
  font-size: 0.85rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Phone mockups */
.hero-visual { position: relative; height: 600px; }
.phone-stack {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.phone {
  position: absolute;
  width: 280px;
  height: 560px;
  background: linear-gradient(145deg, #1A2235, #0E1424);
  border-radius: 42px;
  padding: 12px;
  box-shadow:
    0 50px 100px -20px rgba(0, 149, 218, 0.4),
    0 30px 60px -30px rgba(0, 0, 0, 0.3),
    inset 0 0 0 2px rgba(255, 255, 255, 0.1);
}
.phone-front {
  z-index: 2;
  transform: rotate(-4deg) translateX(-30px);
  animation: floaty 6s infinite ease-in-out;
}
.phone-back {
  z-index: 1;
  transform: rotate(8deg) translateX(60px) scale(0.92);
  opacity: 0.8;
  animation: floaty 7s infinite ease-in-out reverse;
}
@keyframes floaty {
  0%, 100% { transform: rotate(-4deg) translate(-30px, 0); }
  50% { transform: rotate(-4deg) translate(-30px, -12px); }
}
.phone-back { animation-name: floaty-back; }
@keyframes floaty-back {
  0%, 100% { transform: rotate(8deg) translate(60px, 0) scale(0.92); }
  50% { transform: rotate(8deg) translate(60px, 12px) scale(0.92); }
}
.phone-screen {
  width: 100%; height: 100%;
  border-radius: 32px;
  overflow: hidden;
  background: #fff;
}
.phone-screen img { width: 100%; height: 100%; object-fit: cover; }
.phone-notch {
  position: absolute;
  top: 18px; left: 50%;
  transform: translateX(-50%);
  width: 90px; height: 22px;
  background: #000;
  border-radius: 999px;
  z-index: 3;
}

/* Floating cards over phones */
.floating-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-md);
  z-index: 4;
  animation: floaty 5s infinite ease-in-out;
}
.floating-card i {
  width: 22px; height: 22px;
  color: var(--brand);
  flex-shrink: 0;
}
.floating-card span {
  display: block;
  font-size: 0.7rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}
.floating-card strong {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
}
.floating-card strong em { font-style: normal; color: var(--muted); font-weight: 500; font-size: 0.85rem; }
.card-heart { top: 12%; right: 0; animation-delay: -1s; }
.card-heart i { color: #EF4444; }
.card-steps { bottom: 22%; left: -10px; animation-delay: -3s; }
.card-steps i { color: var(--accent); }
.card-score { bottom: 6%; right: 6%; animation-delay: -2s; }

/* Marquee */
.hero-marquee {
  margin-top: 80px;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
  background: var(--bg-tint);
}
.marquee-track {
  display: flex;
  gap: 28px;
  white-space: nowrap;
  animation: marquee 28s linear infinite;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============================================================
   STEPS
   ============================================================ */

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.step {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px 28px;
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.step:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--brand-light);
}
.step-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  background: var(--grad-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 12px;
}
.step h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin-bottom: 8px;
}
.step p { color: var(--muted); font-size: 0.98rem; }

/* ============================================================
   POSES
   ============================================================ */

.poses-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.pose-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}
.pose-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 60%, rgba(0, 149, 218, 0.06));
  pointer-events: none;
}
.pose-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.pose-icon {
  width: 64px; height: 64px;
  border-radius: 18px;
  background: var(--brand-soft);
  color: var(--brand);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.pose-icon i { width: 28px; height: 28px; }
.pose-icon-alt { background: #FEF3C7; color: #D97706; }
.pose-icon-emerald { background: var(--accent-soft); color: var(--accent); }
.pose-tag {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
  color: var(--brand);
}
.pose-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin: 8px 0 12px;
}
.pose-card p { color: var(--muted); margin-bottom: 20px; min-height: 72px; }
.pose-meter {
  height: 6px;
  background: var(--brand-soft);
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 8px;
}
.pose-meter span {
  display: block;
  height: 100%;
  background: var(--grad-brand);
  border-radius: 999px;
}
.pose-card small { color: var(--muted-2); font-size: 0.82rem; }

/* ============================================================
   EDITIONS
   ============================================================ */

.editions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.edition {
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  position: relative;
  display: flex;
  flex-direction: column;
}
.edition-featured {
  background: linear-gradient(180deg, var(--ink) 0%, var(--ink-2) 100%);
  color: #fff;
  border-color: transparent;
  box-shadow: var(--shadow-lg);
}
.edition-featured h3, .edition-featured .edition-list li { color: #fff; }
.edition-featured .edition-head p { color: rgba(255, 255, 255, 0.7); }
.edition-badge {
  position: absolute;
  top: -12px; right: 24px;
  background: var(--grad-brand);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 6px 14px;
  border-radius: 999px;
}
.edition-pill {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--bg-tint);
  color: var(--muted);
  margin-bottom: 16px;
}
.edition-pill-pro {
  background: rgba(0, 149, 218, 0.2);
  color: #9DBEF5;
}
.edition h3 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  margin-bottom: 10px;
}
.edition-head p { color: var(--muted); margin-bottom: 28px; }
.edition-list {
  list-style: none;
  flex-grow: 1;
  margin-bottom: 28px;
}
.edition-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(230, 234, 242, 0.6);
  font-size: 0.98rem;
}
.edition-featured .edition-list li {
  border-bottom-color: rgba(255, 255, 255, 0.08);
}
.edition-list li i {
  width: 18px; height: 18px;
  color: var(--brand);
  flex-shrink: 0;
}
.edition-list li.muted { color: var(--muted-2); }
.edition-list li.muted i { color: var(--muted-2); }
.edition-featured .edition-list li i { color: #5B8DF0; }
.edition-featured .btn-primary {
  background: #fff;
  color: var(--ink);
}
.edition-featured .btn-primary:hover {
  background: var(--brand);
  color: #fff;
}

/* ============================================================
   METRICS (dark section)
   ============================================================ */

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.metric-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: 32px 24px;
  backdrop-filter: blur(10px);
  transition: transform 0.3s, background 0.3s;
}
.metric-card:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.07);
}
.metric-card i {
  width: 32px; height: 32px;
  color: var(--brand-light);
  margin-bottom: 16px;
}
.metric-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  margin-bottom: 8px;
  color: #fff;
}
.metric-card p { color: rgba(255, 255, 255, 0.7); font-size: 0.95rem; }
.metric-card-feature {
  background: var(--grad-brand);
  border-color: transparent;
}
.metric-card-feature i { color: #fff; }
.metric-card-feature p { color: rgba(255, 255, 255, 0.9); }

/* ============================================================
   SCREENSHOTS
   ============================================================ */

.screenshots-swiper {
  padding: 40px 0 60px;
  --swiper-theme-color: var(--brand);
}
.screenshots-swiper .swiper-slide {
  width: 280px !important;
  transition: transform 0.4s, opacity 0.4s;
  opacity: 0.55;
}
.screenshots-swiper .swiper-slide-active {
  opacity: 1;
  transform: scale(1.05);
}
.ss-frame {
  width: 280px;
  height: 560px;
  background: linear-gradient(145deg, #1A2235, #0E1424);
  border-radius: 36px;
  padding: 10px;
  box-shadow: var(--shadow-lg);
}
.ss-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 28px;
  background: #fff;
}
.swiper-button-prev, .swiper-button-next {
  width: 44px; height: 44px;
  background: #fff;
  border-radius: 50%;
  box-shadow: var(--shadow-md);
}
.swiper-button-prev::after, .swiper-button-next::after {
  font-size: 16px; font-weight: 700;
}
.screenshots-note {
  margin-top: 24px;
  text-align: center;
  color: var(--muted);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.screenshots-note i { width: 16px; height: 16px; }
.screenshots-note code {
  background: var(--brand-soft);
  color: var(--brand);
  padding: 2px 8px;
  border-radius: 6px;
  font-size: 0.85rem;
  font-family: 'SF Mono', Menlo, monospace;
}

/* ============================================================
   WHY (split with stats)
   ============================================================ */

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.why-grid h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 16px 0 20px;
}
.why-grid p { color: var(--muted); font-size: 1.1rem; margin-bottom: 28px; }
.stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.stat-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: transform 0.3s;
}
.stat-card:hover { transform: translateY(-4px); }
.stat-card strong {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--ink);
}
.stat-card span { color: var(--muted); font-size: 0.92rem; }
.stat-card.stat-accent {
  background: var(--grad-brand);
  border-color: transparent;
}
.stat-card.stat-accent strong, .stat-card.stat-accent span { color: #fff; }
.stat-card.stat-accent span { color: rgba(255, 255, 255, 0.9); }

/* ============================================================
   CTA SECTION
   ============================================================ */

.cta-section { padding: 80px 0 120px; }
.cta-card {
  background: var(--ink);
  background-image:
    radial-gradient(800px 400px at 100% 0%, rgba(0, 149, 218, 0.4), transparent),
    radial-gradient(600px 300px at 0% 100%, rgba(22, 163, 148, 0.3), transparent);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 80px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-card h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.cta-card > p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.1rem;
  max-width: 560px;
  margin: 0 auto 36px;
}
.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.btn-store {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 14px;
  padding: 14px 22px;
  color: #fff;
  transition: background 0.2s, transform 0.2s;
}
.btn-store:hover { background: rgba(255, 255, 255, 0.2); transform: translateY(-2px); }
.btn-store i { width: 28px; height: 28px; }
.btn-store span { display: block; font-size: 0.7rem; opacity: 0.8; text-transform: uppercase; letter-spacing: 0.08em; }
.btn-store strong { font-family: var(--font-display); font-size: 1.05rem; }
.cta-card small {
  display: block;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
}

/* ============================================================
   FOOTER
   ============================================================ */

.footer {
  background: var(--bg-dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 60px 0 40px;
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.footer .nav-logo img { height: 36px; filter: brightness(0) invert(1); }
.footer-tag {
  font-family: var(--font-display);
  margin-top: 8px;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.5);
}
.footer-links {
  display: flex;
  gap: 24px;
  list-style: none;
  flex-wrap: wrap;
}
.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.92rem;
  transition: color 0.2s;
}
.footer-links a:hover { color: #fff; }
.footer-copy {
  width: 100%;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 24px;
  margin-top: 24px;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.4);
  text-align: center;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 960px) {
  .section { padding: 80px 0; }
  .hero { padding: 130px 0 60px; }
  .hero-inner { grid-template-columns: 1fr; gap: 60px; }
  .hero-visual { height: 520px; }
  .steps, .poses-grid, .editions, .metrics-grid, .why-grid {
    grid-template-columns: 1fr;
  }
  .why-grid { gap: 40px; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%; left: 16px; right: 16px;
    background: #fff;
    flex-direction: column;
    padding: 16px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    gap: 4px;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 10px; }
  .nav-cta { display: none; }
  .nav-toggle { display: flex; }
}

@media (max-width: 600px) {
  .hero-stats { gap: 28px; }
  .hero-stats strong { font-size: 1.4rem; }
  .cta-card { padding: 50px 24px; }
  .stat-grid { grid-template-columns: 1fr; }
}
