:root {
  color-scheme: light;
  --bg: #f4f7f5;
  --bg-subtle: #edf3ef;
  --surface: #ffffff;
  --surface-soft: #e8f0eb;
  --surface-strong: #dceae2;
  --text: #13211c;
  --text-muted: #4f6259;
  --text-soft: #6b7d74;
  --border: #d5e1da;
  --border-strong: #b7c9bf;
  --primary: #176c50;
  --primary-hover: #11553e;
  --primary-on: #ffffff;
  --primary-soft: #dcefe6;
  --accent: #a65f12;
  --accent-soft: #fae9d4;
  --accent-on: #5d3206;
  --header-bg: rgba(244, 247, 245, 0.9);
  --phone-edge: #121715;
  --focus: #d26b00;
  --shadow-sm: 0 8px 24px rgba(30, 54, 43, 0.08);
  --shadow-md: 0 20px 60px rgba(24, 48, 37, 0.12);
  --shadow-phone: 0 34px 72px rgba(21, 43, 33, 0.22);
  --content: 1180px;
  --measure: 700px;
  --header-height: 72px;
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
}

:root[data-theme="dark"] {
  color-scheme: dark;
  --bg: #09110d;
  --bg-subtle: #0d1712;
  --surface: #111d17;
  --surface-soft: #17271f;
  --surface-strong: #20362b;
  --text: #edf5f0;
  --text-muted: #b5c6bc;
  --text-soft: #93a89c;
  --border: #263b31;
  --border-strong: #3b574a;
  --primary: #78d9b2;
  --primary-hover: #9ae8c8;
  --primary-on: #082219;
  --primary-soft: #163c2e;
  --accent: #f4b564;
  --accent-soft: #402a13;
  --accent-on: #ffcf91;
  --header-bg: rgba(9, 17, 13, 0.9);
  --phone-edge: #020403;
  --focus: #ffbd6c;
  --shadow-sm: 0 8px 28px rgba(0, 0, 0, 0.24);
  --shadow-md: 0 24px 70px rgba(0, 0, 0, 0.34);
  --shadow-phone: 0 36px 82px rgba(0, 0, 0, 0.52);
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme]) {
    color-scheme: dark;
    --bg: #09110d;
    --bg-subtle: #0d1712;
    --surface: #111d17;
    --surface-soft: #17271f;
    --surface-strong: #20362b;
    --text: #edf5f0;
    --text-muted: #b5c6bc;
    --text-soft: #93a89c;
    --border: #263b31;
    --border-strong: #3b574a;
    --primary: #78d9b2;
    --primary-hover: #9ae8c8;
    --primary-on: #082219;
    --primary-soft: #163c2e;
    --accent: #f4b564;
    --accent-soft: #402a13;
    --accent-on: #ffcf91;
    --header-bg: rgba(9, 17, 13, 0.9);
    --phone-edge: #020403;
    --focus: #ffbd6c;
    --shadow-sm: 0 8px 28px rgba(0, 0, 0, 0.24);
    --shadow-md: 0 24px 70px rgba(0, 0, 0, 0.34);
    --shadow-phone: 0 36px 82px rgba(0, 0, 0, 0.52);
  }
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 20px);
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

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

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

h1,
h2,
h3,
p,
figure,
ul,
ol {
  margin-top: 0;
}

h1,
h2,
h3 {
  line-height: 1.1;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

h1 {
  max-width: 780px;
  margin-bottom: 24px;
  font-size: clamp(2.8rem, 10vw, 5.8rem);
  font-weight: 780;
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(2.15rem, 7vw, 4.25rem);
  font-weight: 760;
}

h3 {
  margin-bottom: 10px;
  font-size: clamp(1.25rem, 3.8vw, 1.65rem);
  font-weight: 720;
}

p {
  color: var(--text-muted);
}

::selection {
  background: var(--primary);
  color: var(--primary-on);
}

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

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: 10px;
  background: var(--text);
  color: var(--bg);
  font-weight: 700;
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  min-height: var(--header-height);
  border-bottom: 1px solid var(--border);
  background: var(--header-bg);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: min(calc(100% - 32px), var(--content));
  min-height: var(--header-height);
  margin: 0 auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  font-size: 1.1rem;
  font-weight: 780;
  letter-spacing: -0.02em;
}

.brand__mark {
  position: relative;
  display: grid;
  width: 38px;
  height: 38px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 11px;
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.app-icon {
  grid-area: 1 / 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.app-icon--dark {
  display: none;
}

:root[data-theme="dark"] .app-icon--light {
  display: none;
}

:root[data-theme="dark"] .app-icon--dark {
  display: block;
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme]) .app-icon--light {
    display: none;
  }

  :root:not([data-theme]) .app-icon--dark {
    display: block;
  }
}

.site-nav {
  display: none;
  align-items: center;
  gap: 4px;
}

.site-nav a {
  min-height: 44px;
  padding: 10px 12px;
  border-radius: 10px;
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 650;
  transition: background-color 180ms ease, color 180ms ease;
}

.site-nav a:hover {
  background: var(--surface-soft);
  color: var(--text);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.theme-control {
  display: grid;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: 12px;
  appearance: none;
  background: var(--surface);
  color: var(--text-muted);
  cursor: pointer;
  place-items: center;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease;
}

.theme-control:hover {
  border-color: var(--border-strong);
  background: var(--surface-soft);
  color: var(--text);
}

.theme-control__icon {
  width: 21px;
  height: 21px;
}

.theme-control__icon--sun {
  display: none;
}

:root[data-theme="dark"] .theme-control__icon--moon {
  display: none;
}

:root[data-theme="dark"] .theme-control__icon--sun {
  display: block;
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme]) .theme-control__icon--moon {
    display: none;
  }

  :root:not([data-theme]) .theme-control__icon--sun {
    display: block;
  }
}

.header-cta {
  display: none;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 16px;
  border-radius: 12px;
  background: var(--primary);
  color: var(--primary-on);
  font-size: 0.9rem;
  font-weight: 720;
  transition: background-color 180ms ease;
}

.header-cta:hover {
  background: var(--primary-hover);
}

.layout-grid {
  display: grid;
}

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}

.hero__backdrop {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 12%, var(--primary-soft), transparent 34%),
    radial-gradient(circle at 88% 74%, var(--accent-soft), transparent 29%);
  opacity: 0.72;
}

.hero__backdrop::before,
.hero__backdrop::after {
  position: absolute;
  border: 1px solid var(--border);
  border-radius: 999px;
  content: "";
}

.hero__backdrop::before {
  top: 6%;
  right: -24%;
  width: 68vw;
  height: 68vw;
}

.hero__backdrop::after {
  right: -9%;
  bottom: -24%;
  width: 45vw;
  height: 45vw;
}

.hero__inner {
  align-items: center;
  gap: 48px;
  width: min(calc(100% - 32px), var(--content));
  min-height: calc(100svh - var(--header-height));
  margin: 0 auto;
  padding: 72px 0 56px;
}

.hero__copy {
  position: relative;
  z-index: 2;
}

.eyebrow,
.card-label {
  margin-bottom: 14px;
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  line-height: 1.3;
  text-transform: uppercase;
}

.hero__lead {
  max-width: 650px;
  margin-bottom: 30px;
  color: var(--text-muted);
  font-size: clamp(1.08rem, 3.5vw, 1.32rem);
  line-height: 1.55;
}

.hero__actions {
  display: grid;
  gap: 12px;
  margin-bottom: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 14px;
  cursor: pointer;
  font-weight: 740;
  line-height: 1.25;
  text-align: center;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease;
}

.button--primary {
  background: var(--primary);
  color: var(--primary-on);
}

.button--primary:hover {
  background: var(--primary-hover);
}

.button--secondary {
  border-color: var(--border-strong);
  background: var(--surface);
  color: var(--text);
}

.button--secondary:hover {
  border-color: var(--primary);
  background: var(--surface-soft);
}

.button--light {
  background: #ffffff;
  color: #123b2c;
}

.button--light:hover {
  background: #e7f5ed;
}

.proof-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin: 0;
  padding: 0;
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 650;
  list-style: none;
}

.proof-list li {
  position: relative;
  padding-left: 18px;
}

.proof-list li::before {
  position: absolute;
  top: 0.65em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--primary);
  content: "";
  transform: translateY(-50%);
}

.product-shot {
  margin: 0;
}

.product-shot figcaption {
  max-width: 340px;
  margin: 16px auto 0;
  color: var(--text-soft);
  font-size: 0.86rem;
  line-height: 1.45;
  text-align: center;
}

.product-shot--hero {
  position: relative;
  width: min(88%, 360px);
  margin: 0 auto;
}

.product-shot--hero::before,
.product-shot--hero::after {
  position: absolute;
  z-index: -1;
  border-radius: 18px;
  background: var(--surface);
  box-shadow: var(--shadow-md);
  content: "";
}

.product-shot--hero::before {
  top: 13%;
  right: -17%;
  width: 52%;
  height: 22%;
  transform: rotate(5deg);
}

.product-shot--hero::after {
  bottom: 14%;
  left: -14%;
  width: 46%;
  height: 18%;
  background: var(--accent-soft);
  transform: rotate(-7deg);
}

.phone-frame {
  position: relative;
  width: min(100%, 332px);
  margin: 0 auto;
  padding: 9px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 46px;
  background: var(--phone-edge);
  box-shadow: var(--shadow-phone);
}

.phone-frame--hero {
  width: 100%;
}

.screen-media {
  position: relative;
  display: grid;
  aspect-ratio: 1320 / 2868;
  overflow: hidden;
  border-radius: 37px;
  background: var(--surface-soft);
}

.screen-media picture,
.screen-media img {
  grid-area: 1 / 1;
  width: 100%;
  height: 100%;
}

.screen-media picture {
  position: relative;
  z-index: 2;
  opacity: 0;
}

.screen-media img {
  object-fit: cover;
}

.screen-media.has-image picture,
.watch-frame.has-image > img {
  opacity: 1;
}

.screen-media.has-image .screen-fallback,
.watch-frame.has-image .screen-fallback {
  display: none;
}

.screen-fallback {
  position: relative;
  z-index: 1;
  display: grid;
  grid-area: 1 / 1;
  place-content: center;
  gap: 8px;
  padding: 24px;
  background:
    linear-gradient(var(--surface-soft), var(--surface-soft)) padding-box,
    repeating-linear-gradient(135deg, transparent 0 18px, var(--surface-strong) 18px 36px);
  color: var(--text);
  text-align: center;
}

.screen-fallback span {
  font-size: 1.05rem;
  font-weight: 760;
}

.screen-fallback small {
  color: var(--text-soft);
  font-size: 0.72rem;
}

.section {
  padding: 88px 0;
}

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

.section-heading {
  max-width: var(--measure);
  margin-bottom: 48px;
}

.section-heading p:last-child {
  margin-bottom: 0;
  font-size: 1.06rem;
}

.section-heading--center {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.privacy-section {
  background: var(--surface);
}

.privacy-grid {
  display: grid;
  gap: 16px;
}

.privacy-point {
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--bg-subtle);
}

.privacy-point h3 {
  margin-bottom: 10px;
  font-size: 1.18rem;
}

.privacy-point p:last-child {
  margin-bottom: 0;
  font-size: 0.94rem;
}

.data-section {
  background: var(--bg-subtle);
}

.data-grid {
  display: grid;
  gap: 20px;
  max-width: 1040px;
  margin: 0 auto;
}

.data-card {
  display: flex;
  flex-direction: column;
  padding: 28px 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.data-card--bls {
  border-color: var(--primary);
  background: var(--primary-soft);
}

.data-card h3 {
  font-size: clamp(1.45rem, 4vw, 2rem);
}

.data-card > p:not(.card-label) {
  margin-bottom: 24px;
}

.data-card__facts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: auto 0 0;
  padding: 0;
  list-style: none;
}

.data-card__facts li {
  padding: 7px 10px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--bg-subtle);
  color: var(--text-muted);
  font-size: 0.8rem;
  font-weight: 680;
}

.data-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: auto 0 22px;
}

.data-metrics div {
  padding: 14px;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  background: var(--surface);
}

.data-metrics dt {
  color: var(--text);
  font-size: 1.45rem;
  font-weight: 820;
  letter-spacing: -0.035em;
}

.data-metrics dd {
  margin: 2px 0 0;
  color: var(--text-muted);
  font-size: 0.78rem;
}

.workflow-section {
  background: var(--surface);
}

.workflow-layout {
  gap: 48px;
  align-items: start;
}

.workflow-copy {
  min-width: 0;
}

.step-list {
  display: grid;
  gap: 8px;
  margin: 0 0 30px;
  padding: 0;
  list-style: none;
}

.step-list li {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 14px;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
}

.step-list__number {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: var(--primary-soft);
  color: var(--primary);
  font-size: 0.9rem;
  font-weight: 800;
}

.step-list h3 {
  margin-bottom: 5px;
  font-size: 1.08rem;
  letter-spacing: -0.015em;
}

.step-list p {
  margin-bottom: 0;
  font-size: 0.94rem;
}

.method-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 26px;
}

.method-cloud span,
.goal-actions span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 11px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--bg-subtle);
  color: var(--text-muted);
  font-size: 0.82rem;
  font-weight: 650;
}

.optional-note {
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--bg-subtle);
}

.optional-note strong {
  color: var(--text);
}

.optional-note p {
  margin: 5px 0 0;
  color: var(--text-muted);
  font-size: 0.92rem;
}

.product-shot--workflow {
  width: min(100%, 350px);
  margin: 0 auto;
}

.insight-section {
  background: var(--bg-subtle);
}

.insight-grid {
  display: grid;
  gap: 24px;
}

.insight-card {
  display: grid;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.insight-card--accent {
  background: var(--primary-soft);
}

.insight-card__copy {
  padding: 28px 24px 8px;
}

.insight-card__copy p:last-child {
  margin-bottom: 0;
}

.product-shot--compact {
  width: min(74%, 284px);
  margin: 28px auto 0;
}

.phone-frame--compact {
  transform: translateY(34px);
}

.goal-section {
  position: relative;
  overflow: hidden;
  background: #123c2d;
  color: #f2faf6;
}

.goal-section::after {
  position: absolute;
  right: -150px;
  bottom: -210px;
  width: 430px;
  height: 430px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  content: "";
}

.goal-layout {
  position: relative;
  z-index: 1;
  gap: 44px;
  align-items: center;
}

.goal-copy .eyebrow {
  color: #9de8c8;
}

.goal-copy p:not(.eyebrow) {
  color: #cce0d6;
}

.goal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 26px;
}

.goal-actions span {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  color: #e7f5ed;
}

.quality-panel {
  display: grid;
  gap: 2px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.2);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}

.quality-panel article {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 14px;
  padding: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.quality-panel__status {
  width: 12px;
  height: 12px;
  margin-top: 5px;
  border: 3px solid #9de8c8;
  border-radius: 50%;
}

.quality-panel h3 {
  margin-bottom: 4px;
  color: #ffffff;
  font-size: 1rem;
  letter-spacing: -0.01em;
}

.quality-panel article p {
  margin-bottom: 0;
  color: #cce0d6;
  font-size: 0.88rem;
}

.quality-panel__result {
  display: flex;
  flex-direction: column;
  gap: 3px;
  margin: 0;
  padding: 20px;
  background: rgba(0, 0, 0, 0.18);
}

.quality-panel__result span {
  color: #f3c887;
  font-size: 0.78rem;
  font-weight: 760;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.quality-panel__result strong {
  color: #ffffff;
}

.apple-section {
  background: var(--surface);
}

.apple-layout {
  gap: 28px;
  align-items: start;
}

.apple-copy,
.watch-showcase {
  min-width: 0;
}

.capability-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin: 0 0 30px;
  padding: 0;
  list-style: none;
}

.capability-list li {
  display: grid;
  gap: 3px;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--bg);
}

.capability-list strong {
  font-size: 0.98rem;
}

.capability-list span {
  color: var(--text-muted);
  font-size: 0.88rem;
}

.product-shot--library {
  width: min(80%, 300px);
  margin: 0 auto;
}

.phone-frame--landscape-card {
  width: 100%;
}

.watch-showcase {
  padding: 26px;
  border-radius: var(--radius-lg);
  background: #080d0b;
  color: #f1f7f3;
  box-shadow: var(--shadow-md);
}

.watch-showcase__copy p:not(.card-label) {
  color: #b5c6bc;
}

.watch-showcase__copy .card-label {
  color: #8be0bd;
}

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

.watch-grid figure {
  min-width: 0;
  margin: 0;
}

.watch-frame {
  position: relative;
  display: grid;
  aspect-ratio: 416 / 496;
  overflow: hidden;
  border: 8px solid #1b211e;
  border-radius: 29%;
  background: #000000;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.4);
}

.watch-frame > img,
.watch-frame .screen-fallback {
  grid-area: 1 / 1;
  width: 100%;
  height: 100%;
}

.watch-frame > img {
  position: relative;
  z-index: 2;
  object-fit: contain;
  opacity: 0;
}

.screen-fallback--watch {
  background: #000000;
  color: #dcebe3;
}

.watch-grid figcaption {
  margin-top: 10px;
  color: #9eb1a7;
  font-size: 0.78rem;
  text-align: center;
}

.privacy-card {
  display: grid;
  gap: 22px;
  margin-top: 64px;
  padding: 28px 24px;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  background: var(--bg-subtle);
}

.privacy-card h3 {
  margin-bottom: 0;
  font-size: clamp(1.7rem, 5vw, 2.5rem);
}

.privacy-card p:not(.eyebrow) {
  margin-bottom: 14px;
}

.text-link {
  color: var(--primary);
  font-weight: 720;
  text-decoration: underline;
  text-decoration-color: color-mix(in srgb, var(--primary) 42%, transparent);
  text-underline-offset: 4px;
}

.text-link:hover {
  color: var(--primary-hover);
  text-decoration-color: currentColor;
}

.plans-section {
  background: var(--bg-subtle);
}

.plan-grid {
  display: grid;
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}

.plan-card {
  display: flex;
  flex-direction: column;
  padding: 26px 22px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.plan-card--premium {
  border-color: var(--primary);
  box-shadow: 0 20px 60px color-mix(in srgb, var(--primary) 14%, transparent);
}

.plan-card__heading {
  padding-bottom: 22px;
  border-bottom: 1px solid var(--border);
}

.plan-card__heading p:last-child {
  margin-bottom: 0;
}

.price-lockup {
  display: flex;
  align-items: baseline;
  gap: 9px;
  margin-top: 22px;
}

.price-lockup strong {
  color: var(--text);
  font-size: clamp(2.15rem, 7vw, 3.2rem);
  font-weight: 840;
  letter-spacing: -0.055em;
  line-height: 1;
}

.price-lockup span {
  color: var(--text-muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.price-alternative {
  margin: 10px 0 0;
  color: var(--text-soft);
  font-size: 0.84rem;
}

.check-list {
  display: grid;
  gap: 14px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 30px;
  color: var(--text-muted);
}

.check-list li::before {
  position: absolute;
  top: 3px;
  left: 1px;
  width: 18px;
  height: 10px;
  border-bottom: 2px solid var(--primary);
  border-left: 2px solid var(--primary);
  content: "";
  transform: rotate(-45deg);
}

.plan-card__note {
  margin: auto 0 0;
  padding-top: 24px;
  color: var(--text-soft);
  font-size: 0.84rem;
}

.price-comparison {
  max-width: 1000px;
  margin: 24px auto 0;
  padding: 28px 24px;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  background: var(--surface);
}

.price-comparison h3 {
  max-width: 780px;
  font-size: clamp(1.4rem, 4vw, 2rem);
}

.price-comparison > p:not(.eyebrow, .price-comparison__source) {
  max-width: 760px;
}

.price-comparison__source {
  margin: 22px 0 0;
  padding-top: 18px;
  border-top: 1px solid var(--border);
  color: var(--text-soft);
  font-size: 0.76rem;
  line-height: 1.6;
}

.price-comparison__source a {
  color: inherit;
  font-weight: 680;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.price-comparison__source a:hover {
  color: var(--primary);
}

.plan-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-top: 36px;
  text-align: center;
}

.plan-cta p {
  margin-bottom: 0;
}

.faq-section {
  background: var(--surface);
}

.faq-layout {
  gap: 42px;
  align-items: start;
}

.faq-heading {
  max-width: 460px;
}

.faq-list {
  border-top: 1px solid var(--border);
}

.faq-list details {
  border-bottom: 1px solid var(--border);
}

.faq-list summary {
  position: relative;
  min-height: 60px;
  padding: 20px 48px 20px 0;
  cursor: pointer;
  font-weight: 720;
  line-height: 1.4;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::before,
.faq-list summary::after {
  position: absolute;
  top: 29px;
  right: 8px;
  width: 16px;
  height: 2px;
  border-radius: 2px;
  background: var(--primary);
  content: "";
}

.faq-list summary::after {
  transform: rotate(90deg);
  transition: transform 180ms ease;
}

.faq-list details[open] summary::after {
  transform: rotate(0deg);
}

.faq-list details p {
  max-width: 680px;
  margin-bottom: 0;
  padding: 0 40px 22px 0;
}

.final-cta {
  padding: 80px 0;
  background: var(--primary);
  color: var(--primary-on);
}

.final-cta__inner {
  width: min(calc(100% - 32px), 850px);
  margin: 0 auto;
  text-align: center;
}

.final-cta .eyebrow,
.final-cta p {
  color: color-mix(in srgb, var(--primary-on) 82%, transparent);
}

.final-cta h2 {
  color: var(--primary-on);
}

.final-cta p:not(.eyebrow) {
  max-width: 620px;
  margin-right: auto;
  margin-bottom: 28px;
  margin-left: auto;
}

.site-footer {
  padding: 30px 0;
  border-top: 1px solid var(--border);
  background: var(--bg);
}

.site-footer__inner {
  display: grid;
  gap: 22px;
  align-items: center;
  width: min(calc(100% - 32px), var(--content));
  margin: 0 auto;
}

.brand--footer {
  width: fit-content;
}

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

.footer-links a {
  min-height: 44px;
  padding: 9px 0;
  color: var(--text-muted);
  font-weight: 650;
}

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

.site-footer p {
  margin-bottom: 0;
  color: var(--text-soft);
  font-size: 0.86rem;
}

@media (min-width: 540px) {
  .header-cta {
    display: inline-flex;
  }

  .hero__actions {
    display: flex;
    flex-wrap: wrap;
  }

  .hero__actions .button {
    width: auto;
  }

  .capability-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .plan-cta {
    flex-direction: row;
    justify-content: center;
  }

  .site-footer__inner {
    grid-template-columns: 1fr auto;
  }

  .site-footer__inner > p {
    grid-column: 1 / -1;
  }
}

@media (min-width: 720px) {
  .section {
    padding: 112px 0;
  }

  .hero__inner {
    padding: 90px 0 72px;
  }

  .hero__actions {
    margin-bottom: 32px;
  }

  .insight-grid,
  .plan-grid,
  .data-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .insight-card__copy {
    padding: 34px 32px 8px;
  }

  .goal-layout,
  .faq-layout {
    grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  }

  .privacy-card {
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
    gap: 44px;
    padding: 36px;
  }

  .plan-card {
    padding: 34px 30px;
  }

  .data-card,
  .price-comparison {
    padding: 36px;
  }

  .faq-heading {
    position: sticky;
    top: calc(var(--header-height) + 32px);
  }

  .site-footer__inner {
    grid-template-columns: 1fr auto auto;
  }

  .site-footer__inner > p {
    grid-column: auto;
  }
}

@media (min-width: 900px) {
  .hero__inner {
    grid-template-columns: minmax(0, 1.18fr) minmax(330px, 0.82fr);
    gap: 64px;
  }

  .product-shot--hero {
    width: min(100%, 370px);
  }

  .workflow-layout {
    grid-template-columns: minmax(0, 1fr) minmax(310px, 0.75fr);
    gap: 76px;
  }

  .product-shot--workflow {
    position: sticky;
    top: calc(var(--header-height) + 24px);
  }

  .apple-layout {
    grid-template-columns: minmax(0, 1fr) minmax(400px, 0.92fr);
    gap: 48px;
  }

  .product-shot--library {
    width: min(64%, 290px);
  }
}

@media (min-width: 1080px) {
  .site-nav {
    display: flex;
  }

  .site-header__inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
  }

  .header-actions {
    justify-self: end;
  }

  .hero__inner {
    min-height: min(900px, calc(100svh - var(--header-height)));
  }

  .hero__copy {
    padding-right: 24px;
  }

  .goal-layout {
    grid-template-columns: minmax(0, 0.9fr) minmax(440px, 0.8fr);
    gap: 92px;
  }

  .watch-showcase {
    padding: 34px;
  }
}

@media (max-width: 420px) {
  .site-header__inner {
    width: min(calc(100% - 24px), var(--content));
  }

  .brand__mark {
    width: 36px;
    height: 36px;
  }

  .header-actions {
    gap: 4px;
  }

  .hero__inner,
  .section__inner,
  .final-cta__inner,
  .site-footer__inner {
    width: min(calc(100% - 28px), var(--content));
  }

  .hero__actions .button {
    width: 100%;
  }

  .proof-list {
    display: grid;
  }

  .watch-showcase {
    padding: 22px 16px;
  }

  .watch-grid {
    gap: 9px;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

@media print {
  .site-header,
  .hero__actions,
  .plan-cta,
  .final-cta,
  .theme-control {
    display: none;
  }

  .section,
  .hero__inner {
    padding: 36px 0;
  }

  body {
    background: #ffffff;
    color: #111111;
  }
}
