@import url("inter.css");

/* ==========================================================================
   Textly — design tokens
   ========================================================================== */

:root {
  --cream:      #FFF8F4;
  --cream-deep: #FDEFE8;
  --surface:    #FFFFFF;
  --peach-50:   #FFF1EA;
  --peach-100:  #FCE3D7;
  --peach-200:  #F7D3C4;

  --orange:      #FF6B45;
  --orange-deep: #E84E27;
  --teal:        #0F9E92;
  --amber:       #F2A03D;
  --pink:        #E8558E;
  --green:       #1E7A3C;

  --ink:    #23110C;
  --ink-2:  #5C453D;
  --ink-3:  #94756A;
  --rule:   rgba(35, 17, 12, 0.09);
  --rule-2: rgba(35, 17, 12, 0.055);

  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  --pad:   clamp(1.25rem, 5vw, 4rem);
  --pad-l: max(var(--pad), env(safe-area-inset-left));
  --pad-r: max(var(--pad), env(safe-area-inset-right));
  --maxw:  1180px;

  --r-sm: 12px;
  --r-md: 18px;
  --r-lg: 28px;
  --r-xl: 40px;

  --shadow-sm: 0 1px 2px rgba(35, 17, 12, .05), 0 4px 14px -6px rgba(35, 17, 12, .10);
  --shadow-md: 0 2px 6px rgba(35, 17, 12, .05), 0 18px 40px -18px rgba(35, 17, 12, .22);
  --shadow-lg: 0 4px 10px rgba(35, 17, 12, .06), 0 44px 90px -36px rgba(35, 17, 12, .34);

  --ease: cubic-bezier(.22, .68, 0, 1);

  color-scheme: light;
}

/* ==========================================================================
   Base
   ========================================================================== */

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  font-feature-settings: "cv05" 1, "ss03" 1, "calt" 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

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

h1, h2, h3, h4 {
  margin: 0;
  font-weight: 680;
  letter-spacing: -0.028em;
  line-height: 1.06;
  text-wrap: balance;
}

p { margin: 0; text-wrap: pretty; }

::selection { background: var(--peach-200); color: var(--ink); }

:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 3px;
  border-radius: 6px;
}

.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--pad-l) var(--pad-r);
}

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

.skip {
  position: absolute; left: 50%; top: 8px;
  transform: translate(-50%, -200%);
  background: var(--ink); color: #fff;
  padding: 10px 18px; border-radius: 999px;
  font-size: 14px; font-weight: 600; z-index: 200;
}
.skip:focus { transform: translate(-50%, 0); }

/* ==========================================================================
   Type scale
   ========================================================================== */

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12.5px; font-weight: 620;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--orange-deep);
}
.eyebrow::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: var(--orange);
}

.display {
  font-size: clamp(2.8rem, 6.6vw, 4.5rem);
  letter-spacing: -0.042em;
  font-weight: 700;
  line-height: 0.98;
}

.h2 {
  font-size: clamp(2.05rem, 4.4vw, 3.15rem);
  letter-spacing: -0.036em;
  font-weight: 700;
  line-height: 1.03;
}

.h3 { font-size: clamp(1.2rem, 2vw, 1.35rem); letter-spacing: -0.02em; font-weight: 640; }

.lead {
  font-size: clamp(1.06rem, 1.55vw, 1.22rem);
  line-height: 1.55;
  color: var(--ink-2);
}

.muted { color: var(--ink-3); }
.small { font-size: 14.5px; line-height: 1.55; }

/* ==========================================================================
   Buttons
   ========================================================================== */

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  height: 52px; padding: 0 26px;
  border: 1px solid transparent; border-radius: 999px;
  font: inherit; font-size: 16px; font-weight: 600; letter-spacing: -0.011em;
  cursor: pointer; white-space: nowrap;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease),
              background-color .25s var(--ease), border-color .25s var(--ease), color .25s var(--ease);
}
.btn:active { transform: translateY(1px) scale(.99); }

.btn--primary {
  background: var(--ink); color: #fff;
  box-shadow: 0 1px 2px rgba(35,17,12,.2), 0 12px 26px -14px rgba(35,17,12,.7);
}
.btn--primary:hover { background: #33190f; box-shadow: 0 2px 4px rgba(35,17,12,.2), 0 20px 34px -16px rgba(35,17,12,.6); transform: translateY(-1px); }

.btn--accent {
  background: var(--orange); color: #fff;
  box-shadow: 0 1px 2px rgba(232,78,39,.25), 0 14px 30px -14px rgba(255,107,69,.85);
}
.btn--accent:hover { background: var(--orange-deep); transform: translateY(-1px); }

.btn--ghost {
  background: rgba(255,255,255,.65); color: var(--ink);
  border-color: var(--rule);
  backdrop-filter: blur(8px);
}
.btn--ghost:hover { background: #fff; border-color: rgba(35,17,12,.16); transform: translateY(-1px); }

.btn--sm { height: 42px; padding: 0 18px; font-size: 14.5px; }

/* Store badge */
.store {
  display: inline-flex; align-items: center; gap: 13px;
  height: 60px; padding: 0 24px 0 20px;
  border-radius: 16px;
  background: var(--ink); color: #fff;
  box-shadow: 0 2px 4px rgba(35,17,12,.16), 0 18px 40px -20px rgba(35,17,12,.8);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), opacity .3s;
}
.store:hover { transform: translateY(-2px); box-shadow: 0 4px 8px rgba(35,17,12,.16), 0 26px 50px -22px rgba(35,17,12,.7); }
.store__txt { display: grid; text-align: left; line-height: 1.15; }
.store__k { font-size: 10.5px; letter-spacing: .13em; text-transform: uppercase; opacity: .62; font-weight: 600; }
.store__v { font-size: 17.5px; font-weight: 640; letter-spacing: -.015em; }

/* ==========================================================================
   Header
   ========================================================================== */

.hdr {
  position: sticky; top: 0; z-index: 100;
  padding: 14px 0;
  transition: padding .4s var(--ease), background-color .4s var(--ease),
              box-shadow .4s var(--ease), border-color .4s var(--ease);
  border-bottom: 1px solid transparent;
}
.hdr::before {
  content: ""; position: absolute; inset: 0;
  background: rgba(255, 248, 244, .86);
  backdrop-filter: blur(18px) saturate(1.6);
  -webkit-backdrop-filter: blur(18px) saturate(1.6);
  opacity: 0; transition: opacity .4s var(--ease);
  pointer-events: none;
}
.hdr.is-stuck { padding: 9px 0; border-bottom-color: var(--rule-2); }
.hdr.is-stuck::before { opacity: 1; }

.hdr__in {
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  position: relative;
}

.brand { display: inline-flex; align-items: center; gap: 11px; }
.brand__mark { width: 34px; height: 34px; border-radius: 23.3%; box-shadow: 0 4px 12px -4px rgba(232,78,39,.55); }
.brand__name { font-size: 20px; font-weight: 680; letter-spacing: -.032em; }

.nav { display: flex; align-items: center; gap: 4px; }
.nav > a, .nav__btn {
  padding: 8px 14px; border-radius: 999px;
  font-size: 15px; font-weight: 520; color: var(--ink-2);
  transition: color .2s, background-color .2s;
}
.nav > a:hover, .nav__btn:hover { color: var(--ink); background: rgba(35,17,12,.05); }

.hdr__cta { display: flex; align-items: center; gap: 10px; }

@media (max-width: 860px) {
  .nav { display: none; }
}
@media (max-width: 480px) {
  .hdr__cta .btn { height: 40px; padding: 0 16px; font-size: 14.5px; }
}

/* ==========================================================================
   Hero
   ========================================================================== */

.hero {
  position: relative;
  padding: clamp(48px, 8vw, 96px) 0 clamp(56px, 7vw, 88px);
  overflow: clip;
}

.hero__glow {
  position: absolute; inset: -220px -10% auto -10%; height: 900px;
  background:
    radial-gradient(58% 46% at 76% 22%, rgba(255,107,69,.20), transparent 66%),
    radial-gradient(46% 40% at 12% 8%,  rgba(255,160,100,.16), transparent 68%),
    radial-gradient(40% 34% at 50% 60%, rgba(15,158,146,.055), transparent 70%);
  pointer-events: none; z-index: 0;
  filter: blur(4px);
}

.hero__in {
  position: relative; z-index: 1;
  display: grid; gap: clamp(40px, 6vw, 72px);
  grid-template-columns: minmax(0, 1.12fr) minmax(0, .88fr);
  align-items: center;
}
@media (max-width: 940px) {
  .hero__in { grid-template-columns: 1fr; text-align: center; justify-items: center; }
}

.hero__copy { max-width: 620px; }
.hero .display { margin: 22px 0 0; }
.hero .display em {
  font-style: normal;
  background: linear-gradient(96deg, var(--orange) 0%, #FF8A5B 52%, var(--orange-deep) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero .lead { margin-top: 22px; max-width: 30ch; }
@media (max-width: 940px) { .hero .lead { max-width: 46ch; } }

.hero__actions {
  display: flex; flex-wrap: wrap; align-items: center; gap: 14px;
  margin-top: 34px;
}
/* Only the hero centres its actions — the feature rows keep their text alignment */
@media (max-width: 940px) {
  .hero .hero__actions { justify-content: center; }
  .hero .hero__actions .stores { justify-content: center; width: 100%; }
}

.hero__note { margin-top: 18px; font-size: 14px; color: var(--ink-3); }

.trust {
  display: flex; flex-wrap: wrap; align-items: center; gap: 10px 22px;
  margin-top: 34px; padding-top: 26px;
  border-top: 1px solid var(--rule);
}
@media (max-width: 940px) { .trust { justify-content: center; } }
.trust__i {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 14.5px; font-weight: 540; color: var(--ink-2);
}
.trust__i svg { width: 17px; height: 17px; color: var(--orange); flex: none; }

/* Hero device stage */
.stage { position: relative; display: grid; place-items: center; }
.stage__ring {
  position: absolute; width: min(560px, 106%); aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 42%, rgba(255,255,255,.9), rgba(255,255,255,0) 62%);
  z-index: 0;
}
.stage .device { z-index: 1; }

.chip {
  position: absolute; z-index: 2;
  display: inline-flex; align-items: center; gap: 9px;
  padding: 11px 16px 11px 13px;
  background: rgba(255,255,255,.86);
  border: 1px solid rgba(255,255,255,.9);
  border-radius: 15px;
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(12px);
  font-size: 14px; font-weight: 580; letter-spacing: -.012em;
  white-space: nowrap;
}
.chip svg { width: 18px; height: 18px; flex: none; }
.chip--a { top: -4%;    left: -12%;  animation: float 7s ease-in-out infinite; }
.chip--b { bottom: 15%; right: -19%; animation: float 8.5s ease-in-out .8s infinite; }
@media (max-width: 1180px) { .chip--a { left: -6%; } .chip--b { right: -10%; } }
@media (max-width: 940px)  { .chip--a { left: 0; top: -6%; }  .chip--b { right: -4%; } }
@media (max-width: 700px)  { .chip { display: none; } }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-11px); }
}

/* ==========================================================================
   Device / phone mock
   ========================================================================== */

.device {
  --w: 300px;
  position: relative;
  width: var(--w);
  aspect-ratio: 1080 / 2270;
  padding: 9px;
  background: linear-gradient(158deg, #2b2b2f 0%, #0c0c0e 44%, #232327 100%);
  border-radius: calc(var(--w) * .135);
  box-shadow:
    0 0 0 1px rgba(255,255,255,.07) inset,
    0 0 0 1px rgba(35,17,12,.10),
    var(--shadow-lg);
  flex: none;
}
.device::after {
  content: ""; position: absolute; left: 34%; right: 34%; bottom: calc(var(--w) * .022);
  height: 4px; border-radius: 4px; background: rgba(255,255,255,.55); z-index: 6;
}
.device__screen {
  position: relative; height: 100%; width: 100%;
  border-radius: calc(var(--w) * .108);
  overflow: hidden;
  background: var(--cream);
  display: flex; flex-direction: column;
  font-size: calc(var(--w) / 26);
  isolation: isolate;
  text-align: left;
}

/* status bar */
.sb {
  display: flex; align-items: center; justify-content: space-between;
  padding: .58em .95em .34em;
  font-size: .86em; font-weight: 600; color: var(--ink);
  flex: none; position: relative; z-index: 3;
}
.sb--tint { background: rgba(120,110,108,.82); color: #fff; }
.sb__punch {
  position: absolute; left: 50%; top: .42em; transform: translateX(-50%);
  width: 1.55em; height: 1.55em; border-radius: 50%;
  background: #08080a;
}
.sb__icons { display: inline-flex; align-items: center; gap: .38em; }
.sb__icons svg { width: 1.05em; height: 1.05em; }

/* app bars */
.appbar {
  display: flex; align-items: center; gap: .62em;
  padding: .7em .8em;
  background: var(--peach-100);
  flex: none;
}
.appbar__title { font-size: 1.24em; font-weight: 560; letter-spacing: -.01em; }
.appbar--plain { background: var(--cream); }
.appbar svg { width: 1.25em; height: 1.25em; flex: none; }
.appbar .spacer { margin-left: auto; }

.search {
  display: flex; align-items: center; gap: .7em;
  margin: .55em .7em .2em;
  padding: .78em .95em;
  background: var(--peach-100);
  border-radius: 999px;
  color: var(--ink-3);
  flex: none;
}
.search svg { width: 1.15em; height: 1.15em; color: var(--ink-2); flex: none; }
.search span { font-size: 1.02em; }
.search .dots { margin-left: auto; color: var(--ink-2); }

.filters { display: flex; gap: .5em; padding: .55em .7em .3em; flex: none; }
.pill {
  padding: .36em .82em; border-radius: 999px;
  border: 1px solid var(--ink-2); font-size: .92em; font-weight: 500;
}
.pill--on { background: var(--peach-100); border-color: transparent; }

.threads { flex: 1; overflow: hidden; padding: .35em 0 0; }
.thread {
  display: flex; align-items: center; gap: .72em;
  padding: .55em .8em;
}
.av {
  width: 2.5em; height: 2.5em; border-radius: 50%;
  display: grid; place-items: center; flex: none;
  color: #fff; font-weight: 560; font-size: 1.05em;
  background: var(--amber);
}
.av--teal { background: var(--teal); }
.av--pink { background: var(--pink); }
.av--green { background: var(--green); }
.av--orange { background: #FA6E4C; }

.thread__body { min-width: 0; flex: 1; }
.thread__top { display: flex; align-items: baseline; gap: .5em; }
.thread__name { font-size: 1.04em; font-weight: 500; letter-spacing: -.01em; }
.thread__time { margin-left: auto; font-size: .82em; color: var(--ink-2); white-space: nowrap; }
.thread__prev {
  font-size: .98em; color: var(--ink-2);
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.thread--unread .thread__name,
.thread--unread .thread__prev { font-weight: 680; color: var(--ink); }
.thread__dot { width: .6em; height: .6em; border-radius: 50%; background: var(--orange); flex: none; }
.thread__pin { width: .85em; height: .85em; flex: none; }

.fab {
  position: absolute; right: .8em; bottom: 1.5em; z-index: 4;
  display: inline-flex; align-items: center; gap: .5em;
  padding: .9em 1.25em; border-radius: 1.05em;
  background: var(--peach-100); color: var(--ink);
  font-size: 1.02em; font-weight: 520;
  box-shadow: 0 6px 18px -6px rgba(35,17,12,.35);
}
.fab svg { width: 1.25em; height: 1.25em; }

/* chat */
.chat { flex: 1; display: flex; flex-direction: column; gap: .5em; padding: .9em .8em; overflow: hidden; }
.daypill {
  align-self: center;
  padding: .34em .95em; border-radius: 999px;
  background: var(--cream-deep); color: var(--ink-2);
  font-size: .92em;
}
.bub {
  max-width: 78%; padding: .72em 1em;
  border-radius: 1.5em; font-size: 1.02em; line-height: 1.35;
}
.bub--out { align-self: flex-end; background: var(--orange); color: #fff; }
.bub--in  { align-self: flex-start; background: var(--peach-100); color: var(--ink); }
.meta { font-size: .8em; color: var(--ink-2); }
.meta--out { align-self: flex-end; }
.meta--in  { align-self: flex-start; }

.typing { display: inline-flex; gap: .28em; align-items: center; height: 1.1em; }
.typing i {
  width: .42em; height: .42em; border-radius: 50%; background: var(--ink-3);
  animation: blip 1.25s ease-in-out infinite;
}
.typing i:nth-child(2) { animation-delay: .16s; }
.typing i:nth-child(3) { animation-delay: .32s; }
@keyframes blip {
  0%, 60%, 100% { opacity: .32; transform: translateY(0); }
  30%           { opacity: 1;   transform: translateY(-.22em); }
}

.composer {
  display: flex; align-items: center; gap: .6em;
  padding: .55em .7em 1.5em; flex: none;
}
.composer__field {
  flex: 1; padding: .78em 1.1em; border-radius: 999px;
  background: var(--peach-100); color: var(--ink-3); font-size: 1.02em;
}
.composer svg { width: 1.3em; height: 1.3em; flex: none; }
.composer__send {
  width: 2.5em; height: 2.5em; border-radius: 50%;
  background: #E4DAD6; display: grid; place-items: center; flex: none;
  color: #7A6A65;
}
.composer__send--on { background: var(--orange); color: #fff; }

.tofield {
  display: flex; align-items: center; gap: .6em;
  padding: .85em .9em; background: #E5E0EA; flex: none;
}
.tofield b { font-weight: 620; }
.tofield span { color: var(--ink-3); }
.tofield svg { width: 1.2em; height: 1.2em; margin-left: auto; }

/* ==========================================================================
   Sections
   ========================================================================== */

.sec { padding: clamp(64px, 9vw, 128px) 0; position: relative; }
.sec--tight { padding: clamp(48px, 6vw, 80px) 0; }
.sec--cream { background: linear-gradient(180deg, var(--cream) 0%, var(--cream-deep) 100%); }

.sec__head { max-width: 660px; margin-bottom: clamp(38px, 5vw, 60px); }
.sec__head--center { margin-inline: auto; text-align: center; }
.sec__head .h2 { margin-top: 18px; }
.sec__head .lead { margin-top: 18px; }

/* logo strip / marquee */
.strip {
  border-block: 1px solid var(--rule);
  background: rgba(255,255,255,.5);
  padding: 22px 0;
  overflow: hidden;
}
.strip__row {
  display: flex; align-items: center; gap: 56px;
  width: max-content;
  animation: slide 42s linear infinite;
}
.strip__i {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 15px; font-weight: 560; color: var(--ink-2); white-space: nowrap;
}
.strip__i svg { width: 18px; height: 18px; color: var(--orange); flex: none; }
.strip:hover .strip__row { animation-play-state: paused; }
@keyframes slide { to { transform: translateX(-50%); } }
.strip::before, .strip::after {
  content: ""; position: absolute; top: 0; bottom: 0; width: clamp(60px, 10vw, 150px);
  z-index: 2; pointer-events: none;
}
.strip::before { left: 0;  background: linear-gradient(90deg,  #FFFCFA 22%, rgba(255,252,250,0)); }
.strip::after  { right: 0; background: linear-gradient(270deg, #FFFCFA 22%, rgba(255,252,250,0)); }

/* bento */
.bento {
  display: grid; gap: 16px;
  grid-template-columns: repeat(6, 1fr);
}
.card {
  position: relative;
  grid-column: span 2;
  padding: 30px;
  background: var(--surface);
  border: 1px solid var(--rule-2);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease), border-color .4s;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--rule); }
.card__ico {
  width: 44px; height: 44px; border-radius: 13px;
  display: grid; place-items: center; margin-bottom: 20px;
  background: var(--peach-50); color: var(--orange-deep);
}
.card__ico svg { width: 21px; height: 21px; }
.card h3 { margin-bottom: 9px; }
.card p { font-size: 15.4px; color: var(--ink-2); line-height: 1.55; }

.card--wide { grid-column: span 3; }
.card--tall { grid-column: span 3; grid-row: span 2; }
.card--dark {
  background: linear-gradient(152deg, #2A150F 0%, #140704 60%, #2E1109 100%);
  border-color: transparent; color: #fff;
  display: flex; flex-direction: column;
}
.card--dark::after {
  content: ""; position: absolute; right: -110px; top: -120px;
  width: 340px; height: 340px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,107,69,.34), transparent 62%);
  pointer-events: none;
}
.card--dark > * { position: relative; }

.card__foot {
  margin-top: auto; padding-top: 26px;
  display: flex; align-items: center; gap: 9px;
  font-size: 15px; font-weight: 580; color: #FF8A63;
  transition: gap .3s var(--ease);
}
.card__foot svg { width: 16px; height: 16px; }
.card__foot:hover { gap: 14px; }
.card--dark p { color: rgba(255,255,255,.72); }
.card--dark .card__ico { background: rgba(255,255,255,.09); color: #FF8A63; }
.card--accent { background: linear-gradient(150deg, #FFF1EA, #FFE2D5); border-color: rgba(232,78,39,.12); }

@media (max-width: 940px) {
  .bento { grid-template-columns: repeat(4, 1fr); }
  .card, .card--wide, .card--tall { grid-column: span 2; }
  .card--tall { grid-row: auto; }
}
@media (max-width: 620px) {
  .bento { grid-template-columns: 1fr; }
  .card, .card--wide, .card--tall { grid-column: 1; }
  .card { padding: 26px; }
}

/* feature list inside dark card */
.ticks { margin: 18px 0 0; padding: 0; list-style: none; display: grid; gap: 11px; }
.ticks li { display: flex; gap: 11px; font-size: 15.2px; color: rgba(255,255,255,.78); line-height: 1.45; }
.ticks svg { width: 18px; height: 18px; flex: none; color: #FF8A63; margin-top: 1px; }

/* ==========================================================================
   Showcase (3 phones)
   ========================================================================== */

.shots {
  display: grid; gap: clamp(28px, 4vw, 44px);
  grid-template-columns: repeat(3, 1fr);
  align-items: start;
}
.shot { display: grid; justify-items: center; gap: 22px; text-align: center; }
.shot .device { --w: 276px; }
.shot__cap { max-width: 30ch; }
.shot__cap h3 { margin-bottom: 7px; }
.shot__cap p { font-size: 15px; color: var(--ink-2); }

@media (max-width: 900px) {
  .shots { grid-template-columns: 1fr; justify-items: center; }
  .shot .device { --w: 280px; }
}

/* ==========================================================================
   Privacy split
   ========================================================================== */

.split {
  display: grid; gap: clamp(36px, 6vw, 76px);
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
}
@media (max-width: 940px) { .split { grid-template-columns: 1fr; } }

.panel {
  position: relative;
  padding: clamp(30px, 4vw, 48px);
  border-radius: var(--r-xl);
  background: linear-gradient(152deg, #2A150F 0%, #190A06 58%, #341710 100%);
  color: #fff;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.panel::before {
  content: ""; position: absolute; width: 420px; height: 420px; right: -140px; top: -170px;
  background: radial-gradient(circle, rgba(255,107,69,.42), transparent 62%);
  pointer-events: none;
}
.panel .h2 { color: #fff; }
.panel .lead { color: rgba(255,255,255,.74); }

.matrix { display: grid; gap: 0; margin-top: 30px; position: relative; }
.matrix__row {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 0;
  border-top: 1px solid rgba(255,255,255,.1);
  font-size: 15.4px;
}
.matrix__row:last-child { border-bottom: 1px solid rgba(255,255,255,.1); }
.matrix__row span { color: rgba(255,255,255,.8); }
.matrix__row b { margin-left: auto; font-weight: 560; font-size: 14px; letter-spacing: .01em; }
.matrix__row .no  { color: #FF8A63; }
.matrix__row .yes { color: #5FD3A6; }

/* ==========================================================================
   Steps
   ========================================================================== */

.steps {
  display: grid; gap: 18px;
  grid-template-columns: repeat(3, 1fr);
  counter-reset: s;
}
@media (max-width: 820px) { .steps { grid-template-columns: 1fr; } }

.step {
  position: relative;
  padding: 30px 28px 32px;
  background: var(--surface);
  border: 1px solid var(--rule-2);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
}
.step__n {
  display: inline-grid; place-items: center;
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--ink); color: #fff;
  font-size: 14.5px; font-weight: 620; letter-spacing: 0;
  margin-bottom: 18px;
}
.step h3 { margin-bottom: 8px; }
.step p { font-size: 15.2px; color: var(--ink-2); }

/* ==========================================================================
   FAQ
   ========================================================================== */

.faq { max-width: 780px; margin-inline: auto; }
.faq details {
  border-bottom: 1px solid var(--rule);
  padding: 4px 0;
}
.faq details:first-of-type { border-top: 1px solid var(--rule); }
.faq summary {
  display: flex; align-items: center; gap: 18px;
  padding: 22px 4px;
  cursor: pointer; list-style: none;
  font-size: 17.5px; font-weight: 580; letter-spacing: -.018em;
  transition: color .2s;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: var(--orange-deep); }
.faq summary::after {
  content: ""; margin-left: auto; flex: none;
  width: 11px; height: 11px;
  border-right: 2px solid var(--ink-3); border-bottom: 2px solid var(--ink-3);
  transform: rotate(45deg) translate(-3px, -3px);
  transition: transform .35s var(--ease), border-color .2s;
}
.faq details[open] summary::after { transform: rotate(225deg) translate(-2px, -2px); border-color: var(--orange); }
.faq__a { padding: 0 46px 24px 4px; color: var(--ink-2); font-size: 16px; line-height: 1.62; }
.faq__a p + p { margin-top: 12px; }

/* ==========================================================================
   CTA band
   ========================================================================== */

.cta {
  position: relative;
  padding: clamp(52px, 7vw, 88px) clamp(28px, 5vw, 72px);
  border-radius: var(--r-xl);
  background: linear-gradient(140deg, #FF7A52 0%, var(--orange) 38%, var(--orange-deep) 100%);
  color: #fff; overflow: hidden;
  box-shadow: 0 40px 90px -46px rgba(232,78,39,.9);
  text-align: center;
}
.cta::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(60% 80% at 15% 0%, rgba(255,255,255,.34), transparent 62%),
    radial-gradient(50% 70% at 88% 100%, rgba(255,255,255,.16), transparent 60%);
  pointer-events: none;
}
.cta__in { position: relative; display: grid; justify-items: center; gap: 20px; }
.cta .h2 { color: #fff; }
.cta p { color: rgba(255,255,255,.88); max-width: 48ch; }
.cta .store { background: #fff; color: var(--ink); box-shadow: 0 18px 40px -18px rgba(90,20,0,.6); }
.cta .store__k { opacity: .55; }


/* ==========================================================================
   Footer
   ========================================================================== */

.ftr {
  padding: clamp(52px, 6vw, 76px) 0 40px;
  border-top: 1px solid var(--rule);
  background: var(--cream-deep);
}
.ftr__top {
  display: grid; gap: 40px;
  grid-template-columns: minmax(0, 1.4fr) repeat(3, minmax(0, 1fr));
}
@media (max-width: 860px) { .ftr__top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .ftr__top { grid-template-columns: 1fr; } }

.ftr__about p { margin-top: 16px; font-size: 15px; color: var(--ink-2); max-width: 36ch; }
.ftr__col h4 { font-size: 13px; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-3); font-weight: 620; margin-bottom: 16px; }
.ftr__col ul { margin: 0; padding: 0; list-style: none; display: grid; gap: 11px; }
.ftr__col a { font-size: 15.2px; color: var(--ink-2); transition: color .2s; }
.ftr__col a:hover { color: var(--orange-deep); }

.ftr__bottom {
  display: flex; flex-wrap: wrap; gap: 12px 24px; align-items: center;
  margin-top: clamp(40px, 5vw, 60px); padding-top: 26px;
  border-top: 1px solid var(--rule);
  font-size: 14px; color: var(--ink-3);
}
.ftr__bottom .sep { margin-left: auto; }

/* ==========================================================================
   Legal / article pages
   ========================================================================== */

.doc { padding: clamp(48px, 7vw, 88px) 0 clamp(60px, 8vw, 104px); }
.doc__in { max-width: 760px; margin-inline: auto; }
.doc h1 { font-size: clamp(2.2rem, 5vw, 3rem); letter-spacing: -.038em; }
.doc__meta { margin-top: 16px; font-size: 14.5px; color: var(--ink-3); }
.doc__body { margin-top: 40px; }
.doc__body h2 {
  margin: 46px 0 14px; font-size: 1.42rem; letter-spacing: -.025em; font-weight: 660;
  padding-top: 26px; border-top: 1px solid var(--rule);
}
.doc__body h2:first-child { margin-top: 0; padding-top: 0; border-top: 0; }
.doc__body h3 { margin: 26px 0 10px; font-size: 1.08rem; font-weight: 620; }
.doc__body p { color: var(--ink-2); line-height: 1.7; margin-bottom: 14px; }
.doc__body ul { margin: 0 0 16px; padding-left: 22px; color: var(--ink-2); line-height: 1.7; }
.doc__body li { margin-bottom: 7px; }
.doc__body a { color: var(--orange-deep); text-decoration: underline; text-underline-offset: 3px; }
.doc__body strong { color: var(--ink); font-weight: 620; }
.doc__note {
  padding: 20px 22px; border-radius: var(--r-md);
  background: var(--peach-50); border: 1px solid rgba(232,78,39,.14);
  font-size: 15px; color: var(--ink-2); margin: 22px 0;
}
.doc__toc {
  padding: 22px 24px; border-radius: var(--r-md);
  background: var(--surface); border: 1px solid var(--rule-2);
  box-shadow: var(--shadow-sm);
}
.doc__toc h4 { margin: 0 0 12px; font-size: 12.5px; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-3); font-weight: 620; }
.doc__toc ol { margin: 0; padding-left: 20px; display: grid; gap: 7px; font-size: 15px; color: var(--ink-2); }
.doc__toc a:hover { color: var(--orange-deep); }
.ph { background: var(--peach-100); padding: 1px 7px; border-radius: 5px; font-size: .94em; font-weight: 560; color: var(--orange-deep); white-space: nowrap; }
.ph--block { display: block; white-space: normal; padding: 13px 16px; border-radius: 10px; line-height: 1.55; margin-top: 4px; }

.contact-grid { display: grid; gap: 16px; grid-template-columns: repeat(2, 1fr); margin-top: 8px; }
@media (max-width: 620px) { .contact-grid { grid-template-columns: 1fr; } }

/* ==========================================================================
   Reveal on scroll
   ========================================================================== */

.rv { opacity: 0; transform: translateY(20px); }
.rv.in {
  opacity: 1; transform: none;
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.rv:nth-child(2).in { transition-delay: .06s; }
.rv:nth-child(3).in { transition-delay: .12s; }
.rv:nth-child(4).in { transition-delay: .18s; }
.rv:nth-child(5).in { transition-delay: .24s; }
.rv:nth-child(6).in { transition-delay: .3s; }

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

/* ==========================================================================
   Channels
   ========================================================================== */

.chans { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.chan {
  display: inline-flex; align-items: center; gap: 11px;
  padding: 12px 20px 12px 15px;
  background: var(--surface);
  border: 1px solid var(--rule-2);
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
  font-size: 15.2px; font-weight: 570; letter-spacing: -.012em;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.chan:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.chan svg { width: 20px; height: 20px; flex: none; }
.chan small { font-size: 12.5px; font-weight: 560; color: var(--ink-3); letter-spacing: .04em; text-transform: uppercase; }

/* channel brand colours */
.ch-sms  { color: #FF6B45; }
.ch-tg   { color: #229ED9; }
.ch-dc   { color: #5865F2; }
.ch-sl   { color: #611F69; }
.ch-wa   { color: #25D366; }

/* ==========================================================================
   Alternating feature rows
   ========================================================================== */

.feature {
  display: grid; gap: clamp(36px, 6vw, 82px);
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
}
.feature + .feature { margin-top: clamp(72px, 10vw, 136px); }
.feature__vis { display: grid; place-items: center; position: relative; }
.feature--rev .feature__vis { order: -1; }
.feature .h2 { margin-top: 18px; }
.feature .lead { margin-top: 18px; }

@media (max-width: 940px) {
  .feature { grid-template-columns: 1fr; }
  .feature--rev .feature__vis { order: 0; }
}

.ticks--light li { color: var(--ink-2); font-size: 15.6px; }
.ticks--light svg { color: var(--orange); }
.ticks--light { margin-top: 24px; gap: 13px; }

.tag {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 26px; padding: 9px 16px 9px 13px;
  background: var(--peach-50);
  border: 1px solid rgba(232,78,39,.16);
  border-radius: 999px;
  font-size: 14px; font-weight: 570; color: var(--orange-deep);
}
.tag svg { width: 16px; height: 16px; }

/* ==========================================================================
   Avatar channel badges (inside device mocks)
   ========================================================================== */

.av { position: relative; }
.av__ch {
  position: absolute; right: -.16em; bottom: -.16em;
  width: 1.25em; height: 1.25em; border-radius: 50%;
  display: grid; place-items: center;
  border: .14em solid var(--cream);
  color: #fff;
}
.av__ch svg { width: .66em; height: .66em; }
.bg-sms { background: #FF6B45; }
.bg-tg  { background: #229ED9; }
.bg-dc  { background: #5865F2; }
.bg-sl  { background: #4A154B; }
.bg-wa  { background: #25D366; }

/* filter row with channel dots */
.filters--wide { flex-wrap: wrap; }

/* scam / security banner inside a device */
.alert {
  margin: .5em .7em; padding: .8em .9em;
  display: flex; align-items: flex-start; gap: .65em;
  background: #FFE7E0;
  border: .09em solid rgba(232,78,39,.34);
  border-radius: 1.1em;
  flex: none;
}
.alert svg { width: 1.3em; height: 1.3em; flex: none; color: #D8391A; margin-top: .05em; }
.alert b { display: block; font-size: 1em; font-weight: 640; color: #8E2A11; }
.alert span { font-size: .92em; color: #7A3520; }

.bub--quar {
  align-self: flex-start; max-width: 82%;
  background: #F3ECE9; color: var(--ink-3);
  border: .08em dashed rgba(35,17,12,.22);
}

/* ==========================================================================
   AI surface card
   ========================================================================== */

.surface {
  width: min(470px, 100%);
  background: var(--surface);
  border: 1px solid var(--rule-2);
  border-radius: 26px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.surface__bar {
  display: flex; align-items: center; gap: 11px;
  padding: 17px 19px;
  border-bottom: 1px solid var(--rule-2);
  background: linear-gradient(180deg, #fff, #FFFAF7);
}
.surface__bar svg { width: 18px; height: 18px; color: var(--orange); flex: none; }
.surface__q { flex: 1; font-size: 15.2px; font-weight: 570; letter-spacing: -.012em; }
.surface__kbd {
  font-size: 11px; font-weight: 620; letter-spacing: .06em;
  color: var(--ink-3); background: var(--peach-50);
  padding: 4px 8px; border-radius: 6px; flex: none;
}
.surface__body { padding: 19px; display: grid; gap: 15px; }
.surface__lbl {
  font-size: 11.5px; font-weight: 620; letter-spacing: .1em;
  text-transform: uppercase; color: var(--ink-3);
}
.surface__ans { font-size: 15.4px; line-height: 1.55; color: var(--ink); }
.surface__ans b { font-weight: 620; }

.cites { display: flex; flex-wrap: wrap; gap: 7px; }
.cite {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 11px 5px 8px;
  background: var(--peach-50);
  border-radius: 999px;
  font-size: 12.6px; font-weight: 560; color: var(--ink-2);
}
.cite svg { width: 12px; height: 12px; flex: none; }

.acts { display: flex; flex-wrap: wrap; gap: 8px; padding-top: 4px; }
.act {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 9px 15px 9px 12px;
  border: 1px solid var(--rule); border-radius: 999px;
  background: #fff;
  font-size: 13.6px; font-weight: 570;
  transition: border-color .25s, background-color .25s, transform .3s var(--ease);
}
.act svg { width: 14px; height: 14px; color: var(--orange); }
.act:hover { border-color: rgba(232,78,39,.35); background: var(--peach-50); transform: translateY(-1px); }
.act--go { background: var(--ink); color: #fff; border-color: transparent; }
.act--go svg { color: #fff; }
.act--go:hover { background: #33190f; }

.surface__foot {
  display: flex; align-items: center; gap: 9px;
  padding: 14px 19px;
  border-top: 1px solid var(--rule-2);
  background: #FFFAF7;
  font-size: 12.8px; font-weight: 560; color: var(--ink-3);
}
.surface__foot svg { width: 15px; height: 15px; color: var(--orange); flex: none; }

/* ==========================================================================
   Extracted entities
   ========================================================================== */

.ents {
  display: grid; gap: 14px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: min(500px, 100%);
}
@media (max-width: 480px) { .ents { grid-template-columns: 1fr; } }

.ent {
  padding: 19px;
  background: var(--surface);
  border: 1px solid var(--rule-2);
  border-radius: 20px;
  box-shadow: var(--shadow-sm);
  transition: transform .45s var(--ease), box-shadow .45s var(--ease);
}
.ent:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.ent__ico {
  width: 34px; height: 34px; border-radius: 11px;
  display: grid; place-items: center; margin-bottom: 15px;
  background: var(--peach-50); color: var(--orange-deep);
}
.ent__ico svg { width: 17px; height: 17px; }
.ent__k { font-size: 11.5px; font-weight: 620; letter-spacing: .09em; text-transform: uppercase; color: var(--ink-3); }
.ent__v { margin-top: 5px; font-size: 15.6px; font-weight: 620; letter-spacing: -.016em; line-height: 1.3; }
.ent__m { margin-top: 5px; font-size: 13.4px; color: var(--ink-2); }
.ent__src {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 13px; font-size: 12.2px; font-weight: 560; color: var(--ink-3);
}
.ent__src svg { width: 12px; height: 12px; }
.ent--tall { grid-row: span 2; }

/* ==========================================================================
   Stat row
   ========================================================================== */

.stats {
  display: grid; gap: 1px;
  grid-template-columns: repeat(4, 1fr);
  background: var(--rule);
  border: 1px solid var(--rule);
  border-radius: var(--r-lg);
  overflow: hidden;
}
@media (max-width: 780px) { .stats { grid-template-columns: repeat(2, 1fr); } }
.stat { padding: 28px 24px; background: var(--surface); }
.stat__v {
  font-size: clamp(1.8rem, 3.2vw, 2.4rem); font-weight: 700;
  letter-spacing: -.038em; line-height: 1;
}
.stat__k { margin-top: 9px; font-size: 14.2px; color: var(--ink-2); line-height: 1.45; }

/* ==========================================================================
   Sub-page shell
   ========================================================================== */

.crumbs {
  display: flex; align-items: center; gap: 9px;
  font-size: 13.5px; color: var(--ink-3);
  margin-bottom: 26px;
}
.crumbs a { color: var(--ink-3); transition: color .2s; }
.crumbs a:hover { color: var(--orange-deep); }
.crumbs svg { width: 13px; height: 13px; opacity: .55; }

.pagehead {
  position: relative;
  padding: clamp(30px, 5vw, 56px) 0 clamp(44px, 6vw, 76px);
  overflow: clip;
}
.pagehead__glow {
  position: absolute; inset: -280px -10% auto -10%; height: 700px;
  background:
    radial-gradient(52% 44% at 74% 26%, rgba(255,107,69,.17), transparent 66%),
    radial-gradient(42% 36% at 14% 8%, rgba(255,160,100,.13), transparent 68%);
  pointer-events: none; z-index: 0;
}
.pagehead__in { position: relative; z-index: 1; }
.pagehead h1 {
  font-size: clamp(2.4rem, 5.2vw, 3.6rem);
  letter-spacing: -.04em; font-weight: 700; line-height: 1.02;
  margin-top: 18px; max-width: 18ch;
}
.pagehead .lead { margin-top: 20px; max-width: 62ch; }
.pagehead__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }

.pagehead--split {
  display: grid; gap: clamp(34px, 5vw, 70px);
  grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr);
  align-items: center;
}
@media (max-width: 940px) { .pagehead--split { grid-template-columns: 1fr; } }
.pagehead--split h1 { max-width: 15ch; }

/* ==========================================================================
   Comparison table
   ========================================================================== */

.tbl-wrap {
  overflow-x: auto;
  border: 1px solid var(--rule-2);
  border-radius: var(--r-lg);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}
.tbl { width: 100%; border-collapse: collapse; font-size: 15px; min-width: 620px; }
.tbl th, .tbl td { padding: 15px 18px; text-align: left; }
.tbl thead th {
  font-size: 11.5px; letter-spacing: .09em; text-transform: uppercase;
  color: var(--ink-3); font-weight: 620;
  border-bottom: 1px solid var(--rule);
  white-space: nowrap;
}
.tbl tbody tr + tr th, .tbl tbody tr + tr td { border-top: 1px solid var(--rule-2); }
.tbl tbody th { font-weight: 600; white-space: nowrap; }
.tbl td { color: var(--ink-2); }
.tbl__ch { display: inline-flex; align-items: center; gap: 9px; }
.tbl__ch svg { width: 17px; height: 17px; flex: none; }
.y { color: #12805A; font-weight: 580; }
.n { color: var(--ink-3); }
.p { color: var(--orange-deep); font-weight: 580; }

/* ==========================================================================
   Numbered / plain content blocks
   ========================================================================== */

.blocks { display: grid; gap: 18px; grid-template-columns: repeat(2, minmax(0, 1fr)); }
.blocks--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
@media (max-width: 860px) { .blocks, .blocks--3 { grid-template-columns: 1fr; } }

.block {
  padding: 28px;
  background: var(--surface);
  border: 1px solid var(--rule-2);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
}
.block__ico {
  width: 40px; height: 40px; border-radius: 12px;
  display: grid; place-items: center; margin-bottom: 18px;
  background: var(--peach-50); color: var(--orange-deep);
}
.block__ico svg { width: 19px; height: 19px; }
.block h3 { margin-bottom: 9px; }
.block p { font-size: 15.2px; color: var(--ink-2); line-height: 1.55; }
.block p + p { margin-top: 10px; }
.block ul { margin: 12px 0 0; padding-left: 20px; font-size: 15px; color: var(--ink-2); line-height: 1.6; }
.block ul + p { margin-top: 13px; }
.block li + li { margin-top: 6px; }
.block code {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: .88em; background: var(--peach-50); padding: 2px 6px; border-radius: 5px;
}

/* Example / quote strip inside a page */
.example {
  padding: 22px 24px;
  border-left: 3px solid var(--orange);
  background: linear-gradient(90deg, var(--peach-50), rgba(255,241,234,0));
  border-radius: 0 var(--r-md) var(--r-md) 0;
  margin: 18px 0;
}
.example__q { font-size: 15.6px; font-weight: 600; letter-spacing: -.014em; }
.example__a { margin-top: 8px; font-size: 15.2px; color: var(--ink-2); line-height: 1.55; }

/* Two-column prose */
.prose-2 { columns: 2; column-gap: 44px; }
@media (max-width: 780px) { .prose-2 { columns: 1; } }

/* Related pages */
.related { display: grid; gap: 14px; grid-template-columns: repeat(3, minmax(0, 1fr)); }
@media (max-width: 860px) { .related { grid-template-columns: 1fr; } }
.rel {
  display: block; padding: 22px 24px;
  background: var(--surface); border: 1px solid var(--rule-2);
  border-radius: var(--r-md); box-shadow: var(--shadow-sm);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .3s;
}
.rel:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); border-color: var(--rule); }
.rel__k { font-size: 11.5px; letter-spacing: .09em; text-transform: uppercase; color: var(--ink-3); font-weight: 620; }
.rel__t { margin-top: 7px; font-size: 16.5px; font-weight: 620; letter-spacing: -.018em; }
.rel__d { margin-top: 6px; font-size: 14.2px; color: var(--ink-2); line-height: 1.5; }

.nav > a.is-here, .nav__btn.is-here { color: var(--ink); background: rgba(35,17,12,.06); }

/* ---------- Nav dropdown ---------- */

.nav__grp { position: relative; display: flex; }

.nav__btn {
  display: inline-flex; align-items: center; gap: 6px;
  background: none; border: 0; font: inherit;
  font-size: 15px; font-weight: 520;
  cursor: pointer; white-space: nowrap;
}
.nav__btn svg { width: 12px; height: 12px; opacity: .7; transition: transform .3s var(--ease); }
.nav__btn[aria-expanded="true"] { color: var(--ink); background: rgba(35,17,12,.05); }
.nav__btn[aria-expanded="true"] svg { transform: rotate(180deg); }

.nav__menu {
  position: absolute; top: 100%; left: 50%;
  transform: translateX(-50%);
  padding-top: 14px;
  z-index: 120;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .24s var(--ease), visibility .24s;
}
.nav__grp.is-open .nav__menu { opacity: 1; visibility: visible; pointer-events: auto; }

.nav__menu-in {
  width: 336px; padding: 10px;
  background: rgba(255, 252, 250, .94);
  backdrop-filter: blur(22px) saturate(1.6);
  -webkit-backdrop-filter: blur(22px) saturate(1.6);
  border: 1px solid var(--rule-2);
  border-radius: 22px;
  box-shadow: 0 2px 6px rgba(35,17,12,.05), 0 24px 54px -20px rgba(35,17,12,.30);
  transform: translateY(-7px);
  transition: transform .28s var(--ease);
}
.nav__grp.is-open .nav__menu-in { transform: translateY(0); }

.nav__link {
  display: flex; align-items: flex-start; gap: 13px;
  padding: 12px 13px;
  border-radius: 15px;
  transition: background-color .2s;
}
.nav__link:hover { background: var(--peach-50); }
.nav__link i {
  width: 34px; height: 34px; border-radius: 11px; flex: none;
  display: grid; place-items: center;
  background: var(--peach-50); color: var(--orange-deep);
  transition: background-color .2s;
}
.nav__link:hover i { background: #fff; }
.nav__link i svg { width: 17px; height: 17px; }
.nav__link b {
  display: block;
  font-size: 14.8px; font-weight: 620; color: var(--ink); letter-spacing: -.015em;
}
.nav__link small {
  display: block; margin-top: 3px;
  font-size: 12.9px; color: var(--ink-2); line-height: 1.42;
}
.nav__link.is-here { background: var(--peach-50); }
.nav__link.is-here i { background: #fff; }

/* ==========================================================================
   Blog — index
   ========================================================================== */

.posts { display: grid; gap: 18px; grid-template-columns: repeat(3, minmax(0, 1fr)); }
@media (max-width: 940px) { .posts { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 620px) { .posts { grid-template-columns: 1fr; } }

.post {
  display: flex; flex-direction: column;
  padding: 26px;
  background: var(--surface);
  border: 1px solid var(--rule-2);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
  transition: transform .45s var(--ease), box-shadow .45s var(--ease), border-color .3s;
}
.post:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--rule); }
.post__cat {
  align-self: flex-start;
  padding: 5px 11px; border-radius: 999px;
  background: var(--peach-50); color: var(--orange-deep);
  font-size: 11.5px; font-weight: 620; letter-spacing: .07em; text-transform: uppercase;
}
.post__t {
  margin-top: 16px;
  font-size: 19px; font-weight: 640; letter-spacing: -.022em; line-height: 1.25;
  text-wrap: balance;
}
.post__d { margin-top: 10px; font-size: 14.6px; color: var(--ink-2); line-height: 1.55; }
.post__m {
  margin-top: auto; padding-top: 18px;
  font-size: 13px; color: var(--ink-3);
  display: flex; gap: 8px; align-items: center;
}
.post__m span + span::before { content: "·"; margin-right: 8px; color: var(--ink-3); }

.post--feat {
  grid-column: 1 / -1;
  display: grid; gap: clamp(24px, 4vw, 52px);
  grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr);
  align-items: center;
  padding: clamp(28px, 4vw, 44px);
  background: linear-gradient(150deg, #FFF3EC, #FFE6DB);
  border-color: rgba(232,78,39,.13);
}
@media (max-width: 860px) { .post--feat { grid-template-columns: 1fr; } }
.post--feat .post__t { font-size: clamp(1.6rem, 3vw, 2.15rem); letter-spacing: -.032em; line-height: 1.08; }
.post--feat .post__d { font-size: 16.4px; margin-top: 14px; }
.post--feat .post__m { padding-top: 20px; }
.post--feat__side { display: grid; gap: 12px; align-content: center; }
.post--feat__q {
  font-size: 15.4px; line-height: 1.55; color: var(--ink-2);
  padding-left: 18px; border-left: 3px solid var(--orange);
}

/* ==========================================================================
   Blog — article
   ========================================================================== */

.article { padding: clamp(30px, 5vw, 52px) 0 clamp(50px, 7vw, 84px); }
.article__in { max-width: 720px; margin-inline: auto; }
.article__head { margin-bottom: 40px; }
.article__cat {
  display: inline-flex; padding: 6px 13px; border-radius: 999px;
  background: var(--peach-50); color: var(--orange-deep);
  font-size: 11.5px; font-weight: 620; letter-spacing: .08em; text-transform: uppercase;
}
.article h1 {
  margin-top: 20px;
  font-size: clamp(2.1rem, 4.6vw, 3rem);
  letter-spacing: -.04em; font-weight: 700; line-height: 1.05;
}
.article__dek {
  margin-top: 20px;
  font-size: clamp(1.08rem, 1.7vw, 1.25rem);
  line-height: 1.55; color: var(--ink-2);
}
.article__meta {
  display: flex; flex-wrap: wrap; gap: 8px; align-items: center;
  margin-top: 26px; padding-top: 22px;
  border-top: 1px solid var(--rule);
  font-size: 13.6px; color: var(--ink-3);
}
.article__meta span + span::before { content: "·"; margin-right: 8px; }

.prose { font-size: 17.4px; line-height: 1.72; color: var(--ink-2); }
.prose > p { margin-bottom: 22px; }
.prose h2 {
  margin: 48px 0 16px;
  font-size: 1.52rem; letter-spacing: -.028em; font-weight: 670; color: var(--ink);
  line-height: 1.2;
}
.prose h3 {
  margin: 32px 0 12px;
  font-size: 1.14rem; letter-spacing: -.018em; font-weight: 640; color: var(--ink);
}
.prose ul, .prose ol { margin: 0 0 22px; padding-left: 24px; }
.prose li { margin-bottom: 9px; }
.prose li::marker { color: var(--orange); }
.prose strong { color: var(--ink); font-weight: 620; }
.prose a { color: var(--orange-deep); text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1px; }
.prose a:hover { text-decoration-thickness: 2px; }
.prose code {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: .86em; background: var(--peach-50); padding: 2px 7px; border-radius: 5px; color: var(--ink);
}
.prose blockquote {
  margin: 30px 0; padding: 4px 0 4px 24px;
  border-left: 3px solid var(--orange);
  font-size: 1.12em; line-height: 1.55; color: var(--ink);
  font-weight: 500; letter-spacing: -.012em;
}
.prose hr { margin: 44px 0; border: 0; border-top: 1px solid var(--rule); }

.callout {
  margin: 30px 0; padding: 22px 24px;
  background: var(--peach-50);
  border: 1px solid rgba(232,78,39,.14);
  border-radius: var(--r-md);
  font-size: 16px; line-height: 1.6; color: var(--ink-2);
}
.callout strong { color: var(--ink); }
.callout p + p { margin-top: 12px; }

.callout--dark {
  background: linear-gradient(150deg, #2A150F, #170905);
  border-color: transparent; color: rgba(255,255,255,.78);
}
.callout--dark strong { color: #fff; }
.callout--dark a { color: #FF8A63; }

.article__foot {
  margin-top: 52px; padding-top: 30px;
  border-top: 1px solid var(--rule);
  display: flex; flex-wrap: wrap; gap: 14px; align-items: center; justify-content: space-between;
}
.article__foot p { font-size: 14.6px; color: var(--ink-3); max-width: 46ch; }

/* ==========================================================================
   Store badge row
   ========================================================================== */

.stores { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.store--apple .store__v { letter-spacing: -.018em; }
.cta .stores { justify-content: center; }

/* ==========================================================================
   Mobile menu
   ========================================================================== */

.burger {
  display: none;
  width: 42px; height: 42px;
  align-items: center; justify-content: center;
  background: none; border: 1px solid var(--rule); border-radius: 999px;
  cursor: pointer; color: var(--ink);
  transition: background-color .2s, border-color .2s;
}
.burger:hover { background: rgba(35,17,12,.05); }
.burger span {
  position: relative; display: block;
  width: 17px; height: 1.9px; border-radius: 2px; background: currentColor;
  transition: transform .32s var(--ease), opacity .2s;
}
.burger span::before, .burger span::after {
  content: ""; position: absolute; left: 0;
  width: 17px; height: 1.9px; border-radius: 2px; background: currentColor;
  transition: transform .32s var(--ease);
}
.burger span::before { top: -5.5px; }
.burger span::after { top: 5.5px; }
.burger[aria-expanded="true"] span { background: transparent; }
.burger[aria-expanded="true"] span::before { transform: translateY(5.5px) rotate(45deg); }
.burger[aria-expanded="true"] span::after { transform: translateY(-5.5px) rotate(-45deg); }

.msheet {
  position: fixed; inset: 0; z-index: 90;
  padding: 84px var(--pad-l) 40px var(--pad-r);
  background: rgba(255, 248, 244, .97);
  backdrop-filter: blur(24px) saturate(1.5);
  -webkit-backdrop-filter: blur(24px) saturate(1.5);
  overflow-y: auto; overscroll-behavior: contain;
  opacity: 0; visibility: hidden;
  transition: opacity .3s var(--ease), visibility .3s;
}
.msheet__in { max-width: 520px; margin-inline: auto; }
html.nav-open .msheet { opacity: 1; visibility: visible; }
html.nav-open { overflow: hidden; }

.msheet__lbl {
  font-size: 11.5px; font-weight: 620; letter-spacing: .1em; text-transform: uppercase;
  color: var(--ink-3); margin: 4px 0 12px;
}
.msheet__grp { display: grid; gap: 6px; }
.msheet__grp + .msheet__lbl { margin-top: 30px; }

.msheet__link {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 14px; border-radius: 16px;
  background: var(--surface);
  border: 1px solid var(--rule-2);
  transition: border-color .2s, transform .3s var(--ease);
}
.msheet__link:active { transform: scale(.985); }
.msheet__link i {
  width: 36px; height: 36px; border-radius: 12px; flex: none;
  display: grid; place-items: center;
  background: var(--peach-50); color: var(--orange-deep);
}
.msheet__link i svg { width: 18px; height: 18px; }
.msheet__link b { display: block; font-size: 16px; font-weight: 620; letter-spacing: -.016em; color: var(--ink); }
.msheet__link small { display: block; margin-top: 3px; font-size: 13.4px; color: var(--ink-2); line-height: 1.45; }
.msheet__link.is-here { border-color: rgba(232,78,39,.3); background: var(--peach-50); }

.msheet__plain {
  display: flex; align-items: center; justify-content: space-between;
  padding: 15px 4px;
  font-size: 17px; font-weight: 560; letter-spacing: -.018em; color: var(--ink);
  border-bottom: 1px solid var(--rule-2);
}
.msheet__plain svg { width: 16px; height: 16px; color: var(--ink-3); }
.msheet__plain.is-here { color: var(--orange-deep); }

.msheet__cta { margin-top: 30px; }
.msheet__cta .btn { width: 100%; height: 56px; font-size: 16.5px; }

.msheet__legal {
  display: flex; flex-wrap: wrap; gap: 8px 18px;
  margin-top: 28px; padding-top: 20px;
  border-top: 1px solid var(--rule);
  font-size: 14px; color: var(--ink-3);
}
.msheet__legal a { transition: color .2s; }
.msheet__legal a:hover { color: var(--orange-deep); }

@media (max-width: 860px) {
  .burger { display: inline-flex; }
  .hdr__cta .btn { display: none; }
}
@media (min-width: 861px) {
  .msheet { display: none; }
}
