/* ============================================================
   1. Tokens & Reset
   ============================================================ */

:root {
  /* Backgrounds */
  --paper:        #FAF8F3;
  --paper-deep:   #F3F0E8;
  --paper-warm:   #F1ECE2;
  --card:         #ffffff;

  /* Ink (text) */
  --ink:          #1F1B16;
  --ink-soft:     #4A4238;
  --ink-muted:    #85786A;
  --ink-faint:    #B6A999;

  /* Hairlines (borders) */
  --hair:         rgba(47, 38, 26, 0.09);
  --hair-soft:    rgba(47, 38, 26, 0.05);
  --hair-strong:  rgba(47, 38, 26, 0.16);

  /* Accent — rust / terracotta */
  --accent:        #D97757;
  --accent-ink:    #A04A2F;
  --accent-soft:   #F8E4D8;
  --accent-softer: #FBEEE6;

  /* Night — indigo (used for "This Evening" items) */
  --night-ink:    #3E4B7A;
  --night-soft:   #E6E9F4;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(58, 42, 20, 0.04), 0 2px 6px rgba(58, 42, 20, 0.04);
  --shadow-md: 0 2px 6px rgba(58, 42, 20, 0.06), 0 8px 20px rgba(58, 42, 20, 0.07);
  --shadow-lg: 0 8px 24px rgba(58, 42, 20, 0.10), 0 24px 60px rgba(58, 42, 20, 0.12);
  --shadow-xl: 0 18px 50px rgba(58, 42, 20, 0.14), 0 40px 90px rgba(58, 42, 20, 0.13);

  /* Font families */
  --sans:  'IBM Plex Sans', system-ui, -apple-system, sans-serif;
  --serif: 'IBM Plex Serif', Georgia, serif;
  --mono:  'IBM Plex Mono', 'Courier New', monospace;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--sans);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.5;
}

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

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

ul[role="list"] {
  list-style: none;
}


/* ============================================================
   2. Typography utilities
   ============================================================ */

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--accent-ink);
}

/* Warm tint variant — used on the dark native section */
.eyebrow--warm {
  color: #F0A98D;
}

.eyebrow__dot {
  display: inline-block;
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}


/* ============================================================
   3. Buttons
   ============================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--sans);
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition: transform 160ms cubic-bezier(.2, .7, .3, 1),
              box-shadow  160ms cubic-bezier(.2, .7, .3, 1);
}

/* Navigation pill */
.btn--nav {
  font-size: 13.5px;
  color: #fff;
  background: var(--accent);
  border-radius: 9px;
  padding: 8px 16px;
  box-shadow: 0 2px 8px rgba(217, 119, 87, 0.3);
}

.btn--nav:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(217, 119, 87, 0.4);
}

/* Solid accent — primary hero CTA */
.btn--accent {
  font-size: 15.5px;
  letter-spacing: -0.1px;
  color: #fff;
  background: var(--accent);
  border-radius: 12px;
  padding: 13px 22px;
  box-shadow: 0 2px 8px rgba(217, 119, 87, 0.32),
              inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.btn--accent:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(217, 119, 87, 0.4),
              inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

/* App Store badge shared styles */
.btn--store {
  gap: 11px;
  border-radius: 11px;
  padding: 11px 18px 11px 16px;
}

.btn--store span {
  display: flex;
  flex-direction: column;
  text-align: left;
  line-height: 1.05;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 16.5px;
}

.btn--store small {
  display: block;
  font-size: 9.5px;
  font-weight: 400;
  opacity: 0.75;
  letter-spacing: 0.2px;
  margin-bottom: 2px;
}

/* White variant — iOS App Store */
.btn--store-white {
  background: #fff;
  color: var(--ink);
  box-shadow: 0 6px 18px rgba(58, 42, 20, 0.18);
}

.btn--store-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(58, 42, 20, 0.24);
}

/* Ghost variant — Mac App Store */
.btn--store-ghost {
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.btn--store-ghost:hover {
  background: rgba(255, 255, 255, 0.24);
  transform: translateY(-2px);
}


/* ============================================================
   4. Demo placeholder
   ============================================================ */

/* Intentional-looking placeholder shown where GIFs or screenshots will go.
   To replace: swap the .demo-placeholder div for <img src="…"> or <video>.
   Keep the parent .feature__media wrapper — it provides the accent-soft background. */

.demo-placeholder {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 11;
  border-radius: 14px;
  background: var(--paper-deep);
  border: 1px dashed var(--hair-strong);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 13px;
}

/* Animated shimmer sweep */
.demo-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 30%,
    rgba(255, 255, 255, 0.55) 50%,
    transparent 70%
  );
  transform: translateX(-100%);
  animation: lig-shimmer 3.4s ease-in-out infinite;
  pointer-events: none;
}

.demo-placeholder__chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--accent-ink);
  background: var(--card);
  border: 1px solid var(--hair);
  border-radius: 999px;
  padding: 6px 13px;
}

.demo-placeholder__label {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-muted);
}


/* ============================================================
   5. Nav
   ============================================================ */

.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px max(24px, calc((100% - 1200px) / 2));
  background: rgba(250, 248, 243, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--hair-soft);
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--serif);
  font-weight: 600;
  font-size: 20px;
  letter-spacing: -0.3px;
  line-height: 1;
  color: var(--ink);
  text-decoration: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.nav-links a {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-soft);
  transition: color 120ms;
}

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


/* ============================================================
   6. Hero
   ============================================================ */

.hero {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 40px;
  align-items: center;
  padding: 56px max(24px, calc((100% - 1200px) / 2)) 90px;
}

/* Radial gradient background blob */
.hero::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -160px;
  width: 620px;
  height: 620px;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 50%, var(--accent-softer), transparent 70%);
  pointer-events: none;
}

.hero__text {
  position: relative;
}

/* Eyebrow chip in hero — pill shape with accent-soft background */
.hero__text .eyebrow {
  display: inline-flex;
  background: var(--accent-soft);
  border-radius: 999px;
  padding: 6px 13px;
  margin-bottom: 24px;
}

.hero__text h1 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 60px;
  line-height: 1.04;
  letter-spacing: -1.6px;
  color: var(--ink);
  text-wrap: balance;
}

/* "one feed" highlight — accent-soft underline bar behind the text */
.hero__text h1 mark {
  background: none;
  color: inherit;
  position: relative;
  white-space: nowrap;
}

.hero__text h1 mark::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 6px;
  height: 10px;
  background: var(--accent-soft);
  z-index: -1;
  border-radius: 3px;
}

.hero__sub {
  max-width: 480px;
  margin-top: 24px;
  font-family: var(--sans);
  font-size: 18px;
  line-height: 1.6;
  color: var(--ink-soft);
}

.cta-row {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-top: 32px;
  flex-wrap: wrap;
}

.cta-note {
  font-family: var(--sans);
  font-size: 13px;
  color: var(--ink-muted);
}

/* Hero mock container — provides the white card shadow behind the phone */
.hero__mock {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero__mock::before {
  content: '';
  position: absolute;
  inset: 8% 4%;
  border-radius: 40px;
  background: var(--card);
  box-shadow: var(--shadow-lg);
  transform: rotate(4deg);
  z-index: 0;
}

/* CSS-only iPhone silhouette.
   Replace the whole .hero__mock block with a real screenshot when ready. */
.hero-phone {
  position: relative;
  z-index: 1;
  width: 280px;
  height: 560px;
  background: var(--ink);
  border-radius: 44px;
  box-shadow: var(--shadow-xl);
  border: none;
  margin: 0;
}

/* Screen area inside the phone */
.hero-phone::after {
  content: '';
  position: absolute;
  inset: 10px;
  background: var(--paper-deep);
  border-radius: 36px;
}

/* Dynamic island / notch — sits above the screen layer */
.hero-phone::before {
  content: '';
  position: absolute;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: 88px;
  height: 28px;
  background: var(--ink);
  border-radius: 20px;
  z-index: 1;
}


/* ============================================================
   7. Bridge
   ============================================================ */

.bridge {
  background: var(--paper-deep);
  padding: 66px max(24px, calc((100% - 1200px) / 2));
  text-align: center;
}

.bridge .eyebrow {
  display: block;
  margin-bottom: 12px;
}

.bridge h2 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 32px;
  letter-spacing: -0.6px;
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 44px;
}

.bridge__flow {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.bridge-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.bridge-node__icon {
  width: 96px;
  height: 96px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--card);
  border: 1.6px solid var(--hair);
  border-radius: 24px;
  box-shadow: var(--shadow-sm);
}

.bridge-node__icon--circle {
  border-radius: 50%;
}

.bridge-node__icon--accent {
  width: 108px;
  height: 108px;
  background: var(--accent);
  border: none;
  border-radius: 28px;
  box-shadow: 0 10px 30px rgba(217, 119, 87, 0.4);
}

/* Invert the logo SVG to white on the accent background */
.bridge-logo {
  filter: brightness(0) invert(1);
}

.bridge-node__label {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 18px;
  color: var(--ink);
}

.bridge-node__sub {
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.3px;
  color: var(--ink-muted);
}

.bridge-node__sub--accent {
  color: var(--accent-ink);
}

/* Arrows: horizontal shown on desktop, vertical shown on mobile */
.bridge-arrow--v {
  display: none;
}

.bridge-arrow__dash {
  animation: lig-dash 1.2s linear infinite;
}

.bridge-arrow__pulse {
  animation: lig-pulse 2.2s ease-in-out infinite;
}


/* ============================================================
   8. Features
   ============================================================ */

.features__header {
  padding: 72px max(24px, calc((100% - 1200px) / 2)) 8px;
  text-align: center;
}

.features__header .eyebrow {
  display: block;
  margin-bottom: 14px;
}

.features__header h2 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 38px;
  letter-spacing: -0.7px;
  line-height: 1.1;
  color: var(--ink);
  max-width: 560px;
  margin: 0 auto;
}

.feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  padding: 56px max(24px, calc((100% - 1200px) / 2));
}

/* Flip layout: media left, text right (CSS order, DOM stays text-first for a11y) */
.feature--flip .feature__text {
  order: 2;
}

.feature--flip .feature__media {
  order: 1;
}

.feature__kicker {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.feature__num {
  font-family: var(--serif);
  font-weight: 700;
  font-style: italic;
  font-size: 40px;
  line-height: 1;
  color: var(--accent);
}

.feature h3 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 32px;
  line-height: 1.14;
  letter-spacing: -0.5px;
  color: var(--ink);
}

.feature p {
  max-width: 430px;
  margin-top: 14px;
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.62;
  color: var(--ink-soft);
}

.feature__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.feature__tags li {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--accent-ink);
  background: var(--accent-soft);
  border-radius: 999px;
  padding: 6px 12px;
}

/* Accent-softer wrapper around the demo placeholder or real screenshot */
.feature__media {
  background: var(--accent-softer);
  border-radius: 24px;
  padding: 22px;
}


/* ============================================================
   9. Native & Themes
   ============================================================ */

.native {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  padding: 72px max(24px, calc((100% - 1200px) / 2));
  background: var(--ink);
  color: #FAF8F3;
}

.native__text {
  max-width: 420px;
}

.native__text h2 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 34px;
  letter-spacing: -0.6px;
  line-height: 1.12;
  color: #FAF8F3;
  margin-top: 14px;
}

.native__text p {
  margin-top: 16px;
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  color: rgba(250, 248, 243, 0.72);
}

/* 3×2 grid of theme preview cards */
.themes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

/* Each card: colors set via inline CSS custom properties (--card-bg, --card-ink, --card-dot) */
.theme-card {
  border-radius: 14px;
  background: var(--card-bg);
  padding: 15px 15px 14px;
}

.theme-card__header {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 12px;
}

.theme-card__dot {
  display: block;
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--card-dot);
}

.theme-card__bar {
  display: block;
  width: 26px;
  height: 8px;
  border-radius: 4px;
  background: var(--card-ink);
  opacity: 0.18;
}

.theme-card__line {
  height: 6px;
  border-radius: 3px;
  background: var(--card-ink);
  margin-bottom: 6px;
}

.theme-card__line--strong {
  width: 70%;
  opacity: 0.5;
}

.theme-card__line:not(.theme-card__line--strong) {
  width: 90%;
  opacity: 0.22;
  margin-bottom: 14px;
}

.theme-card__name {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--card-ink);
  opacity: 0.75;
}


/* ============================================================
   10. FAQ
   ============================================================ */

.faq {
  padding: 76px max(24px, calc((100% - 1200px) / 2));
}

.faq__header {
  text-align: center;
  margin-bottom: 36px;
}

.faq__header .eyebrow {
  display: block;
  margin-bottom: 14px;
}

.faq__header h2 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 36px;
  letter-spacing: -0.7px;
  color: var(--ink);
}

.faq__list {
  max-width: 720px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--hair);
}

.faq-item:first-child {
  border-top: 1px solid var(--hair);
}

.faq-item__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 4px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--serif);
  font-weight: 500;
  font-size: 19px;
  letter-spacing: -0.2px;
  color: var(--ink);
}

.faq-item__icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1.5px solid var(--ink-faint);
  color: var(--ink-muted);
  transition: transform 260ms cubic-bezier(.4, 0, .2, 1),
              border-color 260ms,
              color 260ms;
}

/* Open state — icon rotates to ×, turns accent */
.faq-item.is-open .faq-item__icon {
  transform: rotate(45deg);
  border-color: var(--accent);
  color: var(--accent);
}

/* Answer panel: hidden/animated only when JS adds .js-active to #faq-list.
   Without JS, answers remain visible (baseline accessible behavior). */
#faq-list.js-active .faq-item__a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 260ms cubic-bezier(.4, 0, .2, 1);
}

#faq-list.js-active .faq-item.is-open .faq-item__a {
  grid-template-rows: 1fr;
}

.faq-item__a-inner {
  overflow: hidden;
  min-height: 0;
}

.faq-item__a-inner p {
  padding: 0 4px 24px;
  max-width: 640px;
  font-family: var(--sans);
  font-size: 15.5px;
  line-height: 1.62;
  color: var(--ink-soft);
}


/* ============================================================
   11. CTA Final
   ============================================================ */

.cta-final {
  position: relative;
  overflow: hidden;
  padding: 76px max(24px, calc((100% - 1200px) / 2));
  background: var(--accent);
  text-align: center;
}

/* Radial highlight overlay */
.cta-final::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% -20%, rgba(255, 255, 255, 0.18), transparent 55%);
  pointer-events: none;
}

/* All direct children stack above the overlay */
.cta-final > * {
  position: relative;
}

.cta-final__logo {
  margin: 0 auto;
  filter: brightness(0) invert(1);
}

.cta-final__chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--accent);
  background: #fff;
  border-radius: 999px;
  padding: 6px 14px;
}

.cta-final__chip span {
  display: block;
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

.cta-final h2 {
  max-width: 560px;
  margin: 18px auto 0;
  font-family: var(--serif);
  font-weight: 700;
  font-size: 44px;
  letter-spacing: -1px;
  line-height: 1.06;
  color: #fff;
}

.cta-final__sub {
  max-width: 440px;
  margin: 14px auto 0;
  font-family: var(--sans);
  font-size: 16.5px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
}

.cta-final__btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  margin-top: 30px;
  flex-wrap: wrap;
}


/* ============================================================
   12. Footer
   ============================================================ */

.site-footer {
  padding: 56px max(24px, calc((100% - 1200px) / 2)) 40px;
  background: var(--paper-deep);
  border-top: 1px solid var(--hair);
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.7fr 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.site-footer__brand .wordmark {
  font-size: 20px;
}

.site-footer__brand p {
  max-width: 300px;
  margin-top: 16px;
  font-family: var(--sans);
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--ink-muted);
}

.site-footer__heading {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 14px;
}

.site-footer__col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.site-footer__col a {
  font-family: var(--sans);
  font-size: 14px;
  color: var(--ink-soft);
  transition: color 120ms;
}

.site-footer__col a:hover {
  color: var(--accent-ink);
}

.site-footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--hair-soft);
}

.site-footer__bottom > * {
  font-family: var(--sans);
  font-size: 12.5px;
  color: var(--ink-faint);
}

.site-footer__made {
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.3px;
}


/* ============================================================
   13. Animations
   ============================================================ */

@keyframes lig-shimmer {
  0%   { transform: translateX(-100%); }
  100% { transform: translateX(200%); }
}

@keyframes lig-pulse {
  0%, 100% { opacity: 0.35; }
  50%       { opacity: 0.9;  }
}

@keyframes lig-dash {
  to { stroke-dashoffset: -20; }
}


/* ============================================================
   14. Responsive — 760px breakpoint
   ============================================================ */

@media (max-width: 760px) {

  /* Nav */
  .site-nav {
    padding: 18px 22px;
  }

  .nav-links {
    display: none;
  }

  /* Hero */
  .hero {
    grid-template-columns: 1fr;
    padding: 28px 22px 56px;
    text-align: center;
  }

  .hero::before {
    top: -80px;
    right: auto;
    left: 50%;
    transform: translateX(-50%);
    width: 460px;
    height: 460px;
  }

  .hero__text .eyebrow {
    margin-bottom: 20px;
  }

  .hero__text h1 {
    font-size: 38px;
    letter-spacing: -1px;
  }

  .hero__text h1 mark::after {
    height: 8px;
  }

  .hero__sub {
    font-size: 16.5px;
    margin-top: 18px;
    margin-left: auto;
    margin-right: auto;
  }

  .cta-row {
    justify-content: center;
    margin-top: 26px;
  }

  .hero__mock::before {
    display: none;
  }

  .hero-phone {
    width: 220px;
    height: 440px;
    border-radius: 36px;
    margin-top: 40px;
  }

  /* Bridge */
  .bridge {
    padding: 52px 24px;
  }

  .bridge h2 {
    font-size: 26px;
    margin-bottom: 36px;
  }

  .bridge__flow {
    flex-direction: column;
  }

  .bridge-arrow--h {
    display: none;
  }

  .bridge-arrow--v {
    display: block;
  }

  .bridge-node__icon {
    width: 80px;
    height: 80px;
  }

  .bridge-node__icon--accent {
    width: 92px;
    height: 92px;
  }

  /* Features */
  .features__header {
    padding: 52px 24px 4px;
  }

  .features__header h2 {
    font-size: 30px;
  }

  .feature {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 34px 24px;
  }

  /* Reset flip order on mobile — text always comes first */
  .feature--flip .feature__text,
  .feature--flip .feature__media {
    order: unset;
  }

  .feature__num {
    font-size: 34px;
  }

  .feature h3 {
    font-size: 26px;
  }

  .feature p {
    font-size: 15.5px;
  }

  /* Native */
  .native {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 52px 24px;
  }

  .native__text h2 {
    font-size: 28px;
  }

  /* FAQ */
  .faq {
    padding: 52px 24px;
  }

  .faq__header {
    margin-bottom: 28px;
  }

  .faq__header h2 {
    font-size: 30px;
  }

  /* CTA */
  .cta-final {
    padding: 56px 24px;
  }

  .cta-final h2 {
    font-size: 34px;
  }

  /* Footer */
  .site-footer {
    padding: 44px 24px 32px;
  }

  .site-footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px 24px;
  }

  .site-footer__brand {
    grid-column: 1 / -1;
  }

  .site-footer__bottom {
    margin-top: 36px;
  }
}


/* ============================================================
   15. Reduced motion
   ============================================================ */

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

  .demo-placeholder::before {
    animation: none;
  }

  .bridge-arrow__dash,
  .bridge-arrow__pulse {
    animation: none;
  }

  .btn,
  .faq-item__a,
  .faq-item__icon {
    transition: none;
  }
}
