/* =========================================================================
   idori — warm Japandi editorial landing
   Palette: clay #C08457 · sand #F2EBE1 · paper #FAF6F1 · ink #1F1B16
   ========================================================================= */

:root {
  --paper: #faf6f1;
  --sand: #f2ebe1;
  --sand-deep: #e9dfd1;
  --ink: #1f1b16;
  --ink-soft: #3a332b;
  --muted: #7a6e63;
  --clay: #c08457;
  --clay-deep: #a86a42;
  --line: rgba(44, 33, 25, 0.10);
  --line-strong: rgba(44, 33, 25, 0.18);
  --shadow-sm: 0 1px 2px rgba(31, 27, 22, 0.04), 0 4px 16px rgba(31, 27, 22, 0.05);
  --shadow-md: 0 8px 30px rgba(31, 27, 22, 0.10);
  --shadow-lg: 0 24px 60px rgba(31, 27, 22, 0.14);
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 32px;
  --serif: "Fraunces", "Iowan Old Style", Georgia, "Times New Roman", serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --maxw: 1180px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

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

body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

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

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

/* ---------- Layout helpers ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

.eyebrow {
  font-size: 0.74rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--clay-deep);
  margin-bottom: 1rem;
}

h1, h2, h3 { font-family: var(--serif); font-weight: 400; line-height: 1.08; letter-spacing: -0.01em; color: var(--ink); }

.display {
  font-size: clamp(2.7rem, 7vw, 5.1rem);
  line-height: 1.02;
  letter-spacing: -0.025em;
}
.display em { font-style: italic; color: var(--clay-deep); }

.section-title { font-size: clamp(2rem, 4.5vw, 3.2rem); letter-spacing: -0.02em; }

.lead { font-size: clamp(1.05rem, 1.6vw, 1.3rem); color: var(--ink-soft); line-height: 1.55; }

section { position: relative; }
.section-pad { padding: clamp(72px, 11vw, 150px) 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 0.55rem;
  font-family: var(--sans); font-weight: 600; font-size: 0.98rem;
  padding: 0.92rem 1.5rem; border-radius: 999px;
  border: 1px solid transparent; cursor: pointer;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease), box-shadow 0.25s var(--ease), color 0.25s var(--ease);
  white-space: nowrap;
}
.btn-primary { background: var(--ink); color: var(--paper); box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--clay-deep); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line-strong); }
.btn-ghost:hover { border-color: var(--ink); transform: translateY(-2px); }
.btn svg { width: 18px; height: 18px; }

/* App Store badge */
.store-badge { display: inline-flex; line-height: 0; border-radius: 11px; transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease); }
.store-badge img { height: 54px; width: auto; }
.store-badge:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }

/* ---------- Header ---------- */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 1.1rem 0;
  background: rgba(250, 246, 241, 0.72);
  backdrop-filter: blur(20px) saturate(1.5);
  -webkit-backdrop-filter: blur(20px) saturate(1.5);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, background 0.3s, padding 0.3s;
}
.header.scrolled { border-bottom-color: var(--line); padding: 0.75rem 0; }
.header-inner { display: flex; align-items: center; justify-content: space-between; }

.brand { display: flex; align-items: center; gap: 0.6rem; font-weight: 700; }
.brand img { width: 34px; height: 34px; border-radius: 9px; box-shadow: var(--shadow-sm); }
.brand .wordmark { font-family: var(--serif); font-size: 1.45rem; letter-spacing: -0.02em; font-weight: 500; }

.nav { display: flex; align-items: center; gap: 2.2rem; }
.nav-links { display: flex; gap: 1.9rem; }
.nav-links a {
  font-size: 0.92rem; color: var(--ink-soft); font-weight: 500;
  position: relative; transition: color 0.2s;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: -4px; height: 1.5px; width: 0;
  background: var(--clay-deep); transition: width 0.25s var(--ease);
}
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after { width: 100%; }

.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 6px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--ink); margin: 5px 0; transition: transform 0.3s, opacity 0.3s; }

/* ---------- Hero ---------- */
.hero { padding: clamp(120px, 17vw, 190px) 0 clamp(60px, 8vw, 100px); position: relative; }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(60% 50% at 78% 18%, rgba(192, 132, 87, 0.16), transparent 70%),
    radial-gradient(50% 45% at 10% 75%, rgba(192, 132, 87, 0.10), transparent 70%);
}
.hero-grid {
  display: grid; grid-template-columns: 1.02fr 1fr; gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
.hero-copy { max-width: 560px; }
.hero h1 { margin-bottom: 1.4rem; }
.hero .lead { margin-bottom: 2rem; max-width: 480px; }
.hero-cta { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }
.hero-note { margin-top: 1.4rem; font-size: 0.88rem; color: var(--muted); display: flex; align-items: center; gap: 0.5rem; }
.hero-note svg { width: 16px; height: 16px; color: var(--clay-deep); }

/* ---------- Before / After slider ---------- */
.ba {
  position: relative; width: 100%; aspect-ratio: 16 / 11; border-radius: var(--r-lg);
  overflow: hidden; box-shadow: var(--shadow-lg); user-select: none;
  border: 1px solid var(--line); cursor: ew-resize; background: var(--sand-deep);
}
.ba img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; pointer-events: none; }
.ba-after { clip-path: inset(0 0 0 var(--pos, 50%)); }
.ba-handle {
  position: absolute; top: 0; bottom: 0; left: var(--pos, 50%); width: 2px;
  background: var(--paper); transform: translateX(-1px); box-shadow: 0 0 0 1px rgba(0,0,0,.06);
}
.ba-knob {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 46px; height: 46px; border-radius: 50%; background: var(--paper);
  box-shadow: var(--shadow-md); display: grid; place-items: center; color: var(--ink);
}
.ba-knob svg { width: 22px; height: 22px; }
.ba-tag {
  position: absolute; bottom: 14px; padding: 0.35rem 0.8rem; border-radius: 999px;
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  background: rgba(31, 27, 22, 0.62); color: var(--paper); backdrop-filter: blur(6px);
}
.ba-tag.before { left: 14px; }
.ba-tag.after { right: 14px; }

/* ---------- Section header ---------- */
.sec-head { max-width: 660px; margin-bottom: clamp(40px, 6vw, 72px); }
.sec-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.sec-head .lead { margin-top: 1.1rem; }

/* ---------- Steps (how it works) ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.step {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-md);
  padding: 1.8rem 1.5rem; box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.step:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.step-num {
  font-family: var(--serif); font-size: 1.05rem; width: 38px; height: 38px;
  display: grid; place-items: center; border-radius: 50%;
  background: var(--sand); color: var(--clay-deep); margin-bottom: 1.1rem; font-weight: 500;
}
.step h3 { font-size: 1.3rem; margin-bottom: 0.5rem; }
.step p { font-size: 0.96rem; color: var(--muted); }

/* ---------- Feature rows (editorial alternating) ---------- */
.feature { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 6vw, 88px); align-items: center; }
.feature + .feature { margin-top: clamp(72px, 11vw, 140px); }
.feature.flip .feature-media, .feature.flip .feature-visual { order: 2; }
.feature-tag {
  display: inline-flex; align-items: center; gap: 0.4rem; font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--clay-deep);
  background: rgba(192, 132, 87, 0.12); padding: 0.3rem 0.7rem; border-radius: 999px; margin-bottom: 1.1rem;
}
.feature h2 { font-size: clamp(1.8rem, 3.2vw, 2.7rem); margin-bottom: 1rem; }
.feature p { color: var(--ink-soft); font-size: 1.05rem; margin-bottom: 1.2rem; }
.feature-list { list-style: none; display: grid; gap: 0.7rem; }
.feature-list li { display: flex; gap: 0.7rem; align-items: flex-start; font-size: 1rem; color: var(--ink-soft); }
.feature-list svg { width: 20px; height: 20px; color: var(--clay-deep); flex-shrink: 0; margin-top: 2px; }

.feature-media { position: relative; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-lg); border: 1px solid var(--line); }
.feature-media img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.feature-media.ratio-3-2 img { aspect-ratio: 3 / 2; }
.feature-media.ratio-spot img { aspect-ratio: 928 / 875; }
/* Spot edit markers overlay — mirrors the in-app SpotCanvas treatment */
.pins { position: absolute; inset: 0; pointer-events: none; }
.spot { position: absolute; transform: translate(-50%, -50%); }

/* Text spot: 38px clay circle, white border, @N label */
.spot .pin {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--clay); color: #fff; display: grid; place-items: center;
  font-size: 0.92rem; font-weight: 700; font-family: var(--sans);
  border: 2px solid #fff; box-shadow: 0 6px 18px rgba(31, 27, 22, 0.32);
}

/* Reference spot: 54px image circle, dark border, @N token badge */
.spot .pin-ref {
  position: relative; display: block; width: 54px; height: 54px; border-radius: 50%;
  border: 2.5px solid var(--clay); background: var(--sand-deep);
  box-shadow: 0 8px 22px rgba(31, 27, 22, 0.38); overflow: visible;
}
.spot .pin-ref img { width: 100%; height: 100%; border-radius: 50%; object-fit: cover; }
.spot .pin-token {
  position: absolute; right: -6px; bottom: -6px; padding: 2px 7px; border-radius: 999px;
  background: var(--clay); color: #fff; border: 1.5px solid #fff;
  font-size: 0.62rem; font-weight: 800; letter-spacing: 0.02em; font-family: var(--sans);
  box-shadow: 0 2px 8px rgba(31, 27, 22, 0.3);
}

/* Instruction caption below a spot (kept clear of the image edges) */
.spot-label {
  position: absolute; left: 50%; top: calc(100% + 9px); transform: translateX(-50%);
  white-space: nowrap; font-size: 0.74rem; font-weight: 600; color: var(--ink);
  background: rgba(250, 246, 241, 0.95); backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 0.36rem 0.68rem; border-radius: 999px; border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.spot-label::before {
  content: ""; position: absolute; left: 50%; bottom: 100%; transform: translateX(-50%);
  border: 5px solid transparent; border-bottom-color: rgba(250, 246, 241, 0.95);
}

/* Ideas — AI-suggested directions, listed below the user's space */
.feature-visual { display: flex; flex-direction: column; gap: 16px; }
.ideas-list { display: flex; flex-direction: column; gap: 9px; }
.ideas-head {
  display: inline-flex; align-items: center; gap: 0.4rem; align-self: flex-start;
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--clay-deep); background: rgba(192, 132, 87, 0.12); padding: 0.34rem 0.7rem; border-radius: 999px;
}
.ideas-head svg { width: 14px; height: 14px; color: var(--clay-deep); }
.idea-card {
  display: flex; align-items: center; justify-content: space-between; gap: 0.8rem;
  background: var(--paper); border: 1px solid var(--line); border-radius: 14px;
  padding: 0.72rem 0.95rem; box-shadow: var(--shadow-sm); transition: transform 0.3s var(--ease);
}
.idea-card:hover { transform: translateX(3px); }
.idea-card.selected { border-color: var(--clay); box-shadow: 0 0 0 1.5px var(--clay), var(--shadow-sm); }
.idea-text { display: flex; flex-direction: column; min-width: 0; }
.idea-title { font-family: var(--serif); font-size: 1.08rem; line-height: 1.12; color: var(--ink); }
.idea-desc { font-size: 0.83rem; color: var(--muted); margin-top: 1px; }
.idea-go {
  flex-shrink: 0; width: 28px; height: 28px; border-radius: 50%; display: grid; place-items: center;
  background: var(--clay); color: #fff;
}
.idea-go svg { width: 14px; height: 14px; }
.idea-card:not(.selected) .idea-go { background: var(--sand-deep); color: var(--ink-soft); }

/* ---------- Styles section (alt bg) ---------- */
.alt { background: var(--sand); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.style-grid {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 1rem;
}
.style-card {
  position: relative; border-radius: var(--r-md); overflow: hidden; aspect-ratio: 3 / 4;
  box-shadow: var(--shadow-sm); border: 1px solid var(--line);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.style-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.style-card span {
  position: absolute; left: 10px; bottom: 10px; right: 10px; color: var(--paper);
  font-size: 0.82rem; font-weight: 600; letter-spacing: 0.01em; line-height: 1.2;
  text-shadow: 0 1px 6px rgba(0,0,0,.5); z-index: 2;
}
.style-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(transparent 45%, rgba(0,0,0,.55)); z-index: 1; }
.style-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.style-card:hover img { transform: scale(1.06); }

/* ---------- Showcase gallery ---------- */
.showcase { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
@media (min-width: 700px) { .showcase .ba { aspect-ratio: 4 / 5; } }

/* ---------- Access / pricing ---------- */
.plans { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; max-width: 880px; margin: 0 auto; }
.plan {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 2.2rem; box-shadow: var(--shadow-sm); position: relative;
}
.plan.pro { background: var(--ink); color: var(--paper); border-color: var(--ink); box-shadow: var(--shadow-lg); }
.plan.pro .plan-name, .plan.pro h3 { color: var(--paper); }
.plan-name { font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 700; color: var(--clay-deep); }
.plan.pro .plan-name { color: var(--clay); }
.plan h3 { font-size: 2rem; margin: 0.5rem 0 0.3rem; }
.plan .plan-sub { font-size: 0.95rem; color: var(--muted); margin-bottom: 1.6rem; }
.plan.pro .plan-sub { color: rgba(250,246,241,.6); }
.plan ul { list-style: none; display: grid; gap: 0.8rem; margin-bottom: 1.8rem; }
.plan li { display: flex; gap: 0.65rem; align-items: flex-start; font-size: 0.98rem; }
.plan li svg { width: 19px; height: 19px; flex-shrink: 0; margin-top: 3px; color: var(--clay-deep); }
.plan.pro li svg { color: var(--clay); }
.plan .btn { width: 100%; justify-content: center; }
.plan.pro .btn-primary { background: var(--clay); color: var(--ink); }
.plan.pro .btn-primary:hover { background: var(--paper); }
.plan-badge {
  position: absolute; top: -12px; right: 22px; background: var(--clay); color: var(--ink);
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 0.3rem 0.75rem; border-radius: 999px;
}
.plans-note { text-align: center; color: var(--muted); font-size: 0.86rem; margin-top: 1.6rem; }

/* ---------- FAQ ---------- */
.faq { max-width: 760px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%; background: none; border: 0; cursor: pointer; text-align: left;
  display: flex; justify-content: space-between; align-items: center; gap: 1.5rem;
  padding: 1.5rem 0; font-family: var(--serif); font-size: 1.22rem; color: var(--ink);
}
.faq-icon { flex-shrink: 0; width: 24px; height: 24px; position: relative; transition: transform 0.3s var(--ease); }
.faq-icon::before, .faq-icon::after { content: ""; position: absolute; background: var(--clay-deep); border-radius: 2px; }
.faq-icon::before { top: 11px; left: 4px; right: 4px; height: 2px; }
.faq-icon::after { left: 11px; top: 4px; bottom: 4px; width: 2px; transition: transform 0.3s var(--ease); }
.faq-item.open .faq-icon::after { transform: scaleY(0); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease); }
.faq-a p { padding: 0 0 1.5rem; color: var(--ink-soft); font-size: 1rem; }

/* ---------- Final CTA ---------- */
.cta-final { text-align: center; }
.cta-card {
  background: var(--ink); color: var(--paper); border-radius: var(--r-xl);
  padding: clamp(48px, 8vw, 96px) 24px; position: relative; overflow: hidden;
}
.cta-card::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(50% 80% at 50% 0%, rgba(192,132,87,.35), transparent 70%);
}
.cta-card > * { position: relative; }
.cta-card h2 { color: var(--paper); font-size: clamp(2.1rem, 5vw, 3.6rem); margin-bottom: 1rem; }
.cta-card .lead { color: rgba(250,246,241,.72); max-width: 540px; margin: 0 auto 2rem; }
.cta-card .btn-primary { background: var(--clay); color: var(--ink); }
.cta-card .btn-primary:hover { background: var(--paper); }

/* ---------- Footer ---------- */
.footer { border-top: 1px solid var(--line); padding: clamp(48px, 7vw, 80px) 0 40px; background: var(--sand); }
.footer-top { display: flex; justify-content: space-between; gap: 2rem; flex-wrap: wrap; margin-bottom: 3rem; }
.footer-brand { max-width: 300px; }
.footer-brand .brand { margin-bottom: 1rem; }
.footer-brand p { color: var(--muted); font-size: 0.92rem; }
.footer-cols { display: flex; gap: clamp(2.5rem, 6vw, 5rem); flex-wrap: wrap; }
.footer-col h4 { font-family: var(--sans); font-size: 0.76rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink); margin-bottom: 1rem; font-weight: 700; }
.footer-col a { display: block; color: var(--muted); font-size: 0.94rem; margin-bottom: 0.65rem; transition: color 0.2s; }
.footer-col a:hover { color: var(--clay-deep); }
.footer-bottom { border-top: 1px solid var(--line); padding-top: 1.6rem; display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; font-size: 0.85rem; color: var(--muted); }

/* ---------- Positional / contextual helpers (no inline styles, CSP-safe) ---------- */
.section-pad.pt0 { padding-top: 0; }
.feature-media.bare { box-shadow: none; border: 0; overflow: visible; }
.ba.ratio-43 { aspect-ratio: 4 / 3; }
.spot-pendant { left: 50%; top: 16%; }
.spot-painting { left: 50%; top: 53%; }
.cta-card .eyebrow { color: var(--clay); }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .style-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 860px) {
  .nav-links { display: none; }
  /* Keep the Get-app CTA visible in the bar, grouped beside the hamburger */
  .nav { margin-left: auto; }
  .nav .btn { display: inline-flex; padding: 0.62rem 1.1rem; font-size: 0.9rem; color: #fff; }
  .nav .btn svg { width: 16px; height: 16px; }
  .nav-toggle { display: block; margin-left: 0.55rem; }
  .hero-grid { grid-template-columns: 1fr; }
  /* Mobile: lead with copy + CTA, then the visual */
  .hero-copy { order: -1; }
  .hero-media { max-width: 540px; margin: 1.2rem auto 0; width: 100%; }
  .feature, .feature.flip { grid-template-columns: 1fr; }
  .feature-text { order: -1; }
  .feature-media, .feature-visual,
  .feature.flip .feature-media, .feature.flip .feature-visual { order: 0; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .plans { grid-template-columns: 1fr; }
  .showcase { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
  .showcase .ba { aspect-ratio: 16 / 11; }

  /* Mobile nav panel */
  .nav.open { display: flex; }
  .nav-panel {
    position: fixed; inset: 0 0 0 auto; width: min(78vw, 320px); z-index: 99;
    background: var(--paper); box-shadow: var(--shadow-lg); transform: translateX(100%);
    transition: transform 0.35s var(--ease); padding: 92px 28px 28px;
    display: flex; flex-direction: column; gap: 0.4rem; border-left: 1px solid var(--line);
  }
  .nav-panel.open { transform: none; }
  .nav-panel a { font-size: 1.1rem; padding: 0.8rem 0; border-bottom: 1px solid var(--line); color: var(--ink-soft); }
  .nav-panel .btn { margin-top: 1.2rem; justify-content: center; }
  .nav-scrim { position: fixed; inset: 0; background: rgba(31,27,22,.4); opacity: 0; visibility: hidden; transition: opacity 0.3s; z-index: 98; }
  .nav-scrim.open { opacity: 1; visibility: visible; }
}
@media (max-width: 560px) {
  body { font-size: 16px; }
  .style-grid { grid-template-columns: repeat(2, 1fr); gap: 0.7rem; }
  .steps { grid-template-columns: 1fr; }
  .hero-cta { width: 100%; }
  .hero-cta .btn { flex: 1; justify-content: center; }
}

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

/* Desktop: hide mobile-only nodes */
@media (min-width: 861px) {
  .nav-panel, .nav-scrim, .nav-toggle { display: none; }
}
