:root {
  --ink: #19191c;
  --ink-soft: #2c2a29;
  --page: #f7f5f0;
  --paper: #fffdf9;
  --cream: #f0e6d8;
  --stone: #c8b8a2;
  --smoke: #807b7c;
  --plum: #1e161c;
  --rose: #e8c5c8;
  --terracotta: #c27d78;
  --mineral: #7a8b87;
  --line: rgba(44, 42, 41, 0.15);
  --line-dark: rgba(240, 230, 216, 0.17);
  --shadow: 0 24px 70px rgba(30, 22, 28, 0.13);
  --radius: 24px;
  --radius-sm: 16px;
  --wrap: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 126px; }
body {
  margin: 0;
  color: var(--ink-soft);
  background: var(--page);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", sans-serif;
  line-height: 1.58;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
button, input, textarea, select { font: inherit; }

.skip-link {
  position: fixed;
  z-index: 999;
  left: 12px;
  top: 12px;
  transform: translateY(-160%);
  background: var(--paper);
  color: var(--ink);
  padding: 10px 14px;
  border-radius: 8px;
  box-shadow: var(--shadow);
}
.skip-link:focus { transform: none; }

.wrap { width: min(calc(100% - 40px), var(--wrap)); margin-inline: auto; }

.appstore-banner {
  background: var(--plum);
  color: var(--rose);
  font-size: 0.9rem;
  letter-spacing: 0.01em;
}
.banner-inner {
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
}
.banner-inner strong { color: #fff7f1; }
.banner-appstore-link { color: inherit; text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; }
.banner-appstore-link:hover { color: #fff; }
.banner-appstore-link:focus-visible { outline: 2px solid #fff7f1; outline-offset: 3px; border-radius: 3px; }
.banner-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--terracotta);
  box-shadow: 0 0 0 5px rgba(194, 125, 120, 0.16);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 245, 240, 0.93);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-weight: 750;
  text-decoration: none;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.brand img { border-radius: 11px; box-shadow: 0 8px 24px rgba(30,22,28,.13); }
.nav { display: flex; align-items: center; flex-wrap: wrap; gap: 20px; }
.nav a {
  font-size: .91rem;
  font-weight: 650;
  text-decoration: none;
  color: #555050;
}
.nav a:hover, .nav a:focus-visible { color: var(--ink); }

.hero {
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 18%, rgba(194,125,120,.16), transparent 28%),
    linear-gradient(180deg, var(--paper), var(--page));
  border-bottom: 1px solid var(--line);
}
.hero-grid {
  min-height: 710px;
  padding: 92px 0 88px;
  display: grid;
  grid-template-columns: minmax(0, .98fr) minmax(420px, 1.02fr);
  gap: 68px;
  align-items: center;
}
.eyebrow {
  margin: 0 0 14px;
  color: var(--mineral);
  font-size: .79rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.hero h1, .section-title, .final-cta h2 {
  font-family: ui-serif, Georgia, Cambria, "Times New Roman", serif;
  color: var(--ink);
  font-weight: 600;
  letter-spacing: -0.04em;
}
.hero h1 {
  max-width: 700px;
  margin: 0 0 22px;
  font-size: clamp(3.75rem, 7.2vw, 6.8rem);
  line-height: .92;
}
.lede {
  max-width: 670px;
  margin: 0;
  font-size: clamp(1.12rem, 1.7vw, 1.34rem);
  color: #4b4746;
}
.lede.secondary { margin-top: 14px; font-size: 1.06rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 30px 0 24px; }
.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 750;
  text-decoration: none;
  border: 1px solid transparent;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.button:hover { transform: translateY(-1px); }
.button-primary { background: var(--ink); color: var(--paper); box-shadow: 0 12px 28px rgba(25,25,28,.18); }
.button-ghost { background: rgba(255,255,255,.55); border-color: var(--line); }
.button-store { background: #fff8ef; color: var(--ink); box-shadow: 0 12px 28px rgba(0,0,0,.18); flex: 0 0 auto; margin-left: auto; }
.hero-facts { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 2px; }
.hero-facts span {
  border: 1px solid var(--line);
  background: rgba(255,255,255,.64);
  border-radius: 999px;
  padding: 7px 11px;
  font-size: .84rem;
  font-weight: 650;
}
.price-note { margin: 16px 0 0; font-size: .9rem; color: #66605e; }

.hero-art { position: relative; min-height: 560px; }
.hero-art > img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  border-radius: 38px 38px 110px 38px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255,255,255,.7);
}
.float-card {
  position: absolute;
  background: rgba(255,253,249,.93);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(44,42,41,.12);
  box-shadow: 0 18px 45px rgba(30,22,28,.16);
  border-radius: 18px;
  padding: 14px 16px;
  min-width: 184px;
  display: grid;
  gap: 3px;
  color: var(--ink);
}
.float-card strong { font-family: ui-serif, Georgia, serif; font-size: 1.07rem; }
.float-card span:not(.pill) { font-size: .78rem; color: #716968; }
.float-card-a { left: -30px; top: 58px; }
.float-card-b { right: -14px; top: 190px; }
.float-card-c { left: 28px; bottom: 38px; }
.mini-label { text-transform: uppercase; letter-spacing: .08em; font-weight: 750; }
.pill { width: max-content; margin-top: 5px; border-radius: 999px; padding: 3px 8px; font-size: .72rem; font-weight: 800; }
.pill.ready { background: rgba(122,139,135,.16); color: #4f6761; }

.section { padding: 94px 0; }
.light-section { background: var(--paper); border-block: 1px solid var(--line); }
.section-title {
  max-width: 850px;
  margin: 0;
  font-size: clamp(2.25rem, 4.5vw, 4.25rem);
  line-height: 1.02;
}
.section-intro { max-width: 800px; font-size: 1.08rem; color: #5e5856; margin: 20px 0 0; }

.video-showcase {
  width: min(100%, 1000px);
  margin: 42px 0 54px;
}
.video-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--ink);
  border: 1px solid rgba(44,42,41,.13);
  border-radius: 28px;
  box-shadow: var(--shadow);
  line-height: 0;
}
.video-frame video {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100%;
  object-fit: contain;
  background: var(--ink);
}
.video-caption {
  max-width: 760px;
  margin: 14px 4px 0;
  color: #6c6562;
  font-size: .91rem;
}

.steps-grid {
  margin-top: 44px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.step-card {
  background: var(--page);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 25px;
}
.step-no { display: block; color: var(--terracotta); font-size: .78rem; font-weight: 850; letter-spacing: .12em; }
.step-card h3, .feature-card h3, .platform-card h3, .next-cards h3 {
  margin: 15px 0 10px;
  color: var(--ink);
  font-family: ui-serif, Georgia, serif;
  font-size: 1.38rem;
  line-height: 1.15;
}
.step-card p { margin: 0; color: #605a58; font-size: .96rem; }

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 46px;
}
.feature-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  min-height: 270px;
}
.feature-card.featured {
  background: linear-gradient(145deg, #fffaf3, #f2e9df);
  border-color: rgba(194,125,120,.28);
}
.feature-kicker {
  color: var(--mineral);
  font-size: .76rem;
  font-weight: 850;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.feature-card h3 { font-size: 1.48rem; margin-top: 13px; }
.feature-card p { margin: 10px 0 0; color: #615b59; font-size: .94rem; }


/* Safari Quick Add / Browser Saves — v1.9 desktop feature spotlight */
.safari-spotlight {
  background:
    radial-gradient(circle at 86% 14%, rgba(122,139,135,.16), transparent 30%),
    linear-gradient(145deg, #f2ebe2, #e9e4dc);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.safari-spotlight-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(420px, 1.1fr);
  gap: 62px;
  align-items: center;
}
.safari-spotlight-copy .section-intro { margin-top: 18px; }
.safari-spotlight-note {
  max-width: 760px;
  margin: 18px 0 0;
  color: #544e4c;
  font-size: 1rem;
}
.safari-spotlight-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  margin-top: 28px;
}
.safari-flow {
  padding: 18px;
  border: 1px solid rgba(44,42,41,.15);
  border-radius: 30px;
  background: rgba(255,253,249,.78);
  box-shadow: 0 22px 54px rgba(30,22,28,.08);
}
.safari-flow article {
  position: relative;
  padding: 20px 22px 20px 64px;
  border-bottom: 1px solid var(--line);
}
.safari-flow article:last-of-type { border-bottom: 0; }
.safari-flow article::before {
  content: "→";
  position: absolute;
  left: 22px;
  top: 24px;
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: #fff8ef;
  font-size: .82rem;
}
.safari-flow article > span {
  color: var(--terracotta);
  font-size: .72rem;
  font-weight: 850;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.safari-flow h3 {
  margin: 6px 0 6px;
  color: var(--ink);
  font-family: ui-serif, Georgia, serif;
  font-size: 1.25rem;
}
.safari-flow p { margin: 0; color: #5f5957; font-size: .93rem; }
.safari-privacy-line {
  margin: 8px 6px 4px !important;
  padding: 16px 18px;
  border-radius: 16px;
  background: #f3ece3;
  color: #514b49 !important;
  font-size: .86rem !important;
}

.dark-section { background: var(--ink); color: var(--cream); }
.dark-section .eyebrow { color: var(--rose); }
.dark-section .section-title { color: #fffaf2; }
.platform-grid { margin-top: 44px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.platform-card {
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  padding: 24px;
  background: rgba(255,255,255,.035);
}
.device-icon { display: block; color: var(--stone); font-size: 2rem; line-height: 1; }
.platform-card h3 { color: #fffaf2; margin-bottom: 4px; }
.platform-card .os { color: var(--rose); font-weight: 750; margin: 0 0 14px; font-size: .9rem; }
.platform-card p:last-child { color: #d8cec4; margin: 0; font-size: .94rem; }
.compatibility-note { color: #bcb1a8; font-size: .87rem; margin: 24px 0 0; }

.ownership-section { background: var(--plum); color: var(--rose); }
.ownership-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 72px; align-items: start; }
.ownership-section .eyebrow { color: var(--terracotta); }
.ownership-section .section-title { color: #fff7f1; }
.ownership-section .section-intro { color: #d7c2c4; }
.trust-list { border-top: 1px solid rgba(232,197,200,.2); }
.trust-list > div { display: grid; grid-template-columns: 170px 1fr; gap: 18px; padding: 18px 0; border-bottom: 1px solid rgba(232,197,200,.2); }
.trust-list strong { color: #fff7f1; }
.trust-list span { color: #d9c9ca; }

.table-scroll { overflow-x: auto; margin-top: 42px; border: 1px solid var(--line); border-radius: 20px; background: var(--paper); }
.comparison-table { border-collapse: collapse; width: 100%; min-width: 980px; font-size: .88rem; line-height: 1.42; }
.comparison-table th, .comparison-table td { padding: 15px 16px; border-bottom: 1px solid var(--line); border-right: 1px solid var(--line); vertical-align: top; text-align: left; }
.comparison-table th:last-child, .comparison-table td:last-child { border-right: 0; }
.comparison-table tr:last-child th, .comparison-table tr:last-child td { border-bottom: 0; }
.comparison-table thead th { background: #e9e4dc; color: var(--ink); font-size: .82rem; letter-spacing: .02em; }
.comparison-table tbody th { width: 20%; color: var(--ink); background: rgba(247,245,240,.7); }
.comparison-table .tg-col { background: #f3ece3; }
.comparison-table thead .tg-col { background: var(--ink); color: #fff7f1; }
.yes { display: inline-block; font-weight: 850; color: #4e6861; }
.comparison-sources { margin-top: 18px; color: #6a6360; font-size: .81rem; }
.comparison-sources p { margin: 0; }
.comparison-sources a { text-decoration-thickness: 1px; text-underline-offset: 2px; }

.faq-wrap { max-width: 940px; }
.faq-list { margin-top: 38px; border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary {
  list-style: none;
  cursor: pointer;
  color: var(--ink);
  font-family: ui-serif, Georgia, serif;
  font-size: 1.25rem;
  font-weight: 650;
  padding: 22px 44px 22px 0;
  position: relative;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; position: absolute; right: 4px; top: 18px; font-family: -apple-system, BlinkMacSystemFont, sans-serif; font-size: 1.5rem; font-weight: 400; color: var(--mineral); }
.faq-list details[open] summary::after { content: "–"; }
.faq-answer { padding: 0 48px 24px 0; color: #5c5654; }
.faq-answer p { margin: 0 0 10px; }
.faq-answer ul { margin: 10px 0 12px; padding-left: 21px; }
.fine-print { font-size: .86rem; color: #766f6c; }

.next-section { background: #ebe5dc; border-top: 1px solid var(--line); }
.next-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 60px; }
.next-cards { display: grid; gap: 14px; }
.next-cards article { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; }
.next-cards article > span { color: var(--terracotta); font-size: .74rem; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.next-cards h3 { margin-top: 9px; }
.next-cards p { margin: 0; color: #625c5a; }

.final-cta { background: var(--page); padding-top: 60px; }
.cta-panel {
  background: var(--ink);
  color: var(--cream);
  border-radius: 34px;
  padding: 38px 42px;
  display: flex;
  align-items: center;
  gap: 28px;
  box-shadow: var(--shadow);
}
.cta-panel img { border-radius: 21px; box-shadow: 0 12px 30px rgba(0,0,0,.25); flex: 0 0 auto; }
.final-cta .eyebrow { color: var(--rose); margin-bottom: 5px; }
.final-cta h2 { color: #fff8ef; margin: 0; font-size: clamp(2rem, 4vw, 3.2rem); }
.final-cta p:last-child { margin: 8px 0 0; color: #d7cec3; }

.site-footer { padding: 42px 0 52px; background: var(--page); }
.footer-grid { border-top: 1px solid var(--line); padding-top: 28px; display: grid; grid-template-columns: 1fr auto; gap: 26px 40px; align-items: center; }
.footer-brand { display: flex; align-items: center; gap: 12px; }
.footer-brand img { border-radius: 11px; }
.footer-brand div { display: grid; }
.footer-brand strong { color: var(--ink); }
.footer-brand span { color: #77706d; font-size: .86rem; }
.footer-links { display: flex; flex-wrap: wrap; gap: 18px; justify-content: flex-end; }
.footer-links a { color: #56504e; font-size: .9rem; font-weight: 650; }
.footer-note { grid-column: 1 / -1; margin: 0; color: #837c78; font-size: .75rem; }

:focus-visible { outline: 3px solid var(--terracotta); outline-offset: 3px; }

@media (max-width: 980px) {
  .nav { display: none; }
  .hero-grid { min-height: auto; grid-template-columns: 1fr; padding: 72px 0; gap: 46px; }
  .hero-copy { max-width: 760px; }
  .hero-art { max-width: 760px; width: 100%; margin: 0 auto; }
  .steps-grid, .platform-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .ownership-grid, .next-grid, .safari-spotlight-grid { grid-template-columns: 1fr; gap: 38px; }
}

@media (max-width: 640px) {
  .wrap { width: min(calc(100% - 28px), var(--wrap)); }
  .banner-inner { padding: 7px 0; min-height: 48px; flex-wrap: wrap; gap: 5px 9px; line-height: 1.25; }
  .banner-dot { display: none; }
  .header-inner { min-height: 66px; }
  .brand img { width: 36px; height: 36px; }
  .hero-grid { padding: 58px 0 62px; }
  .hero h1 { font-size: clamp(3.25rem, 16vw, 5rem); }
  .hero-art { min-height: 450px; }
  .hero-art > img { height: 450px; border-radius: 28px 28px 72px 28px; }
  .video-showcase { margin: 34px 0 44px; }
  .video-frame {
    border-radius: 20px;
    aspect-ratio: 16 / 9;
    min-height: 0;
  }
  .video-frame video {
    width: 100% !important;
    height: 100% !important;
    min-height: 0 !important;
  }
  .video-caption { margin-inline: 2px; }
  .float-card { min-width: 154px; padding: 11px 12px; }
  .float-card-a { left: -5px; top: 38px; }
  .float-card-b { right: -5px; top: 180px; }
  .float-card-c { left: 15px; bottom: 26px; }
  .section { padding: 70px 0; }
  .steps-grid, .feature-grid, .platform-grid { grid-template-columns: 1fr; }
  .safari-flow { padding: 10px; border-radius: 24px; }
  .safari-flow article { padding: 18px 16px 18px 54px; }
  .safari-flow article::before { left: 14px; top: 21px; }
  .feature-card { min-height: auto; }
  .trust-list > div { grid-template-columns: 1fr; gap: 4px; }
  .faq-list summary { font-size: 1.12rem; }
  .faq-answer { padding-right: 0; }
  .cta-panel { padding: 28px; align-items: flex-start; flex-direction: column; }
  .button-store { margin-left: 0; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-links { justify-content: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; animation: none !important; }
}


/* Privacy policy */
.legal-main { background: var(--paper); }
.legal-hero {
  padding: 86px 0 56px;
  background:
    radial-gradient(circle at 88% 10%, rgba(194,125,120,.13), transparent 27%),
    linear-gradient(180deg, var(--paper), #eee9e1);
  border-bottom: 1px solid var(--line);
}
.legal-wrap { width: min(calc(100% - 40px), 980px); margin-inline: auto; }
.legal-hero h1 {
  margin: 0 0 18px;
  color: var(--ink);
  font-family: ui-serif, Georgia, Cambria, "Times New Roman", serif;
  font-size: clamp(3.1rem, 7vw, 5.8rem);
  font-weight: 600;
  letter-spacing: -.045em;
  line-height: .96;
}
.legal-lede { max-width: 820px; margin: 0; color: #514b49; font-size: clamp(1.08rem, 2vw, 1.3rem); }
.legal-date { margin: 18px 0 0; color: #746d6a; font-size: .9rem; }
.legal-content { padding: 68px 0 96px; }
.legal-grid { display: grid; grid-template-columns: 250px minmax(0, 1fr); gap: 56px; align-items: start; }
.legal-summary {
  position: sticky;
  top: 112px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #f4efe8;
}
.legal-summary .eyebrow { margin-bottom: 10px; }
.legal-summary ul { margin: 0; padding-left: 18px; color: #5f5956; font-size: .9rem; }
.legal-summary li + li { margin-top: 9px; }
.legal-article { min-width: 0; }
.legal-article section { scroll-margin-top: 112px; padding: 0 0 34px; margin: 0 0 34px; border-bottom: 1px solid var(--line); }
.legal-article section:last-child { border-bottom: 0; margin-bottom: 0; }
.legal-article h2 {
  margin: 0 0 16px;
  color: var(--ink);
  font-family: ui-serif, Georgia, Cambria, "Times New Roman", serif;
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  line-height: 1.08;
  letter-spacing: -.025em;
}
.legal-article h3 { margin: 24px 0 7px; color: var(--ink); font-size: 1rem; }
.legal-article p, .legal-article li { color: #5d5755; }
.legal-article p { margin: 0 0 13px; }
.legal-article ul { margin: 12px 0 0; padding-left: 22px; }
.legal-article li + li { margin-top: 9px; }
.legal-article a { color: var(--plum); text-underline-offset: 3px; }
.legal-contact { padding: 28px !important; border: 1px solid var(--line) !important; border-radius: 22px; background: #f4efe8; }
.legal-contact p:last-child { margin-bottom: 0; }

@media (max-width: 820px) {
  .privacy-nav { display: none; }
  .legal-hero { padding: 64px 0 42px; }
  .legal-grid { grid-template-columns: 1fr; gap: 32px; }
  .legal-summary { position: static; }
  .legal-content { padding: 50px 0 74px; }
}

@media (max-width: 640px) {
  .legal-wrap { width: min(calc(100% - 28px), 980px); }
  .legal-contact { padding: 22px !important; }
}

/* Journal / editorial page */
.journal-main { background: var(--paper); }
.journal-hero {
  padding: 92px 0 64px;
  background:
    radial-gradient(circle at 86% 12%, rgba(194,125,120,.13), transparent 28%),
    linear-gradient(180deg, var(--paper), #eee9e1);
  border-bottom: 1px solid var(--line);
}
.journal-wrap { width: min(calc(100% - 40px), 1040px); margin-inline: auto; }
.journal-hero h1 {
  max-width: 940px;
  margin: 0 0 24px;
  color: var(--ink);
  font-family: ui-serif, Georgia, Cambria, "Times New Roman", serif;
  font-size: clamp(3rem, 6.6vw, 5.9rem);
  font-weight: 600;
  letter-spacing: -.045em;
  line-height: .97;
}
.journal-deck { max-width: 800px; margin: 0; color: #514b49; font-size: clamp(1.12rem, 2vw, 1.35rem); }
.journal-meta { margin: 22px 0 0; color: #746d6a; font-size: .9rem; }
.journal-layout {
  display: grid;
  grid-template-columns: minmax(0, 720px) 250px;
  gap: 70px;
  align-items: start;
  padding-top: 76px;
  padding-bottom: 100px;
}
.journal-article { min-width: 0; }
.journal-article p { margin: 0 0 22px; color: #554f4d; font-size: 1.06rem; line-height: 1.76; }
.journal-article .journal-first { font-size: 1.18rem; color: #3f3b3a; }
.journal-article h2 {
  margin: 58px 0 20px;
  color: var(--ink);
  font-family: ui-serif, Georgia, Cambria, "Times New Roman", serif;
  font-size: clamp(1.9rem, 3.3vw, 2.7rem);
  line-height: 1.08;
  letter-spacing: -.028em;
}
.journal-article em { color: #403a39; }
.journal-pullquote {
  margin: 42px 0 48px;
  padding: 28px 30px;
  border-left: 3px solid var(--terracotta);
  background: #f3ece3;
  border-radius: 0 20px 20px 0;
}
.journal-pullquote p { margin: 0; color: var(--ink); font-family: ui-serif, Georgia, serif; font-size: 1.45rem; line-height: 1.35; }
.journal-product-card {
  margin-top: 64px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(145deg, #fffaf3, #f2e9df);
}
.journal-product-card h2 { margin: 4px 0 14px; font-size: clamp(2rem, 4vw, 3rem); }
.journal-product-card p:not(.eyebrow) { max-width: 620px; margin-bottom: 0; }
.journal-product-card .hero-actions { margin-bottom: 0; }
.journal-aside { position: sticky; top: 112px; display: grid; gap: 16px; }
.journal-aside-card {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #f4efe8;
}
.journal-aside-card img { border-radius: 15px; margin-bottom: 18px; box-shadow: 0 8px 24px rgba(30,22,28,.11); }
.journal-aside-card p { margin: 0; color: #5f5956; font-size: .92rem; }
.journal-aside-card .eyebrow { margin-bottom: 10px; }
.journal-related { display: block; padding: 10px 0; border-top: 1px solid var(--line); color: var(--ink-soft); font-size: .91rem; font-weight: 650; text-decoration-thickness: 1px; text-underline-offset: 3px; }
.journal-related:first-of-type { border-top: 0; padding-top: 2px; }
.comparison-sources .journal-inline { margin-top: 12px; }
.comparison-sources .journal-inline a { font-weight: 700; }

@media (max-width: 880px) {
  .journal-nav { display: none; }
  .journal-layout { grid-template-columns: 1fr; gap: 36px; padding-top: 58px; }
  .journal-aside { position: static; grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .journal-wrap { width: min(calc(100% - 28px), 1040px); }
  .journal-hero { padding: 64px 0 46px; }
  .journal-layout { padding-top: 46px; padding-bottom: 74px; }
  .journal-aside { grid-template-columns: 1fr; }
  .journal-pullquote { padding: 22px; margin: 34px 0 40px; }
  .journal-product-card { padding: 25px; }
}


/* Journal index / article collection */
.journal-more {
  padding: 92px 0 104px;
  background: var(--page);
  border-top: 1px solid var(--line);
}
.journal-more-head {
  max-width: 760px;
  margin-bottom: 38px;
}
.journal-more-head h2 {
  margin: 0;
  color: var(--ink);
  font-family: ui-serif, Georgia, Cambria, "Times New Roman", serif;
  font-size: clamp(2.25rem, 4.8vw, 4.4rem);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -.04em;
}
.journal-more-head p:not(.eyebrow) {
  margin: 18px 0 0;
  color: #5d5755;
  font-size: 1.05rem;
}
.journal-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.journal-card {
  display: flex;
  flex-direction: column;
  min-height: 310px;
  padding: 28px;
  color: inherit;
  text-decoration: none;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.journal-card:hover,
.journal-card:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(194,125,120,.42);
  box-shadow: 0 18px 42px rgba(30,22,28,.09);
}
.journal-card .eyebrow { margin-bottom: 14px; }
.journal-card h3 {
  margin: 0 0 14px;
  color: var(--ink);
  font-family: ui-serif, Georgia, Cambria, "Times New Roman", serif;
  font-size: clamp(1.55rem, 2.8vw, 2.15rem);
  line-height: 1.08;
  letter-spacing: -.025em;
}
.journal-card p {
  margin: 0;
  color: #5d5755;
  font-size: .96rem;
}
.journal-card-meta {
  margin-top: auto !important;
  padding-top: 26px;
  color: #7a736f !important;
  font-size: .82rem !important;
}
.journal-back {
  display: inline-flex;
  margin-bottom: 22px;
  color: #655f5d;
  font-size: .9rem;
  font-weight: 700;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
.journal-article ul {
  margin: 0 0 24px;
  padding-left: 23px;
  color: #554f4d;
  font-size: 1.04rem;
  line-height: 1.72;
}
.journal-article li + li { margin-top: 10px; }

@media (max-width: 720px) {
  .journal-more { padding: 70px 0 78px; }
  .journal-card-grid { grid-template-columns: 1fr; }
  .journal-card { min-height: 0; padding: 24px; }
}


/* App screenshot showcase */
.app-preview-section { background: #eee9e1; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.showcase-list { display: grid; gap: 30px; margin-top: 48px; }
.showcase-item { display: grid; grid-template-columns: minmax(300px, .84fr) minmax(0, 1.16fr); gap: 54px; align-items: center; padding: 32px; background: var(--paper); border: 1px solid var(--line); border-radius: 30px; box-shadow: 0 18px 50px rgba(30,22,28,.07); }
.showcase-item.reverse { grid-template-columns: minmax(0, 1.16fr) minmax(300px, .84fr); }
.showcase-item.reverse .showcase-media { order: 2; }
.showcase-media { margin: 0; display: grid; justify-items: center; min-width: 0; }
.showcase-media img { max-height: 550px; width: 100%; object-fit: contain; filter: drop-shadow(0 20px 28px rgba(25,25,28,.13)); }
.showcase-media-phone img { max-width: 285px; }
.showcase-media-watch img { max-width: 480px; }
.showcase-media-tablet img { max-width: 430px; }
.showcase-media figcaption { margin-top: 14px; color: #7b7471; font-size: .78rem; text-align: center; }
.showcase-copy h3 { margin: 12px 0 12px; color: var(--ink); font-family: ui-serif, Georgia, serif; font-size: clamp(1.9rem, 3.4vw, 3rem); line-height: 1.02; font-weight: 600; letter-spacing: -.035em; }
.showcase-copy p { margin: 0; color: #5f5957; font-size: 1.02rem; }
.text-link { display: inline-block; margin-top: 18px; color: var(--ink); font-weight: 750; text-underline-offset: 4px; }
.gallery-cta { margin-top: 30px; padding: 24px 26px; display: flex; justify-content: space-between; gap: 28px; align-items: center; border-radius: 24px; background: var(--ink); color: var(--cream); }
.gallery-cta div { display: grid; gap: 2px; }
.gallery-cta strong { color: #fff8ef; font-family: ui-serif, Georgia, serif; font-size: 1.2rem; }
.gallery-cta span { color: #d7cec3; font-size: .9rem; }
.gallery-cta .button-primary { background: #fff8ef; color: var(--ink); flex: 0 0 auto; }
@media (max-width: 820px) { .showcase-item, .showcase-item.reverse { grid-template-columns: 1fr; gap: 28px; } .showcase-item.reverse .showcase-media { order: 0; } .showcase-media img { max-height: 500px; } }
@media (max-width: 640px) { .showcase-item { padding: 22px; border-radius: 24px; } .showcase-media-phone img { max-width: 245px; } .gallery-cta { align-items: flex-start; flex-direction: column; } }


/* Homepage overview film: robust small-screen containment.
   Use the video's intrinsic 16:9 ratio in normal document flow on phones;
   this avoids iOS sizing the replaced element from its 1920px source width. */
@media (max-width: 700px) {
  #how .video-showcase {
    box-sizing: border-box;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    margin-left: 0;
    margin-right: 0;
    overflow: hidden;
  }

  #how .video-frame {
    box-sizing: border-box;
    display: block;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    height: auto;
    min-height: 0;
    aspect-ratio: auto !important;
    overflow: hidden;
  }

  #how .video-frame #homepage-overview-video {
    box-sizing: border-box;
    position: relative !important;
    inset: auto !important;
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    height: auto !important;
    max-height: none !important;
    aspect-ratio: 16 / 9;
    object-fit: contain;
    margin: 0;
  }

  #homepage-overview-video::-webkit-media-controls-fullscreen-button {
    display: none !important;
  }
}
