/* ============================================================
   Founder OS landing — warm craft-modern
   Palette: dabu indigo leads; kora cotton ground; terracotta CTA
   Type: Merriweather
   ============================================================ */

:root{
  --indigo:      #1E2B4F;
  --indigo-deep: #16203C;
  --indigo-soft: #33436F;
  --kora:        #F6F0E4;
  --kora-deep:   #EDE3CF;
  --terracotta:  #BC5B32;
  --terracotta-deep:#9E4A26;
  --marigold:    #E9A13B;
  --ink:         #251F1A;
  --ink-soft:    #5C534A;
  --paper:       #FFFDF7;
  --leaf:        #4E7A5A;

  --wa-green:    #075E54;
  --wa-sent:     #D9FDD3;
  --wa-bg:       #EFE7DB;

  --font-display:"Merriweather", Georgia, serif;
  --font-body:   "Merriweather", Georgia, serif;

  --radius: 14px;
  --shadow: 0 18px 50px -18px rgba(30,43,79,.35);
  --wrap: 1120px;
}

*{ box-sizing:border-box; margin:0; padding:0; }
html{ scroll-behavior:smooth; }
body{
  font-family:var(--font-body);
  color:var(--ink);
  background:var(--kora);
  line-height:1.6;
  font-size:17px;
  -webkit-font-smoothing:antialiased;
}
img,svg{ max-width:100%; display:block; }
a{ color:inherit; }
:focus-visible{ outline:3px solid var(--marigold); outline-offset:2px; }

.wrap{ max-width:var(--wrap); margin:0 auto; padding:0 24px; }
.wrap-narrow{ max-width:720px; }

/* ---------- type ---------- */
h1,h2,h3{ font-family:var(--font-display); font-weight:500; line-height:1.12; letter-spacing:-.01em; }
h1{ font-size:clamp(2rem,3.75vw,3rem); }
h2{ font-size:clamp(1.7rem,3.2vw,2.5rem); }
h1 em, h2 em{ font-style:italic; font-weight:400; color:var(--terracotta); }
.section-dark h2{ color:var(--kora); }

.eyebrow{
  font-size:.78rem; font-weight:700; letter-spacing:.14em; text-transform:uppercase;
  color:var(--terracotta); margin-bottom:14px;
}
.eyebrow-light{ color:var(--marigold); }
.micro{ font-size:.85rem; color:var(--ink-soft); margin-top:10px; }
.micro-light{ font-size:.85rem; color:#B9C2DB; margin-top:14px; }

/* ---------- buttons ---------- */
.btn{
  display:inline-flex; align-items:center; gap:10px;
  background:var(--terracotta); color:#fff; text-decoration:none;
  font-weight:700; font-size:1rem;
  padding:13px 26px; border-radius:999px;
  box-shadow:0 6px 20px -8px rgba(188,91,50,.7);
  transition:transform .18s ease, background .18s ease;
}
.btn:hover{ background:var(--terracotta-deep); transform:translateY(-2px); }
.btn-big{ padding:16px 32px; font-size:1.08rem; }
.btn-small{ padding:7px 18px; font-size:.86rem; }
.btn-light{ background:var(--kora); color:var(--indigo-deep); box-shadow:0 6px 24px -8px rgba(0,0,0,.5); }
.btn-light:hover{ background:#fff; }

/* ---------- header ---------- */
.site-head{
  position:sticky; top:0; z-index:50;
  background:color-mix(in srgb, var(--indigo) 96%, transparent);
  backdrop-filter:blur(8px);
  border-bottom:1px solid rgba(246,240,228,.12);
}
.head-row{ display:flex; align-items:center; gap:26px; padding:9px 24px; }
.wordmark{
  font-family:var(--font-display); font-weight:600; font-size:1.18rem;
  color:var(--kora); text-decoration:none; letter-spacing:.01em;
}
.head-nav{ display:flex; gap:22px; margin-left:auto; }
.head-nav a{
  color:#C9D0E4; text-decoration:none; font-size:.92rem; font-weight:600;
}
.head-nav a:hover{ color:var(--kora); }

/* ---------- hero ---------- */
.hero{
  background:var(--indigo);
  background-image:radial-gradient(ellipse at 75% -20%, var(--indigo-soft), transparent 55%);
  color:var(--kora);
  padding:30px 0 32px;
  overflow:hidden;
}
.hero-grid{
  display:grid; grid-template-columns:1.05fr .95fr; gap:40px; align-items:center;
}
.hero-copy .eyebrow{ color:var(--marigold); }
.hero h1{ color:var(--kora); margin-bottom:14px; }
.hero-sub{ font-size:.98rem; color:#D4DAEA; max-width:35em; line-height:1.48; }
.hero-cta{ margin-top:20px; }
.hero .micro{ color:#AEB8D2; }
/* ---------- phone / WhatsApp ---------- */
.hero-phone{ justify-self:center; }
.phone{
  width:282px; background:#0E1526; border-radius:32px; padding:10px;
  box-shadow:var(--shadow), 0 0 0 1px rgba(246,240,228,.1);
  position:relative;
}
.phone-notch{
  width:98px; height:20px; background:#0E1526; border-radius:0 0 13px 13px;
  position:absolute; top:10px; left:50%; transform:translateX(-50%); z-index:2;
}
.wa-head{
  display:flex; align-items:center; gap:10px;
  background:var(--wa-green); color:#fff;
  padding:22px 13px 8px; border-radius:24px 24px 0 0;
}
.wa-avatar{
  width:30px; height:30px; border-radius:50%;
  background:var(--marigold); color:var(--indigo-deep);
  display:grid; place-items:center; font-weight:700; font-family:var(--font-display);
}
.wa-who strong{ font-size:.92rem; }
.wa-who{ display:flex; flex-direction:column; line-height:1.2; }
.wa-who small{ font-size:.66rem; opacity:.8; }
.wa-chat{
  background:var(--wa-bg);
  background-image:radial-gradient(circle at 20% 30%, rgba(188,91,50,.05) 0 20%, transparent 21%),
                   radial-gradient(circle at 80% 70%, rgba(30,43,79,.05) 0 18%, transparent 19%);
  border-radius:0 0 26px 26px;
  padding:10px 10px 12px;
  height:354px;
  display:flex; flex-direction:column; gap:6px;
  overflow:hidden;
  position:relative;
}
.wa-day{
  align-self:center; font-size:.63rem; background:#fff; color:var(--ink-soft);
  padding:2px 9px; border-radius:8px; margin-bottom:2px;
  box-shadow:0 1px 1px rgba(0,0,0,.08);
}
.wa-msg{
  background:#fff; border-radius:10px; border-top-left-radius:2px;
  color:var(--ink);
  padding:6px 9px; font-size:.7rem; line-height:1.38;
  max-width:94%; box-shadow:0 1px 1px rgba(0,0,0,.08);
  opacity:0; transform:translateY(8px);
  transition:opacity .4s ease, transform .4s ease;
}
.wa-msg strong{ color:var(--ink); }
.wa-msg.is-in{ opacity:1; transform:none; }
.wa-link{ color:#0B69C7; }
.wa-typing{
  background:#fff; border-radius:10px; border-top-left-radius:2px;
  padding:10px 14px; width:58px; display:flex; gap:4px;
  box-shadow:0 1px 1px rgba(0,0,0,.08);
  position:absolute; left:10px; bottom:12px;
  opacity:0; visibility:hidden; pointer-events:none;
  transition:opacity .18s ease, visibility .18s ease;
}
.wa-typing.is-on{ opacity:1; visibility:visible; }
.wa-typing span{
  width:7px; height:7px; border-radius:50%; background:#B0AAA0;
  animation:tybounce 1.1s infinite;
}
.wa-typing span:nth-child(2){ animation-delay:.15s; }
.wa-typing span:nth-child(3){ animation-delay:.3s; }
@keyframes tybounce{ 0%,60%,100%{ transform:none; } 30%{ transform:translateY(-4px); } }
.phone-caption{
  text-align:center; font-size:.74rem; color:#AEB8D2; margin-top:9px; max-width:280px;
  margin-left:auto; margin-right:auto;
}

/* ---------- block-print divider ---------- */
.blockprint-divider{
  height:26px;
  background-color:var(--kora);
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='52' height='26' viewBox='0 0 52 26'%3E%3Cg fill='none' stroke='%231E2B4F' stroke-width='1.6' opacity='0.55'%3E%3Cpath d='M13 4 L22 13 L13 22 L4 13 Z'/%3E%3Ccircle cx='13' cy='13' r='2.2' fill='%23BC5B32' stroke='none'/%3E%3Ccircle cx='39' cy='13' r='4.5'/%3E%3Ccircle cx='39' cy='13' r='1.4' fill='%231E2B4F' stroke='none'/%3E%3C/g%3E%3C/svg%3E");
  background-repeat:repeat-x;
  background-position:center;
}

/* ---------- strip ---------- */
.strip{ padding:64px 0; background:var(--kora); }
.strip-line{
  font-family:var(--font-display); font-size:clamp(1.25rem,2.4vw,1.7rem);
  line-height:1.45; max-width:30em; margin:0 auto; text-align:center;
  color:var(--ink);
}
.strip-line strong{ color:var(--terracotta); font-weight:600; }

/* ---------- sections ---------- */
.section{ padding:96px 0; }
.section-tight{ padding:72px 0; }
.section-dark{ background:var(--indigo-deep); color:#D4DAEA; }
.sec-head{ max-width:640px; margin-bottom:48px; }
.sec-head h2{ margin-bottom:12px; }
.sec-sub{ color:var(--ink-soft); }

.two-col{ display:grid; grid-template-columns:1fr 1.1fr; gap:64px; align-items:start; }
.col-copy h2{ margin-bottom:16px; }
.col-copy p{ margin-bottom:14px; max-width:32em; }
.sticky-copy{ position:sticky; top:96px; }
.col-copy .btn{ margin-top:12px; }

.check-list{ list-style:none; margin:18px 0; }
.check-list li{
  padding-left:30px; position:relative; margin-bottom:10px;
}
.check-list li::before{
  content:""; position:absolute; left:0; top:7px;
  width:16px; height:16px; border-radius:4px;
  background:var(--marigold);
  clip-path:polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
}

/* ---------- report mockup ---------- */
.report-card{
  background:var(--paper); border-radius:var(--radius);
  box-shadow:var(--shadow);
  border:1px solid var(--kora-deep);
  overflow:hidden;
  transform:rotate(.4deg);
}
.report-cover{
  background:var(--indigo); color:var(--kora); padding:30px 30px 26px;
}
.report-kicker{ font-size:.75rem; letter-spacing:.12em; text-transform:uppercase; color:var(--marigold); font-weight:700; margin-bottom:8px; }
.report-cover h3{ font-size:1.6rem; margin-bottom:6px; }
.report-byline{ font-size:.85rem; color:#B9C2DB; }
.report-body{ padding:26px 30px 8px; }
.report-sec{ margin-bottom:26px; }
.report-sec h4{
  font-family:var(--font-body); font-size:.78rem; font-weight:700;
  letter-spacing:.12em; text-transform:uppercase; color:var(--terracotta);
  margin-bottom:10px;
}
.report-sources{ font-size:.9rem; color:var(--ink-soft); }
.report-table{ width:100%; border-collapse:collapse; font-size:.88rem; }
.report-table th{
  text-align:left; font-size:.72rem; letter-spacing:.08em; text-transform:uppercase;
  color:var(--ink-soft); padding:6px 8px; border-bottom:2px solid var(--kora-deep);
}
.report-table td{ padding:8px; border-bottom:1px solid var(--kora-deep); }
.report-table .num{ font-variant-numeric:tabular-nums; }
.report-you td{ background:#FBF3E3; }
.report-suggestions{ list-style:none; counter-reset:sug; }
.report-suggestions li{
  counter-increment:sug; position:relative; padding-left:44px; margin-bottom:16px;
  font-size:.95rem;
}
.report-suggestions li::before{
  content:counter(sug);
  position:absolute; left:0; top:2px;
  width:30px; height:30px; border-radius:50%;
  background:var(--kora-deep); color:var(--indigo);
  font-family:var(--font-display); font-weight:600;
  display:grid; place-items:center; font-size:.95rem;
}
.report-why{ display:block; font-size:.82rem; color:var(--ink-soft); margin-top:3px; }
.report-first{
  background:var(--kora); border-radius:10px; padding:18px 20px; margin-bottom:20px;
}
.report-first p{ font-size:.95rem; font-style:italic; font-family:var(--font-display); line-height:1.55; }
.report-foot{
  padding:14px 30px 20px; font-size:.78rem; color:var(--ink-soft);
  border-top:1px dashed var(--kora-deep);
}

/* ---------- before / after ---------- */
.ba{
  position:relative; max-width:760px; margin:0 auto;
  border-radius:var(--radius); box-shadow:var(--shadow);
  overflow:hidden; touch-action:pan-y;
  border:1px solid var(--kora-deep);
}
.ba-pane{ width:100%; }
.ba-after{
  position:absolute; inset:0;
  clip-path:inset(0 0 0 50%);
}
.listing{
  display:grid; grid-template-columns:44% 56%; min-height:300px;
  position:relative; background:#fff;
}
.listing-img{ display:grid; place-items:center; padding:24px; }
.listing-img svg{ width:min(150px, 58%); }
.img-before{ background:#B4AB9C; }
.img-before .jhumka path, .img-before .jhumka circle{
  stroke:#4E463B; fill:#6E6558;
}
.img-after{ background:linear-gradient(160deg, #F6EEDA, #EFD9B8); }
.img-after .jhumka path, .img-after .jhumka circle{
  stroke:#8A3E20; fill:#BC5B32;
}
.jhumka path{ fill:none; stroke-width:5; stroke-linecap:round; }
.jhumka .paint{ stroke:#F6F0E4; stroke-width:4; fill:none; }
.listing-txt{ padding:28px 26px; align-self:center; }
.listing-title{ font-weight:700; font-size:1.05rem; margin-bottom:6px; }
.listing-after .listing-title{ font-family:var(--font-display); font-size:1.15rem; }
.listing-price{ font-size:1.3rem; font-weight:700; color:var(--indigo); margin-bottom:10px; font-variant-numeric:tabular-nums; }
.listing-ship{ font-size:.8rem; font-weight:600; color:var(--leaf); }
.listing-cap{ font-size:.9rem; color:var(--ink-soft); }
.listing-before .listing-cap, .listing-before .listing-title{ color:#7A736A; }
.listing-before .listing-price{ color:#7A736A; }
.ba-tag{
  position:absolute; top:14px; left:14px;
  font-size:.72rem; font-weight:700; letter-spacing:.1em; text-transform:uppercase;
  background:var(--ink-soft); color:#fff; border-radius:999px; padding:4px 12px;
}
.ba-tag-after{ background:var(--terracotta); left:auto; right:14px; }
.ba-handle{
  position:absolute; top:0; bottom:0; left:50%;
  width:3px; background:var(--indigo); z-index:3;
  transform:translateX(-50%);
  pointer-events:none;
}
.ba-grip{
  position:absolute; top:50%; left:50%; transform:translate(-50%,-50%);
  width:42px; height:42px; border-radius:50%;
  background:var(--indigo); color:var(--kora);
  display:grid; place-items:center; font-size:1.1rem;
  box-shadow:0 4px 14px rgba(0,0,0,.3);
}
.ba-range{
  position:absolute; inset:0; width:100%; height:100%;
  opacity:0; cursor:ew-resize; z-index:4;
  -webkit-appearance:none; appearance:none;
}
.ba-notes{
  display:flex; flex-wrap:wrap; gap:10px; justify-content:center; margin-top:26px;
}
.ba-notes span{
  font-size:.84rem; font-weight:600; color:var(--indigo);
  background:#fff; border:1px solid var(--kora-deep);
  border-radius:999px; padding:7px 16px;
}

/* ---------- journey ---------- */
.journey-tabs{
  display:flex; gap:8px; flex-wrap:wrap; margin-bottom:34px;
}
.journey-tabs [role="tab"]{
  font-family:var(--font-body); font-size:.92rem; font-weight:700;
  color:var(--ink-soft); background:transparent;
  border:1.5px solid var(--kora-deep); border-radius:12px;
  padding:10px 18px; cursor:pointer; text-align:left;
  display:flex; flex-direction:column; gap:2px;
  transition:all .18s ease;
}
.journey-tabs .jt-day{
  font-size:.68rem; letter-spacing:.12em; text-transform:uppercase; font-weight:700;
  color:var(--terracotta);
}
.journey-tabs [role="tab"]:hover{ border-color:var(--indigo); color:var(--indigo); }
.journey-tabs [role="tab"][aria-selected="true"]{
  background:var(--indigo); border-color:var(--indigo); color:var(--kora);
}
.journey-tabs [role="tab"][aria-selected="true"] .jt-day{ color:var(--marigold); }

.jpanel{ display:none; grid-template-columns:1fr 1fr; gap:48px; align-items:center; }
.jpanel.is-active{ display:grid; animation:panelin .35s ease; }
@keyframes panelin{ from{ opacity:0; transform:translateY(10px);} to{ opacity:1; transform:none;} }
.jpanel-copy h3{ font-size:1.5rem; margin-bottom:10px; }
.jpanel-copy p{ color:var(--ink-soft); max-width:30em; }

.chat-mini{
  background:var(--wa-bg); border-radius:var(--radius); padding:22px;
  display:flex; flex-direction:column; gap:10px;
  box-shadow:var(--shadow); border:1px solid var(--kora-deep);
}
.cm-bubble{
  background:#fff; border-radius:10px; border-top-left-radius:2px;
  color:var(--ink);
  padding:10px 14px; font-size:.9rem; max-width:88%;
  box-shadow:0 1px 1px rgba(0,0,0,.08);
}
.cm-you{
  background:var(--wa-sent); align-self:flex-end;
  border-top-left-radius:10px; border-top-right-radius:2px;
}
.report-mini{
  background:var(--paper); border-radius:var(--radius); padding:24px 26px;
  box-shadow:var(--shadow); border:1px solid var(--kora-deep);
}
.rm-title{ font-family:var(--font-display); font-size:1.15rem; margin-bottom:8px; }
.rm-line{ font-size:.88rem; color:var(--ink-soft); margin-bottom:10px; }
.report-mini ul{ list-style:none; }
.report-mini li{
  font-size:.9rem; padding:8px 0 8px 26px; position:relative;
  border-bottom:1px dashed var(--kora-deep);
}
.report-mini li:last-child{ border-bottom:none; }
.report-mini li::before{
  content:"→"; position:absolute; left:0; color:var(--terracotta); font-weight:700;
}

/* ---------- north star app mockup ---------- */
.section-dark .col-copy p{ color:#C2CADF; }
.browser{
  background:#0E1526; border-radius:var(--radius);
  box-shadow:0 24px 60px -20px rgba(0,0,0,.6);
  overflow:hidden; border:1px solid rgba(246,240,228,.12);
}
.browser-bar{
  display:flex; align-items:center; gap:7px; padding:11px 16px;
  background:#141D33;
}
.browser-bar span{ width:10px; height:10px; border-radius:50%; background:#2E3A5C; }
.browser-bar em{
  font-style:normal; font-size:.75rem; color:#8E99B8;
  background:#0E1526; border-radius:6px; padding:3px 14px; margin-left:10px;
}
.app{ padding:20px 22px 24px; background:#121A30; }
.app-tabs{ display:flex; gap:4px; margin-bottom:18px; flex-wrap:wrap; }
.app-tabs b{
  font-weight:600; font-size:.8rem; color:#8E99B8;
  padding:6px 14px; border-radius:8px;
}
.app-tabs b.on{ background:var(--marigold); color:var(--indigo-deep); }
.app-greet{ font-family:var(--font-display); font-size:1.05rem; color:var(--kora); margin-bottom:14px; }
.app-tiles{ display:grid; grid-template-columns:repeat(3,1fr); gap:10px; margin-bottom:16px; }
.tile{
  background:#1A2440; border-radius:10px; padding:12px 14px;
  display:flex; flex-direction:column; gap:2px;
}
.tile small{ font-size:.68rem; color:#8E99B8; text-transform:uppercase; letter-spacing:.08em; }
.tile strong{ font-size:1.25rem; color:var(--kora); font-variant-numeric:tabular-nums; }
.tile span{ font-size:.72rem; color:#8E99B8; }
.tile .up{ color:#7FC08F; }
.aq-title{ font-size:.72rem; font-weight:700; letter-spacing:.1em; text-transform:uppercase; color:var(--marigold); margin-bottom:8px; }
.app-queue{ background:#1A2440; border-radius:10px; padding:14px; margin-bottom:12px; }
.aq-item{
  display:flex; align-items:center; justify-content:space-between; gap:12px;
  padding:9px 0; border-bottom:1px solid #24304F; font-size:.82rem; color:#C2CADF;
}
.aq-item:last-child{ border-bottom:none; }
.aq-item b{
  background:var(--terracotta); color:#fff; font-size:.72rem; font-weight:700;
  border-radius:999px; padding:5px 14px; white-space:nowrap;
}
.app-quiet{ background:#161F3A; border-radius:10px; padding:14px; }
.app-quiet span{ font-size:.8rem; color:#8E99B8; }

/* ---------- pricing ---------- */
.price-grid{
  display:grid; grid-template-columns:1fr 1fr; gap:28px; max-width:820px; margin:0 auto;
}
.price-card{
  background:var(--paper); border-radius:var(--radius); padding:34px 32px;
  border:1px solid var(--kora-deep);
}
.price-hero{ border:2px solid var(--indigo); box-shadow:var(--shadow); }
.price-card h3{ font-size:1.25rem; margin-bottom:14px; }
.price{ font-family:var(--font-display); font-size:2.4rem; color:var(--indigo); }
.price span{ font-size:1rem; color:var(--ink-soft); font-family:var(--font-body); }
.price-note{ font-size:.85rem; color:var(--ink-soft); margin-bottom:14px; }
.price-card .btn{ margin-top:8px; }

/* ---------- faq ---------- */
.faq-h{ margin-bottom:28px; }
details{
  border-bottom:1px solid var(--kora-deep); padding:18px 0;
}
summary{
  font-weight:700; cursor:pointer; list-style:none; position:relative; padding-right:34px;
}
summary::-webkit-details-marker{ display:none; }
summary::after{
  content:"+"; position:absolute; right:4px; top:-2px;
  font-family:var(--font-display); font-size:1.5rem; color:var(--terracotta);
  transition:transform .2s ease;
}
details[open] summary::after{ transform:rotate(45deg); }
details p{ margin-top:10px; color:var(--ink-soft); max-width:38em; }

/* ---------- final CTA ---------- */
.final{
  background:var(--indigo);
  background-image:radial-gradient(ellipse at 50% 130%, var(--indigo-soft), transparent 60%);
  color:var(--kora); padding:96px 0; text-align:center;
}
.final h2{ color:var(--kora); margin-bottom:14px; }
.final p{ color:#C2CADF; max-width:34em; margin:0 auto 30px; }

/* ---------- footer ---------- */
.site-foot{ background:var(--indigo-deep); color:#8E99B8; padding:40px 0; }
.foot-row{ display:flex; flex-direction:column; gap:8px; }
.wordmark-small{ font-size:1.05rem; color:var(--kora); }
.site-foot p{ font-size:.9rem; font-style:italic; font-family:var(--font-display); color:#B9C2DB; }
.site-foot small{ font-size:.78rem; }

/* ---------- reveal on scroll ---------- */
.reveal{ opacity:0; transform:translateY(24px); transition:opacity .6s ease, transform .6s ease; }
.reveal.is-in{ opacity:1; transform:none; }

/* ---------- responsive ---------- */
@media (max-width: 920px){
  .hero-grid, .two-col, .jpanel.is-active{ grid-template-columns:1fr; }
  .hero-grid{ gap:48px; }
  .sticky-copy{ position:static; }
  .hero{ padding:42px 0 48px; }
  .section{ padding:72px 0; }
  .head-nav{ display:none; }
  .price-grid{ grid-template-columns:1fr; }
  .jpanel-demo{ order:2; }
  .jpanel-copy{ order:1; }
}
@media (max-width: 700px){
  /* stack before/after instead of sliding — the split clips text at narrow widths */
  .ba{ box-shadow:none; border:none; overflow:visible; background:transparent; }
  .ba-pane{ border-radius:var(--radius); overflow:hidden; box-shadow:var(--shadow); border:1px solid var(--kora-deep); }
  .ba-after{ position:static; clip-path:none !important; margin-top:18px; }
  .ba-tag-after{ right:auto; left:14px; }
  .ba-handle, .ba-range, .ba-drag-hint{ display:none; }
}
@media (max-width: 560px){
  body{ font-size:16px; }
  .phone{ width:min(300px, 88vw); }
  .listing{ grid-template-columns:1fr; }
  .listing-img{ min-height:170px; }
  .app-tiles{ grid-template-columns:1fr 1fr; }
  .btn-big{ width:100%; justify-content:center; }
}

/* ---------- reduced motion ---------- */
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior:auto; }
  *{ transition:none !important; animation:none !important; }
  .wa-msg, .reveal{ opacity:1; transform:none; }
  .wa-typing{ display:none !important; }
}
