/* ============================================================
   Opora landing — modern reading room with character
   Palette: warm cream, terracotta accent, graphite text
   Type: Fraunces (display) + Manrope (text)
   ============================================================ */

:root {
  --cream:        #F5EDE0;
  --cream-soft:   #FAF6F0;
  --cream-deep:   #EFE4D2;
  --graphite:     #2A2A2E;
  --graphite-2:   #1A1A1E;
  --muted:        #6B6560;
  --line:         #E2D7C3;
  --line-soft:    #ECE2CF;
  --terracotta:   #C85A3A;
  --terracotta-d: #B14A2C;
  --coral:        #FF4D5E;
  --pink:         #E8A0BF;

  --accent:       var(--terracotta);
  --accent-tint:  #F5DCD0;

  /* type */
  --serif: "Fraunces", Georgia, "Times New Roman", serif;
  --sans:  "Manrope", system-ui, -apple-system, "Segoe UI", sans-serif;

  /* layout */
  --container: 1200px;
  --gutter: 32px;

  --radius-sm: 10px;
  --radius:    16px;
  --radius-lg: 24px;
}

/* -------- reset-ish -------- */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
img { display: block; max-width: 100%; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
a { color: inherit; }

html { scroll-behavior: smooth; }

body {
  background: var(--cream);
  color: var(--graphite);
  font-family: var(--sans);
  font-size: 18px;
  line-height: 1.55;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  letter-spacing: -0.005em;

  /* subtle paper grain */
  background-image:
    radial-gradient(circle at 20% 10%, rgba(200, 90, 58, 0.04), transparent 60%),
    radial-gradient(circle at 85% 80%, rgba(200, 90, 58, 0.03), transparent 55%);
}

::selection { background: var(--terracotta); color: var(--cream-soft); }

/* -------- typography -------- */
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 0;
  color: var(--graphite);
  text-wrap: balance;
}
h1 { font-size: clamp(36px, 5.5vw, 60px); line-height: 1.04; font-weight: 600; }
h2 { font-size: clamp(28px, 3.6vw, 40px); line-height: 1.1; }
h3 { font-size: 22px; line-height: 1.25; }
p  { margin: 0; }

.eyebrow {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 24px; height: 1px;
  background: var(--muted);
  display: inline-block;
}

/* -------- container -------- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
@media (max-width: 720px) {
  :root { --gutter: 20px; }
  body { font-size: 16px; }
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(12px) saturate(140%);
  -webkit-backdrop-filter: blur(12px) saturate(140%);
  background: rgba(245, 237, 224, 0.82);
  border-bottom: 1px solid transparent;
  transition: border-color .25s ease, background .25s ease;
}
.nav.is-stuck { border-bottom-color: var(--line); }
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.logo {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  text-decoration: none;
  color: var(--graphite);
}
.logo__mark {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 24px;
  letter-spacing: -0.02em;
}
.logo__dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--terracotta);
  display: inline-block;
  transform: translateY(-2px);
}
.logo__sub {
  font-size: 13px;
  color: var(--muted);
  letter-spacing: -0.005em;
}
@media (max-width: 540px) {
  .logo__sub { display: none; }
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  --btn-bg: var(--terracotta);
  --btn-fg: #FAF6F0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  background: var(--btn-bg);
  color: var(--btn-fg);
  border-radius: 999px;
  font-weight: 600;
  font-size: 15.5px;
  letter-spacing: -0.005em;
  text-decoration: none;
  transition: transform .18s ease, box-shadow .25s ease, background .2s ease;
  box-shadow:
    0 1px 0 rgba(255,255,255,.18) inset,
    0 8px 22px -10px rgba(200, 90, 58, .55);
  white-space: nowrap;
}
.btn:hover {
  transform: translateY(-1px) scale(1.015);
  background: var(--terracotta-d);
  box-shadow:
    0 1px 0 rgba(255,255,255,.18) inset,
    0 14px 30px -12px rgba(200, 90, 58, .65);
}
.btn:active { transform: translateY(0) scale(1); }
.btn--ghost {
  --btn-bg: transparent;
  --btn-fg: var(--graphite);
  border: 1px solid var(--line);
  box-shadow: none;
  padding: 12px 18px;
}
.btn--ghost:hover {
  background: var(--cream-soft);
  border-color: #d6c8af;
  box-shadow: none;
}
.btn--lg {
  padding: 18px 30px;
  font-size: 17px;
}
.btn--sm {
  padding: 10px 18px;
  font-size: 14.5px;
}
.btn--inverse {
  --btn-bg: var(--cream);
  --btn-fg: var(--graphite);
  box-shadow: 0 8px 24px -10px rgba(0,0,0,.3);
}
.btn--inverse:hover { background: var(--cream-soft); }
/* ghost variant tuned for use ON terracotta backgrounds */
.btn--ghost-light {
  --btn-bg: transparent;
  --btn-fg: var(--cream-soft);
  border: 1px solid rgba(250, 246, 240, .35);
  box-shadow: none;
  padding: 12px 18px;
  backdrop-filter: blur(2px);
}
.btn--ghost-light:hover {
  background: rgba(250, 246, 240, .12);
  border-color: rgba(250, 246, 240, .6);
  box-shadow: none;
}
.btn .arrow { transition: transform .2s ease; }
.btn:hover .arrow { transform: translateX(3px); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  padding: 72px 0 96px;
  position: relative;
  overflow: hidden;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero__copy { max-width: 540px; }
.hero__title {
  margin-top: 18px;
  margin-bottom: 22px;
}
.hero__title em {
  font-style: italic;
  color: var(--terracotta);
  font-weight: 500;
}
.hero__lede {
  font-size: 19px;
  color: var(--muted);
  margin-bottom: 32px;
  max-width: 480px;
  text-wrap: pretty;
}
.hero__lede strong { color: var(--graphite); font-weight: 500; }
.hero__cta-row {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
}
.hero__meta {
  margin-top: 22px;
  font-size: 13.5px;
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.hero__meta::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #5BA37A;
  box-shadow: 0 0 0 4px rgba(91, 163, 122, .18);
}

/* Trust strip under hero CTAs — addresses the 3 main objections at first glance */
.hero__trust {
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px 22px;
  font-size: 13.5px;
  color: var(--muted);
}
.hero__trust li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  letter-spacing: -0.005em;
}
.hero__trust li strong { color: var(--graphite); font-weight: 600; }
.hero__trust-mark {
  display: inline-grid;
  place-items: center;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: rgba(91, 163, 122, .15);
  color: #4A8C66;
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
}
@media (max-width: 540px) {
  .hero__trust { gap: 8px 18px; font-size: 13px; }
}

.hero__visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

/* Telegram-style chat mock — original styling, neutral chat UI */
.tg {
  --tg-bg: #FAF6F0;
  width: 100%;
  max-width: 440px;
  background: var(--tg-bg);
  border-radius: 22px;
  border: 1px solid var(--line);
  box-shadow:
    0 1px 0 rgba(255,255,255,.6) inset,
    0 30px 60px -30px rgba(42, 42, 46, 0.25),
    0 8px 18px -10px rgba(42, 42, 46, 0.12);
  overflow: hidden;
  position: relative;
  z-index: 2;
}
.tg__top {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--line-soft);
  background: var(--cream-soft);
}
.tg__avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--terracotta);
  display: grid;
  place-items: center;
  color: var(--cream);
  font-family: var(--serif);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: -0.02em;
  flex-shrink: 0;
}
.tg__name { font-weight: 600; font-size: 15px; line-height: 1.1; }
.tg__sub { font-size: 12.5px; color: var(--muted); margin-top: 2px; }
.tg__dots {
  margin-left: auto;
  letter-spacing: 3px;
  color: var(--muted);
  font-size: 18px;
}

.tg__body {
  padding: 18px 18px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background:
    radial-gradient(circle at 80% 0%, rgba(200, 90, 58, 0.05), transparent 60%),
    var(--cream-soft);
  min-height: 360px;
}
.bubble {
  max-width: 85%;
  padding: 10px 14px;
  border-radius: 16px;
  font-size: 14.5px;
  line-height: 1.4;
  position: relative;
  word-wrap: break-word;
}
.bubble--me {
  align-self: flex-end;
  background: var(--terracotta);
  color: var(--cream-soft);
  border-bottom-right-radius: 6px;
}
.bubble--bot {
  align-self: flex-start;
  background: #fff;
  color: var(--graphite);
  border: 1px solid var(--line-soft);
  border-bottom-left-radius: 6px;
  max-width: 92%;
}
.bubble--card { padding: 0; overflow: hidden; }
.bubble__time {
  font-size: 11px;
  opacity: .7;
  margin-left: 8px;
  font-weight: 400;
}
.bubble--me .bubble__time { color: rgba(250,246,240,.85); }
.bubble--bot .bubble__time { color: var(--muted); }

.card-link {
  border-left: 3px solid var(--terracotta);
  padding: 10px 14px 12px 12px;
  background: linear-gradient(to right, rgba(200, 90, 58, .06), transparent 60%);
}
.card-link__src { font-size: 11.5px; color: var(--muted); text-transform: uppercase; letter-spacing: .08em; }
.card-link__title { font-weight: 600; font-size: 14.5px; margin-top: 4px; line-height: 1.3; }
.card-link__url { font-size: 12px; color: var(--muted); margin-top: 4px; word-break: break-all; }

.card-meta {
  padding: 12px 14px 14px;
  border-top: 1px solid var(--line-soft);
}
.card-meta__row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 10px;
}
.chip {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 9px;
  border-radius: 999px;
  background: var(--cream-deep);
  color: var(--graphite);
  font-size: 12px;
  font-weight: 500;
}
.chip--accent { background: var(--accent-tint); color: var(--terracotta-d); }
.chip svg { width: 12px; height: 12px; }
.card-actions {
  display: flex;
  gap: 8px;
}
.card-actions button {
  flex: 1;
  padding: 9px 10px;
  font-size: 13px;
  font-weight: 600;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: var(--cream-soft);
  color: var(--graphite);
  transition: background .15s ease, transform .12s ease;
}
.card-actions button.is-primary {
  background: var(--terracotta);
  color: var(--cream-soft);
  border-color: var(--terracotta);
}
.card-actions button:hover { transform: translateY(-1px); }
.card-actions button.is-primary:hover { background: var(--terracotta-d); }

.tg__typing {
  align-self: flex-start;
  padding: 8px 12px;
  background: #fff;
  border: 1px solid var(--line-soft);
  border-radius: 14px;
  display: flex;
  gap: 4px;
}
.tg__typing span {
  width: 6px; height: 6px;
  background: #B5A998;
  border-radius: 50%;
  animation: typing 1.2s infinite ease-in-out;
}
.tg__typing span:nth-child(2) { animation-delay: .15s; }
.tg__typing span:nth-child(3) { animation-delay: .3s; }
@keyframes typing {
  0%, 60%, 100% { transform: translateY(0); opacity: .4; }
  30% { transform: translateY(-4px); opacity: 1; }
}

/* Hero waving capi */
.hero__capi {
  position: absolute;
  right: -40px;
  bottom: -50px;
  width: 180px;
  z-index: 3;
  pointer-events: none;
  animation: capi-wave 4.5s ease-in-out infinite;
  transform-origin: 75% 80%;
  filter: drop-shadow(0 12px 22px rgba(42,42,46,.12));
}
@keyframes capi-wave {
  0%, 100% { transform: rotate(-2deg) translateY(0); }
  50%      { transform: rotate(3deg)  translateY(-6px); }
}

/* Hero floating sticker decorations */
.hero__float {
  position: absolute;
  pointer-events: none;
  z-index: 1;
  border-radius: 16px;
  filter: drop-shadow(0 8px 16px rgba(42,42,46,.10));
  opacity: 0.85;
}
.hero__float--1 {
  width: 90px;
  top: -28px;
  right: -30px;
  animation: float-1 6s ease-in-out infinite;
  transform: rotate(8deg);
}
.hero__float--2 {
  width: 72px;
  bottom: 80px;
  left: -64px;
  animation: float-2 7s ease-in-out infinite;
  transform: rotate(-6deg);
}
.hero__float--3 {
  width: 58px;
  top: 28%;
  right: -68px;
  animation: float-3 5.5s ease-in-out infinite;
  transform: rotate(4deg);
}

@keyframes float-1 {
  0%, 100% { transform: rotate(8deg) translateY(0); }
  50%      { transform: rotate(10deg) translateY(-12px); }
}
@keyframes float-2 {
  0%, 100% { transform: rotate(-6deg) translateY(0); }
  50%      { transform: rotate(-4deg) translateY(-10px); }
}
@keyframes float-3 {
  0%, 100% { transform: rotate(4deg) translateY(0) scale(1); }
  50%      { transform: rotate(2deg) translateY(-8px) scale(1.04); }
}

/* Hero gradient blobs */
.hero__blob {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  filter: blur(60px);
}
.hero__blob--1 {
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(200, 90, 58, 0.12), rgba(200, 90, 58, 0.03) 70%);
  top: -60px;
  right: -40px;
  animation: blob-drift-1 10s ease-in-out infinite;
}
.hero__blob--2 {
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(232, 160, 191, 0.14), rgba(232, 160, 191, 0.02) 70%);
  bottom: -20px;
  left: -30px;
  animation: blob-drift-2 12s ease-in-out infinite;
}

@keyframes blob-drift-1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%      { transform: translate(-15px, 10px) scale(1.05); }
  66%      { transform: translate(10px, -8px) scale(0.97); }
}
@keyframes blob-drift-2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%      { transform: translate(12px, -10px) scale(1.08); }
}

/* Hero ornaments — single small underline */
.hero__underline {
  display: block;
  width: 64px;
  height: 8px;
  margin-top: 8px;
}

@media (max-width: 960px) {
  .hero { padding: 48px 0 72px; }
  .hero__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .hero__copy { max-width: none; }
  .hero__capi { width: 140px; right: -10px; bottom: -30px; }
  .hero__float--1 { width: 70px; right: -16px; top: -16px; }
  .hero__float--2 { width: 56px; left: -36px; }
  .hero__float--3 { width: 46px; right: -40px; }
  .hero__blob--1 { width: 220px; height: 220px; }
  .hero__blob--2 { width: 140px; height: 140px; }
}
@media (max-width: 600px) {
  .hero__float--1 { width: 56px; right: 0; }
  .hero__float--2 { display: none; }
  .hero__float--3 { width: 44px; right: -16px; }
}

/* ============================================================
   SECTION SHELL
   ============================================================ */
.section {
  padding: 120px 0;
  position: relative;
}
.section--alt { background: var(--cream-soft); }
.section__head {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 56px;
  max-width: 720px;
}
.section__head .eyebrow { align-self: flex-start; }
.section__lede {
  color: var(--muted);
  font-size: 19px;
  text-wrap: pretty;
  max-width: 580px;
}
@media (max-width: 720px) {
  .section { padding: 80px 0; }
  .section__head { margin-bottom: 40px; }
}

/* Hairline divider tied to the page rhythm */
.divider {
  height: 1px;
  background: linear-gradient(to right,
    transparent,
    var(--line) 20%,
    var(--line) 80%,
    transparent);
  margin: 0;
  border: 0;
}

/* ============================================================
   PROBLEM
   ============================================================ */
.problem__layout {
  display: grid;
  grid-template-columns: 1fr 240px;
  gap: 56px;
  align-items: center;
}
.problem__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.p-card {
  background: var(--cream-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px 26px;
  position: relative;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.section--alt .p-card { background: var(--cream); }
.p-card:hover {
  transform: translateY(-3px);
  border-color: #d8c8aa;
  box-shadow: 0 18px 30px -22px rgba(42, 42, 46, .25);
}
.p-card__num {
  font-family: var(--serif);
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.05em;
  margin-bottom: 18px;
}
.p-card__icon {
  width: 40px; height: 40px;
  border-radius: 12px;
  background: var(--accent-tint);
  color: var(--terracotta-d);
  display: grid;
  place-items: center;
  margin-bottom: 18px;
}
.p-card__icon svg { width: 22px; height: 22px; stroke-width: 1.6; }
.p-card h3 {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 8px;
}
.p-card p {
  color: var(--muted);
  font-size: 15.5px;
  line-height: 1.5;
}
.p-card__quote {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px dashed var(--line);
  font-size: 13.5px;
  color: var(--muted);
  font-style: italic;
}
.problem__capi {
  position: relative;
}
.problem__capi img {
  width: 100%;
  filter: drop-shadow(0 12px 22px rgba(42,42,46,.10));
}
.problem__capi-cap {
  margin-top: 8px;
  font-size: 13px;
  color: var(--muted);
  text-align: center;
  font-style: italic;
}
@media (max-width: 1000px) {
  .problem__layout { grid-template-columns: 1fr; }
  .problem__cards { grid-template-columns: repeat(3, 1fr); }
  .problem__capi { display: none; }
}
@media (max-width: 720px) {
  .problem__cards { grid-template-columns: 1fr; gap: 12px; }
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.step {
  padding: 36px 28px 36px;
  position: relative;
  display: flex;
  flex-direction: column;
}
.step + .step { border-left: 1px solid var(--line); }
.step__num {
  font-family: var(--serif);
  font-size: 56px;
  font-weight: 600;
  line-height: 1;
  color: var(--terracotta);
  letter-spacing: -0.04em;
  margin-bottom: 18px;
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.step__num em {
  font-style: normal;
  font-size: 13px;
  font-family: var(--sans);
  color: var(--muted);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.step h3 {
  font-size: 22px;
  margin-bottom: 8px;
}
.step p {
  color: var(--muted);
  font-size: 15.5px;
  line-height: 1.5;
}
.step__hint {
  margin-top: auto;
  padding-top: 28px;
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 12px;
  color: var(--muted);
  background: var(--cream-soft);
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  padding: 8px 10px;
  display: inline-block;
}
.section--alt .step__hint { background: var(--cream); }
@media (max-width: 900px) {
  .steps { grid-template-columns: 1fr; }
  .step + .step { border-left: 0; border-top: 1px solid var(--line); }
}

/* ============================================================
   REMINDERS — timeline
   ============================================================ */
.timeline {
  max-width: 600px;
  position: relative;
  padding-left: 80px;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 79px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: var(--line);
}
.timeline__item {
  position: relative;
  padding-bottom: 28px;
}
.timeline__item:last-child { padding-bottom: 0; }
.timeline__time {
  position: absolute;
  left: -80px;
  top: 2px;
  width: 56px;
  text-align: right;
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
}
.timeline__dot {
  position: absolute;
  left: -5px;
  top: 6px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--terracotta);
  border: 2px solid var(--cream);
  z-index: 1;
}
.timeline__dot--small {
  width: 6px;
  height: 6px;
  left: -3px;
  top: 8px;
  background: var(--line);
  border: none;
}
.timeline__dot--accent {
  background: var(--coral);
  width: 12px;
  height: 12px;
  left: -6px;
  top: 4px;
  box-shadow: 0 0 0 4px rgba(255, 77, 94, .15);
}
.timeline__card {
  margin-left: 20px;
  background: var(--cream-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px 20px;
}
.timeline__card--note {
  background: transparent;
  border: none;
  padding: 4px 20px;
  font-size: 13.5px;
  color: var(--muted);
  font-style: italic;
}
.timeline__label {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 17px;
  margin-bottom: 6px;
}
.timeline__text {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.5;
}
.timeline__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 12px;
}
.timeline__item--accent .timeline__card {
  border-color: rgba(255, 77, 94, .3);
  background: linear-gradient(135deg, var(--cream-soft), rgba(255, 77, 94, .04));
}
.timeline__item--muted { padding-bottom: 16px; }

.timeline__footer {
  margin-top: 32px;
  max-width: 600px;
}
.timeline__note {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.5;
  padding: 16px 20px;
  background: var(--cream-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.timeline__note svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--terracotta);
  margin-top: 1px;
}

@media (max-width: 600px) {
  .timeline { padding-left: 50px; }
  .timeline::before { left: 49px; }
  .timeline__time {
    left: -50px;
    width: 36px;
    font-size: 11px;
  }
}

/* ============================================================
   MINI APP — phone mocks
   ============================================================ */
.phones {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  justify-items: center;
}
.phone {
  text-align: center;
  max-width: 280px;
  width: 100%;
}
.phone__frame {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 42px;
  overflow: hidden;
  padding: 6px;
  box-shadow:
    0 1px 0 rgba(255,255,255,.6) inset,
    0 24px 48px -22px rgba(42,42,46,.24);
  position: relative;
}
/* Real screenshot fades in over the mock skeleton once loaded */
.phone__shot {
  position: absolute;
  top: 6px;
  left: 6px;
  width: calc(100% - 12px);
  height: calc(100% - 12px);
  object-fit: cover;
  object-position: center top;
  border-radius: 34px;
  opacity: 0;
  transition: opacity .55s ease;
  z-index: 3;
  background: var(--cream-soft);
}
.phone__shot.is-loaded { opacity: 1; }
.phone__notch {
  width: 100px;
  height: 22px;
  background: var(--graphite);
  border-radius: 0 0 14px 14px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.phone__screen {
  padding: 8px 12px 18px;
  height: 400px;
  overflow: hidden;
  border-radius: 30px;
  background: var(--cream-soft);
}
.phone__label {
  margin-top: 14px;
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* Mock UI elements */
.mock-header {
  display: flex;
  gap: 4px;
  margin-bottom: 10px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--line-soft);
}
.mock-tab {
  font-size: 11px;
  font-weight: 500;
  padding: 5px 8px;
  border-radius: 8px;
  color: var(--muted);
  white-space: nowrap;
}
.mock-tab--active {
  background: var(--cream-deep);
  color: var(--graphite);
  font-weight: 600;
}
.mock-search {
  padding: 8px 10px;
  background: var(--cream-soft);
  border: 1px solid var(--line-soft);
  border-radius: 10px;
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 8px;
}
.mock-filters {
  display: flex;
  gap: 5px;
  margin-bottom: 8px;
  flex-wrap: wrap;
}
.mock-pill {
  font-size: 11px;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--cream-soft);
  border: 1px solid var(--line-soft);
  color: var(--muted);
}
.mock-pill--active {
  background: var(--terracotta);
  color: var(--cream-soft);
  border-color: var(--terracotta);
}
.mock-count {
  font-size: 11px;
  color: var(--muted);
  margin-bottom: 10px;
}

/* Library cards */
.mock-card {
  background: var(--cream-soft);
  border: 1px solid var(--line-soft);
  border-radius: 10px;
  padding: 10px;
  margin-bottom: 8px;
  text-align: left;
}
.mock-card__title {
  font-weight: 600;
  font-size: 13px;
  margin-bottom: 4px;
  line-height: 1.3;
}
.mock-card__desc {
  font-size: 11px;
  color: var(--muted);
  line-height: 1.4;
  margin-bottom: 6px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.mock-card__meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 10.5px;
  color: var(--muted);
}
.mock-tag {
  background: var(--accent-tint);
  color: var(--terracotta-d);
  padding: 2px 6px;
  border-radius: 4px;
  font-weight: 500;
}
.mock-status {
  color: var(--muted);
}
.mock-status--new {
  color: var(--terracotta);
  font-weight: 600;
}

/* Course cards */
.mock-course {
  background: var(--cream-soft);
  border: 1px solid var(--line-soft);
  border-radius: 10px;
  padding: 12px;
  margin-bottom: 8px;
  text-align: left;
  position: relative;
}
.mock-course__title {
  font-weight: 600;
  font-size: 12.5px;
  line-height: 1.3;
  margin-bottom: 4px;
  padding-right: 50px;
}
.mock-course__src {
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: 10px;
  color: var(--muted);
  letter-spacing: 0.06em;
  font-weight: 600;
}
.mock-course__bar {
  height: 5px;
  background: var(--cream-deep);
  border-radius: 3px;
  overflow: hidden;
  margin: 8px 0 6px;
}
.mock-course__fill {
  height: 100%;
  background: var(--terracotta);
  border-radius: 3px;
}
.mock-course__info {
  font-size: 11px;
  color: var(--muted);
}

/* Settings mock */
.mock-settings-section {
  text-align: left;
  margin-top: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line-soft);
}
.mock-settings-section:last-child { border-bottom: 0; }
.mock-settings__title {
  font-weight: 600;
  font-size: 13px;
  margin-bottom: 10px;
}
.mock-tones {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 8px;
}
.mock-tone {
  font-size: 11px;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--cream-soft);
}
.mock-tone--active {
  background: var(--coral);
  color: var(--cream-soft);
  border-color: var(--coral);
}
.mock-tone-hint {
  font-size: 11px;
  color: var(--muted);
  font-style: italic;
  line-height: 1.4;
}
.mock-interests {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
.mock-interest {
  font-size: 11px;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--cream-soft);
}
.mock-interest--active {
  background: var(--terracotta);
  color: var(--cream-soft);
  border-color: var(--terracotta);
}

@media (max-width: 900px) {
  .phones {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .phone { max-width: 280px; }
}

/* ============================================================
   COURSES
   ============================================================ */
.courses__layout {
  max-width: 480px;
}
.courses__card {
  background: var(--cream-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px 24px;
  transition: transform .25s ease, box-shadow .25s ease;
}
.courses__card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 30px -22px rgba(42, 42, 46, .25);
}
.courses__card-head {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 17px;
  margin-bottom: 18px;
}
.courses__card-head svg {
  width: 22px;
  height: 22px;
  color: var(--terracotta);
  flex-shrink: 0;
}
.courses__bar {
  height: 8px;
  background: var(--cream-deep);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 10px;
}
.courses__bar-fill {
  height: 100%;
  background: var(--terracotta);
  border-radius: 4px;
  transition: width .8s cubic-bezier(.2,.7,.2,1);
}
.courses__meta {
  display: flex;
  gap: 6px;
  font-size: 13.5px;
  color: var(--muted);
  margin-bottom: 16px;
}
.courses__hint {
  margin-top: 14px;
}

/* ============================================================
   TONES — main interactive
   ============================================================ */
.tones {
  position: relative;
}
.tones__tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 36px;
  padding-bottom: 6px;
}
.tone-tab {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 18px 11px 14px;
  border-radius: 999px;
  background: var(--cream-soft);
  border: 1px solid var(--line);
  color: var(--graphite);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.005em;
  transition: background .18s ease, color .18s ease, border-color .18s ease, transform .12s ease;
}
.section--alt .tone-tab { background: var(--cream); }
.tone-tab__emoji { font-size: 18px; line-height: 1; }
.tone-tab:hover {
  border-color: #cdbb9a;
  transform: translateY(-1px);
}
.tone-tab.is-active {
  background: var(--graphite);
  color: var(--cream-soft);
  border-color: var(--graphite);
}
.tone-tab.is-active.is-savage  { background: var(--coral);   border-color: var(--coral); }
.tone-tab.is-active.is-friendly { background: var(--terracotta); border-color: var(--terracotta); }
.tone-tab.is-active.is-kid      { background: var(--pink);    border-color: var(--pink);    color: var(--graphite-2); }
.tone-tab.is-active.is-hard     { background: var(--graphite-2); border-color: var(--graphite-2); }

.tones__stage {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 0;
  background: var(--cream-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 460px;
  transition: border-color .3s ease, background .3s ease;
}
.section--alt .tones__stage { background: var(--cream); }
.tones__stage[data-tone="savage"]  { border-color: rgba(255, 77, 94, .35); }
.tones__stage[data-tone="kid"]     { border-color: rgba(232, 160, 191, .55); }

.tones__capi {
  position: relative;
  display: grid;
  place-items: center;
  padding: 36px;
  background:
    radial-gradient(circle at 50% 60%, var(--accent-tint), transparent 65%);
  transition: background .3s ease;
  min-height: 360px;
  overflow: hidden;
}
.tones__capi::before {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--line), transparent);
}
.tones__sticker-wrap {
  position: relative;
  width: 100%;
  max-width: 280px;
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
}
.tones__sticker {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 14px 22px rgba(42,42,46,.16));
  transition: opacity .22s ease, transform .35s ease;
  animation: sticker-bob 5s ease-in-out infinite;
}
@keyframes sticker-bob {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50%      { transform: translateY(-6px) rotate(1.5deg); }
}
.tones__sticker.is-leaving { opacity: 0; transform: scale(.96); }

.tones__detail {
  padding: 44px 44px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
  border-left: 1px solid var(--line);
}

.tone-name {
  display: flex;
  align-items: baseline;
  gap: 12px;
}
.tone-name__label {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--accent);
  transition: color .25s ease;
}
.tone-name__pill {
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--cream-deep);
}
.tone-desc {
  font-size: 17px;
  color: var(--graphite);
  max-width: 480px;
  line-height: 1.55;
  text-wrap: pretty;
  font-weight: 400;
}

.tone-push {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 16px 18px 18px;
  position: relative;
  box-shadow: 0 18px 30px -24px rgba(42,42,46,.25);
}
.section--alt .tone-push { background: var(--cream-soft); }
.tone-push__head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.tone-push__icon {
  width: 26px; height: 26px;
  border-radius: 7px;
  background: var(--accent);
  color: var(--cream-soft);
  display: grid;
  place-items: center;
  font-family: var(--serif);
  font-weight: 700;
  font-size: 15px;
  flex-shrink: 0;
  transition: background .25s ease;
}
.tone-push__app {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .04em;
  color: var(--graphite);
  text-transform: uppercase;
}
.tone-push__time {
  margin-left: auto;
  font-size: 12px;
  color: var(--muted);
}
.tone-push__title {
  font-weight: 600;
  font-size: 14.5px;
  margin-bottom: 2px;
}
.tone-push__body {
  font-size: 15.5px;
  line-height: 1.4;
  color: var(--graphite);
  transition: opacity .2s ease;
  text-wrap: pretty;
}
.tone-push__body.is-leaving { opacity: 0; }

.tone-cta-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 4px;
  font-size: 13.5px;
  color: var(--muted);
}
.tone-cta-row strong {
  color: var(--graphite);
  font-weight: 600;
}

@media (max-width: 900px) {
  .tones__stage { grid-template-columns: 1fr; min-height: 0; }
  .tones__capi { padding: 28px 28px 14px; }
  .tones__sticker-wrap { max-width: 200px; }
  .tones__detail {
    padding: 28px 28px 32px;
    border-left: 0;
    border-top: 1px solid var(--line);
  }
  .tones__tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    margin-left: calc(-1 * var(--gutter));
    margin-right: calc(-1 * var(--gutter));
    padding: 4px var(--gutter) 12px;
    scrollbar-width: none;
  }
  .tones__tabs::-webkit-scrollbar { display: none; }
  .tone-tab { flex-shrink: 0; }
}

/* ============================================================
   FAQ
   ============================================================ */
.faq {
  max-width: 820px;
  margin: 0 auto;
}
.faq__list {
  border-top: 1px solid var(--line);
}
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-item__btn {
  width: 100%;
  text-align: left;
  padding: 22px 0 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-family: var(--serif);
  font-weight: 600;
  font-size: 22px;
  color: var(--graphite);
  letter-spacing: -0.01em;
  transition: color .15s ease;
}
.faq-item__btn:hover { color: var(--terracotta); }
.faq-item__icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  transition: background .2s ease, border-color .2s ease, transform .25s ease;
  position: relative;
}
.faq-item__icon::before,
.faq-item__icon::after {
  content: "";
  position: absolute;
  background: var(--graphite);
  transition: transform .25s ease, background .2s ease;
}
.faq-item__icon::before { width: 11px; height: 1.6px; }
.faq-item__icon::after  { width: 1.6px; height: 11px; }
.faq-item.is-open .faq-item__icon {
  background: var(--terracotta);
  border-color: var(--terracotta);
}
.faq-item.is-open .faq-item__icon::before,
.faq-item.is-open .faq-item__icon::after {
  background: var(--cream-soft);
}
.faq-item.is-open .faq-item__icon::after { transform: scaleY(0); }

.faq-item__panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .35s ease;
}
.faq-item.is-open .faq-item__panel { grid-template-rows: 1fr; }
.faq-item__panel-inner {
  overflow: hidden;
  font-size: 16.5px;
  color: var(--muted);
  line-height: 1.6;
  text-wrap: pretty;
}
.faq-item__panel-inner > div {
  padding: 0 0 24px;
  max-width: 640px;
}

/* ============================================================
   FINAL CTA
   ============================================================ */
.final {
  background: var(--terracotta);
  color: var(--cream-soft);
  border-radius: 0;
  position: relative;
  overflow: hidden;
}
.final__inner {
  padding: 110px var(--gutter) 120px;
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 48px;
  align-items: center;
}
.final h2 {
  color: var(--cream-soft);
  font-size: clamp(36px, 5.2vw, 64px);
  line-height: 1.02;
  margin-bottom: 26px;
  font-weight: 600;
  text-wrap: balance;
}
.final h2 em {
  font-style: italic;
  color: var(--cream);
  opacity: .7;
  font-weight: 500;
}
.final p {
  color: rgba(250, 246, 240, .85);
  font-size: 18px;
  margin-bottom: 32px;
  max-width: 520px;
}
.final__cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}
.final__fineprint {
  margin-top: 28px;
  font-size: 14.5px;
  line-height: 1.55;
  color: rgba(250, 246, 240, .78);
  max-width: 520px;
  padding-top: 22px;
  border-top: 1px solid rgba(250, 246, 240, .18);
}
.final__fineprint strong {
  color: var(--cream-soft);
  font-weight: 600;
}
.final__capi {
  position: relative;
  display: grid;
  place-items: center;
}
.final__capi img {
  width: 100%;
  max-width: 260px;
  filter: drop-shadow(0 14px 28px rgba(0,0,0,.25));
  animation: capi-cta-bob 3.5s ease-in-out infinite;
}
@keyframes capi-cta-bob {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50%      { transform: translateY(-8px) rotate(2deg); }
}
.final::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 10%, rgba(255,255,255,.10), transparent 50%),
    radial-gradient(circle at 10% 90%, rgba(0,0,0,.08), transparent 50%);
  pointer-events: none;
}
@media (max-width: 800px) {
  .final__inner {
    grid-template-columns: 1fr;
    padding: 72px var(--gutter) 80px;
    text-align: left;
  }
  .final__capi img { max-width: 180px; }
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  padding: 36px 0 44px;
  font-size: 14px;
  color: var(--muted);
  border-top: 1px solid var(--line);
}
.footer__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer__links {
  display: inline-flex;
  gap: 22px;
}
.footer__links a {
  text-decoration: none;
  color: var(--muted);
  transition: color .15s ease;
}
.footer__links a:hover { color: var(--terracotta); }

/* ============================================================
   ANIMATIONS — entry
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.2,1);
}
.reveal.is-in {
  opacity: 1;
  transform: translateY(0);
}
.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .16s; }
.reveal[data-delay="3"] { transition-delay: .24s; }
.reveal[data-delay="4"] { transition-delay: .32s; }

/* hero appears immediately */
.hero .reveal { transition-duration: .9s; }
.hero .reveal.is-in { transition-delay: 0s; }
.hero .reveal[data-delay="1"].is-in { transition-delay: .1s; }
.hero .reveal[data-delay="2"].is-in { transition-delay: .25s; }
.hero .reveal[data-delay="3"].is-in { transition-delay: .4s; }
.hero .reveal[data-delay="4"].is-in { transition-delay: .55s; }

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

/* ============================================================
   NAV LINKS (header) — added with the extension section
   ============================================================ */
.nav__links {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-left: auto;
  margin-right: 24px;
}
.nav__link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 14.5px;
  color: var(--muted);
  text-decoration: none;
  letter-spacing: -0.005em;
  transition: color .2s ease;
}
.nav__link:hover { color: var(--terracotta); }
.nav__link-badge {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--terracotta-d);
  background: var(--accent-tint);
  padding: 2px 6px;
  border-radius: 999px;
  line-height: 1;
}
@media (max-width: 600px) {
  .nav__links { display: none; }
}

/* ============================================================
   EXTENSION
   ============================================================ */
.ext__layout {
  display: grid;
  grid-template-columns: 1fr 260px;
  gap: 56px;
  align-items: center;
}
.ext__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.ext__capi { position: relative; }
.ext__capi img {
  width: 100%;
  filter: drop-shadow(0 12px 22px rgba(42,42,46,.12));
  animation: capi-cta-bob 3.6s ease-in-out infinite;
}
.ext__capi-cap {
  margin-top: 8px;
  font-size: 13px;
  color: var(--muted);
  text-align: center;
  font-style: italic;
}

/* Real extension popup screenshots — casual overlapping stack */
.ext__shots {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.ext__shots-stack {
  position: relative;
  width: 100%;
  max-width: 240px;
  height: 320px;
}
.ext-pop {
  margin: 0;
  position: absolute;
  border-radius: 20px;
  overflow: hidden;
  background: var(--cream);
  border: 1px solid var(--line);
  box-shadow: 0 20px 40px -18px rgba(42,42,46,.32);
}
.ext-pop img {
  width: 100%;
  display: block;
  opacity: 0;
  transition: opacity .55s ease;
}
.ext-pop img.is-loaded { opacity: 1; }
.ext-pop--back {
  top: 0;
  right: 2px;
  width: 62%;
  transform: rotate(5deg);
  z-index: 1;
}
.ext-pop--front {
  bottom: 0;
  left: 2px;
  width: 73%;
  transform: rotate(-3.5deg);
  z-index: 2;
}

/* connect + CTA panel */
.ext__panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
  margin-top: 40px;
  padding: 24px 28px;
  background: var(--cream-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}
.ext__flow {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.ext__flow-title {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 18px;
}
.ext__flow-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
}
.ext__flow-steps li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14.5px;
  color: var(--muted);
}
.ext__flow-num {
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--accent-tint);
  color: var(--terracotta-d);
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
}
.ext__flow-steps code {
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 13px;
  background: var(--cream-deep);
  color: var(--graphite);
  padding: 2px 7px;
  border-radius: 6px;
}
.ext__cta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  flex-shrink: 0;
}
.ext-badge {
  display: inline-flex;
  align-items: center;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--terracotta-d);
  background: var(--accent-tint);
  border: 1px solid rgba(200, 90, 58, .18);
  padding: 5px 12px;
  border-radius: 999px;
}

@media (max-width: 1000px) {
  .ext__layout { grid-template-columns: 1fr; gap: 36px; }
  .ext__capi { max-width: 220px; margin: 0 auto; }
  .ext__shots { max-width: 300px; margin: 0 auto; }
}
@media (max-width: 900px) {
  .ext__cards { grid-template-columns: 1fr; gap: 12px; }
}
@media (max-width: 720px) {
  .ext__panel { flex-direction: column; align-items: flex-start; padding: 22px; }
  .ext__cta { align-self: stretch; }
  .ext__cta .btn { width: 100%; justify-content: center; }
}
