/* SnapRescue — golden-hour rescue aesthetic
   Warm editorial: cream paper, ink type, sunset accent, film grain. */

:root {
  --paper: #f6efe2;
  --paper-2: #efe5d3;
  --ink: #211a13;
  --ink-soft: #5c5044;
  --ink-faint: #9a8c79;
  --sunset: #e8623a;
  --sunset-deep: #c8431f;
  --danger: #d92d20;        /* countdown / deadline red */
  --danger-bright: #ff5a52; /* red on dark backgrounds */
  --gold: #f3b443;
  --teal: #2f6f6a;
  --line: #e0d2bb;
  --card: #fffaf1;
  --shadow: 28px 28px 60px rgba(60, 40, 20, .14);
  --r: 18px;
  --maxw: 1180px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--paper);
  color: var(--ink);
  font-family: "Hanken Grotesk", -apple-system, system-ui, sans-serif;
  font-size: 18px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  position: relative;
}

/* Film grain overlay */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: .04;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

h1, h2, h3, .display {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -0.02em;
  font-optical-sizing: auto;
}

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

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }

.accent { color: var(--sunset); }
.serif-italic { font-family: "Fraunces", serif; font-style: italic; font-weight: 500; }

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: .55em;
  font-weight: 600; font-size: 16px;
  padding: 15px 26px; border-radius: 100px;
  border: 1.5px solid transparent;
  cursor: pointer; transition: transform .18s ease, box-shadow .18s ease, background .2s;
  white-space: nowrap;
}
.btn-primary {
  background: var(--sunset); color: #fff;
  box-shadow: 0 10px 24px rgba(232, 98, 58, .34);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 34px rgba(232, 98, 58, .42); background: var(--sunset-deep); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: var(--paper); transform: translateY(-2px); }
.btn-lg { padding: 18px 34px; font-size: 17px; }

/* ── Nav ─────────────────────────────────────────────────── */
nav {
  position: sticky; top: 0; z-index: 100;
  backdrop-filter: blur(10px);
  background: color-mix(in srgb, var(--paper) 82%, transparent);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, background .3s;
}
nav.scrolled { border-color: var(--line); }
.nav-in { display: flex; align-items: center; justify-content: space-between; height: 74px; }
.logo { font-family: "Fraunces", serif; font-weight: 600; font-size: 23px; letter-spacing: -.02em; display: flex; align-items: center; gap: 9px; }
.logo .mark {
  width: 30px; height: 30px; border-radius: 9px;
  background: radial-gradient(circle at 32% 30%, var(--gold), var(--sunset) 70%);
  display: grid; place-items: center; color: #fff; font-size: 17px;
  box-shadow: 0 4px 12px rgba(232,98,58,.4);
}
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a { font-size: 15px; color: var(--ink-soft); font-weight: 500; transition: color .2s; }
.nav-links a:hover { color: var(--ink); }
.nav-cta { font-size: 15px; }
@media (max-width: 820px) { .nav-links .hide-sm { display: none; } }

/* ── Hero ────────────────────────────────────────────────── */
.hero { padding: 70px 0 40px; position: relative; }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 50px; align-items: center; }
@media (max-width: 900px) { .hero-grid { grid-template-columns: 1fr; gap: 36px; } }

.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 13.5px; font-weight: 600; letter-spacing: .04em; text-transform: uppercase;
  color: var(--sunset-deep);
  background: color-mix(in srgb, var(--sunset) 13%, transparent);
  padding: 7px 14px; border-radius: 100px; margin-bottom: 24px;
}
.eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--sunset); animation: pulse 1.8s infinite; }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: .3; } }

.hero h1 { font-size: clamp(40px, 6.4vw, 74px); margin-bottom: 22px; }
.hero h1 .ghost { position: relative; white-space: nowrap; }
.hero p.lead { font-size: clamp(18px, 2.2vw, 21px); color: var(--ink-soft); max-width: 30em; margin-bottom: 32px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.hero-note { font-size: 14px; color: var(--ink-faint); margin-top: 18px; display: flex; align-items: center; gap: 8px; }

/* Hero photo stack */
.stack { position: relative; height: 480px; }
@media (max-width: 900px) { .stack { height: 420px; } }
.polaroid {
  position: absolute; background: var(--card);
  padding: 14px 14px 46px; border-radius: 6px;
  box-shadow: var(--shadow);
  width: 250px;
}
.polaroid .photo { aspect-ratio: 1; border-radius: 3px; overflow: hidden; position: relative; }
.polaroid .cap { position: absolute; bottom: 14px; left: 0; right: 0; text-align: center; font-family: "Fraunces", serif; font-style: italic; font-size: 15px; color: var(--ink-soft); }
.polaroid.p1 { top: 8px; left: 6%; transform: rotate(-8deg); z-index: 2; }
.polaroid.p2 { top: 60px; right: 4%; transform: rotate(6deg); z-index: 3; }
.polaroid.p3 { bottom: 6px; left: 28%; transform: rotate(-3deg); z-index: 4; width: 268px; }
.float { animation: float 7s ease-in-out infinite; }
.float.d1 { animation-delay: -2s; } .float.d2 { animation-delay: -4s; }
@keyframes float { 0%,100% { transform: translateY(0) var(--rot); } 50% { transform: translateY(-14px) var(--rot); } }
.polaroid.p1 { --rot: rotate(-8deg); } .polaroid.p2 { --rot: rotate(6deg); } .polaroid.p3 { --rot: rotate(-3deg); }

.polaroid .photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ph-a { background: linear-gradient(135deg, #f7b34a, #e8623a); }
.ph-b { background: linear-gradient(135deg, #5aa9a0, #2f6f6a); }
.ph-c { background: linear-gradient(135deg, #c98bb9, #8a4f86); }
.photo .meta-tag {
  position: absolute; left: 8px; bottom: 8px; right: 8px;
  font-size: 11px; font-weight: 600; color: #fff;
  background: rgba(0,0,0,.42); backdrop-filter: blur(4px);
  padding: 5px 8px; border-radius: 6px; display: flex; justify-content: space-between;
}
.photo .meta-tag.bad { background: rgba(180,30,30,.55); }
.stamp {
  position: absolute; z-index: 6; top: -16px; right: 8%;
  background: var(--ink); color: var(--paper);
  font-family: "Fraunces", serif; font-weight: 600;
  padding: 10px 16px; border-radius: 100px; font-size: 14px;
  transform: rotate(5deg); box-shadow: 0 8px 20px rgba(0,0,0,.2);
}

/* ── Ticker ──────────────────────────────────────────────── */
.ticker { background: var(--ink); color: var(--paper); overflow: hidden; padding: 13px 0; margin-top: 34px; }
.ticker-track { display: flex; gap: 40px; white-space: nowrap; width: max-content; animation: scroll 26s linear infinite; }
.ticker span { font-family: "Fraunces", serif; font-size: 16px; display: inline-flex; gap: 40px; }
.ticker b { color: var(--gold); font-weight: 600; }
@keyframes scroll { to { transform: translateX(-50%); } }

/* ── Sections ────────────────────────────────────────────── */
section { padding: 92px 0; }
.sec-head { max-width: 40rem; margin-bottom: 54px; }
.kicker { font-size: 14px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--sunset); margin-bottom: 16px; }
.sec-head h2 { font-size: clamp(32px, 4.6vw, 52px); margin-bottom: 18px; }
.sec-head p { font-size: 19px; color: var(--ink-soft); }

/* Problem split */
.problem { background: var(--paper-2); }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 46px; align-items: center; }
@media (max-width: 860px) { .split { grid-template-columns: 1fr; } }
.file-demo { background: var(--card); border-radius: var(--r); padding: 28px; box-shadow: var(--shadow); border: 1px solid var(--line); }
.file-row { display: flex; justify-content: space-between; align-items: center; padding: 13px 0; border-bottom: 1px dashed var(--line); font-size: 15px; }
.file-row:last-child { border-bottom: none; }
.file-row .k { color: var(--ink-faint); }
.file-row .v.missing { color: var(--sunset-deep); font-weight: 600; }
.file-row .v.fixed { color: var(--teal); font-weight: 600; }
.arrow-down { text-align: center; font-size: 26px; color: var(--sunset); margin: 6px 0; }

/* Steps */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; counter-reset: s; }
@media (max-width: 900px) { .steps { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .steps { grid-template-columns: 1fr; } }
.step { background: var(--card); border: 1px solid var(--line); border-radius: var(--r); padding: 30px 24px; position: relative; }
.step::before {
  counter-increment: s; content: counter(s, decimal-leading-zero);
  font-family: "Fraunces", serif; font-size: 40px; color: var(--sunset); opacity: .85; display: block; margin-bottom: 14px;
}
.step h3 { font-size: 21px; margin-bottom: 8px; }
.step p { font-size: 15.5px; color: var(--ink-soft); }

/* Features */
.feat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
@media (max-width: 900px) { .feat-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .feat-grid { grid-template-columns: 1fr; } }
.feat {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--r);
  padding: 30px; transition: transform .2s, box-shadow .2s;
}
.feat:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.feat.hero-feat { grid-column: span 2; background: var(--ink); color: var(--paper); border-color: var(--ink); }
@media (max-width: 900px) { .feat.hero-feat { grid-column: span 2; } }
@media (max-width: 560px) { .feat.hero-feat { grid-column: span 1; } }
.feat .ico { font-size: 26px; margin-bottom: 16px; display: block; }
.feat h3 { font-size: 20px; margin-bottom: 9px; }
.feat p { font-size: 15.5px; color: var(--ink-soft); }
.feat.hero-feat p { color: #d9ccb4; }
.feat.hero-feat .tz-demo { margin-top: 18px; display: flex; align-items: center; gap: 14px; font-family: "Fraunces", serif; }
.tz-demo .from { color: var(--ink-faint); text-decoration: line-through; }
.tz-demo .to { color: var(--gold); font-size: 1.3em; }
.tz-demo .ar { color: var(--sunset); }

/* Comparison */
.compare { background: var(--paper-2); }
.tbl { width: 100%; border-collapse: collapse; background: var(--card); border-radius: var(--r); overflow: hidden; box-shadow: var(--shadow); }
.tbl th, .tbl td { padding: 17px 20px; text-align: left; border-bottom: 1px solid var(--line); font-size: 15.5px; }
.tbl th { font-family: "Fraunces", serif; font-size: 17px; font-weight: 600; }
.tbl thead th { background: var(--paper-2); }
.tbl .us { background: color-mix(in srgb, var(--sunset) 9%, transparent); font-weight: 600; }
.tbl thead .us { background: var(--sunset); color: #fff; }
.tbl td.c { text-align: center; }
.yes { color: var(--teal); font-weight: 700; }
.no { color: var(--ink-faint); }
.tbl tr:last-child td { border-bottom: none; }
.tbl-scroll { overflow-x: auto; }

/* Pricing */
.price-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; max-width: 880px; margin: 0 auto; }
@media (max-width: 720px) { .price-grid { grid-template-columns: 1fr; } }
.price {
  background: var(--card); border: 1.5px solid var(--line); border-radius: 24px; padding: 38px 34px; position: relative;
}
.price.featured { border-color: var(--sunset); box-shadow: 0 24px 50px rgba(232,98,58,.18); }
.price .tier { font-family: "Fraunces", serif; font-size: 24px; margin-bottom: 6px; }
.price .amt { font-size: 56px; font-family: "Fraunces", serif; font-weight: 600; letter-spacing: -.03em; }
.price .amt small { font-size: 18px; color: var(--ink-faint); font-family: "Hanken Grotesk"; font-weight: 500; }
.price .sub { color: var(--ink-soft); margin: 4px 0 22px; }
.price ul { list-style: none; margin: 0 0 26px; }
.price li { padding: 9px 0; display: flex; gap: 11px; font-size: 15.5px; border-bottom: 1px solid var(--line); }
.price li:last-child { border-bottom: none; }
.price li .ck { color: var(--teal); font-weight: 700; }
.price .badge { position: absolute; top: -14px; right: 26px; background: var(--sunset); color: #fff; font-size: 13px; font-weight: 700; padding: 6px 14px; border-radius: 100px; letter-spacing: .03em; }
.price .btn { width: 100%; justify-content: center; }
.guarantee { text-align: center; margin-top: 26px; font-size: 14.5px; color: var(--ink-faint); }

/* FAQ */
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q { width: 100%; background: none; border: none; text-align: left; cursor: pointer; padding: 24px 0; display: flex; justify-content: space-between; align-items: center; gap: 20px; font-family: "Fraunces", serif; font-size: 21px; color: var(--ink); }
.faq-q .pm { font-size: 26px; color: var(--sunset); transition: transform .25s; flex-shrink: 0; }
.faq-q[aria-expanded="true"] .pm { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-a p { padding: 0 0 24px; color: var(--ink-soft); max-width: 52em; font-size: 16.5px; }

/* CTA band */
.cta-band { background: var(--ink); color: var(--paper); text-align: center; border-radius: 30px; padding: 70px 30px; margin: 0 28px; position: relative; overflow: hidden; }
.cta-band::after { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 50% 130%, rgba(232,98,58,.4), transparent 60%); pointer-events: none; }
.cta-band h2 { font-size: clamp(30px, 5vw, 50px); margin-bottom: 16px; position: relative; }
.cta-band p { color: #d9ccb4; font-size: 19px; margin-bottom: 30px; position: relative; }

/* Footer */
footer { padding: 56px 0 40px; border-top: 1px solid var(--line); margin-top: 40px; }
.foot-in { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 20px; align-items: center; }
.foot-links { display: flex; gap: 26px; font-size: 15px; color: var(--ink-soft); flex-wrap: wrap; }
.foot-links a:hover { color: var(--sunset); }
.foot-fine { font-size: 13.5px; color: var(--ink-faint); margin-top: 22px; max-width: 60em; }

/* Reveal animation */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }
.hero .reveal { transition-delay: calc(var(--i, 0) * 90ms); }

/* ─────────────────────────  Mobile optimisation  ───────────────────────── */
@media (max-width: 600px) {
  .wrap { padding: 0 18px; }
  section { padding: 58px 0; }

  /* Nav: stop the CTA overflowing, tighten everything */
  .nav-in { height: 60px; }
  .logo { font-size: 19px; gap: 7px; }
  .logo .mark { width: 26px; height: 26px; border-radius: 8px; }
  .nav-links { gap: 14px; }
  .nav-cta { padding: 9px 15px; font-size: 14px; }

  /* Hero */
  .hero { padding: 44px 0 20px; }
  .hero p.lead { font-size: 17px; }
  .hero-cta .btn { width: 100%; justify-content: center; }
  .hero-note { font-size: 13px; }

  /* Hero polaroid stack: scale the cards + positions to fit the screen */
  .stack { height: 350px; margin-top: 8px; }
  .polaroid { width: 166px; padding: 11px 11px 34px; }
  .polaroid.p1 { left: 1%; top: 2px; }
  .polaroid.p2 { right: 1%; top: 42px; }
  .polaroid.p3 { width: 180px; left: 15%; bottom: 0; }
  .polaroid .cap { font-size: 12px; bottom: 10px; }
  .photo .meta-tag { font-size: 9px; padding: 4px 6px; left: 6px; right: 6px; bottom: 6px; }
  .stamp { font-size: 12px; padding: 7px 12px; top: -10px; }

  /* Sections that get cramped */
  .sec-head h2 { font-size: clamp(28px, 8vw, 38px); }
  .file-demo { padding: 22px; }
  .cta-band { margin: 0 16px; padding: 48px 22px; border-radius: 24px; }
  .ticker span { font-size: 14px; }
  .guarantee { font-size: 13px; }
  .foot-in { flex-direction: column; gap: 18px; text-align: center; }
  .foot-links { flex-wrap: wrap; justify-content: center; gap: 16px; }
}

/* Very narrow: drop the plain nav text link, keep logo + the CTA */
@media (max-width: 440px) {
  .nav-links a:not(.nav-cta) { display: none; }
}

/* ═══════════════════════════════════════════════════════════════
   Added in the June 2026 revamp: countdown bar, deadline page,
   trust badges, blog. Reuses the tokens defined at the top.
   ═══════════════════════════════════════════════════════════════ */

/* ── Countdown urgency bar (sitewide) ──────────────────────────── */
.cd-bar {
  position: sticky; top: 0; z-index: 101;
  height: 40px; background: var(--ink); color: var(--paper);
  display: flex; align-items: center; justify-content: center; gap: 12px;
  font-size: 14px; padding: 0 16px; text-align: center;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.cd-bar .cd-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--sunset); animation: pulse 1.8s infinite; flex-shrink: 0; }
.cd-bar .cd-nums { font-family: "Fraunces", serif; font-weight: 600; color: var(--danger-bright); white-space: nowrap; }
.cd-bar a { color: var(--paper); font-weight: 700; white-space: nowrap; border-bottom: 1.5px solid var(--gold); }
.cd-bar a:hover { color: var(--gold); }
body.has-cd-bar nav { top: 40px; }
@media (max-width: 600px) {
  .cd-bar { height: 36px; font-size: 12.5px; gap: 8px; }
  .cd-bar .cd-label { display: none; }
  body.has-cd-bar nav { top: 36px; }
}

/* ── Trust badge band ──────────────────────────────────────────── */
.trust-band { background: var(--paper-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.trust-row { display: flex; gap: 14px 34px; flex-wrap: wrap; justify-content: center; align-items: center; padding: 22px 28px; max-width: var(--maxw); margin: 0 auto; }
.trust-item { display: inline-flex; align-items: center; gap: 9px; font-size: 14.5px; font-weight: 600; color: var(--ink-soft); }
.trust-item .ti { font-size: 17px; }
@media (max-width: 600px) { .trust-row { gap: 12px 20px; padding: 16px; } .trust-item { font-size: 13px; } }

/* ── Big countdown (deadline page) ─────────────────────────────── */
.cd-big { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin: 32px 0 8px; }
.cd-cell { background: var(--card); border: 1px solid var(--line); border-radius: 16px; padding: 18px 10px; min-width: 104px; box-shadow: var(--shadow); }
.cd-cell { border-color: color-mix(in srgb, var(--danger) 35%, var(--line)); }
.cd-cell .n { font-family: "Fraunces", serif; font-size: clamp(38px, 7vw, 52px); font-weight: 600; color: var(--danger); line-height: 1; letter-spacing: -.02em; animation: dangerPulse 2s ease-in-out infinite; }
@keyframes dangerPulse { 0%,100% { opacity: 1; } 50% { opacity: .62; } }
.cd-cell .l { font-size: 12px; text-transform: uppercase; letter-spacing: .12em; color: var(--ink-faint); margin-top: 10px; }
@media (max-width: 600px) { .cd-cell { min-width: 70px; padding: 14px 6px; } }

/* ── Deadline page hero ────────────────────────────────────────── */
.dl-hero { text-align: center; padding: 64px 0 20px; }
.dl-hero h1 { font-size: clamp(34px, 6vw, 60px); margin-bottom: 18px; }
.dl-hero .lead { font-size: clamp(18px, 2.2vw, 21px); color: var(--ink-soft); max-width: 38em; margin: 0 auto 6px; }
.dl-hero .deadline-stamp { font-family: "Fraunces", serif; font-weight: 600; color: var(--danger); font-size: 18px; margin-top: 14px; }

/* ── Timeline ──────────────────────────────────────────────────── */
.timeline { max-width: 760px; margin: 0 auto; }
.tl-item { display: grid; grid-template-columns: 160px 1fr; gap: 24px; padding: 24px 0; border-bottom: 1px dashed var(--line); align-items: start; }
.tl-item:last-child { border-bottom: none; }
.tl-date { font-family: "Fraunces", serif; font-weight: 600; font-size: 19px; color: var(--sunset-deep); }
.tl-item.now .tl-date { color: var(--teal); }
.tl-item.danger .tl-date { color: var(--sunset); }
.tl-body h3 { font-size: 21px; margin-bottom: 6px; }
.tl-body p { color: var(--ink-soft); font-size: 16px; }
.tl-flag { display: inline-block; font-size: 12px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; padding: 3px 9px; border-radius: 100px; margin-left: 10px; vertical-align: middle; }
.tl-flag.you-are-here { background: color-mix(in srgb, var(--teal) 16%, transparent); color: var(--teal); }
.tl-flag.gone { background: color-mix(in srgb, var(--sunset) 16%, transparent); color: var(--sunset-deep); }
@media (max-width: 600px) { .tl-item { grid-template-columns: 1fr; gap: 6px; } }

/* ── Generic prose / article ───────────────────────────────────── */
.prose, .article-head { max-width: 720px; margin-left: auto; margin-right: auto; }
.article-head { margin-bottom: 36px; }
.article-head .kicker { margin-bottom: 14px; }
.article-head h1 { font-size: clamp(32px, 5vw, 46px); line-height: 1.05; margin-bottom: 16px; }
.article-meta { color: var(--ink-faint); font-size: 14px; }
.prose p, .prose li { font-size: 18px; color: var(--ink-soft); line-height: 1.7; }
.prose p { margin-bottom: 18px; }
.prose h2 { font-size: clamp(26px, 3.4vw, 32px); margin: 40px 0 14px; }
.prose h3 { font-size: 22px; margin: 28px 0 10px; }
.prose ul, .prose ol { margin: 0 0 20px 22px; }
.prose li { margin-bottom: 8px; }
.prose a { color: var(--sunset); font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }
.prose strong { color: var(--ink); }
.prose code { background: var(--paper-2); padding: 2px 7px; border-radius: 6px; font-size: .92em; }
.callout { background: var(--card); border: 1px solid var(--line); border-left: 4px solid var(--sunset); border-radius: 12px; padding: 22px 26px; margin: 28px auto; max-width: 720px; box-shadow: var(--shadow); }
.callout p { margin-bottom: 0; font-size: 16.5px; color: var(--ink-soft); }
.callout strong { color: var(--ink); }

/* ── Blog index ────────────────────────────────────────────────── */
.post-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
@media (max-width: 720px) { .post-grid { grid-template-columns: 1fr; } }
.post-card { display: flex; flex-direction: column; background: var(--card); border: 1px solid var(--line); border-radius: var(--r); padding: 30px; transition: transform .2s, box-shadow .2s; }
.post-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.post-card .tag { font-size: 13px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--sunset); }
.post-card h3 { font-size: 23px; margin: 12px 0 10px; line-height: 1.15; }
.post-card p { color: var(--ink-soft); font-size: 15.5px; flex-grow: 1; }
.post-card .more { color: var(--sunset); font-weight: 700; margin-top: 16px; display: inline-block; }
.post-card.feature { grid-column: span 2; background: var(--ink); color: var(--paper); border-color: var(--ink); }
@media (max-width: 720px) { .post-card.feature { grid-column: span 1; } }
.post-card.feature p { color: #d9ccb4; }
.post-card.feature .tag { color: var(--gold); }

/* ── Money-back seal (pricing) ─────────────────────────────────── */
.mbg { display: inline-flex; align-items: center; gap: 8px; background: color-mix(in srgb, var(--teal) 12%, transparent); color: var(--teal); font-weight: 700; font-size: 13.5px; padding: 7px 14px; border-radius: 100px; margin-top: 14px; }

/* ── Simple inner-page header offset ───────────────────────────── */
.page-head { padding-top: 56px; }

/* ── Download reassurance modal ────────────────────────────────── */
.modal-overlay { position: fixed; inset: 0; z-index: 200; display: none; align-items: center; justify-content: center; padding: 24px; background: rgba(33,26,19,.55); backdrop-filter: blur(4px); overflow-y: auto; }
.modal-overlay.open { display: flex; }
.modal { background: var(--card); border: 1px solid var(--line); border-radius: 22px; box-shadow: var(--shadow); max-width: 460px; width: 100%; max-height: calc(100vh - 48px); overflow-y: auto; padding: 34px 32px 28px; position: relative; text-align: center; }
.modal h3 { font-size: 26px; margin-bottom: 12px; }
.modal p { color: var(--ink-soft); font-size: 16px; margin-bottom: 16px; }
.modal .modal-steps { background: var(--paper-2); border: 1px solid var(--line); border-radius: 12px; padding: 14px 18px; font-size: 15.5px; color: var(--ink); margin-bottom: 20px; display: flex; align-items: center; gap: 10px; justify-content: center; }
.modal .modal-steps .shield { font-size: 18px; }
.modal .btn { width: 100%; justify-content: center; }
.modal .modal-fine { font-size: 13px; color: var(--ink-faint); margin: 14px 0 0; }
.modal .modal-fine a { color: var(--sunset); }
.modal-x { position: absolute; top: 14px; right: 16px; background: none; border: none; font-size: 26px; line-height: 1; color: var(--ink-faint); cursor: pointer; }
.modal-x:hover { color: var(--ink); }

/* ── App showcase (real screenshot) ────────────────────────────── */
.showcase { background: var(--paper); }
.app-frame { max-width: 1000px; margin: 0 auto; border-radius: 16px; overflow: hidden; border: 1px solid var(--line); box-shadow: 0 40px 80px rgba(60,40,20,.22); background: #15110d; position: relative; }
.app-frame img { width: 100%; display: block; }
.app-frame::after { content: ""; position: absolute; inset: 0; border-radius: 16px; box-shadow: inset 0 0 0 1px rgba(255,255,255,.04); pointer-events: none; }
.showcase-cap { text-align: center; color: var(--ink-faint); font-size: 14px; margin-top: 18px; }

/* ── SmartScreen mockup inside the download modal ──────────────── */
.ss-mock { position: relative; background: #1573c4; color: #fff; border-radius: 8px; padding: 16px 16px 14px; text-align: left; margin: 0 0 20px; box-shadow: 0 10px 22px rgba(0,0,0,.18); }
.ss-mock .ss-x { position: absolute; top: 9px; right: 10px; width: 22px; height: 20px; background: #fff; color: #444; border-radius: 2px; display: grid; place-items: center; font-size: 13px; }
.ss-mock .ss-title { font-family: "Hanken Grotesk", sans-serif; font-size: 17px; font-weight: 600; margin: 2px 0 8px; }
.ss-mock .ss-body { font-size: 12px; line-height: 1.5; color: #e7eefb; margin-bottom: 4px; max-width: 90%; }
.ss-mock .ss-more { font-size: 12px; color: #fff; text-decoration: underline; }
.ss-mock .ss-btns { display: flex; gap: 8px; justify-content: flex-end; margin-top: 18px; }
.ss-mock .ss-run, .ss-mock .ss-dont { font-size: 12px; padding: 7px 14px; border-radius: 2px; background: #e9e9e9; color: #222; font-weight: 600; }
.ss-mock .ss-run { background: #fff; outline: 2px solid var(--gold); box-shadow: 0 0 0 3px rgba(243,180,67,.45); }
.ss-cap { font-size: 12px; color: var(--ink-faint); margin: -8px 0 16px; }
.ss-cap b { color: var(--ink-soft); }

/* ── Step-by-step guide timeline ───────────────────────────────── */
.guide-timeline { max-width: 740px; margin: 0 auto; }
.gstep { position: relative; padding: 0 0 26px 66px; }
.gstep::before { content: ""; position: absolute; left: 21px; top: 8px; bottom: -8px; width: 2px; background: var(--line); }
.gstep:last-child::before { display: none; }
.gstep-dot { position: absolute; left: 0; top: 0; width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center; color: #fff; font-size: 18px; box-shadow: 0 6px 16px rgba(60,40,20,.18); z-index: 1; }
.gstep-dot.c-req { background: linear-gradient(135deg,#5b8def,#3a6fd8); }
.gstep-dot.c-wait { background: linear-gradient(135deg,#f3b443,#e8893a); }
.gstep-dot.c-do { background: linear-gradient(135deg,#3fbf86,#2f9f6a); }
.gstep-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 9px; }
.gchip { font-size: 12px; font-weight: 600; padding: 4px 11px; border-radius: 100px; background: var(--paper-2); color: var(--ink-soft); border: 1px solid var(--line); }
.gchip.time { color: var(--ink-faint); }
.gstep h3 { font-size: 22px; margin-bottom: 8px; }
.gstep-body > p { color: var(--ink-soft); font-size: 16px; margin-bottom: 14px; }
.gresult { display: flex; gap: 12px; align-items: flex-start; background: var(--card); border: 1px solid var(--line); border-radius: 12px; padding: 14px 16px; }
.gresult .gr-ico { color: var(--teal); font-size: 15px; flex: 0 0 auto; margin-top: 2px; }
.gr-lbl { font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-faint); display: block; margin-bottom: 3px; }
.gr-text { font-weight: 600; color: var(--ink); font-size: 15px; }
.gwait-note { margin: 12px 0 0; color: var(--sunset-deep); font-size: 14px; font-weight: 600; display: flex; align-items: center; gap: 8px; }
@media (max-width: 600px) { .gstep { padding-left: 56px; } .gstep-dot { width: 38px; height: 38px; } .gstep::before { left: 18px; } }

/* ── Language picker (separate localized pages) ────────────────── */
.lang-pick { position: relative; }
.lang-btn { display: inline-flex; align-items: center; gap: 6px; font-size: 14px; color: var(--ink-soft); font-weight: 600; background: none; border: none; cursor: pointer; padding: 6px 6px; font-family: inherit; }
.lang-btn:hover { color: var(--ink); }
.lang-btn .chev { font-size: 10px; opacity: .7; }
.lang-menu { position: absolute; right: 0; top: calc(100% + 8px); background: var(--card); border: 1px solid var(--line); border-radius: 12px; box-shadow: var(--shadow); padding: 6px; min-width: 158px; display: none; z-index: 120; }
.lang-pick:hover .lang-menu, .lang-pick:focus-within .lang-menu { display: block; }
.lang-opt { display: block; padding: 8px 12px; border-radius: 8px; font-size: 14px; color: var(--ink-soft); white-space: nowrap; }
.lang-opt:hover { background: var(--paper-2); color: var(--ink); }
.lang-opt.on { color: var(--sunset); font-weight: 700; }
@media (max-width: 600px) { .lang-btn span.lbl { display: none; } }

/* ── Modal platform switch link ────────────────────────────────── */
.modal-switch { background: none; border: none; cursor: pointer; color: var(--ink-faint); font-size: 13px; font-family: inherit; margin-top: 14px; text-decoration: underline; text-underline-offset: 2px; }
.modal-switch:hover { color: var(--sunset); }
#dl-mac .ss-cap { margin-top: 14px; }
