/* ============================================================
   TREPO — site layout (Direction A · Counter)
   Pairs with trepo-brand.css (tokens + base components).
   ============================================================ */

:root {
  --maxw: 1200px;
  --gutter: 40px;
  --sec-pad: 110px;          /* vertical section rhythm (density-tweakable) */
  --accent: var(--yellow);    /* primary CTA accent (tweakable) */
  --accent-deep: var(--yellow-deep);
  --accent-ink: var(--teal-ink);
  --hl: var(--green-deep);    /* headline highlight (tweakable) */
}
body.density-compact { --sec-pad: 76px; }
body.density-comfy   { --sec-pad: 140px; }

html { scroll-behavior: smooth; }
body { margin: 0; background: var(--cream); }
.trepo img { max-width: 100%; }

/* shared accent button override hooks */
.t-btn--accent { background: var(--accent); color: var(--accent-ink); box-shadow: 0 12px 24px -12px color-mix(in srgb, var(--accent) 80%, #000 0%); }
.t-btn--accent:hover { background: var(--accent-deep); }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter); }
.section { padding: var(--sec-pad) 0; position: relative; }
.section--cream { background: var(--cream); }
.section--paper { background: var(--paper); }
.section--teal  { background: var(--teal); color: var(--cream); }
.section--cream2 { background: var(--cream-2); }

.kicker {
  font-family: var(--font-hand); font-size: 21px; color: var(--hl);
  display: inline-flex; align-items: center; gap: 9px; margin-bottom: 12px;
}
.kicker .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); }
.section--teal .kicker { color: var(--yellow); }

.sec-head { max-width: 760px; }
.sec-head.center { margin: 0 auto; text-align: center; }
.sec-head h2 { font-size: clamp(34px, 4.4vw, 56px); line-height: 1.02; }
.sec-head .lead { font-size: 19px; color: var(--teal-soft); margin-top: 18px; line-height: 1.6; }
.section--teal .sec-head h2 { color: var(--cream); }
.section--teal .sec-head .lead { color: rgba(253,242,222,.8); }

/* reveal on scroll — animation-based (end-state held by fill:both, never freezes at 0) */
.reveal { opacity: 0; }
.reveal.in { animation: reveal-in .7s cubic-bezier(.2,.7,.2,1) both; }
.reveal.in.d1 { animation-delay: .08s; } .reveal.in.d2 { animation-delay: .16s; }
.reveal.in.d3 { animation-delay: .24s; } .reveal.in.d4 { animation-delay: .32s; }
@keyframes reveal-in { from { opacity: 0; transform: translateY(26px); } to { opacity: 1; transform: none; } }
.reveal.in.reveal-done, .reveal.reveal-done { opacity: 1 !important; transform: none !important; animation: none !important; }
@media (prefers-reduced-motion: reduce){ .reveal{opacity:1 !important;transform:none !important;animation:none !important} }

/* ===================== HEADER / NAV ===================== */
.t-ann { position: relative; z-index: 60; }
.site-head {
  position: sticky; top: 0; z-index: 50; background: color-mix(in srgb, var(--cream) 88%, transparent);
  backdrop-filter: blur(10px); border-bottom: 1px solid transparent; transition: border-color .25s, background .25s, padding .25s;
}
.site-head.scrolled { border-color: var(--line); background: color-mix(in srgb, var(--cream) 94%, transparent); }
.site-head .t-nav { max-width: var(--maxw); margin: 0 auto; }
.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-logo .bird { height: 30px; } .nav-logo .wmk { height: 18px; }
.t-nav__links { display: flex; gap: 28px; }
.menu-btn { display: none; background: none; border: none; cursor: pointer; }

/* ===================== HERO ===================== */
.hero { padding: 46px 0 70px; overflow: hidden; }
.hero .wrap { display: grid; grid-template-columns: 1.04fr .96fr; gap: 40px; align-items: center; }
.hero h1 { font-size: clamp(42px, 5.6vw, 72px); line-height: 1.0; }
.hero h1 em { font-style: normal; color: var(--hl); }
.hero-rotator { display: inline-block; color: #E2A82B; white-space: nowrap; }
.rot-word { display: inline-block; white-space: nowrap; transition: opacity .28s ease, transform .28s cubic-bezier(.2,.7,.2,1); }
.rot-word.out { opacity: 0; transform: translateY(-14px); }
.rot-word.pre { opacity: 0; transform: translateY(14px); }
@media (prefers-reduced-motion: reduce){ .rot-word{transition:none} }
.hero .sub { font-size: 20px; line-height: 1.55; color: var(--teal-soft); max-width: 500px; margin: 22px 0 30px; }
.hero .ctas { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.hero .support { display: flex; align-items: center; gap: 9px; font-size: 14.5px; font-weight: 700; color: var(--teal-soft); margin-top: 22px; }
.hero .support .ck { color: var(--green-deep); font-weight: 900; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 9px 20px; margin-top: 22px; }
.hero-trust span { display: inline-flex; align-items: center; gap: 7px; font-size: 13px; font-weight: 600; color: #93A6A2; letter-spacing: .01em; white-space: nowrap; }
.hero-trust svg { width: 15px; height: 15px; stroke: currentColor; fill: none; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; flex: none; }
.hero-art { position: relative; aspect-ratio: 1/.92; border-radius: var(--r-xl); overflow: hidden; display: grid; place-items: center; }
.hero-art image-slot, .hero-art .hero-img { width: 100%; height: 100%; display: block; }
.hero-art .hero-img { object-fit: cover; display: block; }

/* guarantee strip */
.strip { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--paper); }
.strip .wrap { display: flex; gap: 16px; justify-content: space-between; flex-wrap: wrap; padding-top: 20px; padding-bottom: 20px; }
.strip .item { display: flex; align-items: center; gap: 11px; font-weight: 800; color: var(--teal); font-size: 15.5px; }
.strip .item .ic { width: 30px; height: 30px; border-radius: 8px; background: var(--teal-100); display: grid; place-items: center; }

/* ===================== PROBLEM ===================== */
.problem .wrap { display: grid; grid-template-columns: 1.1fr .9fr; gap: 56px; align-items: center; }
.problem h2 { font-size: clamp(32px, 4.2vw, 52px); line-height: 1.05; }
.problem h2 .strike { color: var(--teal-soft); }
.problem p { font-size: 18px; line-height: 1.65; color: var(--teal-soft); margin-top: 20px; }
.problem p strong { color: var(--teal); font-weight: 800; }
.scatter { position: relative; min-height: 520px; }
.scatter .note { position: absolute; background: var(--paper); border: 1.5px solid var(--line); border-radius: 16px;
  padding: 17px 22px; font-weight: 700; font-size: 18px; color: var(--teal-ink); box-shadow: var(--shadow-sm); display:flex; gap:11px; align-items:center; white-space: nowrap; }
.scatter .note .x { color: #C9603E; font-weight: 900; font-size: 19px; }
.scatter .n1 { top: 0; left: 2%; transform: rotate(-5deg); }
.scatter .n2 { top: 26%; left: 24%; transform: rotate(4deg); }
.scatter .n3 { top: 54%; left: 0; transform: rotate(3deg); }
.scatter .n4 { top: 84%; left: 26%; transform: rotate(-4deg); }
.scatter .n5 { top: 40%; right: 10%; transform: rotate(6deg); }
.scatter .n6 { top: 13%; right: 1%; transform: rotate(4deg); }
.scatter .n7 { top: 70%; right: 2%; transform: rotate(-3deg); }

/* ===================== HARDWARE REVEAL ===================== */
.reveal-hw { }
.reveal-hw .wrap { display: grid; grid-template-columns: .95fr 1.05fr; gap: 50px; align-items: center; }
.reveal-hw .art { position: relative; aspect-ratio: 1/1; border-radius: var(--r-xl); overflow: hidden; background: var(--cream-2); }
.reveal-hw .art .hw-img { width: 100%; height: 100%; object-fit: cover; display: block; }
.reveal-hw .art image-slot { position: absolute; inset: 0; width: 100%; height: 100%; display: block; }
.reveal-hw .art .ring { position:absolute; width:120%; height:120%; border-radius:50%; border:2px dashed rgba(253,242,222,.18); }
.callouts { list-style: none; padding: 0; margin: 26px 0 30px; display: grid; gap: 14px; }
.callouts li { display: flex; gap: 13px; align-items: flex-start; font-size: 17px; font-weight: 600; color: var(--teal-ink); }
.callouts li .ck { flex: none; width: 26px; height: 26px; border-radius: 8px; background: var(--green); color: #fff; display: grid; place-items: center; font-weight: 900; font-size: 14px; margin-top: 1px; }

/* ===================== HOW IT WORKS (animated stepper) ===================== */
.hiw { background: var(--teal); color: var(--cream); }
.hiw .sec-head h2 { color: var(--cream); }
.hiw-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; margin-top: 50px; align-items: start; }
.hiw-steps { display: grid; gap: 14px; }
.hiw-step { border: 1.5px solid rgba(253,242,222,.16); border-radius: var(--r-lg); padding: 22px 24px; cursor: pointer;
  transition: background .3s, border-color .3s; background: rgba(253,242,222,.04); }
.hiw-step.active { background: rgba(253,242,222,.1); border-color: var(--yellow); }
.hiw-step .row { display: flex; align-items: center; gap: 14px; }
.hiw-step .num { font-family: var(--font-display); font-weight: 800; font-size: 18px; width: 40px; height: 40px; flex: none;
  border-radius: 50%; display: grid; place-items: center; background: rgba(253,242,222,.1); color: var(--cream); transition: background .3s, color .3s; }
.hiw-step.active .num { background: var(--yellow); color: var(--teal-ink); }
.hiw-step h4 { color: var(--cream); font-size: 21px; }
.hiw-step p { color: rgba(253,242,222,.72); font-size: 15px; margin-top: 8px; max-height: 0; overflow: hidden; opacity: 0; transition: max-height .4s, opacity .3s, margin .4s; }
.hiw-step.active p { max-height: 100px; opacity: 1; margin-top: 12px; }
.hiw-stage { position: sticky; top: 100px; aspect-ratio: 1/.96; border-radius: var(--r-xl); overflow: hidden;
  background: radial-gradient(120% 120% at 50% 10%, rgba(253,242,222,.14), rgba(253,242,222,.03)); border: 1.5px solid rgba(253,242,222,.14);
  display: grid; place-items: center; }
.hiw-scene { position: absolute; inset: 0; display: grid; place-items: center; text-align: center; padding: 40px; opacity: 0; transform: scale(.96); transition: opacity .5s, transform .5s; }
.hiw-scene.show { opacity: 1; transform: none; }
.hiw-scene .big { font-size: 84px; }
.hiw-scene .cap { font-family: var(--font-display); font-weight: 700; font-size: 24px; color: var(--cream); margin-top: 14px; }
.hiw-scene .desc { color: rgba(253,242,222,.7); margin-top: 8px; font-size: 15px; max-width: 32ch; }
/* image scenes */
.hiw-scene .scene-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hiw-scene image-slot { position: absolute; inset: 0; width: 100%; height: 100%; display: block; }
.hiw-scene video.scene-img { object-fit: contain; }
.hiw-stage.flush { background: transparent; border-color: transparent; }
.hiw-scene .scene-img.contain { object-fit: contain; padding: 26px; }
.hiw-scene .scene-cap { display: none; }
.hiw-scene .scene-cap .cap { margin: 0; }
.hiw-scene .scene-cap .desc { margin: 6px auto 0; }

/* ===================== APP SECTION ===================== */
.app .wrap { display: grid; grid-template-columns: 1fr; gap: 44px; }
.app-top { display: grid; grid-template-columns: 1.1fr .9fr; gap: 40px; align-items: end; }
.app-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.app-cards .t-card { transition: transform .25s, box-shadow .25s; }
.app-cards .t-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.app-cards .t-card.span2 { grid-column: span 2; display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: center; }
.app-cards .t-card.span2 .slotwrap { aspect-ratio: 4/3; border-radius: var(--r-md); overflow: hidden; background: var(--cream-2); }
.app-cards .t-card.span2 image-slot { width: 100%; height: 100%; }
.app-video-wrap { margin-top: 44px; display: flex; justify-content: center; }
.app-video { max-width: 100%; max-height: 78vh; width: auto; height: auto; border-radius: var(--r-xl); box-shadow: var(--shadow-lg); display: block; background: var(--cream-2); }

/* ===================== USE CASES ===================== */
.uses-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 48px; }
.use { background: var(--paper); border: 1.5px solid var(--line); border-radius: var(--r-lg); padding: 26px; transition: transform .25s, border-color .25s; }
.use:hover { transform: translateY(-4px); border-color: var(--green); }
.use .em { font-size: 30px; }
.use h4 { font-size: 20px; margin: 14px 0 8px; }
.use p { color: var(--teal-soft); font-size: 15px; line-height: 1.55; }

/* ===================== WHY HARDWARE (comparison) ===================== */
.compare { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-top: 48px; }
.col { border-radius: var(--r-xl); padding: 32px; }
.col h3 { font-size: 24px; margin-bottom: 6px; }
.col .tagline { font-size: 14px; font-weight: 700; margin-bottom: 20px; }
.col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 13px; }
.col li { display: flex; gap: 12px; align-items: flex-start; font-size: 16px; font-weight: 600; }
.col li .mk { flex: none; width: 24px; height: 24px; border-radius: 7px; display: grid; place-items: center; font-weight: 900; font-size: 13px; margin-top: 1px; }
.col--bad { background: var(--paper); border: 1.5px solid var(--line); }
.col--bad h3 { color: var(--teal-soft); } .col--bad .tagline { color: var(--teal-soft); }
.col--bad li { color: var(--teal-soft); } .col--bad .mk { background: #F0E2D8; color: #C9603E; }
.col--good { background: var(--teal); color: var(--cream); }
.col--good h3 { color: #fff; } .col--good .tagline { color: var(--yellow); }
.col--good li { color: var(--cream); } .col--good .mk { background: var(--green); color: #fff; }

/* ===================== BENEFITS ===================== */
.benefits-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; margin-top: 48px; }
.benefit { text-align: left; }
.benefit .ic { width: 56px; height: 56px; border-radius: 16px; background: var(--accent); color: var(--accent-ink); display: grid; place-items: center; font-size: 26px; margin-bottom: 16px; }
.benefit h4 { font-size: 20px; margin-bottom: 7px; }
.benefit p { color: var(--teal-soft); font-size: 14.5px; line-height: 1.5; }

/* ===================== INTERACTIVE DEMO ===================== */
.demo { background: var(--cream-2); }
.demo .wrap { display: grid; grid-template-columns: .9fr 1.1fr; gap: 50px; align-items: center; }
.demo-phone { justify-self: center; width: 320px; max-width: 100%; }
.phone { background: var(--teal-ink); border-radius: 42px; padding: 12px; box-shadow: var(--shadow-lg); }
.phone .screen { background: var(--cream); border-radius: 32px; height: 580px; overflow: hidden; position: relative; }
.phone .statusbar { height: 30px; display: flex; align-items: center; justify-content: space-between; padding: 0 22px; font-size: 12px; font-weight: 800; color: var(--teal-ink); }
.scene { position: absolute; inset: 30px 0 0; padding: 16px 18px; opacity: 0; transform: translateX(16px); transition: opacity .45s, transform .45s; pointer-events: none; overflow: hidden; }
.scene.show { opacity: 1; transform: none; pointer-events: auto; }
.scene .head { font-family: var(--font-display); font-weight: 800; font-size: 20px; color: var(--teal); margin-bottom: 12px; display:flex; align-items:center; gap:8px; }
.kit-item, .list-item { display: flex; align-items: center; gap: 11px; padding: 11px 13px; background: var(--paper); border: 1.5px solid var(--line); border-radius: 12px; margin-bottom: 9px; font-weight: 700; font-size: 14px; color: var(--teal-ink); }
.kit-item .em { font-size: 18px; } .kit-item .tag { margin-left: auto; font-size: 11px; font-weight: 800; padding: 3px 9px; border-radius: 999px; background: var(--green); color: #fff; }
.kit-item.added { animation: pop .5s ease; }
@keyframes pop { 0%{transform:scale(.8);opacity:0} 60%{transform:scale(1.04)} 100%{transform:scale(1);opacity:1} }
.bubble { background: var(--teal); color: var(--cream); padding: 12px 15px; border-radius: 16px 16px 16px 5px; font-weight: 700; font-size: 14px; max-width: 80%; margin-bottom: 10px; }
.bubble.me { background: var(--yellow); color: var(--teal-ink); margin-left: auto; border-radius: 16px 16px 5px 16px; }
.recipe { background: var(--paper); border: 1.5px solid var(--line); border-radius: 14px; padding: 13px; margin-bottom: 10px; }
.recipe .rt { font-weight: 800; color: var(--teal); font-size: 15px; } .recipe .rd { font-size: 12.5px; color: var(--teal-soft); margin-top: 3px; }
.demo-controls { display: flex; gap: 10px; margin-top: 22px; flex-wrap: wrap; }
.demo-dots { display: flex; gap: 8px; margin-top: 18px; }
.demo-dots button { width: 9px; height: 9px; border-radius: 50%; border: none; background: var(--line); cursor: pointer; padding: 0; }
.demo-dots button.on { background: var(--teal); width: 26px; border-radius: 999px; }
.demo-steplist { display: grid; gap: 10px; margin: 24px 0; }
.demo-steplist .ds { display: flex; gap: 12px; align-items: center; font-weight: 700; color: var(--teal-soft); font-size: 16px; cursor: pointer; }
.demo-steplist .ds .b { width: 28px; height: 28px; flex: none; border-radius: 50%; border: 2px solid var(--line); display: grid; place-items: center; font-size: 13px; font-weight: 800; }
.demo-steplist .ds.on { color: var(--teal); } .demo-steplist .ds.on .b { background: var(--teal); border-color: var(--teal); color: #fff; }

/* ===================== PURCHASE ===================== */
.buy .card { background: var(--paper); border: 1.5px solid var(--line); border-radius: var(--r-xl); overflow: hidden;
  display: grid; grid-template-columns: 1.05fr .95fr; }
.buy .visual { position: relative; background: var(--cream-2); overflow: hidden; min-height: 460px; }
.buy .visual .buy-img { width: 100%; height: 100%; object-fit: cover; display: block; }
.buy .visual image-slot { position: absolute; inset: 0; width: 100%; height: 100%; display: block; }
.buy .visual .badge { position: absolute; top: 22px; left: 22px; background: var(--yellow); color: var(--teal-ink); font-weight: 800; font-size: 12px; padding: 6px 13px; border-radius: 999px; text-transform: uppercase; letter-spacing: .08em; }
.buy .info { padding: 44px; }
.buy .info h3 { font-size: 32px; }
.buy .price { display: flex; align-items: baseline; gap: 10px; margin: 16px 0 4px; }
.buy .price .amt { font-family: var(--font-display); font-weight: 800; font-size: 48px; color: var(--teal); }
.buy .price .note { color: var(--teal-soft); font-weight: 700; }
.buy .incl { list-style: none; padding: 0; margin: 22px 0 28px; display: grid; gap: 11px; }
.buy .incl li { display: flex; gap: 11px; align-items: center; font-weight: 600; color: var(--teal-ink); font-size: 15.5px; }
.buy .incl li .ck { color: var(--green-deep); font-weight: 900; }
.buy .info .ctas { display: flex; flex-direction: column; gap: 11px; }
.buy .info .ctas .t-btn { justify-content: center; }

/* ===================== SOCIAL PROOF ===================== */
.proof .rating { display: flex; align-items: center; gap: 14px; margin-top: 22px; }
.proof .stars { color: var(--accent); font-size: 22px; letter-spacing: 2px; }
.proof .rating .n { font-weight: 800; color: var(--teal); }
.testi-grid { columns: 3; column-gap: 18px; margin-top: 48px; }
.testi { break-inside: avoid; background: var(--paper); border: 1.5px solid var(--line); border-radius: var(--r-lg); padding: 22px; margin-bottom: 18px; }
.testi .q { font-size: 16px; line-height: 1.55; color: var(--teal-ink); font-weight: 600; }
.testi .who { display: flex; align-items: center; gap: 10px; margin-top: 16px; }
.testi .av { width: 38px; height: 38px; border-radius: 50%; background: var(--teal-100); display: grid; place-items: center; font-weight: 800; color: var(--teal); }
.testi .who .nm { font-weight: 800; font-size: 14px; color: var(--teal); } .testi .who .role { font-size: 12.5px; color: var(--teal-soft); }

/* ===================== PARTNER / CPG ===================== */
.partner { background: var(--teal-ink); color: var(--cream); }
.partner .wrap { display: grid; grid-template-columns: 1fr auto; gap: 40px; align-items: center; }
.partner h2 { color: var(--cream); font-size: clamp(28px,3.4vw,42px); max-width: 18ch; }
.partner p { color: rgba(253,242,222,.7); margin-top: 14px; max-width: 52ch; font-size: 16px; }

/* ===================== FAQ ===================== */
.faq .tabs { display: flex; gap: 10px; flex-wrap: wrap; margin: 36px 0 28px; }
.faq .tab { font-family: var(--font-body); font-weight: 800; font-size: 14.5px; color: var(--teal-soft); background: var(--paper);
  border: 1.5px solid var(--line); padding: 10px 18px; border-radius: 999px; cursor: pointer; transition: .2s; white-space: nowrap; }
.faq .tab.on { background: var(--teal); color: #fff; border-color: var(--teal); }
.faq-list { max-width: 820px; }
.qa { border-bottom: 1.5px solid var(--line); }
.qa.hide { display: none; }
.qa .q { width: 100%; text-align: left; background: none; border: none; cursor: pointer; padding: 22px 0; display: flex; justify-content: space-between; gap: 20px; align-items: center;
  font-family: var(--font-display); font-weight: 700; font-size: 20px; color: var(--teal); }
.qa .q .pm { flex: none; width: 30px; height: 30px; border-radius: 50%; background: var(--teal-100); display: grid; place-items: center; transition: .3s; color: var(--teal); font-size: 18px; }
.qa.open .q .pm { background: var(--teal); color: #fff; transform: rotate(45deg); }
.qa .a { max-height: 0; overflow: hidden; transition: max-height .4s ease; }
.qa .a p { color: var(--teal-soft); font-size: 16px; line-height: 1.6; padding-bottom: 22px; max-width: 70ch; }
.faq .more { margin-top: 26px; color: var(--teal-soft); }
.faq .more a { color: var(--teal); font-weight: 800; }

/* ===================== FINAL CTA ===================== */
.final { background: var(--teal); color: var(--cream); text-align: center; }
.final h2 { color: var(--cream); font-size: clamp(40px, 6vw, 84px); line-height: .98; }
.final .lead { color: rgba(253,242,222,.82); font-size: 19px; max-width: 620px; margin: 22px auto 32px; line-height: 1.55; }
.final .ctas { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.final .bird-wm { width: 120px; margin: 0 auto 26px; display: block; }

/* ===================== FOOTER ===================== */
.foot { background: var(--teal-ink); color: rgba(253,242,222,.7); padding: 64px 0 36px; }
.foot .top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; }
.foot .brand .logo { height: 40px; margin-bottom: 16px; }
.foot .brand p { font-size: 14.5px; max-width: 34ch; line-height: 1.6; }
.foot h5 { color: var(--cream); font-family: var(--font-display); font-weight: 700; font-size: 15px; margin: 0 0 14px; }
.foot ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.foot a { color: rgba(253,242,222,.7); text-decoration: none; font-size: 14.5px; }
.foot a:hover { color: var(--cream); }
.foot .bottom { border-top: 1px solid rgba(253,242,222,.14); margin-top: 44px; padding-top: 24px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 13px; }

/* ===================== RESPONSIVE ===================== */
@media (max-width: 960px) {
  :root { --sec-pad: 72px; --gutter: 24px; }
  .hero .wrap, .problem .wrap, .reveal-hw .wrap, .hiw-grid, .app-top, .demo .wrap, .buy .card, .partner .wrap { grid-template-columns: 1fr; }
  .hero-art { max-width: 460px; }
  .app-cards, .uses-grid { grid-template-columns: 1fr 1fr; }
  .app-cards .t-card.span2 { grid-column: span 2; }
  .benefits-grid { grid-template-columns: 1fr 1fr 1fr; }
  .compare { grid-template-columns: 1fr; }
  .testi-grid { columns: 2; }
  .foot .top { grid-template-columns: 1fr 1fr; }
  .hiw-stage { position: relative; top: 0; }
  .t-nav__links, .nav-desktop-cta { display: none; }
  .menu-btn { display: grid; }
}
@media (max-width: 560px) {
  .app-cards, .uses-grid, .benefits-grid, .testi-grid { grid-template-columns: 1fr; columns: 1; }
  .app-cards .t-card.span2 { grid-column: auto; grid-template-columns: 1fr; }
  .strip .wrap { justify-content: flex-start; gap: 18px; }
  .hero h1 { font-size: 40px; }
}
