:root {
  color-scheme: light;
  --ink: #202638;
  --muted: #697386;
  --soft: #8b95a6;
  --paper: #ffffff;
  --wash: #f5f7fb;
  --line: #e4e9f1;
  --blue: #346cff;
  --blue-deep: #1748cf;
  --blue-soft: #eaf0ff;
  --gold: #d79216;
  --gold-deep: #a36500;
  --teal: #27aaa3;
  --shadow: 0 28px 80px rgba(32, 38, 56, 0.14);
  font-family:
    ui-rounded,
    "SF Pro Rounded",
    "Avenir Next",
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 10% 8%, rgba(215, 146, 22, 0.22), transparent 30rem),
    radial-gradient(circle at 92% 10%, rgba(52, 108, 255, 0.16), transparent 34rem),
    linear-gradient(180deg, #ffffff 0%, var(--wash) 46%, #eef3fb 100%);
  color: var(--ink);
}

body,
button,
input,
textarea {
  font: inherit;
}

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

img {
  display: block;
  max-width: 100%;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 12px;
  z-index: 1000;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--ink);
  color: #ffffff;
}

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

.nav-shell {
  position: sticky;
  top: 16px;
  z-index: 50;
  width: min(100%, 1240px);
  margin: 0 auto;
  padding: 18px clamp(16px, 3vw, 32px) 0;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 10px 12px;
  border: 1px solid rgba(228, 233, 241, 0.9);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 18px 46px rgba(32, 38, 56, 0.08);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
  color: var(--ink);
  font-weight: 900;
  letter-spacing: -0.04em;
}

.brand img {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(52, 108, 255, 0.24);
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 2vw, 28px);
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 800;
}

.nav-links ul,
.footer-links ul {
  display: flex;
  align-items: center;
  gap: inherit;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-current a {
  color: var(--blue);
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 950;
  white-space: nowrap;
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    background 0.22s ease;
}

.nav-cta {
  min-height: 44px;
  padding: 0 18px;
  background: var(--ink);
  color: #ffffff;
}

.button {
  min-height: 56px;
  padding: 0 25px;
}

.button:hover,
.nav-cta:hover,
.post-card:hover,
.feature-panel:hover,
.phone:hover,
.wide-shot:hover {
  transform: translateY(-3px);
}

.primary {
  background: var(--gold);
  color: var(--ink);
  box-shadow: 0 18px 40px rgba(215, 146, 22, 0.28);
}

.secondary {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.78);
  color: var(--ink);
}

.chapter {
  width: min(100%, 1320px);
  margin: 0 auto;
  padding: clamp(86px, 10vw, 164px) clamp(20px, 4vw, 56px);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.92fr);
  align-items: center;
  gap: clamp(42px, 6vw, 96px);
  min-height: 820px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--blue-deep);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.hero h1,
.statement p,
.split h2,
.section-heading h2,
.cta h2,
.article-header h1 {
  margin: 0;
  color: var(--ink);
  letter-spacing: -0.075em;
}

.hero h1 {
  max-width: 980px;
  font-size: clamp(3.4rem, 7vw, 6.7rem);
  line-height: 0.91;
}

.hero-lede,
.split p,
.cta p,
.article-header p,
.article-content {
  color: var(--muted);
  font-size: clamp(1.08rem, 1.35vw, 1.38rem);
  line-height: 1.72;
}

.hero-lede {
  max-width: 720px;
  margin: 28px 0 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero-visual {
  position: relative;
  min-height: 690px;
}

.phone {
  position: absolute;
  overflow: hidden;
  margin: 0;
  border: 13px solid var(--ink);
  border-radius: 50px;
  background: var(--ink);
  box-shadow: var(--shadow);
  transition: transform 0.35s ease;
}

.phone img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 36px;
}

.phone-front {
  right: 2%;
  top: 0;
  z-index: 2;
  width: min(360px, 52vw);
  transform: rotate(2deg);
}

.phone-back {
  left: 0;
  top: 126px;
  width: min(320px, 47vw);
  opacity: 0.9;
  filter: saturate(0.9);
  transform: rotate(-7deg) scale(0.94);
}

.statement {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.statement p {
  max-width: 1180px;
  font-size: clamp(1.9rem, 4vw, 4.2rem);
  line-height: 1.04;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-flow: dense;
  gap: 18px;
}

.feature-panel {
  grid-column: span 4;
  overflow: hidden;
  min-height: 420px;
  padding: clamp(28px, 4vw, 48px);
  border: 1px solid var(--line);
  border-radius: 42px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 22px 52px rgba(32, 38, 56, 0.08);
  transition: transform 0.3s ease;
}

.feature-dark {
  background:
    radial-gradient(circle at 86% 12%, rgba(39, 170, 163, 0.28), transparent 22rem),
    var(--ink);
  color: #ffffff;
}

.feature-dark h2 {
  color: #ffffff;
}

.feature-dark p {
  color: rgba(255, 255, 255, 0.72);
}

.feature-wide {
  grid-column: span 8;
}

.feature-panel span {
  display: block;
  margin-bottom: 18px;
  color: var(--gold-deep);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

.feature-panel h2,
.split h2,
.section-heading h2,
.cta h2 {
  max-width: 780px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(2rem, 4vw, 4.2rem);
  line-height: 0.98;
  letter-spacing: -0.07em;
}

.feature-panel p {
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.7;
}

.feature-image {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 26px;
  background:
    linear-gradient(145deg, rgba(52, 108, 255, 0.13), rgba(215, 146, 22, 0.12)),
    #ffffff;
}

.feature-image img {
  max-height: 620px;
  border: 10px solid var(--ink);
  border-radius: 38px;
  box-shadow: 0 24px 60px rgba(32, 38, 56, 0.2);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(360px, 1.2fr);
  align-items: center;
  gap: clamp(32px, 5vw, 88px);
}

.proof {
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.55fr);
}

.proof-copy p {
  max-width: 820px;
}

.proof-list {
  display: grid;
  gap: 14px;
  margin-top: 36px;
}

.proof-list div {
  display: grid;
  grid-template-columns: 130px minmax(0, 1fr);
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.proof-list strong {
  font-size: 1.1rem;
}

.proof-list span {
  color: var(--muted);
}

.report-phone,
.band-phone {
  position: static;
  width: min(360px, 100%);
  justify-self: center;
  transform: rotate(1.5deg);
}

.band-phone {
  transform: rotate(-2deg);
}

.help-preview,
.app-band,
.pricing {
  border: 1px solid var(--line);
  border-radius: 42px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow);
}

.help-preview {
  padding-top: clamp(52px, 6vw, 88px);
  padding-bottom: clamp(52px, 6vw, 88px);
}

.compact-heading {
  display: block;
  margin-bottom: 28px;
}

.compact-heading p:not(.eyebrow) {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.7;
}

.help-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 34px;
  background: var(--line);
}

.help-grid article {
  min-height: 240px;
  padding: 30px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.96);
}

.help-grid h3 {
  margin: 0 0 14px;
  color: var(--ink);
  font-size: 1.45rem;
  letter-spacing: -0.04em;
}

.help-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.app-band,
.pricing {
  display: grid;
  grid-template-columns: minmax(320px, 0.58fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(34px, 6vw, 92px);
  padding-top: clamp(52px, 6vw, 88px);
  padding-bottom: clamp(52px, 6vw, 88px);
}

.app-band p,
.pricing p {
  color: var(--muted);
  font-size: clamp(1.08rem, 1.35vw, 1.35rem);
  line-height: 1.72;
}

.pricing {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.42fr);
}

.price-card {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 32px;
  background:
    radial-gradient(circle at 84% 0%, rgba(215, 146, 22, 0.22), transparent 16rem),
    #ffffff;
  box-shadow: 0 18px 46px rgba(32, 38, 56, 0.08);
}

.price-card span {
  color: var(--gold-deep);
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.price-card strong {
  display: block;
  margin-top: 14px;
  color: var(--ink);
  font-size: clamp(3rem, 6vw, 5.8rem);
  line-height: 0.92;
  letter-spacing: -0.08em;
}

.wide-shot {
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 42px;
  background: #ffffff;
  box-shadow: var(--shadow);
  transition: transform 0.35s ease;
}

.wide-shot img {
  width: 100%;
  height: auto;
}

.posts {
  padding-top: clamp(40px, 7vw, 100px);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.post-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.post-card {
  min-height: 260px;
  border: 1px solid var(--line);
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 46px rgba(32, 38, 56, 0.06);
  transition: transform 0.3s ease;
}

.post-card a {
  display: block;
  height: 100%;
  padding: 28px;
}

.post-card span {
  color: var(--soft);
  font-size: 0.82rem;
  font-weight: 850;
}

.post-card h3 {
  margin: 18px 0 12px;
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  line-height: 1.08;
}

.post-card p {
  color: var(--muted);
  line-height: 1.6;
}

.cta {
  margin-bottom: clamp(32px, 6vw, 80px);
  border-radius: 50px;
  background:
    radial-gradient(circle at 20% 10%, rgba(215, 146, 22, 0.26), transparent 24rem),
    linear-gradient(135deg, var(--ink), #111827);
  color: #ffffff;
}

.cta .eyebrow,
.cta h2,
.cta p {
  color: #ffffff;
}

.cta p {
  max-width: 760px;
  opacity: 0.78;
}

.article-page {
  max-width: 980px;
}

.back-link {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--blue-deep);
  font-weight: 900;
}

.article-header h1 {
  font-size: clamp(3rem, 6vw, 5.8rem);
  line-height: 0.96;
}

.article-content {
  margin-top: 44px;
  border-top: 1px solid var(--line);
  padding-top: 44px;
}

.article-content h2,
.article-content h3 {
  color: var(--ink);
  letter-spacing: -0.04em;
}

.article-content a {
  color: var(--blue-deep);
  font-weight: 850;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.guide-page {
  max-width: 1320px;
}

.guide-index {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: clamp(34px, 5vw, 72px) 0 22px;
}

.guide-index a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.84);
  color: var(--ink);
  font-weight: 850;
}

.guide-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.guide-grid article,
.help-callout {
  border: 1px solid var(--line);
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 46px rgba(32, 38, 56, 0.06);
}

.guide-grid article {
  padding: clamp(26px, 4vw, 42px);
}

.guide-grid h2,
.help-callout h2 {
  margin: 0 0 16px;
  color: var(--ink);
  font-size: clamp(1.55rem, 2.4vw, 2.25rem);
  letter-spacing: -0.05em;
}

.guide-grid p,
.guide-grid li,
.help-callout p {
  color: var(--muted);
  line-height: 1.7;
}

.guide-grid ol {
  padding-left: 1.2rem;
}

.help-callout {
  margin-top: clamp(40px, 6vw, 86px);
  padding: clamp(30px, 5vw, 60px);
}

.reminders-guide {
  padding-top: clamp(100px, 10vw, 150px);
}

.guide-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(30px, 5vw, 80px);
  padding: clamp(34px, 6vw, 72px);
  border-radius: 46px;
  background:
    radial-gradient(circle at 86% 12%, rgba(167, 139, 250, 0.72), transparent 20rem),
    linear-gradient(135deg, #3730a3, #6d28d9);
  box-shadow: var(--shadow);
}

.guide-hero .back-link,
.guide-hero .eyebrow,
.guide-hero h1,
.guide-hero p {
  color: #ffffff;
}

.guide-hero p {
  max-width: 780px;
  opacity: 0.86;
}

.guide-hero img {
  width: clamp(110px, 14vw, 180px);
  border-radius: 24%;
  box-shadow: 0 24px 54px rgba(18, 12, 66, 0.35);
}

.guide-section {
  scroll-margin-top: 110px;
  padding: clamp(54px, 8vw, 110px) 0;
  border-bottom: 1px solid var(--line);
}

.guide-heading {
  max-width: 880px;
  margin-bottom: clamp(26px, 4vw, 46px);
}

.guide-heading h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(2.5rem, 5vw, 5rem);
  line-height: 0.98;
  letter-spacing: -0.07em;
}

.guide-heading > p:not(.eyebrow),
.guide-section > p,
.guide-split > div > p,
.guide-list {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.75;
}

.guide-steps {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.guide-steps li {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  align-items: start;
  gap: 14px;
  padding: 17px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.88);
}

.guide-steps span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 13px;
  background: #4f46e5;
  color: #ffffff;
  font-weight: 950;
}

.guide-steps p {
  margin: 6px 0 0;
  color: var(--ink);
  line-height: 1.55;
}

.guide-note {
  margin-top: 22px;
  padding: 18px 20px;
  border-left: 4px solid #4f46e5;
  border-radius: 5px 18px 18px 5px;
  background: #eef2ff;
  color: #35346b;
  line-height: 1.65;
}

.guide-gallery,
.guide-split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  gap: clamp(22px, 5vw, 70px);
}

.guide-gallery {
  align-items: start;
  gap: 20px;
}

.guide-shot {
  overflow: hidden;
  margin: 0;
  padding: clamp(14px, 2vw, 24px);
  border: 1px solid var(--line);
  border-radius: 34px;
  background: linear-gradient(145deg, #e0e7ff, #f8fafc);
  text-align: center;
}

.guide-shot img {
  width: min(100%, 360px);
  max-height: 760px;
  margin: auto;
  object-fit: contain;
  border-radius: 26px;
  box-shadow: 0 18px 44px rgba(32, 38, 56, 0.18);
}

.guide-shot-wide {
  margin-top: 22px;
}

.guide-shot-wide img {
  width: min(100%, 820px);
}

.guide-shot figcaption {
  margin-top: 16px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

.guide-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.guide-cards-four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.guide-cards article {
  padding: clamp(22px, 3vw, 32px);
  border: 1px solid var(--line);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 16px 36px rgba(32, 38, 56, 0.05);
}

.guide-cards h3,
.guide-section > h3,
.guide-inline-split h3 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: 1.35rem;
  letter-spacing: -0.04em;
}

.guide-cards p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.guide-cards p + p {
  margin-top: 12px;
}

.guide-split-reverse {
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1fr);
}

.guide-inline-split {
  margin-top: clamp(28px, 5vw, 64px);
}

.guide-inline-split > div p {
  color: var(--muted);
  line-height: 1.75;
}

.guide-list {
  padding-left: 1.2rem;
}

.guide-list li + li {
  margin-top: 10px;
}

.site-footer {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  width: min(100%, 1320px);
  margin: 0 auto;
  padding: 46px clamp(20px, 4vw, 56px) 68px;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.site-footer p {
  max-width: 520px;
  line-height: 1.6;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-weight: 850;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.65s ease,
    transform 0.65s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .nav-links {
    display: none;
  }

  .hero,
  .split,
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .feature-panel,
  .feature-wide {
    grid-column: auto;
  }

  .help-grid,
  .guide-grid,
  .guide-split,
  .guide-split-reverse,
  .app-band,
  .pricing {
    grid-template-columns: 1fr;
  }

  .guide-cards-four {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero {
    min-height: auto;
    padding-top: 116px;
  }

  .hero-visual {
    min-height: 600px;
  }

  .phone-front {
    right: 8%;
  }

  .phone-back {
    left: 6%;
  }

  .post-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .chapter {
    padding-inline: 16px;
  }

  .nav-shell {
    top: 0;
    padding-inline: 10px;
  }

  .nav {
    border-radius: 24px;
  }

  .brand span {
    display: none;
  }

  .hero h1 {
    font-size: clamp(3rem, 16vw, 4.4rem);
  }

  .hero-visual {
    min-height: 520px;
  }

  .phone {
    border-width: 9px;
    border-radius: 36px;
  }

  .phone img {
    border-radius: 27px;
  }

  .phone-front,
  .phone-back {
    width: 62vw;
  }

  .feature-panel,
  .wide-shot,
  .cta {
    border-radius: 30px;
  }

  .guide-hero {
    grid-template-columns: 1fr;
    border-radius: 30px;
  }

  .guide-hero img {
    display: none;
  }

  .guide-gallery,
  .guide-cards,
  .guide-cards-four {
    grid-template-columns: 1fr;
  }

  .site-footer {
    display: block;
  }
}

.kg-width-wide {
  width: min(100%, 1120px);
  margin-inline: auto;
}

.kg-width-full {
  width: 100%;
  margin-inline: auto;
}

.page-feature-image {
  margin: 34px 0 0;
  border-radius: 34px;
  overflow: hidden;
}

.page-feature-image img {
  display: block;
  width: 100%;
  height: auto;
}
