:root {
  color-scheme: light;
  --bg: #f3f1eb;
  --bg-strong: #e9e3d6;
  --surface: rgba(255, 255, 255, 0.86);
  --surface-strong: #ffffff;
  --ink: #101113;
  --muted: #5d6470;
  --border: rgba(16, 17, 19, 0.1);
  --accent: #22bfaf;
  --accent-strong: #149b8d;
  --signal: #e4ff3a;
  --signal-ink: #202400;
  --shadow: 0 24px 80px rgba(16, 17, 19, 0.08);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: 'Space Grotesk', 'Segoe UI', sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(34, 191, 175, 0.18), transparent 28%),
    radial-gradient(circle at top right, rgba(228, 255, 58, 0.24), transparent 22%),
    linear-gradient(180deg, #f7f5ef 0%, var(--bg) 52%, #efe8dc 100%);
}

a {
  color: inherit;
}

img {
  max-width: 100%;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -48px;
  z-index: 200;
  padding: 12px 16px;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  text-decoration: none;
}

.skip-link:focus {
  top: 16px;
}

.site-shell {
  width: min(var(--max-width), calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(18px);
  background: rgba(243, 241, 235, 0.72);
  border-bottom: 1px solid rgba(16, 17, 19, 0.06);
}

.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 76px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: -0.03em;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--ink), #2a2d34);
  color: var(--signal);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.nav-links a {
  flex: 0 0 auto;
  padding: 10px 14px;
  border-radius: 999px;
  text-decoration: none;
  color: var(--muted);
}

.nav-links a:hover,
.nav-links a:focus-visible,
.nav-links a[aria-current='page'] {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.66);
}

.hero {
  padding: 76px 0 40px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 24px;
  align-items: stretch;
}

.hero-grid-landing {
  align-items: center;
  gap: 34px;
}

.hero-card,
.panel,
.doc-section,
.table-wrap {
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.hero-card {
  border-radius: var(--radius-xl);
  padding: 34px;
}

.hero-card-landing {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 92% 12%, rgba(228, 255, 58, 0.32), transparent 18%),
    radial-gradient(circle at 10% 100%, rgba(34, 191, 175, 0.18), transparent 22%),
    rgba(255, 255, 255, 0.82);
}

.hero-card-landing::after {
  content: '';
  position: absolute;
  inset: auto -64px -78px auto;
  width: 220px;
  height: 220px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(20, 155, 141, 0.18), transparent 70%);
  pointer-events: none;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(16, 17, 19, 0.05);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
}

.eyebrow::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--accent);
}

h1,
h2,
h3 {
  margin: 0;
  letter-spacing: -0.04em;
}

h1 {
  margin-top: 18px;
  font-family: 'Newsreader', Georgia, serif;
  font-size: clamp(2.9rem, 6vw, 5.4rem);
  line-height: 0.94;
}

h2 {
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
}

h3 {
  font-size: 1.15rem;
}

.lede,
.doc-section p,
.doc-section li,
.panel p,
table,
.note,
.callout p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--muted);
}

.lede {
  max-width: 62ch;
  margin-top: 22px;
  font-size: 1.08rem;
}

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

.button,
.button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button {
  background: var(--ink);
  color: #fff;
  box-shadow: 0 18px 40px rgba(16, 17, 19, 0.16);
}

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

.button:hover,
.button:focus-visible,
.button-secondary:hover,
.button-secondary:focus-visible {
  transform: translateY(-1px);
}

.hero-side {
  display: grid;
  gap: 16px;
}

.hero-side-landing {
  justify-items: end;
}

.hero-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.hero-point {
  padding: 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(16, 17, 19, 0.08);
}

.hero-point strong {
  display: block;
  font-size: 0.98rem;
  line-height: 1.25;
}

.hero-point span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.6;
}

.hero-proof {
  margin-top: 22px;
}

.hero-note {
  margin-top: 22px;
}

.panel {
  border-radius: var(--radius-lg);
  padding: 24px;
}

.metric {
  display: block;
  margin-top: 14px;
  font-size: 3.2rem;
  font-weight: 700;
  letter-spacing: -0.06em;
}

.metric-subtitle {
  margin-top: 8px;
}

.signal {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--signal);
  color: var(--signal-ink);
  font-size: 0.84rem;
  font-weight: 700;
}

main {
  padding-bottom: 70px;
}

.section {
  padding: 20px 0 8px;
}

.landing-strip {
  padding-top: 6px;
}

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

.strip-item {
  padding: 22px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.56);
  border: 1px solid var(--border);
}

.strip-label {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 0.84rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.strip-item strong {
  display: block;
  font-size: 1.15rem;
  line-height: 1.25;
}

.strip-item p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

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

.section-copy {
  max-width: 64ch;
}

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

.feature-grid-landing .card {
  min-height: 250px;
}

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

.glance-card {
  padding: 24px;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.glance-card-dark {
  background: linear-gradient(160deg, #111318 0%, #22262f 100%);
  border-color: rgba(255, 255, 255, 0.08);
}

.glance-card h3 {
  margin-top: 14px;
  font-size: 1.45rem;
  line-height: 1.05;
}

.glance-card p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.glance-card-dark h3,
.glance-card-dark p {
  color: #f6f4ef;
}

.glance-card-dark .signal {
  background: rgba(228, 255, 58, 0.9);
}

.glance-visual {
  display: grid;
  align-items: center;
  min-height: 168px;
  margin-bottom: 18px;
  padding: 18px;
  border-radius: 22px;
  border: 1px solid rgba(16, 17, 19, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(243, 241, 235, 0.94));
  overflow: hidden;
}

.glance-card-dark .glance-visual {
  border-color: rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.04));
}

.glance-visual-plan {
  gap: 12px;
}

.glance-visual-plan span {
  display: block;
  height: 34px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(34, 191, 175, 0.24), rgba(255, 255, 255, 0.92));
  border: 1px solid rgba(16, 17, 19, 0.08);
}

.glance-visual-plan span:nth-child(2) {
  width: 88%;
}

.glance-visual-plan span:nth-child(3) {
  width: 76%;
}

.glance-visual-session {
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 16px;
}

.glance-ring {
  display: grid;
  place-items: center;
  width: 96px;
  height: 96px;
  border-radius: 999px;
  background:
    radial-gradient(circle, #fbfaf7 0 54%, transparent 55%),
    conic-gradient(var(--accent) 0 65%, rgba(16, 17, 19, 0.08) 65% 100%);
  color: var(--ink);
  font-weight: 700;
}

.glance-stack {
  display: grid;
  gap: 12px;
}

.glance-stack span {
  display: block;
  height: 40px;
  border-radius: 18px;
  background: rgba(16, 17, 19, 0.06);
}

.glance-stack span:last-child {
  width: 78%;
  background: rgba(228, 255, 58, 0.34);
}

.glance-visual-progress {
  gap: 18px;
}

.glance-bars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: end;
  gap: 10px;
  min-height: 90px;
}

.glance-bars span {
  display: block;
  border-radius: 16px 16px 8px 8px;
  background: linear-gradient(180deg, rgba(34, 191, 175, 0.92), rgba(16, 17, 19, 0.15));
}

.glance-bars span:nth-child(1) {
  height: 48px;
}

.glance-bars span:nth-child(2) {
  height: 76px;
}

.glance-bars span:nth-child(3) {
  height: 62px;
}

.glance-bars span:nth-child(4) {
  height: 88px;
  background: linear-gradient(180deg, rgba(228, 255, 58, 0.95), rgba(34, 191, 175, 0.4));
}

.glance-pill-row {
  display: flex;
  gap: 10px;
}

.glance-pill-row span {
  display: block;
  width: 96px;
  height: 28px;
  border-radius: 999px;
  background: rgba(16, 17, 19, 0.08);
}

.glance-pill-row span:last-child {
  width: 132px;
  background: rgba(34, 191, 175, 0.22);
}

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

.feature-story {
  padding: 28px;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.feature-story h3 {
  margin-top: 16px;
  font-size: 1.7rem;
  line-height: 1.05;
}

.feature-story p,
.feature-story li {
  color: var(--muted);
  line-height: 1.7;
}

.feature-story-dark {
  background: linear-gradient(160deg, #111318 0%, #22262f 100%);
  border-color: rgba(255, 255, 255, 0.08);
}

.feature-story-dark h3,
.feature-story-dark p,
.feature-story-dark li {
  color: #f6f4ef;
}

.feature-story-dark .signal {
  background: rgba(228, 255, 58, 0.9);
}

.feature-story-accent {
  background: linear-gradient(135deg, rgba(34, 191, 175, 0.16), rgba(255, 255, 255, 0.82));
}

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

.step-card {
  padding: 24px;
  border-radius: var(--radius-lg);
  background: var(--surface-strong);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.step-number {
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--accent-strong);
}

.step-card h3 {
  margin-top: 12px;
}

.step-illustration {
  display: flex;
  align-items: end;
  gap: 10px;
  min-height: 72px;
  margin-top: 14px;
}

.step-illustration span {
  display: block;
  flex: 1 1 0;
  border-radius: 14px 14px 8px 8px;
  background: linear-gradient(180deg, rgba(34, 191, 175, 0.8), rgba(16, 17, 19, 0.12));
}

.step-illustration span:nth-child(1) {
  height: 34px;
}

.step-illustration span:nth-child(2) {
  height: 58px;
}

.step-illustration span:nth-child(3) {
  height: 46px;
}

.step-illustration-mid span {
  border-radius: 999px;
  background: rgba(16, 17, 19, 0.08);
}

.step-illustration-mid span:nth-child(1) {
  height: 24px;
}

.step-illustration-mid span:nth-child(2) {
  height: 72px;
  background: linear-gradient(180deg, rgba(228, 255, 58, 0.95), rgba(34, 191, 175, 0.4));
}

.step-illustration-mid span:nth-child(3) {
  height: 24px;
}

.step-illustration-end span {
  border-radius: 999px;
}

.step-illustration-end span:nth-child(1) {
  height: 26px;
  background: rgba(16, 17, 19, 0.08);
}

.step-illustration-end span:nth-child(2) {
  height: 26px;
  background: rgba(34, 191, 175, 0.22);
}

.step-illustration-end span:nth-child(3) {
  height: 26px;
  background: rgba(228, 255, 58, 0.58);
}

.audience-band {
  padding-top: 30px;
}

.final-cta-section {
  padding-top: 36px;
}

.final-cta-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 30px;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.8), rgba(228, 255, 58, 0.18));
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.phone-frame {
  position: relative;
  width: min(100%, 340px);
  margin-left: auto;
  padding: 16px 14px 18px;
  border-radius: 34px;
  background: linear-gradient(160deg, #101113, #242932);
  box-shadow: 0 30px 80px rgba(16, 17, 19, 0.22);
}

.phone-notch {
  width: 36%;
  height: 18px;
  margin: 0 auto 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.phone-screen {
  min-height: 520px;
  padding: 18px;
  border-radius: 24px;
  background: linear-gradient(180deg, #f5f2eb 0%, #ece3d4 100%);
}

.device-stage {
  position: relative;
  width: min(100%, 430px);
  padding: 8px 0;
}

.device-glow {
  position: absolute;
  right: 4%;
  top: 10%;
  width: 76%;
  height: 78%;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(20, 155, 141, 0.18), rgba(108, 99, 255, 0.08) 45%, transparent 72%);
  filter: blur(18px);
}

.phone-frame-shot {
  width: min(100%, 365px);
  transform: rotate(-1.6deg);
}

.app-shot-screen {
  position: relative;
  min-height: 660px;
  padding: 18px 16px 14px;
  overflow: hidden;
  background: linear-gradient(180deg, #f7f4ee 0%, #efe9dd 100%);
}

.app-shot-status {
  position: absolute;
  inset: 0 0 auto 0;
  height: 16px;
}

.app-shot-header {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) 46px;
  align-items: center;
  gap: 12px;
  margin-top: 6px;
}

.app-shot-avatar {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(200, 225, 217, 0.95), rgba(240, 221, 210, 0.85)),
    #e7ddd0;
  border: 1px solid rgba(16, 17, 19, 0.06);
}

.app-shot-kicker {
  display: block;
  color: #7c7b7a;
  font-size: 0.78rem;
  font-weight: 700;
}

.app-shot-title-block strong {
  display: block;
  margin-top: 2px;
  font-size: 1.08rem;
  letter-spacing: -0.03em;
}

.app-shot-calendar {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(16, 17, 19, 0.08);
  box-shadow: 0 10px 20px rgba(16, 17, 19, 0.06);
}

.app-shot-hero-card {
  position: relative;
  margin-top: 16px;
  padding: 18px;
  border-radius: 26px;
  background:
    radial-gradient(circle at 82% 78%, rgba(108, 99, 255, 0.22), transparent 16%),
    linear-gradient(140deg, #121217 0%, #191922 42%, #13211f 100%);
  color: #fff;
  box-shadow: 0 18px 32px rgba(16, 17, 19, 0.22);
}

.app-shot-badge {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.8rem;
  font-weight: 700;
}

.app-shot-ring {
  position: absolute;
  top: 14px;
  right: 14px;
  display: grid;
  place-items: center;
  width: 82px;
  height: 82px;
  border-radius: 999px;
  border: 9px solid rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 0.92rem;
  font-weight: 700;
}

.app-shot-ring-75 {
  border-color: transparent;
  background: conic-gradient(#eeff17 0 75%, rgba(255, 255, 255, 0.12) 75% 100%);
}

.app-shot-ring-75::before {
  content: '';
  position: absolute;
  inset: 9px;
  border-radius: inherit;
  background: #17171c;
}

.app-shot-ring-75 {
  isolation: isolate;
}

.app-shot-ring-75 {
  color: #fff;
}

.app-shot-hero-card h3 {
  margin-top: 16px;
  max-width: 208px;
  font-size: 1.72rem;
  line-height: 0.96;
  color: #fff;
}

.app-shot-hero-card p {
  margin: 8px 0 0;
  max-width: 198px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.45;
  font-size: 0.88rem;
}

.app-shot-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.app-shot-chip {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.76rem;
  font-weight: 700;
}

.app-shot-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 46px;
  margin-top: 14px;
  padding: 0 16px;
  border-radius: 999px;
  background: #fff;
  color: #17171c;
  font-weight: 700;
  font-size: 0.84rem;
}

.app-shot-cta::after {
  content: '→';
  font-size: 1.2rem;
}

.app-shot-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 18px;
}

.app-shot-section-head strong,
.app-shot-notes-title {
  font-size: 1rem;
  letter-spacing: -0.03em;
}

.app-shot-section-head span {
  color: #726cf0;
  font-size: 0.82rem;
  font-weight: 700;
}

.app-shot-metrics {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(120px, 0.8fr);
  gap: 10px;
  margin-top: 10px;
}

.app-shot-streak-card {
  padding: 14px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(16, 17, 19, 0.08);
}

.app-shot-card-label {
  display: block;
  color: #888687;
  font-size: 0.82rem;
  font-weight: 700;
}

.app-shot-streak-card strong,
.app-shot-sidecard strong {
  display: block;
  margin-top: 8px;
  font-size: 1.72rem;
  line-height: 0.95;
  letter-spacing: -0.05em;
}

.app-shot-streak-card p,
.app-shot-sidecard small,
.app-shot-card-foot,
.app-shot-note-card p {
  display: block;
  margin: 6px 0 0;
  color: #7a7977;
  line-height: 1.45;
  font-size: 0.78rem;
}

.app-shot-weekdots {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 7px;
  margin-top: 14px;
}

.app-shot-weekdots span {
  aspect-ratio: 1;
  border-radius: 999px;
  background: #e8e7e6;
}

.app-shot-weekdots .app-shot-weekdot-active {
  background: linear-gradient(135deg, #151519, #30c1b8);
}

.app-shot-weeklabels {
  margin-top: 8px;
  color: #92908f;
  font-size: 0.66rem;
  letter-spacing: 0.22em;
}

.app-shot-card-foot {
  margin-top: 10px;
  font-weight: 600;
}

.app-shot-sidecards {
  display: grid;
  gap: 10px;
}

.app-shot-sidecard {
  min-height: 92px;
  padding: 14px;
  border-radius: 20px;
  color: #17171c;
}

.app-shot-sidecard span {
  display: block;
  font-size: 0.74rem;
  font-weight: 700;
}

.app-shot-sidecard-lime {
  background: #eeff17;
}

.app-shot-sidecard-teal {
  background: #30c1b8;
}

.app-shot-note-card {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 14px;
  margin-top: 14px;
  padding: 15px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(16, 17, 19, 0.08);
}

.app-shot-note-card-compact {
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 12px;
}

.app-shot-note-icon {
  width: 38px;
  height: 38px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(108, 99, 255, 0.26), rgba(108, 99, 255, 0.08));
}

.app-shot-note-card strong {
  display: block;
  font-size: 0.88rem;
}

.app-shot-tabbar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  align-items: center;
  min-height: 56px;
  margin-top: 14px;
  padding: 8px;
  border-radius: 999px;
  background: #151519;
}

.app-shot-tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.7rem;
  font-weight: 700;
}

.app-shot-tab-active {
  background: linear-gradient(135deg, #7c68ff, #5b6bff);
  color: #fff;
}

.screen-chip {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(16, 17, 19, 0.08);
  color: var(--ink);
  font-size: 0.82rem;
}

.screen-title {
  margin-top: 18px;
  font-family: 'Newsreader', Georgia, serif;
  font-size: 2.05rem;
  line-height: 0.95;
}

.screen-subtitle,
.screen-meta {
  color: var(--muted);
  line-height: 1.6;
}

.screen-card {
  margin-top: 14px;
  padding: 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(16, 17, 19, 0.08);
}

.screen-card-strong {
  background: linear-gradient(135deg, rgba(34, 191, 175, 0.16), rgba(255, 255, 255, 0.96));
}

.screen-card-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-weight: 700;
}

.screen-bar {
  height: 8px;
  margin: 12px 0 10px;
  border-radius: 999px;
  background: rgba(16, 17, 19, 0.08);
  overflow: hidden;
}

.screen-bar span {
  display: block;
  width: 72%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--accent), var(--signal));
}

.screen-mini-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 14px;
}

.screen-mini-card {
  padding: 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(16, 17, 19, 0.08);
}

.screen-mini-card strong {
  display: block;
  font-size: 0.95rem;
}

.screen-mini-card span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  line-height: 1.5;
  font-size: 0.92rem;
}

.card {
  position: relative;
  overflow: hidden;
  padding: 24px;
  border-radius: var(--radius-lg);
  background: var(--surface-strong);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.card::after {
  content: '';
  position: absolute;
  inset: auto -40px -52px auto;
  width: 180px;
  height: 180px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(34, 191, 175, 0.22), transparent 66%);
}

.card p,
.card li {
  color: var(--muted);
  line-height: 1.7;
}

.feature-illustration {
  display: grid;
  gap: 12px;
  min-height: 142px;
  margin-bottom: 18px;
  padding: 16px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(245, 242, 235, 0.96), rgba(255, 255, 255, 0.82));
  border: 1px solid rgba(16, 17, 19, 0.08);
}

.feature-ill-chip,
.feature-ill-line,
.feature-ill-days span,
.feature-ill-pills span,
.feature-ill-chart span,
.feature-ill-metrics span,
.feature-ill-controls span {
  display: block;
}

.feature-ill-chip {
  width: 74px;
  height: 26px;
  border-radius: 999px;
}

.feature-ill-chip-dark {
  background: #17171c;
}

.feature-ill-chip-lime {
  background: var(--signal);
}

.feature-ill-line {
  width: 100%;
  height: 12px;
  border-radius: 999px;
  background: rgba(16, 17, 19, 0.08);
}

.feature-ill-line-short {
  width: 62%;
}

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

.feature-ill-days span {
  height: 38px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(34, 191, 175, 0.16), rgba(255, 255, 255, 0.96));
}

.feature-ill-ring {
  display: grid;
  place-items: center;
  width: 82px;
  height: 82px;
  margin-left: auto;
  border-radius: 999px;
  background:
    radial-gradient(circle, #fff 0 54%, transparent 55%),
    conic-gradient(#17171c 0 75%, rgba(16, 17, 19, 0.1) 75% 100%);
  color: #17171c;
  font-size: 0.82rem;
  font-weight: 700;
}

.feature-ill-pills,
.feature-ill-metrics,
.feature-ill-controls {
  display: flex;
  gap: 10px;
}

.feature-ill-pills span,
.feature-ill-metrics span,
.feature-ill-controls span {
  flex: 1 1 0;
  height: 28px;
  border-radius: 999px;
  background: rgba(16, 17, 19, 0.08);
}

.feature-ill-pills span:last-child {
  background: rgba(34, 191, 175, 0.22);
}

.feature-ill-chart {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: end;
  gap: 10px;
  min-height: 78px;
}

.feature-ill-chart span {
  border-radius: 16px 16px 8px 8px;
  background: linear-gradient(180deg, rgba(16, 17, 19, 0.9), rgba(34, 191, 175, 0.34));
}

.feature-ill-chart span:nth-child(1) {
  height: 44px;
}

.feature-ill-chart span:nth-child(2) {
  height: 66px;
}

.feature-ill-chart span:nth-child(3) {
  height: 54px;
}

.feature-ill-chart span:nth-child(4) {
  height: 76px;
  background: linear-gradient(180deg, rgba(228, 255, 58, 0.92), rgba(34, 191, 175, 0.44));
}

.feature-ill-metrics span:first-child {
  background: rgba(228, 255, 58, 0.44);
}

.feature-ill-profile {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
}

.feature-ill-avatar {
  display: block;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(34, 191, 175, 0.28), rgba(255, 255, 255, 0.98));
}

.feature-ill-controls span:nth-child(2) {
  background: rgba(34, 191, 175, 0.18);
}

.feature-ill-controls span:nth-child(3) {
  background: rgba(16, 17, 19, 0.14);
}

.card a.inline-link,
.doc-section a.inline-link {
  color: var(--accent-strong);
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.checklist,
.doc-section ul,
.doc-section ol {
  margin: 16px 0 0;
  padding-left: 18px;
}

.checklist li,
.doc-section li {
  margin: 10px 0;
}

.doc-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(250px, 0.22fr);
  gap: 24px;
}

.doc-main {
  display: grid;
  gap: 18px;
}

.doc-section {
  border-radius: var(--radius-lg);
  padding: 28px;
}

.doc-section + .doc-section {
  margin-top: 0;
}

.callout {
  margin-top: 18px;
  padding: 18px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(34, 191, 175, 0.12), rgba(228, 255, 58, 0.18));
  border: 1px solid rgba(16, 17, 19, 0.08);
}

.callout strong {
  display: block;
  margin-bottom: 6px;
  color: var(--ink);
}

.sidebar {
  position: sticky;
  top: 104px;
  align-self: start;
  display: grid;
  gap: 16px;
}

.sidebar .panel {
  background: rgba(255, 255, 255, 0.72);
}

.sidebar nav {
  display: grid;
  gap: 8px;
}

.sidebar nav a {
  text-decoration: none;
  color: var(--muted);
  padding: 9px 10px;
  border-radius: 12px;
}

.sidebar nav a:hover,
.sidebar nav a:focus-visible {
  color: var(--ink);
  background: rgba(16, 17, 19, 0.05);
}

.table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-lg);
}

table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  background: transparent;
}

th,
td {
  padding: 16px 18px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid rgba(16, 17, 19, 0.08);
}

th {
  color: var(--ink);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

tr:last-child td {
  border-bottom: 0;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.pill {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(16, 17, 19, 0.06);
  color: var(--ink);
  font-size: 0.92rem;
}

.site-footer {
  padding: 18px 0 42px;
}

.site-footer .panel {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.footer-note {
  max-width: 60ch;
}

:focus-visible {
  outline: 3px solid rgba(34, 191, 175, 0.5);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: no-preference) {
  .hero-card,
  .panel,
  .card,
  .doc-section {
    animation: rise 520ms ease both;
  }

  .card:nth-child(2),
  .panel:nth-child(2),
  .doc-section:nth-child(2) {
    animation-delay: 60ms;
  }

  .card:nth-child(3),
  .doc-section:nth-child(3) {
    animation-delay: 120ms;
  }

  .card:nth-child(4),
  .doc-section:nth-child(4) {
    animation-delay: 180ms;
  }
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 960px) {
  .hero-grid,
  .doc-layout,
  .card-grid,
  .glance-grid,
  .strip-grid,
  .feature-split-grid,
  .steps-grid,
  .final-cta-card {
    grid-template-columns: 1fr;
  }

  .hero-points {
    grid-template-columns: 1fr;
  }

  .sidebar {
    position: static;
  }

  .final-cta-card {
    display: grid;
  }

  .phone-frame {
    margin: 0 auto;
    transform: none;
  }

  .hero-side-landing {
    justify-items: center;
  }

  .device-stage {
    margin: 0 auto;
  }
}

@media (max-width: 860px) {
  .site-header {
    background: rgba(243, 241, 235, 0.9);
  }

  .nav-row {
    min-height: auto;
    padding: 12px 0;
    align-items: stretch;
    flex-direction: column;
  }

  .brand {
    align-self: flex-start;
  }

  .nav-links {
    width: 100%;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 8px;
    gap: 8px;
    border: 1px solid rgba(16, 17, 19, 0.08);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.58);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.3);
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x proximity;
  }

  .nav-links::-webkit-scrollbar {
    display: none;
  }

  .nav-links a {
    min-height: 42px;
    padding: 10px 13px;
    white-space: nowrap;
    background: rgba(255, 255, 255, 0.72);
    scroll-snap-align: start;
  }
}

@media (max-width: 720px) {
  .site-shell {
    width: min(var(--max-width), calc(100% - 20px));
  }

  .site-header {
    position: static;
  }

  .nav-row {
    gap: 12px;
  }

  .nav-links a {
    min-height: 40px;
    padding: 9px 12px;
  }

  .hero {
    padding: 36px 0 28px;
  }

  .hero-card,
  .panel,
  .doc-section {
    padding: 22px;
  }

  .card,
  .strip-item,
  .feature-story,
  .step-card,
  .final-cta-card {
    padding: 20px;
  }

  .hero-actions > * {
    flex: 1 1 100%;
  }

  .button,
  .button-secondary {
    width: 100%;
  }

  .feature-story h3 {
    font-size: 1.5rem;
  }

  .pill {
    min-height: 36px;
    padding: 0 10px;
    font-size: 0.86rem;
  }

  .sidebar nav a {
    padding: 10px 12px;
  }

  table {
    min-width: 620px;
  }

  th,
  td {
    padding: 14px;
  }

  .phone-frame-shot {
    width: min(100%, 332px);
  }

  .app-shot-screen {
    min-height: 600px;
    padding: 16px 14px 14px;
  }

  .app-shot-metrics {
    grid-template-columns: 1fr;
  }

  .app-shot-sidecards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .app-shot-hero-card h3 {
    max-width: 200px;
    font-size: 1.7rem;
  }

  h1 {
    font-size: clamp(2.5rem, 12vw, 4rem);
  }

  .section-head,
  .site-footer .panel {
    align-items: flex-start;
    flex-direction: column;
  }

  .sidebar {
    display: none;
  }
}

@media (max-width: 480px) {
  .site-shell {
    width: min(var(--max-width), calc(100% - 16px));
  }

  .brand {
    gap: 10px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
    border-radius: 12px;
  }

  .nav-links {
    gap: 7px;
    padding: 7px;
    border-radius: 16px;
  }

  .nav-links a {
    min-height: 38px;
    padding: 8px 11px;
    font-size: 0.9rem;
  }

  .hero {
    padding-top: 28px;
  }

  .doc-main {
    gap: 14px;
  }

  .hero-card,
  .panel,
  .doc-section,
  .card,
  .strip-item,
  .feature-story,
  .step-card,
  .final-cta-card {
    padding: 18px;
  }

  .hero-point {
    padding: 14px;
  }

  table {
    min-width: 540px;
  }

  th,
  td {
    padding: 12px;
  }

  .phone-frame {
    padding: 14px 12px 14px;
    border-radius: 30px;
  }

  .phone-frame-shot {
    width: min(100%, 310px);
  }

  .phone-screen {
    border-radius: 22px;
  }

  .app-shot-screen {
    min-height: 560px;
  }

  .app-shot-header {
    grid-template-columns: 40px minmax(0, 1fr) 42px;
    gap: 10px;
  }

  .app-shot-avatar {
    width: 40px;
    height: 40px;
  }

  .app-shot-calendar {
    width: 42px;
    height: 42px;
    border-radius: 14px;
  }

  .app-shot-hero-card {
    padding: 16px;
    border-radius: 22px;
  }

  .app-shot-hero-card h3 {
    max-width: 176px;
    font-size: 1.46rem;
  }

  .app-shot-chip-row {
    gap: 8px;
  }

  .app-shot-badge,
  .app-shot-chip {
    min-height: 28px;
    padding: 0 10px;
    font-size: 0.72rem;
  }

  .app-shot-cta {
    min-height: 42px;
    padding: 0 14px;
    font-size: 0.8rem;
  }

  .app-shot-streak-card,
  .app-shot-sidecard,
  .app-shot-note-card {
    padding: 12px;
  }

  .app-shot-sidecards {
    gap: 8px;
  }

  .app-shot-tabbar {
    gap: 6px;
    min-height: 52px;
    padding: 6px;
  }

  .app-shot-tab {
    min-height: 36px;
    font-size: 0.66rem;
  }
}
