:root {
  color-scheme: light;
  --ink: #111827;
  --muted: #667085;
  --yellow: #ffd12f;
  --yellow-deep: #e4ad00;
  --blue: #3b82f6;
  --line: #e5e7eb;
  --soft: #f7f8fa;
  --white: #ffffff;
  --max: 1120px;
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-synthesis: none;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-underline-offset: 3px;
}

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

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(229, 231, 235, 0.9);
  backdrop-filter: blur(14px);
}

.nav {
  width: min(calc(100% - 40px), var(--max));
  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-size: 1.05rem;
  font-weight: 800;
  text-decoration: none;
  letter-spacing: -0.02em;
}

.brand img {
  width: 38px;
  height: 38px;
  border: 2px solid var(--ink);
  border-radius: 11px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a {
  padding: 9px 12px;
  border-radius: 10px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 650;
  text-decoration: none;
}

.nav-links a:hover,
.nav-links a:focus-visible,
.nav-links a[aria-current="page"] {
  color: var(--ink);
  background: var(--soft);
  outline: none;
}

.hero {
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 12% 16%, rgba(255, 209, 47, 0.24), transparent 27rem),
    linear-gradient(180deg, #fffdf3 0%, #ffffff 72%);
}

.hero-inner {
  width: min(calc(100% - 40px), var(--max));
  min-height: 640px;
  margin: 0 auto;
  padding: 80px 0 72px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
  align-items: center;
  gap: 72px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin: 0 0 20px;
  padding: 7px 11px;
  border: 1px solid #edc326;
  border-radius: 999px;
  background: #fff8d9;
  color: #5c4800;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 0 3px rgba(255, 209, 47, 0.24);
  content: "";
}

h1,
h2,
h3 {
  margin-top: 0;
  line-height: 1.12;
  letter-spacing: -0.04em;
}

h1 {
  max-width: 640px;
  margin-bottom: 22px;
  font-size: clamp(2.65rem, 5.25vw, 4.35rem);
}

.hero-copy > p {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1.08rem, 2vw, 1.22rem);
  line-height: 1.7;
}

.hero-actions {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.price-callout {
  width: fit-content;
  margin-top: 24px;
  padding: 10px 14px;
  display: flex;
  align-items: baseline;
  gap: 10px;
  border: 1px solid #edc326;
  border-radius: 14px;
  background: #fff8d9;
  color: var(--ink);
}

.price-callout strong {
  font-size: 1.15rem;
  letter-spacing: -0.02em;
}

.price-callout span {
  color: #625533;
  font-size: 0.84rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.045em;
}

.button {
  min-height: 50px;
  padding: 0 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--ink);
  border-radius: 14px;
  background: var(--yellow);
  box-shadow: 0 4px 0 var(--ink);
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
  transition: transform 140ms ease, box-shadow 140ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(2px);
  box-shadow: 0 2px 0 var(--ink);
  outline: none;
}

.hero-visual {
  position: relative;
  min-height: 450px;
  display: grid;
  place-items: center;
}

.visual-panel {
  position: relative;
  width: min(100%, 455px);
  min-height: 430px;
  padding: 34px;
  display: grid;
  place-items: end center;
  overflow: hidden;
  border: 2px solid var(--ink);
  border-radius: 36px;
  background: var(--yellow);
  box-shadow: 12px 12px 0 var(--ink);
}

.visual-panel::before {
  position: absolute;
  inset: 22px;
  border: 1px dashed rgba(17, 24, 39, 0.28);
  border-radius: 24px;
  content: "";
}

.hero-illustration {
  position: relative;
  z-index: 1;
  width: 100%;
  max-height: 365px;
  object-fit: contain;
}

.progress-card {
  position: absolute;
  z-index: 3;
  left: -28px;
  bottom: 30px;
  width: 220px;
  padding: 16px;
  border: 2px solid var(--ink);
  border-radius: 18px;
  background: var(--white);
  box-shadow: 6px 6px 0 var(--ink);
}

.progress-card strong,
.progress-card span {
  display: block;
}

.progress-card strong {
  margin-bottom: 3px;
  font-size: 0.92rem;
}

.progress-card span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 650;
}

.progress-track {
  height: 8px;
  margin-top: 12px;
  overflow: hidden;
  border-radius: 99px;
  background: var(--line);
}

.progress-track::after {
  display: block;
  width: 62%;
  height: 100%;
  border-radius: inherit;
  background: var(--blue);
  content: "";
}

.section {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
  padding: 88px 0;
}

.section-heading {
  max-width: 680px;
  margin-bottom: 36px;
}

.section-heading h2 {
  margin-bottom: 12px;
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.section-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

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

.feature {
  min-height: 230px;
  padding: 26px;
  border: 2px solid var(--line);
  border-radius: 22px;
  background: var(--white);
}

.feature-number {
  width: 42px;
  height: 42px;
  margin-bottom: 24px;
  display: grid;
  place-items: center;
  border: 2px solid var(--ink);
  border-radius: 12px;
  background: var(--yellow);
  font-weight: 850;
}

.feature h3 {
  margin-bottom: 10px;
  font-size: 1.25rem;
}

.feature p {
  margin: 0;
  color: var(--muted);
}

.showcase {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
  padding: 4px 0 96px;
}

.screenshot-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: start;
  gap: 30px 20px;
}

.screenshot-card {
  margin: 0;
  min-width: 0;
}

.screenshot-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 778 / 1600;
  object-fit: cover;
  border: 2px solid var(--ink);
  border-radius: 24px;
  background: var(--white);
  box-shadow: 6px 6px 0 #dce4ee;
}

.screenshot-card figcaption {
  margin-top: 16px;
  padding-left: 4px;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 800;
}

.privacy-band {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto 88px;
  padding: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border: 2px solid var(--ink);
  border-radius: 24px;
  background: #eef5ff;
  box-shadow: 8px 8px 0 var(--ink);
}

.privacy-band h2 {
  margin-bottom: 8px;
  font-size: clamp(1.65rem, 3vw, 2.3rem);
}

.privacy-band p {
  max-width: 700px;
  margin: 0;
  color: #475467;
}

.legal-shell {
  min-height: calc(100vh - 145px);
  background:
    linear-gradient(180deg, #fffbea 0, #ffffff 280px);
}

.legal {
  width: min(calc(100% - 40px), 820px);
  margin: 0 auto;
  padding: 72px 0 96px;
}

.legal-header {
  margin-bottom: 42px;
  padding-bottom: 32px;
  border-bottom: 2px solid var(--ink);
}

.legal-header h1 {
  margin-bottom: 14px;
  font-size: clamp(2.7rem, 6vw, 4.8rem);
}

.legal-header p {
  max-width: 680px;
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.updated {
  margin-top: 18px !important;
  color: var(--ink) !important;
  font-size: 0.9rem !important;
  font-weight: 750;
}

.legal-content h2 {
  margin: 46px 0 14px;
  font-size: 1.55rem;
  letter-spacing: -0.025em;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p,
.legal-content li {
  color: #475467;
}

.legal-content ul {
  padding-left: 24px;
}

.legal-content li + li {
  margin-top: 8px;
}

.note {
  margin: 32px 0;
  padding: 18px 20px;
  border-left: 4px solid var(--yellow-deep);
  border-radius: 0 12px 12px 0;
  background: #fff9df;
  color: #493900;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: var(--soft);
}

.footer-inner {
  width: min(calc(100% - 40px), var(--max));
  min-height: 100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: var(--muted);
  font-size: 0.9rem;
}

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

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--ink);
}

@media (max-width: 860px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
    padding-top: 60px;
  }

  .hero-copy {
    text-align: center;
  }

  .hero-copy .eyebrow,
  .hero-copy .price-callout,
  .hero-actions {
    margin-left: auto;
    margin-right: auto;
    justify-content: center;
  }

  .hero-copy > p {
    margin: 0 auto;
  }

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

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

  .screenshot-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .feature {
    min-height: 0;
  }
}

@media (max-width: 620px) {
  .nav {
    min-height: 64px;
  }

  .brand span {
    display: none;
  }

  .nav-links {
    gap: 2px;
  }

  .nav-links a {
    padding: 8px;
    font-size: 0.84rem;
  }

  .hero-inner {
    min-height: 0;
    padding: 48px 0 64px;
  }

  h1 {
    font-size: clamp(2.35rem, 11vw, 3.25rem);
  }

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

  .visual-panel {
    min-height: 335px;
    padding: 24px;
    border-radius: 28px;
    box-shadow: 8px 8px 0 var(--ink);
  }

  .hero-illustration {
    max-height: 290px;
  }

  .progress-card {
    left: -5px;
    bottom: 4px;
  }

  .price-callout {
    align-items: center;
    flex-direction: column;
    gap: 0;
  }

  .section {
    padding: 68px 0;
  }

  .showcase {
    padding-bottom: 72px;
  }

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

  .screenshot-card img {
    border-radius: 18px;
    box-shadow: 4px 4px 0 #dce4ee;
  }

  .screenshot-card figcaption {
    margin-top: 12px;
    padding-left: 2px;
    font-size: 0.8rem;
  }

  .privacy-band {
    margin-bottom: 68px;
    padding: 28px;
    display: block;
    box-shadow: 6px 6px 0 var(--ink);
  }

  .privacy-band .button {
    width: 100%;
    margin-top: 24px;
  }

  .legal {
    padding-top: 54px;
  }

  .footer-inner {
    padding: 24px 0;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
