/* =============================================================
   MAGE ID — shared styles for /features/*.html, /support, /privacy
   Same palette and type as landing.css so every page feels unified.
   Selectors preserved so existing HTML doesn't need to change.
   ============================================================= */

@import url("https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,500;0,9..144,600;0,9..144,700;1,9..144,500;1,9..144,600&family=Inter:wght@400;500;600;700&family=JetBrains+Mono:wght@500&display=swap");

:root {
  --ink: #0B0D10;
  --steel: #14181D;
  --concrete: #2A2F36;
  --edge: #3A4049;
  --fog: #9AA3AD;
  --cream: #F4EFE6;
  --bone: #E8E1D4;
  --off: #FBF8F2;
  --text-dark: #12171C;
  --text-muted: #5C6673;
  --amber: #FF6A1A;
  --amber-hot: #FF8533;
  --amber-soft: rgba(255, 106, 26, 0.16);
  --amber-glow: rgba(255, 106, 26, 0.35);

  --ff-serif: "Fraunces", "Iowan Old Style", Georgia, serif;
  --ff-sans: "Inter", -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", Roboto, system-ui, sans-serif;
  --ff-mono: "JetBrains Mono", "SF Mono", ui-monospace, Menlo, monospace;

  /* Legacy variables kept so any old inline styles keep resolving */
  --brand: var(--amber);
  --brand-light: var(--amber-hot);
  --brand-dark: #fff;
  --accent: var(--amber);
  --info: #4EA7FF;
  --success: #4ED37A;
  --danger: #FF5A51;
  --bg: var(--ink);
  --surface: rgba(255, 255, 255, 0.04);
  --surface-alt: rgba(255, 255, 255, 0.06);
  --text: #fff;
  --muted: var(--fog);
  --border: rgba(255, 255, 255, 0.08);
  --shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.6);
  --shadow-lg: 0 30px 60px -20px rgba(0, 0, 0, 0.8);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--ff-sans);
  background: var(--ink);
  color: var(--cream);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a { color: var(--amber); text-decoration: none; }
a:hover { text-decoration: none; color: var(--amber-hot); }
::selection { background: var(--amber); color: var(--ink); }

.wrap { max-width: 960px; margin: 0 auto; padding: 0 clamp(20px, 4vw, 40px); }
.wrap-wide { max-width: 1200px; margin: 0 auto; padding: 0 clamp(20px, 4vw, 40px); }

/* =============================================================
   NAV (shared with landing)
   ============================================================= */
header.nav {
  padding: 18px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(11, 13, 16, 0.85);
  backdrop-filter: saturate(180%) blur(18px);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  max-width: 1200px; margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 40px);
}
.brand {
  display: inline-flex; align-items: center; gap: 10px;
  font-weight: 700; font-size: 15px;
  letter-spacing: 0.02em;
  color: #fff;
}
.brand-mark {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  object-fit: contain;
  display: inline-block;
  vertical-align: middle;
}
img.brand-mark { max-width: 32px; max-height: 32px; }
footer .brand .brand-mark { width: 28px; height: 28px; max-width: 28px; max-height: 28px; }
nav.links, .links {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: clamp(12px, 2vw, 22px);
  font-size: 13.5px;
}
nav.links a, .links a {
  color: var(--fog);
  font-weight: 500;
  transition: color 0.2s;
  border: none;
  /* Prevent multi-word labels (e.g. "vs. Takeoff Tools", "Post a Project") from
     breaking onto two lines and making the nav look choppy. The compromise on
     narrow desktops is the row may overflow horizontally; the @720px media
     rule below already hides the whole row on phone widths. */
  white-space: nowrap;
}
nav.links a:hover, .links a:hover { color: #fff; }
nav.links a.active, .links a.active { color: var(--amber); }
@media (max-width: 720px) {
  nav.links, .links { display: none; }
}

/* =============================================================
   BUTTONS
   ============================================================= */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 24px;
  border-radius: 999px;
  font-size: 14.5px; font-weight: 600;
  letter-spacing: 0.01em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.15s, box-shadow 0.3s;
  white-space: nowrap;
}
.btn-primary {
  background: var(--amber);
  color: var(--ink);
  box-shadow: 0 10px 30px -10px var(--amber-glow), inset 0 1px 0 rgba(255, 255, 255, 0.25);
}
.btn-primary:hover {
  background: var(--amber-hot);
  transform: translateY(-2px);
  box-shadow: 0 18px 36px -10px var(--amber-glow), inset 0 1px 0 rgba(255, 255, 255, 0.3);
  color: var(--ink);
}
.btn-secondary {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.2);
}
.btn-secondary:hover {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
}

/* =============================================================
   BADGES
   ============================================================= */
.badge {
  display: inline-block;
  font-size: 10.5px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 3px 10px; border-radius: 999px;
  margin-left: 8px; vertical-align: middle;
  font-family: var(--ff-mono);
}
.badge-soon { background: var(--amber-soft); color: var(--amber); border: 1px solid rgba(255, 106, 26, 0.3); }
.badge-new  { background: rgba(78, 211, 122, 0.15); color: #7BE09C; border: 1px solid rgba(78, 211, 122, 0.3); }
.badge-pro  { background: rgba(78, 167, 255, 0.15); color: #8EC0FF; border: 1px solid rgba(78, 167, 255, 0.3); }

/* =============================================================
   LANDING HERO (legacy class kept for backward-compat)
   ============================================================= */
.hero {
  padding: 120px 0 70px;
  text-align: left;
  max-width: 1100px;
  margin: 0 auto;
  padding-left: clamp(20px, 4vw, 40px);
  padding-right: clamp(20px, 4vw, 40px);
}
.hero h1 {
  font-family: var(--ff-serif);
  font-weight: 500;
  font-size: clamp(2.4rem, 6vw, 4.4rem);
  line-height: 1;
  letter-spacing: -0.03em;
  margin: 0 0 24px;
  color: #fff;
  font-variation-settings: "opsz" 144;
}
.hero h1 em {
  font-style: italic;
  font-weight: 600;
  color: var(--amber);
  background: none;
  -webkit-text-fill-color: currentColor;
}
.hero p.lede {
  font-size: clamp(1rem, 1.2vw, 1.15rem);
  color: var(--fog);
  max-width: 620px;
  margin: 0 0 34px;
}

/* =============================================================
   SUB-PAGE HERO
   ============================================================= */
.sub-hero {
  padding: 140px 0 48px;
  text-align: left;
  max-width: 1100px;
  margin: 0 auto;
  padding-left: clamp(20px, 4vw, 40px);
  padding-right: clamp(20px, 4vw, 40px);
  position: relative;
}
.sub-hero::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 500px;
  background:
    radial-gradient(ellipse at 30% 0%, var(--amber-soft) 0%, transparent 60%),
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: auto, 20px 20px, 20px 20px;
  mask-image: linear-gradient(180deg, #000 0%, transparent 100%);
  -webkit-mask-image: linear-gradient(180deg, #000 0%, transparent 100%);
  pointer-events: none;
  z-index: -1;
}
.sub-hero .eyebrow {
  display: inline-block;
  font-family: var(--ff-mono);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--amber);
  background: transparent;
  padding: 0;
  margin-bottom: 24px;
  border-radius: 0;
}
.sub-hero h1 {
  font-family: var(--ff-serif);
  font-weight: 500;
  font-size: clamp(2rem, 5vw, 3.6rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
  margin: 0 0 20px;
  color: #fff;
  font-variation-settings: "opsz" 144;
  max-width: 820px;
}
.sub-hero p {
  font-size: clamp(1rem, 1.2vw, 1.15rem);
  color: var(--fog);
  max-width: 720px;
  margin: 0;
}

/* Hero savings strip — used on /features/financials.html and
   /features/vs-competitors.html. Three big numbers, lockup centered
   under the hero copy. */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 36px;
  max-width: 880px;
}
.hero-stat {
  padding: 22px 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
}
.hero-stat-value {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(2rem, 3.6vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--amber, #FF6A1A);
  line-height: 1;
  margin-bottom: 8px;
}
.hero-stat-label {
  font-size: 0.85rem;
  color: var(--fog);
  line-height: 1.45;
}
@media (max-width: 720px) {
  .hero-stats { grid-template-columns: 1fr; gap: 12px; }
  .hero-stat { padding: 16px; }
}

/* =============================================================
   SECTIONS
   ============================================================= */
.section {
  padding: clamp(60px, 10vh, 100px) 0;
}
.section-alt {
  padding: clamp(60px, 10vh, 100px) 0;
  background: var(--cream);
  color: var(--text-dark);
  position: relative;
}
.section-alt a { color: var(--amber); }
.section-alt .eyebrow,
.section-alt .section-title,
.section-alt .section-heading {
  color: var(--amber);
}

.section-title {
  font-family: var(--ff-mono);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--amber);
  margin: 0 0 12px;
}
.section-heading {
  font-family: var(--ff-serif);
  font-weight: 500;
  font-size: clamp(1.7rem, 4vw, 2.8rem);
  line-height: 1.06;
  letter-spacing: -0.028em;
  margin: 0 0 14px;
  color: inherit;
}
.section-sub {
  color: var(--fog);
  font-size: clamp(0.98rem, 1.2vw, 1.1rem);
  max-width: 640px;
  margin: 0 0 36px;
}
.section-alt .section-sub { color: var(--text-muted); }

/* =============================================================
   FEATURE ROW (alternating text + mockup)
   ============================================================= */
.feature-row {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
}
.feature-row.reverse {
  grid-template-columns: 1fr 1.05fr;
  direction: rtl;
}
.feature-row.reverse > * { direction: ltr; }

@media (max-width: 860px) {
  .feature-row, .feature-row.reverse {
    grid-template-columns: 1fr;
    direction: ltr;
  }
}

.feature-row h2 {
  font-family: var(--ff-serif);
  font-weight: 500;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 8px 0 14px;
  color: inherit;
}
.feature-row p {
  color: var(--fog);
  font-size: 15.5px;
  line-height: 1.6;
  margin: 0 0 22px;
  max-width: 520px;
}
.section-alt .feature-row p { color: var(--text-muted); }

.feature-row ul {
  list-style: none;
  margin: 0; padding: 0;
  display: flex; flex-direction: column; gap: 10px;
  max-width: 520px;
}
.feature-row ul li {
  position: relative;
  padding-left: 24px;
  font-size: 14.5px;
  color: var(--fog);
  line-height: 1.5;
}
.section-alt .feature-row ul li { color: var(--text-muted); }
.feature-row ul li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.65em;
  width: 14px; height: 2px;
  background: var(--amber);
  border-radius: 2px;
}

/* =============================================================
   PHONE SCREENSHOT PLACEHOLDER
   (used on all feature pages: <div class="screenshot phone" data-label="..."></div>)
   ============================================================= */
.screenshot.phone {
  position: relative;
  width: min(340px, 100%);
  margin: 0 auto;
  aspect-ratio: 340 / 690;
  border-radius: 44px;
  background: linear-gradient(135deg, #222 0%, #0a0a0a 100%);
  padding: 8px;
  /* Safety net: clip oversized children to the phone shape. Without this
     a raw <img> rendering at its natural 1290×2796 px would burst out of
     the phone frame and break the page layout — happened on the first
     deploy of the screenshot wiring when browser-cached old CSS was missing
     the .screenshot.phone > img rule. */
  overflow: hidden;
  box-shadow:
    0 0 0 1.5px rgba(255, 255, 255, 0.08),
    0 40px 80px -20px rgba(0, 0, 0, 0.7),
    0 20px 40px -10px var(--amber-soft);
}
.section-alt .screenshot.phone {
  box-shadow:
    0 0 0 1.5px rgba(0, 0, 0, 0.1),
    0 40px 80px -20px rgba(0, 0, 0, 0.25),
    0 20px 40px -10px var(--amber-soft);
}
.screenshot.phone::before {
  content: "";
  position: absolute;
  top: 18px; left: 50%;
  transform: translateX(-50%);
  width: 96px; height: 28px;
  background: #000;
  border-radius: 999px;
  z-index: 2;
}
/* When the phone slot has a real screenshot dropped in, the <img> covers
   the placeholder background and the data-label text. The ::after rule
   below stays as a fallback for slots that don't have an image yet. */
.screenshot.phone > img {
  position: absolute;
  inset: 8px;
  width: calc(100% - 16px);
  height: calc(100% - 16px);
  object-fit: cover;
  object-position: top;
  border-radius: 36px;
  display: block;
  z-index: 1;
  background: #fff;
}
.screenshot.phone:has(img)::after { display: none; }
.screenshot.phone::after {
  content: attr(data-label);
  position: absolute;
  inset: 8px;
  border-radius: 36px;
  background:
    radial-gradient(circle at 50% 18%, rgba(255, 106, 26, 0.18) 0%, transparent 50%),
    linear-gradient(180deg, #14181D 0%, #0B0D10 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 28px;
  color: var(--fog);
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1.6;
}

/* =============================================================
   FEATURE LIST (icon + title + body grid)
   ============================================================= */
.feature-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 4px;
  margin-top: 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 18px;
  overflow: hidden;
}
.section-alt .feature-list {
  background: rgba(0, 0, 0, 0.05);
  border-color: rgba(0, 0, 0, 0.08);
}
.feature-list-item {
  display: flex; gap: 16px;
  padding: 24px;
  background: var(--ink);
  transition: background 0.3s;
}
.feature-list-item:hover { background: #10141A; }
.section-alt .feature-list-item { background: var(--cream); }
.section-alt .feature-list-item:hover { background: var(--bone); }

.fli-icon {
  font-size: 22px;
  width: 42px; height: 42px; flex-shrink: 0;
  border-radius: 10px;
  background: var(--amber-soft);
  display: flex; align-items: center; justify-content: center;
  filter: saturate(0.9);
}
.feature-list-item h4 {
  margin: 0 0 4px;
  font-family: var(--ff-serif);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: #fff;
}
.section-alt .feature-list-item h4 { color: var(--text-dark); }
.feature-list-item p {
  margin: 0;
  font-size: 14px;
  color: var(--fog);
  line-height: 1.5;
}
.section-alt .feature-list-item p { color: var(--text-muted); }

/* =============================================================
   LEGACY GRID + CARD (from old index — harmless to keep)
   ============================================================= */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}
.card {
  padding: 24px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 0.3s, border-color 0.3s, background 0.3s;
}
.card:hover {
  transform: translateY(-3px);
  border-color: var(--amber-soft);
  background: rgba(255, 255, 255, 0.06);
}
.card .emoji {
  font-size: 22px;
  width: 42px; height: 42px;
  border-radius: 10px;
  background: var(--amber-soft);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 12px;
}
.card h3 {
  font-family: var(--ff-serif);
  font-weight: 600;
  font-size: 18px;
  letter-spacing: -0.01em;
  margin: 0 0 6px;
  color: #fff;
}
.card p {
  margin: 0 0 12px;
  font-size: 14px;
  color: var(--fog);
  line-height: 1.5;
}
.card .arrow {
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
}
.card .arrow:hover { border-color: var(--amber); }

.stat-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  overflow: hidden;
  margin: 20px 0;
}
.stat {
  padding: 28px 20px;
  background: var(--ink);
  text-align: left;
}
.stat-val {
  font-family: var(--ff-serif);
  font-weight: 600;
  font-size: clamp(2.2rem, 4vw, 2.8rem);
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--amber);
  margin-bottom: 6px;
}
.stat-label { font-size: 12.5px; color: var(--fog); line-height: 1.4; }

.video-slot {
  position: relative;
  aspect-ratio: 16/9;
  border-radius: 20px;
  background:
    radial-gradient(circle at 50% 40%, var(--amber-soft) 0%, transparent 60%),
    linear-gradient(180deg, var(--steel) 0%, var(--ink) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  overflow: hidden;
}
.play-btn {
  width: 72px; height: 72px; border-radius: 50%;
  background: var(--amber);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 0 12px rgba(255, 106, 26, 0.12), 0 20px 60px -10px var(--amber-glow);
}
.play-btn::before {
  content: "";
  width: 0; height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 16px solid var(--ink);
  margin-left: 4px;
}
.video-label {
  position: absolute; bottom: 20px; left: 50%;
  transform: translateX(-50%);
  font-family: var(--ff-mono); font-size: 11px;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--fog);
}

/* =============================================================
   CTA BAND
   ============================================================= */
.cta-band {
  margin: clamp(60px, 10vh, 100px) 0 40px;
  padding: clamp(48px, 8vh, 72px) clamp(28px, 5vw, 64px);
  border-radius: 24px;
  background:
    radial-gradient(ellipse at 50% 0%, var(--amber-soft) 0%, transparent 70%),
    linear-gradient(180deg, var(--steel) 0%, var(--ink) 100%);
  border: 1px solid rgba(255, 106, 26, 0.2);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 106, 26, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 106, 26, 0.05) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse at 50% 50%, #000 10%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 50%, #000 10%, transparent 70%);
  pointer-events: none;
}
.cta-band > * { position: relative; }
.cta-band h2 {
  font-family: var(--ff-serif);
  font-weight: 500;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  line-height: 1.05;
  letter-spacing: -0.028em;
  margin: 0 0 12px;
  color: #fff;
}
.cta-band h2 em {
  font-style: italic; font-weight: 600; color: var(--amber);
}
.cta-band p {
  color: var(--fog);
  font-size: 15px;
  max-width: 560px;
  margin: 0 auto 26px;
}

/* =============================================================
   FOOTER
   ============================================================= */
footer {
  background: var(--ink);
  padding: 60px 0 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--fog);
  font-size: 14px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 32px;
}
@media (max-width: 720px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
footer h4 {
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--amber);
  margin: 0 0 14px;
  font-weight: 600;
}
footer ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 8px; }
footer ul a {
  color: var(--fog);
  font-size: 14px;
  transition: color 0.2s;
}
footer ul a:hover { color: #fff; }
.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-family: var(--ff-mono);
  font-size: 12px;
  color: var(--fog);
  letter-spacing: 0.04em;
}
footer .brand {
  color: #fff;
  margin-bottom: 10px;
}
footer p {
  color: var(--fog);
  font-size: 14px;
  line-height: 1.5;
}

/* =============================================================
   SUPPORT + PRIVACY PAGES (light content, long text)
   ============================================================= */
main > .wrap > h1,
main > .wrap > h2,
main > .wrap > h3 {
  font-family: var(--ff-serif);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #fff;
}
main > .wrap > h2 { font-size: 1.6rem; margin-top: 2em; }
main > .wrap > h3 { font-size: 1.25rem; color: var(--amber); margin-top: 1.6em; }
main > .wrap > p,
main > .wrap > ul li {
  color: var(--fog);
  font-size: 15px;
  line-height: 1.65;
}
main > .wrap > a { color: var(--amber); }
main > .wrap > a:hover { color: var(--amber-hot); }

main > .wrap {
  padding-top: 120px;
  padding-bottom: 80px;
}
main > .wrap > h1 {
  font-family: var(--ff-serif);
  font-weight: 500;
  font-size: clamp(2rem, 4.5vw, 3rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin: 0 0 24px;
}

/* =============================================================
   PHONE MOCKUP — reusable iPhone-frame for screenshots
   Use to embed a real app screenshot in marketing copy. Three sizes:
     .phone-mock           default — about 320px wide, fits a feature row
     .phone-mock.is-small  ~240px, for grid/card layouts
     .phone-mock.is-large  ~420px, hero blocks
   Pair patterns:
     .feature-pair         text on one side, phone on the other (50/50)
     .feature-pair.is-flip text on right, phone on left
     .phone-row            three phones side-by-side, slightly fanned
   ============================================================= */
.phone-mock {
  position: relative;
  width: 320px;
  aspect-ratio: 9 / 19.5;
  border-radius: 44px;
  background: #0a0a0a;
  padding: 9px;
  box-sizing: border-box;
  flex-shrink: 0;
  box-shadow:
    0 60px 90px -30px rgba(0, 0, 0, 0.55),
    0 24px 40px -12px rgba(0, 0, 0, 0.35),
    inset 0 0 0 1.5px rgba(255, 255, 255, 0.06);
}
.phone-mock.is-small { width: 240px; border-radius: 34px; padding: 7px; }
.phone-mock.is-large { width: 420px; border-radius: 56px; padding: 11px; }
.phone-mock-screen {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 36px;
  overflow: hidden;
  background: #fff;
}
.phone-mock.is-small .phone-mock-screen { border-radius: 28px; }
.phone-mock.is-large .phone-mock-screen { border-radius: 46px; }
.phone-mock-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
}
/* Dynamic Island silhouette — sits above the screenshot so the screen reads
   as the device's actual viewport rather than just a bordered image. */
.phone-mock-screen::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 32%;
  height: 18px;
  background: #000;
  border-radius: 9999px;
  z-index: 2;
}
.phone-mock.is-small .phone-mock-screen::before { height: 14px; top: 6px; }
.phone-mock.is-large .phone-mock-screen::before { height: 22px; top: 10px; }

/* feature-pair — phone+text 50/50 layout for feature sections */
.feature-pair {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  margin: 56px auto;
  max-width: 1100px;
}
.feature-pair.is-flip {
  grid-template-columns: auto minmax(0, 1fr);
}
.feature-pair.is-flip > .phone-mock { order: -1; }
.feature-pair-text h2 {
  font-family: var(--ff-serif);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0 0 14px;
  color: #F4EFE6;
}
.feature-pair-text h2 em {
  font-style: italic;
  color: var(--amber);
}
.feature-pair-text .eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 10px;
}
.feature-pair-text p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--fog);
  margin: 0 0 12px;
  max-width: 480px;
}
.feature-pair-text ul {
  list-style: none;
  padding: 0;
  margin: 12px 0 0;
  display: grid;
  gap: 6px;
}
.feature-pair-text ul li {
  font-size: 13.5px;
  color: var(--fog);
  padding-left: 22px;
  position: relative;
}
.feature-pair-text ul li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--amber);
  font-weight: 700;
}
@media (max-width: 820px) {
  .feature-pair,
  .feature-pair.is-flip {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .feature-pair > .phone-mock { margin: 0 auto; order: 1; }
  .feature-pair.is-flip > .phone-mock { order: 1; }
  .feature-pair-text p { margin-left: auto; margin-right: auto; }
}

/* phone-row — three fanned phones for landing-style hero composition */
.phone-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  margin: 48px auto;
  max-width: 1100px;
}
.phone-row > .phone-mock {
  margin: 0 -34px;
  transition: transform 0.3s cubic-bezier(0.2, 0.7, 0.3, 1);
}
.phone-row > .phone-mock:nth-child(1) { transform: rotate(-6deg) translateY(20px); }
.phone-row > .phone-mock:nth-child(2) { transform: rotate(0) translateY(-10px); z-index: 2; }
.phone-row > .phone-mock:nth-child(3) { transform: rotate(6deg) translateY(20px); }
.phone-row > .phone-mock:hover { transform: rotate(0) translateY(-20px); z-index: 3; }
@media (max-width: 720px) {
  .phone-row > .phone-mock {
    margin: 0;
    transform: none !important;
  }
  .phone-row {
    flex-direction: column;
    gap: 24px;
  }
}

/* =============================================================
   REDUCED MOTION
   ============================================================= */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
