:root {
  --ink: #172026;
  --muted: #5f676c;
  --paper: #fffdf8;
  --cream: #f6efe2;
  --cream-deep: #ead9bd;
  --orange: #d96525;
  --orange-dark: #9d3f17;
  --teal: #1f746d;
  --line: rgba(43, 31, 22, 0.13);
  --shadow: 0 24px 70px rgba(68, 40, 21, 0.13);
  --radius: 24px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
}

img { max-width: 100%; }

a { color: var(--orange-dark); }

a:hover { color: var(--orange); }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 8px;
  z-index: 100;
  padding: 10px 14px;
  background: white;
  border-radius: 8px;
}

.skip-link:focus { left: 8px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 253, 248, 0.92);
  backdrop-filter: blur(18px);
}

.nav {
  width: min(1160px, calc(100% - 36px));
  min-height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
  letter-spacing: -0.02em;
}

.brand img {
  width: 38px;
  height: 38px;
  object-fit: cover;
  border-radius: 11px;
  box-shadow: 0 7px 20px rgba(190, 81, 29, 0.2);
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 6px 22px;
}

.nav-links a {
  color: #4f565a;
  font-size: 0.91rem;
  font-weight: 650;
  text-decoration: none;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] { color: var(--orange-dark); }

.container { width: min(1080px, calc(100% - 40px)); margin: 0 auto; }

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 86% 15%, rgba(229, 122, 49, 0.22), transparent 28rem),
    radial-gradient(circle at 8% 90%, rgba(39, 126, 116, 0.11), transparent 24rem),
    linear-gradient(145deg, #fffdf8 0%, #f8ecdc 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto -10% -180px 45%;
  height: 310px;
  border: 1px solid rgba(176, 82, 34, 0.14);
  border-radius: 50%;
  transform: rotate(-8deg);
}

.hero-grid {
  position: relative;
  z-index: 1;
  min-height: 680px;
  padding: 88px 0 76px;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 72px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--orange-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1, h2, h3 {
  margin-top: 0;
  color: var(--ink);
  line-height: 1.12;
  letter-spacing: -0.035em;
}

h1 { margin-bottom: 24px; font-family: Georgia, serif; font-size: clamp(3rem, 7vw, 5.7rem); font-weight: 600; }
h2 { margin-bottom: 18px; font-family: Georgia, serif; font-size: clamp(2.1rem, 4vw, 3.6rem); font-weight: 600; }
h3 { margin-bottom: 10px; font-size: 1.2rem; }

.lede { max-width: 660px; margin: 0 0 30px; color: #4e5559; font-size: clamp(1.1rem, 2vw, 1.3rem); }

.cta-row, .store-row { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 20px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: var(--ink);
  color: white;
  font-weight: 750;
  text-decoration: none;
  box-shadow: 0 10px 28px rgba(24, 32, 38, 0.12);
}

.button:hover { background: var(--orange-dark); border-color: var(--orange-dark); color: white; transform: translateY(-1px); }
.button.secondary { background: transparent; color: var(--ink); box-shadow: none; }
.button.secondary:hover { background: white; color: var(--orange-dark); }

.microcopy { margin-top: 16px; color: var(--muted); font-size: 0.91rem; }

.hero-visual { position: relative; }

.hero-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  border: 1px solid rgba(104, 62, 34, 0.14);
  border-radius: 38px;
  background: #ce642c;
  box-shadow: var(--shadow);
  transform: rotate(2.5deg);
}

.hero-card img { width: 100%; height: 100%; object-fit: cover; display: block; }

.floating-note {
  position: absolute;
  right: -22px;
  bottom: 35px;
  max-width: 230px;
  padding: 15px 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 16px 45px rgba(49, 30, 18, 0.15);
  font-size: 0.9rem;
  font-weight: 650;
  transform: rotate(-2.5deg);
}

.section { padding: 92px 0; }
.section.tint { background: var(--cream); }
.section.dark { background: #172026; color: #eef1ee; }
.section.dark h2, .section.dark h3 { color: white; }
.section.dark p { color: #c9cecc; }

.section-heading { max-width: 710px; margin-bottom: 42px; }
.section-heading p { margin-bottom: 0; color: var(--muted); font-size: 1.08rem; }

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }

.card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 8px 30px rgba(77, 46, 27, 0.05);
}

.card p:last-child { margin-bottom: 0; }
.card-number { display: block; margin-bottom: 18px; color: var(--orange); font-family: Georgia, serif; font-size: 2rem; }
.icon-chip { display: inline-flex; margin-bottom: 18px; padding: 7px 11px; border-radius: 999px; background: #fff0e6; color: var(--orange-dark); font-size: 0.78rem; font-weight: 800; letter-spacing: 0.04em; text-transform: uppercase; }

.feature-split { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 65px; align-items: center; }
.feature-split.reverse { grid-template-columns: 1.1fr 0.9fr; }
.feature-split .media { overflow: hidden; border-radius: 30px; box-shadow: var(--shadow); background: #30241e; }
.feature-split .media img { display: block; width: 100%; height: auto; }
.feature-split .media.phone { width: min(100%, 470px); justify-self: center; }

.check-list { padding: 0; margin: 24px 0 0; list-style: none; }
.check-list li { position: relative; margin: 12px 0; padding-left: 30px; }
.check-list li::before { content: "✓"; position: absolute; left: 0; color: var(--teal); font-weight: 900; }

.guide-card { position: relative; display: flex; min-height: 295px; flex-direction: column; padding: 34px; overflow: hidden; }
.guide-card::after { content: "→"; margin-top: auto; padding-top: 32px; color: var(--orange); font-size: 1.8rem; }
.guide-card a { color: inherit; text-decoration: none; }
.guide-card a::after { content: ""; position: absolute; inset: 0; }
.guide-card:hover { border-color: rgba(217, 101, 37, 0.45); transform: translateY(-3px); }

.store-badge { display: inline-flex; }
.store-badge img { display: block; height: 48px; width: auto; }

.callout {
  padding: 34px;
  border: 1px solid #e5cbb4;
  border-left: 5px solid var(--orange);
  border-radius: 20px;
  background: #fff8ed;
}

.article-hero { padding: 76px 0 58px; background: linear-gradient(145deg, #fffdf8, #f6ead9); border-bottom: 1px solid var(--line); }
.article-hero .container { max-width: 900px; }
.article-hero h1 { max-width: 850px; font-size: clamp(2.7rem, 6vw, 5rem); }
.article-meta { color: var(--muted); font-size: 0.92rem; }

.article-layout { display: grid; grid-template-columns: minmax(0, 720px) 260px; gap: 70px; align-items: start; }
.article { font-size: 1.05rem; }
.article h2 { margin-top: 60px; font-size: clamp(2rem, 4vw, 3rem); }
.article h3 { margin-top: 32px; font-size: 1.3rem; }
.article li { margin-bottom: 10px; }
.article figure { margin: 38px 0; }
.article figure img { display: block; width: 100%; border: 1px solid var(--line); border-radius: 24px; box-shadow: var(--shadow); }
.article figcaption { margin-top: 10px; color: var(--muted); font-size: 0.87rem; }

.toc { position: sticky; top: 100px; padding: 22px; border-left: 1px solid var(--line); }
.toc strong { display: block; margin-bottom: 10px; font-size: 0.82rem; letter-spacing: 0.08em; text-transform: uppercase; }
.toc a { display: block; margin: 8px 0; color: var(--muted); font-size: 0.9rem; text-decoration: none; }
.toc a:hover { color: var(--orange-dark); }

.step { display: grid; grid-template-columns: 48px 1fr; gap: 16px; margin: 24px 0; }
.step-index { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 50%; background: var(--ink); color: white; font-weight: 800; }
.step h3 { margin: 5px 0 8px; }
.step p { margin-top: 0; }

.comparison { width: 100%; border-collapse: collapse; margin: 28px 0; }
.comparison th, .comparison td { padding: 14px 16px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
.comparison th { background: var(--cream); font-size: 0.9rem; }

.profile { display: grid; grid-template-columns: 145px 1fr; gap: 34px; align-items: center; }
.profile img { width: 135px; aspect-ratio: 1; object-fit: cover; border-radius: 30px; box-shadow: var(--shadow); }

.site-footer { padding: 50px 0; border-top: 1px solid var(--line); background: #11181c; color: #c8cecb; }
.footer-grid { display: grid; grid-template-columns: 1fr auto; gap: 30px; align-items: end; }
.site-footer strong { color: white; }
.site-footer a { color: #e4e9e6; text-decoration: none; }
.footer-links { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 12px 22px; }
.legal { margin: 12px 0 0; max-width: 780px; font-size: 0.78rem; color: #9da5a1; }

@media (max-width: 900px) {
  .hero-grid, .feature-split, .feature-split.reverse, .article-layout { grid-template-columns: 1fr; }
  .hero-grid { min-height: 0; gap: 48px; padding-top: 68px; }
  .hero-visual { width: min(82%, 520px); margin: 0 auto; }
  .floating-note { right: -5%; }
  .grid-3 { grid-template-columns: 1fr; }
  .toc { display: none; }
}

@media (max-width: 680px) {
  .nav { align-items: flex-start; flex-direction: column; gap: 8px; padding: 13px 0; }
  .nav-links { justify-content: flex-start; gap: 7px 15px; }
  .hero-grid { padding: 54px 0 62px; }
  .hero-visual { width: 90%; }
  .floating-note { position: relative; right: auto; bottom: auto; max-width: none; margin: -18px 12px 0; }
  .section { padding: 68px 0; }
  .grid-2, .profile, .footer-grid { grid-template-columns: 1fr; }
  .footer-links { justify-content: flex-start; }
  .article-hero { padding: 54px 0 42px; }
  .article-layout { gap: 0; }
  .card, .guide-card, .callout { padding: 24px; }
  .comparison { font-size: 0.9rem; }
  .comparison th, .comparison td { padding: 11px 9px; }
}

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

/* Discovery, compatibility, and pricing */
[id] { scroll-margin-top: 155px; }
a:focus-visible, summary:focus-visible, .table-wrap:focus-visible { outline: 3px solid var(--teal); outline-offset: 5px; }
.discovery-hero h1 { font-size: clamp(2.8rem, 4.4vw, 3.6rem); }
.discovery-hero .hero-grid { gap: 48px; padding: 44px 0; }
.discovery-hero .lede { margin-bottom: 18px; font-size: 1.1rem; }
.independent-note { color: var(--muted); font-size: .91rem; margin: 0 0 24px; }
.purchase-note { margin: 14px 0 24px; font-size: .95rem; }
.hero-demo { margin: 0; max-width: 260px; justify-self: center; }
.hero-demo img { display: block; width: 100%; height: auto; border-radius: 26px; box-shadow: var(--shadow); }
.hero-demo figcaption { margin-top: 14px; color: var(--muted); font-size: .82rem; text-align: center; }
.feature-tier, .feature-label { color: var(--orange-dark); font-size: .78rem; font-family: inherit; font-weight: 750; letter-spacing: 0; }
.feature-tier { display: block; margin-top: 8px; }
.feature-label { margin-bottom: 15px; }
.table-wrap { max-width: 100%; overflow-x: auto; margin: 24px 0; border: 1px solid var(--line); border-radius: 16px; }
.table-wrap .comparison { margin: 0; }
.comparison caption { padding: 16px; text-align: left; font-weight: 750; background: #fff8ed; }
.comparison th[scope="row"] { width: 35%; background: transparent; font-size: inherit; }
.comparison td { min-width: 110px; }
.faq-list details { padding: 22px 0; border-bottom: 1px solid var(--line); }
.faq-list summary { font-weight: 750; cursor: pointer; }
.faq-list p { max-width: 800px; margin-bottom: 0; }
.screenshot-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: start; }
.screenshot-pair figure { margin: 18px 0; }
.screenshot-pair img { height: auto; }
.guide-intro { padding: 18px 22px; border: 1px solid var(--line); border-radius: 16px; background: var(--cream); font-size: .94rem; }
.setup-list li { padding-left: 6px; margin-bottom: 18px; }
@media (max-width: 680px) {
  .discovery-hero .hero-grid { padding-top: 40px; gap: 34px; }
  .hero-demo { max-width: 270px; }
  .screenshot-pair { grid-template-columns: 1fr; }
  .screenshot-pair figure { max-width: 340px; margin-left: auto; margin-right: auto; }
  .comparison th[scope="row"] { width: 36%; }
  .comparison td { min-width: 95px; }
}
