*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --cream-page: #F5F0E8;
  --cream-wash: #E9DAC3;
  --paper-soft: #FFF9F1;
  --paper-white: #FFFFFF;
  --bg: var(--cream-page);
  --paper: var(--paper-soft);
  --paper-strong: var(--paper-white);
  --wash: var(--cream-wash);
  --ink: #111111;
  --muted: #655d54;
  --muted-soft: #8b8378;
  --line: rgba(17,17,17,0.10);
  --line-strong: rgba(17,17,17,0.18);
  --red: #eb4935;
  --red-deep: #b92a1b;
  --blue: #1c6de0;
  --green: #2f9a63;
  --gold: #ca9324;
  --shadow-soft: 0 20px 50px rgba(31, 22, 13, 0.08);
  --shadow-hard: 0 34px 90px rgba(24, 18, 12, 0.16);
  --max: 1220px;
  --display: "Iowan Old Style", "Baskerville", Georgia, serif;
  --sans: "Avenir Next", "Helvetica Neue", Arial, sans-serif;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  -webkit-font-smoothing: antialiased;
}

body {
  min-width: 320px;
  background:
    radial-gradient(circle at 10% 8%, rgba(255,255,255,0.74), transparent 20%),
    radial-gradient(circle at 88% 16%, rgba(28,109,224,0.07), transparent 20%),
    linear-gradient(180deg, #FFF9F1 0%, #F5F0E8 55%, #E9DAC3 100%);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.5;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.18;
  background:
    linear-gradient(90deg, transparent 0, transparent calc(100% - 1px), rgba(17,17,17,0.022) calc(100% - 1px)),
    linear-gradient(180deg, transparent 0, transparent calc(100% - 1px), rgba(17,17,17,0.022) calc(100% - 1px));
  background-size: 132px 132px;
}

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

picture {
  display: block;
}

a {
  color: inherit;
}

::selection {
  background: var(--ink);
  color: #fff;
}

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

.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  z-index: 300;
  padding: 0.6rem 1rem;
  background: var(--blue);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
}

.skip-link:focus {
  left: 0;
  top: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  padding: 16px 18px 0;
}

.nav-shell {
  width: min(var(--max), 100%);
  margin: 0 auto;
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 0 18px;
  border: 1px solid rgba(17,17,17,0.06);
  border-radius: 999px;
  background: rgba(255, 249, 241, 0.78);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-family: var(--sans);
  font-size: clamp(1.55rem, 2.1vw, 1.84rem);
  font-weight: 800;
  line-height: 0.96;
  letter-spacing: -0.04em;
}

.brand-icon {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  border-radius: 11px;
  box-shadow: 0 10px 18px rgba(17,17,17,0.10);
}

.brand-wordmark {
  display: inline-flex;
  align-items: center;
  gap: 0;
  font-family: "Avenir Next", "Helvetica Neue", Arial, sans-serif;
  font-weight: 800;
  letter-spacing: -0.055em;
  color: var(--ink);
}

.brand-daily {
  font: inherit;
}

.brand-label {
  margin-left: -0.08em;
  color: var(--ink);
  font: inherit;
}

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

.nav-links a {
  padding: 10px 12px;
  border-radius: 999px;
  color: var(--muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  transition: background 0.2s ease, color 0.2s ease;
}

.nav-links a:hover {
  background: rgba(17,17,17,0.05);
  color: var(--ink);
}

.nav-links .download-link {
  background: var(--ink);
  color: #fff;
  padding-inline: 16px;
}

.nav-links .download-link:hover {
  background: rgba(17,17,17,0.88);
  color: #fff;
}

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

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(0, 1.16fr);
  gap: 34px;
  align-items: center;
  min-height: calc(100vh - 110px);
  margin-bottom: 34px;
}

.hero-copy {
  padding: 18px 0 10px;
}

.eyebrow {
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.hero-copy h1,
.section-head h2,
.cta-block h2 {
  font-family: var(--display);
  font-weight: 700;
}

.hero-copy h1 {
  margin-top: 0;
  max-width: 12ch;
  font-size: clamp(4rem, 8vw, 7rem);
  line-height: 0.9;
  letter-spacing: -0.08em;
}

.hero-copy .subhead {
  max-width: 34ch;
  margin-top: 18px;
  color: var(--muted);
  font-size: 1.15rem;
  line-height: 1.65;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.96rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--ink);
  color: #fff;
  box-shadow: 0 14px 28px rgba(17,17,17,0.18);
}

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

.hero-jump {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 0 12px;
  color: var(--muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.hero-jump:hover {
  color: var(--ink);
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.hero-proof span,
.micro-pill {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(17,17,17,0.08);
  background: rgba(255,255,255,0.62);
  box-shadow: 0 12px 24px rgba(27,20,12,0.05);
  font-size: 0.86rem;
}

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

.metric-card {
  padding: 16px 16px 14px;
  border-radius: 22px;
  border: 1px solid rgba(17,17,17,0.08);
  background: rgba(255,251,245,0.72);
  box-shadow: 0 16px 30px rgba(27,20,12,0.05);
}

.metric-card strong {
  display: block;
  margin-bottom: 4px;
  font-size: 1.6rem;
  line-height: 1;
  letter-spacing: -0.05em;
}

.metric-card span {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.45;
}

.hero-stage {
  position: relative;
  min-height: 760px;
  border-radius: 40px;
  border: 1px solid rgba(17,17,17,0.06);
  background:
    radial-gradient(circle at 82% 12%, rgba(28,109,224,0.12), transparent 18%),
    radial-gradient(circle at 14% 16%, rgba(235,73,53,0.10), transparent 20%),
    linear-gradient(180deg, rgba(255,252,246,0.94), rgba(243,234,220,0.94));
  box-shadow: var(--shadow-hard);
  overflow: hidden;
}

.hero-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 0, transparent calc(100% - 1px), rgba(17,17,17,0.02) calc(100% - 1px)),
    linear-gradient(180deg, transparent 0, transparent calc(100% - 1px), rgba(17,17,17,0.02) calc(100% - 1px));
  background-size: 140px 140px;
  pointer-events: none;
}

.note-panel,
.device-panel,
.value-card {
  position: absolute;
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid rgba(17,17,17,0.08);
  box-shadow: 0 26px 56px rgba(24,18,12,0.14);
}

.note-panel {
  top: 30px;
  left: 28px;
  width: 290px;
  padding: 18px 20px 20px;
  background: rgba(255,251,245,0.82);
  backdrop-filter: blur(10px);
  z-index: 4;
}

.note-panel strong {
  display: block;
  margin-top: 8px;
  font-size: 1.22rem;
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.note-panel p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

.device-panel {
  background: rgba(255,255,255,0.62);
}

.device-main {
  left: 90px;
  right: 120px;
  top: 120px;
  padding: 18px;
  background:
    radial-gradient(circle at 18% 14%, rgba(235,73,53,0.10), transparent 26%),
    linear-gradient(180deg, rgba(255,255,255,0.84), rgba(248,242,232,0.96));
  z-index: 1;
}

.device-main img {
  width: 100%;
  height: auto;
  border-radius: 28px;
}

.device-panel img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.device-search {
  top: 54px;
  right: 26px;
  width: 195px;
  transform: rotate(7deg);
  z-index: 3;
}

.device-trends {
  right: 34px;
  bottom: 42px;
  width: 220px;
  transform: rotate(-7deg);
  z-index: 3;
}

.value-card {
  left: 34px;
  bottom: 40px;
  width: 320px;
  padding: 18px 20px;
  background: rgba(17,17,17,0.96);
  color: #fff;
  z-index: 4;
}

.value-card strong {
  display: block;
  font-size: 1.16rem;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.value-card p {
  margin-top: 8px;
  color: rgba(255,255,255,0.72);
  font-size: 0.92rem;
  line-height: 1.55;
}

.section {
  margin-top: 24px;
  padding: 34px;
  border-radius: 36px;
  border: 1px solid rgba(17,17,17,0.06);
  background: rgba(255,250,243,0.72);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(10px);
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: 26px;
  align-items: end;
  margin-bottom: 24px;
}

.section-head h2 {
  font-size: clamp(2.5rem, 4.4vw, 4rem);
  line-height: 0.92;
  letter-spacing: -0.065em;
}

.section-head p {
  max-width: 44ch;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.65;
}

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

.summary-card {
  padding: 20px;
  border-radius: 24px;
  border: 1px solid rgba(17,17,17,0.08);
  background: rgba(255,255,255,0.74);
  box-shadow: 0 16px 30px rgba(27,20,12,0.06);
}

.summary-card strong {
  display: block;
  margin: 8px 0 8px;
  font-size: 1.1rem;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.summary-card p {
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.6;
}

.summary-card .eyebrow {
  margin-bottom: 6px;
}

.workflow-grid {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 18px;
  align-items: start;
}

.workflow-stack {
  display: grid;
  gap: 0;
  align-content: start;
  padding: 10px;
  border-radius: 30px;
  border: 1px solid rgba(17,17,17,0.08);
  background: rgba(255,255,255,0.78);
  box-shadow: 0 18px 38px rgba(27,20,12,0.06);
}

.step-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding: 18px 16px;
  border-radius: 22px;
  background: transparent;
}

.step-card + .step-card {
  border-top: 1px solid rgba(17,17,17,0.08);
}

.step-num {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--ink);
  color: #fff;
  font-weight: 800;
  font-size: 0.9rem;
}

.step-card strong {
  display: block;
  margin-bottom: 5px;
  font-size: 1rem;
  letter-spacing: -0.02em;
}

.step-card p {
  color: var(--muted);
  font-size: 0.93rem;
  line-height: 1.55;
}

.workflow-note {
  margin-top: 10px;
  padding: 16px;
  border-radius: 22px;
  background: var(--ink);
  color: #fff;
}

.workflow-note strong {
  display: block;
  font-size: 1rem;
  letter-spacing: -0.02em;
}

.workflow-note p {
  margin-top: 6px;
  color: rgba(255,255,255,0.72);
  font-size: 0.92rem;
  line-height: 1.5;
}

.context-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 10px;
  margin-top: 12px;
}

.context-links a {
  display: grid;
  gap: 3px;
  padding: 12px;
  border-radius: 18px;
  background: rgba(17,17,17,0.04);
  color: var(--ink);
  text-decoration: none;
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1.25;
}

.context-links a:hover {
  background: rgba(17,17,17,0.07);
}

.context-links span {
  color: var(--muted-soft);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.10em;
  text-transform: uppercase;
}

.label-surface {
  display: flex;
  justify-content: center;
  padding: 18px;
  border-radius: 30px;
  border: 1px solid rgba(17,17,17,0.08);
  background:
    radial-gradient(circle at 88% 12%, rgba(28,109,224,0.09), transparent 20%),
    linear-gradient(180deg, rgba(255,255,255,0.82), rgba(245,240,232,0.96));
  box-shadow: 0 24px 54px rgba(24,18,12,0.10);
}

.label-surface img {
  width: min(100%, 313px);
  height: auto;
  max-height: 680px;
  object-fit: contain;
  border-radius: 28px;
  box-shadow: 0 24px 48px rgba(17,17,17,0.10);
}

.label-surface .screen-pair {
  width: 100%;
  align-items: start;
}

.label-surface .screen-pair img {
  width: min(100%, 250px);
  max-height: 620px;
}

.label-header-card {
  padding: 22px 22px 18px;
  border: 3px solid var(--ink);
  background: var(--paper-strong);
}

.label-brand-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 14px;
  padding-bottom: 10px;
  border-bottom: 14px solid var(--ink);
}

.label-brand-row strong {
  font-size: clamp(2rem, 4.2vw, 3.2rem);
  line-height: 0.9;
  letter-spacing: -0.06em;
}

.label-brand-row span {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 700;
}

.label-mini-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 12px;
  padding: 10px 0 8px;
  border-bottom: 8px solid var(--ink);
  font-size: 0.82rem;
  font-weight: 700;
}

.label-rows {
  display: grid;
}

.label-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 12px;
  align-items: baseline;
  padding: 10px 0;
  border-bottom: 1px solid rgba(17,17,17,0.16);
}

.label-row:last-child {
  border-bottom: none;
}

.label-row strong {
  font-size: 1.1rem;
  line-height: 1.08;
}

.label-row .goal {
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 600;
}

.label-row .today {
  font-size: 1rem;
  font-weight: 800;
}

.label-row .today.red {
  color: var(--red);
}

.screen-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  align-items: start;
}

.screen-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  align-items: start;
}

.screen-column {
  display: grid;
  gap: 16px;
  align-content: start;
}

.screen-card {
  border-radius: 28px;
  border: 1px solid rgba(17,17,17,0.08);
  overflow: hidden;
  background: rgba(255,255,255,0.76);
  box-shadow: 0 22px 42px rgba(27,20,12,0.07);
}

.screen-card.wide {
  grid-column: auto;
}

.screen-card.compact-shot .screen-media {
  overflow: hidden;
}

.screen-card.compact-shot .screen-media img {
  width: min(100%, 320px);
  height: auto;
  object-fit: contain;
}

.screen-copy {
  padding: 18px 18px 16px;
}

.screen-copy strong {
  display: block;
  margin-top: 8px;
  font-size: 1.15rem;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.screen-copy p {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.93rem;
  line-height: 1.55;
}

.screen-media {
  background:
    radial-gradient(circle at 88% 12%, rgba(28,109,224,0.08), transparent 20%),
    linear-gradient(180deg, rgba(246,240,231,0.98), rgba(239,230,217,0.98));
  padding: 18px;
}

.screen-media img {
  width: min(100%, 320px);
  height: auto;
  margin-inline: auto;
  object-fit: contain;
  border-radius: 26px;
  box-shadow: 0 24px 48px rgba(17,17,17,0.10);
}

.screen-pair picture {
  display: flex;
  justify-content: center;
}

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

.faq-item {
  padding: 20px;
  border-radius: 24px;
  border: 1px solid rgba(17,17,17,0.08);
  background: rgba(255,255,255,0.74);
  box-shadow: 0 16px 30px rgba(27,20,12,0.06);
}

.faq-item h3 {
  font-size: 1.04rem;
  line-height: 1.16;
  letter-spacing: -0.025em;
}

.faq-item p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.6;
}

.screen-pair {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  align-items: start;
}

.comparison-shot {
  display: grid;
  gap: 8px;
  margin: 0;
  min-width: 0;
}

.comparison-shot picture {
  min-width: 0;
}

.comparison-label {
  order: -1;
  justify-self: center;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.78);
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  box-shadow: 0 10px 22px rgba(27,20,12,0.08);
}

.barcode-demo {
  position: relative;
  display: grid;
  align-content: space-between;
  width: min(100%, 320px);
  margin-inline: auto;
  min-height: 100%;
  aspect-ratio: 1320 / 2868;
  overflow: hidden;
  padding: 26px 18px;
  border-radius: 26px;
  color: #fff;
  background:
    radial-gradient(circle at 50% 18%, rgba(60, 214, 98, 0.16), transparent 28%),
    linear-gradient(180deg, #071426, #02070d 72%);
  box-shadow: 0 24px 48px rgba(17,17,17,0.10);
}

.barcode-demo::before {
  content: "";
  width: 92px;
  height: 28px;
  margin: 0 auto;
  border-radius: 999px;
  background: #000;
  box-shadow: 70px 12px 0 -10px rgba(255,255,255,0.34), -72px 12px 0 -10px rgba(255,255,255,0.26);
}

.scan-window {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 34%;
  border: 4px solid #32d85a;
  border-radius: 24px;
  background: rgba(255,255,255,0.05);
  box-shadow: 0 0 34px rgba(50,216,90,0.18);
}

.scan-window::before,
.scan-window::after {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.12);
}

.barcode-lines {
  display: flex;
  align-items: stretch;
  gap: 4px;
  width: min(78%, 190px);
  height: 94px;
  padding: 14px 16px;
  border-radius: 16px;
  background: #fff;
}

.barcode-lines span {
  display: block;
  flex: var(--w, 1);
  background: #101010;
}

.scan-beam {
  position: absolute;
  left: 14%;
  right: 14%;
  top: 50%;
  height: 3px;
  border-radius: 999px;
  background: #32d85a;
  box-shadow: 0 0 18px rgba(50,216,90,0.8);
}

.barcode-demo p {
  margin: 0;
  text-align: center;
  color: rgba(255,255,255,0.86);
  font-size: 0.94rem;
  line-height: 1.35;
}

.barcode-demo strong {
  display: block;
  margin-bottom: 5px;
  color: #fff;
  font-size: 1.05rem;
}

.benefit-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 18px;
}

.contrast-card,
.price-card,
.links-card {
  border-radius: 28px;
  border: 1px solid rgba(17,17,17,0.08);
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(27,20,12,0.07);
}

.contrast-card {
  background: rgba(255,255,255,0.80);
}

.contrast-head {
  padding: 18px 20px;
  border-bottom: 8px solid var(--ink);
}

.contrast-head strong {
  display: block;
  margin-top: 8px;
  font-size: 1.2rem;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.contrast-head p {
  margin-top: 8px;
  max-width: 44ch;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.58;
}

.contrast-list {
  display: grid;
}

.contrast-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: baseline;
  padding: 16px 20px;
  border-top: 1px solid rgba(17,17,17,0.10);
}

.contrast-row strong {
  display: block;
  font-size: 1rem;
  letter-spacing: -0.02em;
}

.contrast-row p {
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.52;
}

.contrast-tag {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(17,17,17,0.05);
  font-size: 0.82rem;
  font-weight: 800;
}

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

.price-card {
  padding: 20px;
  background: linear-gradient(180deg, rgba(17,17,17,0.98), rgba(32,27,22,0.98));
  color: #fff;
}

.price-chip {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.10);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.10em;
  text-transform: uppercase;
}

.price-card strong {
  display: block;
  margin-top: 12px;
  font-size: 2rem;
  line-height: 0.96;
  letter-spacing: -0.06em;
}

.price-card p {
  margin-top: 10px;
  color: rgba(255,255,255,0.72);
  font-size: 0.93rem;
  line-height: 1.58;
}

.price-list {
  margin-top: 16px;
  display: grid;
  gap: 10px;
}

.price-list span {
  display: block;
  padding-top: 10px;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 0.92rem;
}

.links-card {
  padding: 20px;
  background: rgba(255,255,255,0.80);
}

.links-card strong {
  display: block;
  margin-top: 8px;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
}

.links-card p {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.links-grid {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.links-grid a {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(17,17,17,0.04);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 700;
}

.links-grid a span {
  color: var(--muted-soft);
  font-size: 0.78rem;
}

.resource-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 14px;
}

.resource-card {
  min-height: 100%;
  padding: 20px;
  border-radius: 26px;
  border: 1px solid rgba(17,17,17,0.08);
  background: rgba(255,255,255,0.80);
  box-shadow: 0 18px 38px rgba(27,20,12,0.06);
  text-decoration: none;
}

.resource-card span {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.resource-card strong {
  display: block;
  font-size: 1.08rem;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.resource-card p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

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

.pricing-card {
  padding: 22px;
  border-radius: 30px;
  border: 2px solid var(--ink);
  background: rgba(255,255,255,0.80);
  box-shadow: 0 20px 42px rgba(27,20,12,0.06);
}

.pricing-card.featured {
  background: linear-gradient(180deg, rgba(17,17,17,0.98), rgba(31,26,20,0.98));
  color: #fff;
}

.pricing-tier {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.pricing-card.featured .pricing-tier {
  color: rgba(255,255,255,0.60);
}

.pricing-amount {
  margin-top: 12px;
  font-size: clamp(2.8rem, 5vw, 3.8rem);
  line-height: 0.9;
  letter-spacing: -0.08em;
  font-weight: 900;
}

.pricing-note {
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.58;
}

.pricing-card.featured .pricing-note,
.pricing-card.featured .pricing-list {
  color: rgba(255,255,255,0.74);
}

.pricing-list {
  margin-top: 18px;
  display: grid;
  gap: 10px;
  color: var(--muted);
  font-size: 0.92rem;
}

.pricing-list span {
  display: block;
  padding-top: 10px;
  border-top: 1px solid rgba(17,17,17,0.10);
}

.pricing-card.featured .pricing-list span {
  border-color: rgba(255,255,255,0.10);
}

.cta-block {
  padding: 28px 30px;
  border-radius: 34px;
  background: linear-gradient(180deg, rgba(17,17,17,0.98), rgba(34,28,22,0.98));
  color: #fff;
  box-shadow: 0 30px 70px rgba(24,18,12,0.18);
}

.cta-block h2 {
  max-width: 10ch;
  font-size: clamp(2.6rem, 4.8vw, 4.4rem);
  line-height: 0.92;
  letter-spacing: -0.07em;
}

.cta-block p {
  max-width: 44ch;
  margin-top: 12px;
  color: rgba(255,255,255,0.72);
  font-size: 1rem;
  line-height: 1.65;
}

.cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 22px;
}

.cta-row .button-secondary {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.12);
  color: #fff;
}

.cta-block .button-primary {
  background: #fff;
  color: var(--ink);
  box-shadow: none;
}

.cta-block .button-primary:hover {
  background: #fff;
}

.cta-block .micro-pill {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.12);
  color: #fff;
  box-shadow: none;
}

.footer {
  margin-top: 20px;
  padding: 0 6px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 18px 28px;
  color: var(--muted-soft);
  font-size: 0.78rem;
}

.footer a {
  color: var(--muted);
  text-decoration: none;
}

.footer a:hover {
  color: var(--ink);
}

.footer-meta {
  max-width: 78ch;
}

.footer-credit {
  margin-top: 6px;
}

.footer-credit a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-bottom {
  display: flex;
  justify-content: flex-end;
  justify-self: end;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-links {
  display: flex;
  justify-content: flex-end;
  gap: 14px;
  flex-wrap: wrap;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-reveal].in {
  opacity: 1;
  transform: none;
}

@media (max-width: 1180px) {
  .hero,
  .workflow-grid,
  .benefit-grid,
  .section-head {
    grid-template-columns: 1fr;
  }

  .hero-stage {
    min-height: 980px;
  }
}

@media (max-width: 940px) {
  .page {
    width: min(100%, calc(100% - 22px));
  }

  .nav-shell {
    border-radius: 28px;
    padding: 10px 14px;
  }

  .nav-links a.hide-mobile {
    display: none;
  }

  .metric-row,
  .summary-grid,
  .screen-grid,
  .screen-columns,
  .resource-grid,
  .pricing-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .screen-card.wide {
    grid-column: auto;
  }

  .hero {
    gap: 18px;
    min-height: auto;
  }

  .hero-stage {
    min-height: auto;
    padding: 18px;
  }

  .note-panel,
  .device-panel,
  .value-card {
    position: relative;
    inset: auto;
    width: auto;
    right: auto;
    left: auto;
    top: auto;
    bottom: auto;
    transform: none;
    margin-top: 14px;
  }

  .device-main {
    padding: 14px;
  }

  .section {
    padding: 24px;
  }
}

@media (max-width: 720px) {
  .site-header {
    padding-inline: 10px;
  }

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

  .footer-bottom {
    justify-self: start;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .nav-shell {
    gap: 10px;
  }

  .brand {
    gap: 10px;
    font-size: clamp(1.45rem, 8vw, 1.85rem);
  }

  .brand-icon {
    width: 38px;
    height: 38px;
  }

  .hero-copy h1 {
    font-size: clamp(3.2rem, 15vw, 4.8rem);
  }

  .hero-copy .subhead,
  .section-head p,
  .cta-block p {
    font-size: 0.96rem;
  }

  .section-head h2,
  .cta-block h2 {
    font-size: clamp(2.2rem, 10vw, 3.2rem);
  }

  .screen-pair {
    grid-template-columns: 1fr;
  }

  .context-links {
    grid-template-columns: 1fr;
  }

  .label-row,
  .label-mini-head {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .label-row .today,
  .label-mini-head span:last-child {
    grid-column: 2;
  }

  .label-row .goal,
  .label-mini-head span:nth-child(2) {
    display: none;
  }
}

@media (max-width: 540px) {
  .page {
    padding-top: 14px;
  }

  .nav-shell {
    min-height: 56px;
  }

  .nav-links a {
    padding: 9px 10px;
    font-size: 0.82rem;
  }

  .button,
  .hero-proof span,
  .micro-pill {
    width: 100%;
    justify-content: center;
  }

  .hero-actions,
  .cta-row {
    flex-direction: column;
  }

  .cta-block {
    padding: 22px;
  }
}
