/* ============================================================
   Brasa — marketing site
   Aesthetic: editorial cookbook meets warm ember.
   Fraunces display · refined serif body · ember accent on cream.
   ============================================================ */

@font-face {
  font-family: "Fraunces";
  src: url("assets/Fraunces.ttf") format("truetype");
  font-weight: 100 900;
  font-display: swap;
}

:root {
  /* Palette — pulled from the app (BrasaStyle) */
  --cream:        #F4ECDF;
  --cream-deep:   #EBDFCB;
  --paper:        #FBF6EC;
  --ink:          #2C1810;
  --ink-soft:     #5A4636;
  --ink-faint:    #8C7763;
  --ember:        #C2551F;
  --ember-bright: #E0712E;
  --ember-deep:   #9C3F12;
  --char:         #1A1411;  /* warm near-black for the cook section */
  --char-2:       #241C17;
  --line:         rgba(44, 24, 16, 0.14);

  --serif-display: "Fraunces", "Iowan Old Style", Palatino, "Hoefler Text", Georgia, serif;
  --serif-body:    "Iowan Old Style", "Palatino Linotype", Palatino, "Hoefler Text", Georgia, serif;
  --sans-label:    ui-sans-serif, -apple-system, "SF Pro Text", "Helvetica Neue", sans-serif;

  --maxw: 1180px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

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

body {
  background: var(--cream);
  color: var(--ink);
  font-family: var(--serif-body);
  font-size: clamp(1.02rem, 0.55vw + 0.9rem, 1.18rem);
  line-height: 1.62;
  letter-spacing: 0.003em;
  overflow-x: hidden;
  position: relative;
}

/* Film-grain overlay for warmth + texture */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.04;
  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='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

::selection { background: var(--ember); color: var(--paper); }

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* ---------- Shared type roles ---------- */
.overline {
  font-family: var(--sans-label);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ember-deep);
}
.display {
  font-family: var(--serif-display);
  font-weight: 540;
  line-height: 1.02;
  letter-spacing: -0.018em;
  font-optical-sizing: auto;
}
.lede {
  font-size: clamp(1.18rem, 1vw + 1rem, 1.5rem);
  line-height: 1.5;
  color: var(--ink-soft);
  max-width: 38ch;
}

.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: clamp(1.25rem, 5vw, 3rem); }

/* ---------- Buttons ---------- */
.btn {
  font-family: var(--sans-label);
  font-weight: 600;
  font-size: 0.96rem;
  letter-spacing: 0.01em;
  padding: 0.85em 1.5em;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s;
  will-change: transform;
}
.btn-primary {
  background: var(--ember);
  color: var(--paper);
  box-shadow: 0 8px 24px -8px rgba(194, 85, 31, 0.6);
}
.btn-primary:hover {
  background: var(--ember-bright);
  transform: translateY(-2px);
  box-shadow: 0 14px 34px -8px rgba(194, 85, 31, 0.65);
}
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}
.btn-ghost:hover { border-color: var(--ink); transform: translateY(-2px); }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem clamp(1.25rem, 5vw, 3rem);
  transition: background 0.4s, box-shadow 0.4s, padding 0.4s;
}
.nav[data-scrolled] {
  background: rgba(244, 236, 223, 0.82);
  backdrop-filter: blur(14px) saturate(1.4);
  -webkit-backdrop-filter: blur(14px) saturate(1.4);
  box-shadow: 0 1px 0 var(--line);
  padding-block: 0.6rem;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--serif-display);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.brand img { width: 30px; height: 30px; border-radius: 8px; }
.nav-links {
  display: flex;
  gap: 2rem;
  font-family: var(--sans-label);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.01em;
}
.nav-links a { color: var(--ink-soft); transition: color 0.2s; position: relative; }
.nav-links a:hover { color: var(--ember); }
.nav-cta { display: flex; align-items: center; gap: 1rem; }
@media (max-width: 820px) { .nav-links { display: none; } }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  padding-top: clamp(7rem, 14vh, 11rem);
  padding-bottom: clamp(3rem, 8vh, 6rem);
  overflow: hidden;
}
/* ember glow behind everything */
.hero::before {
  content: "";
  position: absolute;
  top: -20%; right: -10%;
  width: 70vw; height: 70vw;
  max-width: 900px; max-height: 900px;
  background: radial-gradient(circle, rgba(224, 113, 46, 0.30), rgba(224, 113, 46, 0) 62%);
  z-index: 0;
  pointer-events: none;
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.hero h1 {
  font-size: clamp(2.7rem, 6.4vw, 5.2rem);
  margin: 1.1rem 0 1.4rem;
  max-width: 14ch;
}
.hero h1 .em { color: var(--ember); font-style: italic; }
.hero .lede { margin-bottom: 2rem; }
.hero-actions { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }
.hero-note {
  margin-top: 1.4rem;
  font-family: var(--sans-label);
  font-size: 0.82rem;
  color: var(--ink-faint);
  letter-spacing: 0.01em;
}

/* phone in hero */
.hero-phone-stage {
  position: relative;
  display: flex;
  justify-content: center;
}
.hero-phone-stage .phone { transform: rotate(2.5deg); }
.hero-phone-stage .phone:hover { transform: rotate(0deg) translateY(-6px); }

/* ---------- Device frame ---------- */
.phone {
  position: relative;
  width: min(300px, 74vw);
  border-radius: 46px;
  padding: 9px;
  background: linear-gradient(150deg, #2e2620, #14100d);
  box-shadow:
    0 2px 2px rgba(255,255,255,0.18) inset,
    0 50px 90px -30px rgba(40, 22, 12, 0.55),
    0 20px 40px -20px rgba(40, 22, 12, 0.4);
  transition: transform 0.6s var(--ease);
}
.phone img {
  border-radius: 38px;
  width: 100%;
  display: block;
}
.phone--sm { width: min(248px, 66vw); }

@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero h1, .hero .lede { max-width: none; margin-inline: auto; }
  .hero-actions { justify-content: center; }
  .hero-phone-stage { margin-top: 2.5rem; }
}

/* ============================================================
   MANIFESTO
   ============================================================ */
.manifesto {
  padding: clamp(5rem, 12vh, 9rem) 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-top: clamp(2rem, 6vh, 4rem);
}
.manifesto p {
  font-family: var(--serif-display);
  font-weight: 500;
  font-size: clamp(1.8rem, 4.4vw, 3.4rem);
  line-height: 1.16;
  letter-spacing: -0.015em;
  max-width: 22ch;
}
.manifesto .fade { color: var(--ink-faint); }
.manifesto .hot { color: var(--ember); font-style: italic; }
.manifesto .sub {
  font-family: var(--serif-body);
  font-weight: 400;
  font-size: clamp(1.05rem, 1vw + 0.9rem, 1.35rem);
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 52ch;
  margin-top: 2rem;
  letter-spacing: 0;
}

/* ============================================================
   FEATURE SECTIONS
   ============================================================ */
.feature {
  padding: clamp(4.5rem, 11vh, 8rem) 0;
  position: relative;
}
.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 5.5rem);
  align-items: center;
}
.feature--rev .feature-grid { direction: rtl; }
.feature--rev .feature-copy, .feature--rev .feature-art { direction: ltr; }

.feature-num {
  font-family: var(--serif-display);
  font-size: clamp(3.5rem, 7vw, 5.5rem);
  font-weight: 300;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.2px var(--ember);
  opacity: 0.85;
  margin-bottom: 0.8rem;
}
.feature h2 {
  font-size: clamp(2rem, 4.2vw, 3.2rem);
  margin: 0.4rem 0 1.2rem;
  max-width: 16ch;
}
.feature h2 .em { color: var(--ember); font-style: italic; }
.feature-copy p { color: var(--ink-soft); max-width: 46ch; margin-bottom: 1.5rem; }

.tick-list { list-style: none; display: grid; gap: 0.9rem; margin-top: 1.6rem; }
.tick-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.85rem;
  align-items: start;
  font-size: 1.02rem;
  line-height: 1.45;
}
.tick {
  width: 26px; height: 26px;
  flex: none;
  border-radius: 50%;
  background: rgba(194, 85, 31, 0.12);
  color: var(--ember);
  display: grid;
  place-items: center;
  font-family: var(--sans-label);
  font-size: 0.85rem;
  font-weight: 700;
  margin-top: 1px;
}
.tick-list b { font-weight: 600; }

.feature-art { display: flex; justify-content: center; position: relative; }

/* duo phones */
.phone-duo { position: relative; display: flex; justify-content: center; }
.phone-duo .phone:nth-child(2) {
  position: absolute;
  left: 38%;
  top: 9%;
  transform: rotate(6deg) scale(0.9);
  z-index: 1;
}
.phone-duo .phone:nth-child(1) { transform: rotate(-4deg); }
@media (max-width: 720px) {
  .phone-duo .phone:nth-child(2) { position: relative; left: 0; top: 0; transform: rotate(4deg) scale(0.94); margin-top: -3rem; }
  .phone-duo { flex-direction: column; align-items: center; }
}

@media (max-width: 820px) {
  .feature-grid, .feature--rev .feature-grid { grid-template-columns: 1fr; direction: ltr; }
  .feature-art { margin-top: 2.5rem; }
  .feature h2, .feature-copy p { max-width: none; }
}

/* ============================================================
   COOK — dark section
   ============================================================ */
.cook {
  background:
    radial-gradient(120% 80% at 80% 0%, rgba(194, 85, 31, 0.22), transparent 55%),
    var(--char);
  color: var(--cream);
  position: relative;
}
.cook .feature-num { -webkit-text-stroke-color: var(--ember-bright); }
.cook h2 { color: var(--paper); }
.cook .feature-copy p { color: rgba(244, 236, 223, 0.72); }
.cook .overline { color: var(--ember-bright); }
.cook .tick { background: rgba(224, 113, 46, 0.18); color: var(--ember-bright); }
.cook .tick-list li { color: rgba(244, 236, 223, 0.88); }
.cook .phone { box-shadow: 0 50px 100px -30px rgba(0,0,0,0.7), 0 0 0 1px rgba(255,255,255,0.05); }

/* ============================================================
   DIFFERENTIATION
   ============================================================ */
.diff { padding: clamp(4.5rem, 11vh, 8rem) 0; }
.diff-head { max-width: 30ch; margin-bottom: 3.5rem; }
.diff-head h2 { font-size: clamp(2rem, 4.4vw, 3.2rem); margin-top: 0.8rem; }
.diff-head h2 .em { color: var(--ember); font-style: italic; }
.diff-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.4rem;
}
.diff-card {
  padding: 1.8rem 1.6rem 2rem;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: linear-gradient(180deg, var(--paper), transparent);
  transition: transform 0.3s var(--ease), border-color 0.3s, box-shadow 0.3s;
}
.diff-card:hover {
  transform: translateY(-5px);
  border-color: rgba(194, 85, 31, 0.45);
  box-shadow: 0 18px 40px -22px rgba(40, 22, 12, 0.4);
}
.diff-card .ic {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(194, 85, 31, 0.12);
  display: grid; place-items: center;
  margin-bottom: 1.2rem;
  font-size: 1.4rem;
}
.diff-card h3 {
  font-family: var(--serif-display);
  font-size: 1.32rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 0.5rem;
}
.diff-card p { font-size: 0.97rem; color: var(--ink-soft); line-height: 1.5; }
.diff-foot {
  margin-top: 3rem;
  font-family: var(--serif-display);
  font-size: clamp(1.1rem, 1.4vw, 1.4rem);
  color: var(--ink-soft);
  font-style: italic;
}
@media (max-width: 900px) { .diff-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .diff-grid { grid-template-columns: 1fr; } }

/* ============================================================
   PRICING
   ============================================================ */
.pricing { padding: clamp(4.5rem, 11vh, 8rem) 0; }
.pricing-head { text-align: center; max-width: 34ch; margin: 0 auto 3.5rem; }
.pricing-head h2 { font-size: clamp(2rem, 4.4vw, 3.2rem); margin-top: 0.7rem; }
.plans {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 1.6rem;
  max-width: 880px;
  margin-inline: auto;
  align-items: stretch;
}
.plan {
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 2.4rem 2.2rem;
  background: var(--paper);
  display: flex;
  flex-direction: column;
}
.plan--plus {
  background: linear-gradient(165deg, var(--char), var(--char-2));
  color: var(--cream);
  border-color: transparent;
  position: relative;
  box-shadow: 0 30px 70px -30px rgba(40, 22, 12, 0.55);
}
.plan--plus::before {
  content: "Recommended";
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  font-family: var(--sans-label);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--char);
  background: var(--ember-bright);
  padding: 0.35em 0.8em;
  border-radius: 999px;
}
.plan-name {
  font-family: var(--serif-display);
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.plan--plus .plan-name { color: var(--paper); }
.plan-price { margin: 1.1rem 0 0.3rem; display: flex; align-items: baseline; gap: 0.4rem; flex-wrap: wrap; }
.plan-price .amt { font-family: var(--serif-display); font-size: 2.8rem; font-weight: 600; line-height: 1; }
.plan-price .per { font-family: var(--sans-label); font-size: 0.92rem; color: var(--ink-faint); }
.plan--plus .plan-price .per { color: rgba(244,236,223,0.6); }
.plan-sub { font-family: var(--sans-label); font-size: 0.86rem; color: var(--ink-faint); margin-bottom: 1.6rem; }
.plan--plus .plan-sub { color: var(--ember-bright); }
.plan ul { list-style: none; display: grid; gap: 0.75rem; margin: 0.5rem 0 1.8rem; }
.plan li { display: grid; grid-template-columns: auto 1fr; gap: 0.7rem; font-size: 0.98rem; align-items: start; }
.plan li::before { content: "✦"; color: var(--ember); font-size: 0.8rem; margin-top: 0.32em; }
.plan--plus li::before { color: var(--ember-bright); }
.plan .btn { margin-top: auto; justify-content: center; }
.plan--free .btn { background: var(--ink); color: var(--paper); }
.plan--free .btn:hover { background: var(--ember); }
.plan-foot {
  text-align: center;
  margin-top: 2.4rem;
  font-family: var(--sans-label);
  font-size: 0.85rem;
  color: var(--ink-faint);
}
@media (max-width: 720px) { .plans { grid-template-columns: 1fr; } }

/* ============================================================
   FINAL CTA + FOOTER
   ============================================================ */
.final {
  text-align: center;
  padding: clamp(5rem, 13vh, 9rem) 0;
  position: relative;
  overflow: hidden;
}
.final::before {
  content: "";
  position: absolute;
  bottom: -40%; left: 50%;
  transform: translateX(-50%);
  width: 90vw; height: 60vw;
  max-width: 1000px; max-height: 700px;
  background: radial-gradient(circle, rgba(224, 113, 46, 0.28), transparent 60%);
  z-index: 0;
}
.final > * { position: relative; z-index: 1; }
.final h2 { font-size: clamp(2.6rem, 7vw, 5rem); max-width: 16ch; margin: 0.6rem auto 1.8rem; }
.final h2 .em { color: var(--ember); font-style: italic; }
.final .btn { font-size: 1.05rem; padding: 1em 1.9em; }

.footer {
  border-top: 1px solid var(--line);
  padding: 3rem 0 4rem;
  font-family: var(--sans-label);
}
.footer-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.footer .brand { font-size: 1.3rem; }
.footer-links { display: flex; gap: 1.8rem; font-size: 0.9rem; color: var(--ink-soft); flex-wrap: wrap; }
.footer-links a:hover { color: var(--ember); }
.footer-legal { width: 100%; margin-top: 2rem; font-size: 0.8rem; color: var(--ink-faint); }

/* ============================================================
   PLATFORM STRIP (capture-from-anywhere)
   ============================================================ */
.platform-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 1.8rem 0 0.5rem;
}
.platform-chip {
  font-family: var(--sans-label);
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  padding: 0.5em 0.95em;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink-soft);
  display: inline-flex;
  align-items: center;
  gap: 0.45em;
  transition: border-color 0.25s, color 0.25s, transform 0.25s var(--ease);
}
.platform-chip:hover { border-color: var(--ember); color: var(--ink); transform: translateY(-2px); }
.platform-chip .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--ember); }

/* ============================================================
   INTELLIGENCE — AI capability grid
   ============================================================ */
.intel { padding: clamp(4.5rem, 11vh, 8rem) 0; }
.intel-head { max-width: 24ch; margin-bottom: 1rem; }
.intel-head h2 { font-size: clamp(2rem, 4.4vw, 3.3rem); margin: 0.6rem 0 1.1rem; }
.intel-head h2 .em { color: var(--ember); font-style: italic; }
.intel-head .lede { max-width: 50ch; }
.intel-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.3rem;
  margin-top: 3rem;
}
.intel-card {
  padding: 1.7rem 1.5rem 1.8rem;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: linear-gradient(180deg, var(--paper), transparent);
  transition: transform 0.3s var(--ease), border-color 0.3s;
}
.intel-card:hover { transform: translateY(-4px); border-color: rgba(194,85,31,0.4); }
.intel-card .ic {
  width: 40px; height: 40px; border-radius: 11px;
  background: rgba(194,85,31,0.12); color: var(--ember);
  display: grid; place-items: center; font-size: 1.25rem; margin-bottom: 1rem;
}
.intel-card h3 { font-family: var(--serif-display); font-size: 1.22rem; font-weight: 600; letter-spacing: -0.01em; margin-bottom: 0.4rem; }
.intel-card p { font-size: 0.95rem; color: var(--ink-soft); line-height: 1.5; }
.intel-card .tagchip {
  display: inline-block; margin-top: 0.9rem;
  font-family: var(--sans-label); font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--ember-deep); background: rgba(194,85,31,0.1);
  padding: 0.3em 0.7em; border-radius: 999px;
}
@media (max-width: 900px) { .intel-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .intel-grid { grid-template-columns: 1fr; } }

/* ============================================================
   PLACEHOLDER device (swap in a real screenshot)
   ============================================================ */
.phone .shot-ph {
  border-radius: 38px;
  aspect-ratio: 1206 / 2622;
  width: 100%;
  background:
    radial-gradient(120% 60% at 50% 0%, rgba(224,113,46,0.18), transparent 60%),
    linear-gradient(170deg, var(--paper), var(--cream-deep));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  text-align: center;
  padding: 2rem;
}
.cook .phone .shot-ph { background: linear-gradient(170deg, #2a221c, #15110e); }
.shot-ph .ph-ic { font-size: 2.4rem; opacity: 0.5; }
.shot-ph .ph-label { font-family: var(--serif-display); font-size: 1.2rem; font-weight: 600; color: var(--ink-soft); }
.cook .shot-ph .ph-label { color: rgba(244,236,223,0.8); }
.shot-ph .ph-note { font-family: var(--sans-label); font-size: 0.74rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-faint); }

/* ============================================================
   MULTI-DEVICE band
   ============================================================ */
.devices {
  padding: clamp(4.5rem, 11vh, 8rem) 0;
  border-top: 1px solid var(--line);
  text-align: center;
}
.devices-head { max-width: 26ch; margin: 0 auto 1rem; }
.devices h2 { font-size: clamp(2rem, 4.6vw, 3.4rem); margin: 0.6rem 0 1.1rem; }
.devices h2 .em { color: var(--ember); font-style: italic; }
.devices .lede { margin: 0 auto 3rem; max-width: 54ch; }
.device-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
  max-width: 880px;
  margin-inline: auto;
}
.device-col {
  padding: 2rem 1.6rem;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: linear-gradient(180deg, var(--paper), transparent);
}
.device-col .gl { margin-bottom: 1rem; color: var(--ember); }
.device-col .gl svg { width: 36px; height: 36px; stroke-linecap: round; stroke-linejoin: round; }
.device-col h3 { font-family: var(--serif-display); font-size: 1.3rem; font-weight: 600; margin-bottom: 0.4rem; }
.device-col p { font-size: 0.95rem; color: var(--ink-soft); line-height: 1.5; }
.device-sync {
  margin-top: 2.6rem;
  font-family: var(--serif-display);
  font-style: italic;
  font-size: clamp(1.1rem, 1.6vw, 1.45rem);
  color: var(--ink-soft);
}
.device-sync .em { color: var(--ember); font-style: normal; font-weight: 600; }
@media (max-width: 720px) { .device-row { grid-template-columns: 1fr; } }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: 0.08s; }
.reveal[data-delay="2"] { transition-delay: 0.16s; }
.reveal[data-delay="3"] { transition-delay: 0.24s; }
.reveal[data-delay="4"] { transition-delay: 0.32s; }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}
