/* ─────────────────────────────────────────────────────────────────────
   SvarKlar - homepage-only stylesheet.

   Loaded only on `/` AFTER site.css. Holds selectors
   unique to the homepage: floating inbox card, mock components, the
   4 value blocks (reply ledger, timeline rail, voice card, hub block
   wiring), pricing card, founder card, palette arc, plus their
   responsive overrides.

   Site-wide chrome (header, footer, CTAs, FAQ, final CTA, em) lives
   in site.css. Hub primitives (.t-hub-*) stay in site.css because
   /services/ also uses them.
   ───────────────────────────────────────────────────────────────────── */


/* ════════════════════════════════════════════════════
   1. HERO TRUST DOT (home-only animation)
   ════════════════════════════════════════════════════ */

.t-dot-live {
  background: var(--gold) !important;
  opacity: 1 !important;
  box-shadow: 0 0 0 0 rgba(232, 196, 89, 0.5);
  animation: t-pulse 2.2s cubic-bezier(.4,0,.2,1) infinite;
}
@media (prefers-reduced-motion: reduce) {
  .t-dot-live { animation: none; }
  /* Hero inbox demo is a finite 3.4s sequence (not ambient motion).
     Override the global tokens.css `* { transition-duration: 0.01ms !important }`
     with longhand transition-duration (matches per-property values from the base rule). */
  .t-mock-fade { transition-duration: 420ms, 360ms, 320ms, 360ms !important; }
  .t-mock-typing { transition-duration: 200ms, 240ms, 240ms !important; }
  .t-typing-dot { animation: none; }
}


/* ════════════════════════════════════════════════════
   2. FLOATING INBOX CARD (right side of hero)
   ════════════════════════════════════════════════════ */

.t-hero-card {
  position: absolute;
  right: max(32px, calc((100vw - 1200px) / 2 + 32px));
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
  width: 400px;
  max-width: calc(50vw - 48px);
}
.t-inbox-mock {
  position: relative;
  background: rgba(12, 13, 15, 0.65);
  border: 1px solid rgba(232, 196, 89, 0.18);
  border-radius: 22px;
  padding: 22px 22px 24px;
  -webkit-backdrop-filter: blur(28px) saturate(180%);
          backdrop-filter: blur(28px) saturate(180%);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.45), 0 1px 0 rgba(28, 24, 12, 0.08);
}
.t-inbox-mock.is-replayable {
  cursor: pointer;
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}
.t-inbox-mock.is-replayable:hover {
  transform: translateY(-2px);
  border-color: rgba(232, 196, 89, 0.28);
}

.t-mock-row {
  display: flex; gap: 12px; align-items: flex-start;
}
.t-mock-fade {
  max-height: 0; overflow: hidden;
  margin-bottom: 0;
  opacity: 0;
  transform: translateY(6px);
  transition:
    max-height 420ms cubic-bezier(.4,0,.2,1),
    margin-bottom 360ms ease,
    opacity 320ms ease,
    transform 360ms ease;
}
.t-mock-fade.is-in {
  max-height: 220px;
  margin-bottom: 12px;
  opacity: 1;
  transform: translateY(0);
}
.t-mock-avatar {
  flex-shrink: 0;
  width: 34px; height: 34px;
  border-radius: var(--r-pill);
  background: rgba(232, 196, 89, 0.12);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
}
.t-mock-avatar.is-brand {
  background: transparent;
  padding: 0;
  overflow: hidden;
}
.t-mock-avatar.is-brand img {
  width: 100%; height: 100%;
  border-radius: 8px;
  display: block;
}
.t-mock-bubble {
  flex: 1;
  background: var(--mock-ink-2);
  border-radius: 12px;
  padding: 12px 14px;
}
.t-mock-bubble.is-reply {
  background: var(--mock-ink-2);
  border: 1px solid rgba(232, 196, 89, 0.28);
}
.t-mock-meta {
  font-size: 0.74rem;
  color: var(--mock-mute);
  margin: 0 0 4px;
  font-weight: 500;
}
.t-mock-text {
  font-size: 0.92rem;
  color: var(--mock-cream);
  margin: 0;
  line-height: 1.5;
}

/* Typing indicator */
.t-mock-typing {
  display: flex; gap: 12px; align-items: center; height: 0;
  opacity: 0; overflow: hidden;
  transition: opacity 200ms ease, height 240ms ease, margin-bottom 240ms ease;
}
.t-mock-typing.is-in {
  opacity: 1; height: 34px; margin-bottom: 12px;
}
.t-typing-avatar {
  flex-shrink: 0; width: 34px; height: 34px;
  display: flex; align-items: center; justify-content: center;
}
.t-typing-bubble {
  display: inline-flex; gap: 5px; align-items: center;
  background: var(--mock-ink-2);
  border-radius: var(--r-pill);
  padding: 8px 14px;
}
.t-typing-dot {
  width: 6px; height: 6px;
  border-radius: var(--r-pill);
  background: var(--gold);
  opacity: 0.45;
  animation: t-typing 1.2s ease-in-out infinite;
}
.t-typing-dot:nth-child(2) { animation-delay: 0.15s; }
.t-typing-dot:nth-child(3) { animation-delay: 0.3s; }
@keyframes t-typing {
  0%, 60%, 100% { opacity: 0.35; transform: translateY(0); }
  30%           { opacity: 1;    transform: translateY(-2px); }
}


/* ════════════════════════════════════════════════════
   3. VALUE BLOCKS (4 alternating)

   Each block has:
     - Tanker numeral (data-metric attribute) above the heading
     - Two paragraphs of copy
     - A mock on the opposite side (.is-flipped flips text/mock order)

   Mocks (light, paper-feel):
     #reply -> MockReplyTimeline (.t-rep-ledger)
     #how   -> MockTimeline      (.t-tl-rail)
     #voice -> MockVoice         (.t-voice-card)
     #hub   -> MockHub           (.t-hub-app - dashboard, primitives in site.css)
   ════════════════════════════════════════════════════ */

.t-block {
  padding: 120px 0;
  position: relative;
}

.t-block-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
@media (min-width: 1101px) {
  #hub .t-block-grid { grid-template-columns: 1.15fr 0.85fr; }
  #hub .t-block-grid.is-flipped > .t-block-text { order: 2; }
  #hub .t-block-grid.is-flipped > .t-block-mock { order: 1; }
}
.t-block-grid.is-flipped > .t-block-text { order: 2; }
.t-block-grid.is-flipped > .t-block-mock { order: 1; }

/* Tanker metric numeral - alternating gold/ink across the 4 blocks */
.t-block-text::before {
  content: attr(data-metric);
  display: block;
  font-family: var(--font-display);
  font-size: clamp(3rem, 5vw, 4.5rem);
  line-height: 0.95;
  margin: 0 0 14px;
  color: var(--gold-deep);
}
#how   .t-block-text::before { color: var(--ink); }
#hub   .t-block-text::before { color: var(--ink); }

.t-block-text h2 {
  font-family: var(--heading-font);
  font-size: var(--h2-size-d);
  font-weight: var(--h2-weight);
  line-height: var(--h2-lh);
  letter-spacing: var(--h2-ls);
  color: var(--ink);
  margin: 0 0 18px;
  max-width: 18ch;
  text-wrap: balance;
}
.t-block-text p {
  font-size: 1rem;
  color: var(--ink);
  line-height: 1.65;
  margin: 0 0 12px;
  max-width: 50ch;
  text-wrap: pretty;
}
.t-block-text p:last-child { margin-bottom: 0; }

/* Hairline divider between adjacent blocks */
.t-block + .t-block::before {
  content: "";
  position: absolute; top: 0; left: 12.5%; right: 12.5%;
  height: 1px;
  background: linear-gradient(90deg,
    transparent,
    rgba(0, 0, 0, 0.16) 30%,
    rgba(0, 0, 0, 0.16) 70%,
    transparent);
  z-index: 1;
}

/* Soft gradient bleed at bottom of each block (warm sections) */
.t-block::after,
.t-pricing::after,
.t-founder::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: 0;
  height: 96px;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.04));
  pointer-events: none;
}
/* Pricing -> Founder seam: deep bleed for an almost imperceptible transition */
.t-pricing::after {
  height: 192px;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.18));
}

/* ── Reply mock (block 1) - paper ledger ── */
.t-rep-ledger {
  background: var(--paper);
  border: 2px solid rgba(28, 24, 12, 0.28);
  border-radius: var(--r-lg);
  padding: 4px 30px;
  font-family: var(--body-font);
  box-shadow: 0 1px 0 rgba(28, 24, 12, 0.06), 0 22px 40px -22px rgba(28, 24, 12, 0.30);
}
.t-rep-ledger-row {
  display: grid;
  grid-template-columns: 84px 1fr;
  align-items: baseline;
  gap: 18px;
  padding: 18px 0;
  border-top: 1.5px solid rgba(28, 24, 12, 0.28);
}
.t-rep-ledger-row:first-child { border-top: 0; }
.t-rep-ledger-time {
  font-size: 0.95rem; font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.01em;
  font-variant-numeric: tabular-nums;
}
.t-rep-ledger-row.is-active .t-rep-ledger-time { color: var(--gold-deep); }
.t-rep-ledger-event {
  font-size: 1rem; line-height: 1.5;
  color: var(--ink); margin: 0;
  text-wrap: pretty;
}

/* ── Timeline mock (block 2) - vertical rail ── */
.t-tl-rail {
  position: relative;
  padding: 8px 0 8px 32px;
  font-family: var(--body-font);
}
.t-tl-rail-line {
  position: absolute; left: 9px; top: 18px; bottom: 18px;
  width: 2px;
  background: rgba(28, 24, 12, 0.28);
}
.t-tl-rail-step {
  position: relative;
  padding: 14px 0;
  display: flex; flex-direction: column; gap: 4px;
}
.t-tl-rail-step + .t-tl-rail-step { border-top: 1.5px solid rgba(28, 24, 12, 0.28); }
.t-tl-rail-dot {
  position: absolute; left: -32px; top: 22px;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--cream);
  border: 2px solid var(--ink);
  box-shadow: 0 0 0 4px var(--cream);
}
.t-tl-rail-step.is-active .t-tl-rail-dot {
  background: var(--gold);
  border-color: var(--gold-deep);
}
.t-tl-when {
  font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--ink);
}
.t-tl-rail-step.is-active .t-tl-when { color: var(--gold-deep); }
.t-tl-what {
  font-size: 1.05rem; line-height: 1.45;
  color: var(--ink); margin: 0;
  text-wrap: pretty;
}

/* ── Voice mock (block 3) - light reply card ── */
.t-voice-card {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 30px;
  font-family: var(--body-font);
  box-shadow: 0 1px 0 rgba(28, 24, 12, 0.04), 0 18px 36px -22px rgba(28, 24, 12, 0.18);
  position: relative;
}
.t-voice-card::before {
  content: "";
  position: absolute; left: 0; top: 24px; bottom: 24px;
  width: 3px;
  background: var(--gold);
  border-radius: 0 3px 3px 0;
}
.t-voice-from {
  font-size: 0.78rem;
  color: var(--ink);
  margin: 0 0 14px;
  letter-spacing: 0.01em;
}
.t-voice-from b { color: var(--ink); font-weight: 600; }
.t-voice-text {
  font-size: 1.02rem;
  color: var(--ink);
  line-height: 1.6;
  margin: 0 0 16px;
  text-wrap: pretty;
}
.t-voice-sign {
  font-family: var(--font-accent);
  font-size: 1.5rem;
  color: var(--ink);
  margin: 0;
  line-height: 1;
}


/* ════════════════════════════════════════════════════
   4. PRICING

   Single locked card with optional "see what's inside" reveal.
   Card is dark (data-card="ink"), section background is warm-tan
   (set in the palette arc section below).
   ════════════════════════════════════════════════════ */

.t-pricing {
  padding: 120px 0;
  position: relative;
  color: var(--ink);
}

.t-pricing-card {
  max-width: 720px;
  margin: 0 auto;
  background: var(--ink);
  color: #f5f0e6;
  border: 1px solid rgba(232, 196, 89, 0.18);
  border-radius: 22px;
  padding: 64px 56px 48px;
  text-align: center;
  position: relative;
  overflow: visible;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.06) inset,
    0 16px 48px rgba(0, 0, 0, 0.40),
    0 4px 10px rgba(0, 0, 0, 0.20);
}

/* Floating gold ribbon - pinned to top edge */
.t-pricing-ribbon {
  position: absolute;
  top: -16px; left: 50%;
  transform: translateX(-50%);
  display: inline-flex; align-items: center; justify-content: center;
  height: 38px;
  padding: 0 28px;
  background: linear-gradient(180deg, #f4d36b 0%, var(--gold) 55%, #c9a13e 100%);
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  white-space: nowrap;
  border-radius: var(--r-pill);
  box-shadow:
    0 6px 18px rgba(180, 130, 30, 0.28),
    0 1px 0 rgba(255, 255, 255, 0.5) inset,
    0 -1px 0 rgba(0, 0, 0, 0.10) inset;
}

.t-pricing-num {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 7vw, 5.25rem);
  font-weight: 400;
  color: #f5f0e6;
  line-height: 1;
  margin: 0 0 12px;
  letter-spacing: -0.005em;
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
}
.t-pricing-num-suffix {
  font-family: var(--body-font);
  font-size: 0.32em;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.05em;
  line-height: 1;
  text-transform: lowercase;
  align-self: baseline;
}

.t-pricing-line {
  font-size: 1.0625rem;
  color: #f5f0e6;
  font-weight: 600;
  margin: 0 0 6px;
}
.t-pricing-tag {
  font-style: italic;
  font-size: 1rem;
  color: var(--gold);
  margin: 0 auto 36px;
  position: relative;
  display: block;
  width: fit-content;
}
.t-pricing-tag::after {
  content: "";
  display: block;
  width: 36px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold) 50%, transparent);
  margin: 14px auto 0;
  opacity: 0.9;
}

/* Two-column checklist */
.t-pricing-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 36px;
  margin: 28px auto 32px;
  max-width: 660px;
  text-align: left;
  list-style: none;
  padding: 0;
}
.t-pricing-list li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 12px;
  align-items: start;
  font-family: var(--body-font);
  line-height: 1.4;
}
.t-pricing-tick {
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 22px; height: 22px;
  border-radius: var(--r-pill);
  background: rgba(232, 196, 89, 0.18);
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 1px;
}
.t-pricing-list-text { display: flex; flex-direction: column; gap: 2px; }
.t-pricing-list-h {
  margin: 0;
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: -0.005em;
  color: #f5f0e6;
}
.t-pricing-list-s {
  font-size: 0.8125rem;
  color: var(--body-on-dark-mute);
  letter-spacing: 0.005em;
}

/* Reveal toggle (chevron link below CTA) */
.t-pricing-reveal-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 18px auto 0;
  cursor: pointer;
  background: transparent; border: 0; padding: 0;
  color: var(--gold);
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
  text-decoration-color: rgba(232, 196, 89, 0.5);
  transition: color 160ms ease;
}
.t-pricing-reveal-btn:hover {
  text-decoration-color: var(--gold);
}
.t-pricing-reveal-chev {
  transition: transform 240ms ease;
  flex-shrink: 0;
}
.t-pricing[data-reveal-open="true"] .t-pricing-reveal-chev {
  transform: rotate(180deg);
}

/* Reveal panel (hidden by default) */
.t-pricing-reveal {
  text-align: left;
  margin: 0 auto 28px;
  max-width: 720px;
  padding: 24px 28px;
  border-radius: var(--r-lg);
  background: rgba(0, 0, 0, 0.18);
  border: 1px solid rgba(232, 196, 89, 0.14);
  animation: t-pricing-reveal-in 280ms ease-out;
}
@keyframes t-pricing-reveal-in {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}
.t-pricing-reveal-intro {
  font-size: 0.875rem;
  color: var(--body-on-dark-mute);
  font-style: italic;
  margin: 0 0 18px;
  text-align: center;
}

.t-pricing-stacks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  text-align: left;
}
.t-pricing-stack-h {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--body-on-dark-mute);
  margin: 0 0 10px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(232, 196, 89, 0.14);
}
.t-pricing-rows { list-style: none; margin: 0; padding: 0; }
.t-pricing-rows li {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: baseline;
  padding: 7px 0;
  font-size: 0.8125rem;
  line-height: 1.4;
}
.t-pricing-rows li + li {
  border-top: 1px dashed rgba(232, 196, 89, 0.10);
}
.t-pricing-row-label  { color: var(--body-on-dark); }
.t-pricing-row-val {
  font-variant-numeric: tabular-nums;
  font-weight: 600;
  color: var(--body-on-dark-mute);
  font-size: 0.75rem;
}

.t-pricing-total {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: baseline;
  margin-top: 12px;
  padding-top: 10px;
  border-top: 2px solid var(--gold);
}
.t-pricing-total-label {
  font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.10em; text-transform: uppercase;
  color: var(--body-on-dark);
}
.t-pricing-total-val {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--gold);
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.005em;
}

.t-pricing-reveal-math {
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--body-on-dark);
  text-align: center;
  margin: 22px 0 0;
  padding-top: 18px;
  border-top: 1px solid rgba(232, 196, 89, 0.10);
}
.t-pricing-reveal-math b { color: #f5f0e6; font-weight: 700; }
.t-pricing-reveal-ratio {
  display: inline-block;
  margin-left: 4px;
  color: var(--gold);
  font-weight: 700;
}

.t-pricing-micro {
  font-size: 0.8125rem;
  color: var(--body-on-dark-mute);
  margin: 14px 0 0;
  letter-spacing: 0.005em;
}


/* ════════════════════════════════════════════════════
   5. FOUNDER

   Espresso bg, no card chrome, gold underline on signature,
   round 110px portrait, large gold opening quote glyph.
   ════════════════════════════════════════════════════ */

/* Home founder section. Canonical .t-founder + .t-founder-card
   primitives live in site.css. This block holds the home-only
   quote glyph, signature underline, and footer links. */

.t-founder-quotemark {
  position: absolute;
  top: -40px; left: -8px;
  font-family: var(--font-display);
  font-size: 5rem;
  line-height: 1;
  color: var(--gold);
  opacity: 0.85;
  pointer-events: none;
  user-select: none;
}

.t-founder-quote {
  font-size: 1.0625rem;
  line-height: 1.55;
  font-weight: 500;
  margin: 0 0 14px;
  text-wrap: pretty;
  color: inherit;
}

.t-founder .t-founder-name {
  font-size: 0.95rem;
  font-weight: 600;
  margin: 0 0 8px;
}

/* Home firstname: larger size + underline glyph beneath the script.
   Canonical font-family / weight / rotate / color live in site.css. */
.t-founder .t-founder-firstname {
  font-size: 1.85rem;
  letter-spacing: 0.005em;
  padding-right: 0;
  position: relative;
}
.t-founder .t-founder-firstname::after {
  content: "";
  position: absolute;
  left: 2px; right: 2px; bottom: -2px;
  height: 2px;
  background: linear-gradient(90deg,
    transparent,
    var(--gold) 12%,
    var(--gold) 88%,
    transparent);
  border-radius: 2px;
  opacity: 0.85;
}
.t-founder .t-founder-role {
  font-size: 0.95rem;
  letter-spacing: 0.01em;
}

.t-founder-link {
  font-size: 0.875rem;
  color: var(--body-on-dark);
  text-decoration: underline;
  text-decoration-color: rgba(245, 240, 230, 0.22);
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
  display: inline-block;
}
.t-founder-link:hover { color: var(--gold); }

/* Inline cross-link inside .t-block-text body copy (light surface mirror of .t-founder-link) */
.t-block-link {
  color: var(--ink-mute);
  text-decoration: underline;
  text-decoration-color: rgba(0, 0, 0, 0.22);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: color 0.15s ease, text-decoration-color 0.15s ease;
}
.t-block-link:hover {
  color: var(--gold-deep);
  text-decoration-color: var(--gold-deep);
}

.t-founder-links {
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 18px;
}
@media (max-width: 760px) { .t-founder-links { justify-content: center; } }

/* Founder icon-buttons (phone, WhatsApp) use shared `.btn-icon.on-dark`
   from components.css. No founder-specific overrides needed. */


/* ════════════════════════════════════════════════════
   6. PAGE PALETTE ARC (section backgrounds)

   Light to dark drift. Each section warms then darkens as you scroll.
   Hero, FinalCTA, Footer have their own backgrounds (in site.css).
   ════════════════════════════════════════════════════ */

#reply    { background: var(--arc-1); }
#how      { background: var(--arc-2); }
#voice    { background: var(--arc-3); }
#hub      { background: var(--arc-4); }
.t-pricing { background: var(--arc-5); }
/* .t-founder palette + padding live in site.css (canonical). */


/* ════════════════════════════════════════════════════
   7. RESPONSIVE (home-only selectors)

   Site-wide responsive rules (hero, hub primitives, footer, faq,
   final CTA, mobile nav) stay in site.css.
   ════════════════════════════════════════════════════ */

@media (max-width: 1100px) {
  /* Section H2 step-down at tablet band - .t-block-text only;
     .t-faq h2 + .t-final h2 step-down lives in site.css */
  .t-block-text h2 { font-size: var(--h2-size-t); }

  .t-hero-card {
    position: relative;
    z-index: 4;
    right: auto;
    top: auto;
    width: auto;
    max-width: 480px;
    margin: 24px auto 64px;
    transform: none;
  }
  .t-block-grid > .t-block-text,
  .t-block-grid > .t-block-mock { min-width: 0; }
}

/* Section blocks collapse to 1-col below iPad portrait */
@media (max-width: 1100px) {
  .t-block-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .t-block-grid.is-flipped > .t-block-text { order: 0; }
  .t-block-grid.is-flipped > .t-block-mock { order: 0; }
}

@media (max-width: 760px) {
  /* Floating card sits right after hero on mobile - drop the 24px gap
     inherited from the <=1100 block so trust strip doesn't float too
     far from the inbox animation. */
  .t-hero-card { margin-top: 0; }
  .t-block,
  .t-pricing,
  .t-founder { padding: 80px 0; }
  .t-pricing-card { padding: 56px 24px 36px; border-radius: 18px; }
  .t-pricing-list { grid-template-columns: 1fr; gap: 14px; }
  .t-pricing-stacks { grid-template-columns: 1fr; gap: 24px; }
  .t-pricing-reveal { padding: 20px 18px; }
  .t-founder .t-founder-card {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .t-founder .t-founder-photo { margin: 0 auto; }
  .t-founder-quotemark { display: none; }
  .t-founder .t-founder-name { justify-content: center; }
}

@media (max-width: 640px) {
  /* Mobile band: section H2 step-down (token-driven) for home blocks */
  .t-block-text h2 { font-size: var(--h2-size-m); }
}
