:root {
  --ink: #182126;
  --muted: #626a6f;
  --paper: #f5f3ee;
  --surface: #fffdf9;
  --line: #d9d9d4;
  --coral: #b64c2f;
  --coral-soft: #f3ded5;
  --deep: #162025;
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; }

.skip-link {
  position: fixed;
  top: -4rem;
  left: 1rem;
  z-index: 30;
  padding: .75rem 1rem;
  background: var(--coral);
  color: white;
  font-weight: 700;
}
.skip-link:focus { top: 1rem; }

.site-header {
  position: relative;
  z-index: 10;
  width: min(1240px, calc(100% - 48px));
  height: 76px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 21px;
  font-weight: 780;
  letter-spacing: -.06em;
}
.brand svg { width: 24px; fill: var(--coral); }
nav { display: flex; gap: 30px; font-size: 13px; font-weight: 650; }
nav a, footer a { border-bottom: 1px solid transparent; }
nav a:hover, footer a:hover, .text-link:hover { border-color: currentColor; }

.button {
  min-height: 48px;
  padding: 0 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 1px solid var(--ink);
  border-radius: 5px;
  font-size: 14px;
  font-weight: 740;
  transition: transform .18s ease, box-shadow .18s ease;
}
.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(24, 33, 38, .12);
}
.button-small { min-height: 40px; background: var(--ink); color: white; font-size: 13px; }
.button-primary { border-color: var(--coral); background: var(--coral); color: white; }

.hero {
  position: relative;
  overflow: hidden;
  padding: 82px 24px 96px;
  background:
    radial-gradient(circle at 87% 20%, rgba(209, 105, 73, .12), transparent 29rem),
    var(--paper);
}
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: calc(50% + 70px);
  width: 1px;
  background: var(--line);
}
.hero-layout {
  position: relative;
  z-index: 1;
  width: min(1240px, 100%);
  margin: auto;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: 48px;
}
.hero-copy-block { padding: 30px 0; }
.eyebrow, .section-label {
  margin: 0;
  color: #586166;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .13em;
}
.eyebrow span {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--coral);
}
h1, h2, h3, p { margin-top: 0; }
h1, h2 { letter-spacing: -.055em; font-weight: 630; }
h1 {
  margin: 25px 0 27px;
  font-size: clamp(54px, 5vw, 72px);
  line-height: .94;
}
em { color: var(--coral); font-family: var(--serif); font-weight: 400; }
.hero-copy {
  max-width: 520px;
  margin: 0;
  color: #596267;
  font-size: 17px;
  line-height: 1.58;
}
.hero-actions, .download-actions {
  margin-top: 32px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.text-link {
  display: inline-block;
  padding-bottom: 3px;
  border-bottom: 1px solid currentColor;
  font-size: 14px;
  font-weight: 700;
}
.release-note { margin: 19px 0 0; color: #6a7276; font-size: 12px; }

.hero-product {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1.34;
  border: 1px solid #c6c6c0;
  border-radius: 13px;
  background: #edf0f2;
  box-shadow: 0 32px 70px rgba(38, 34, 28, .18);
}
.live-capture img {
  position: absolute;
  width: 117.5%;
  max-width: none;
  left: -4.1%;
  top: -3.3%;
}
.product-caption {
  position: absolute;
  bottom: 14px;
  left: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 6px;
  color: white;
  background: rgba(24, 33, 38, .9);
  font-size: 11px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, .14);
}
.pulse { width: 7px; height: 7px; border-radius: 50%; background: #7ed18f; }

.statement { max-width: 1240px; margin: auto; padding: 120px 32px 104px; }
.statement-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 90px; margin-top: 28px; }
.statement h2 { max-width: 710px; margin: 0; font-size: clamp(42px, 5vw, 70px); line-height: .98; }
.statement-grid > p {
  max-width: 360px;
  align-self: end;
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.62;
}
.steps {
  list-style: none;
  margin: 82px 0 0;
  padding: 22px 0 0;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 45px;
}
.steps li { display: grid; grid-template-columns: 40px 1fr; column-gap: 12px; }
.steps span, .number { color: var(--coral); font-family: var(--serif); font-size: 18px; }
.steps h3 { margin: 0; font-size: 17px; letter-spacing: -.03em; }
.steps p { grid-column: 2; margin: 7px 0 0; color: var(--muted); font-size: 14px; line-height: 1.5; }

.feature {
  padding: 100px max(32px, calc((100vw - 1176px) / 2));
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  align-items: center;
  gap: 82px;
}
.feature-dark { color: #f5f3ed; background: var(--deep); }
.feature .section-label { color: #b5bdb9; }
.feature h2 { margin: 23px 0; font-size: clamp(44px, 4.6vw, 67px); line-height: .98; }
.feature-copy > p:not(.section-label) {
  max-width: 430px;
  color: #bac1be;
  font-size: 16px;
  line-height: 1.64;
}
.light { color: #f4a284; }
.image-frame {
  overflow: hidden;
  border: 1px solid #52605a;
  border-radius: 10px;
  box-shadow: 0 24px 48px rgba(0, 0, 0, .22);
}
.image-frame img { width: 100%; display: block; }

.pricing {
  max-width: 1240px;
  margin: auto;
  padding: 116px 32px 112px;
}
.pricing-intro {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  align-items: end;
  gap: 90px;
}
.pricing-intro h2 {
  margin: 24px 0 0;
  font-size: clamp(46px, 5.1vw, 70px);
  line-height: .97;
}
.pricing-intro > p {
  max-width: 390px;
  margin: 0 0 7px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.62;
}
.pricing-options {
  margin-top: 68px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--surface);
}
.pricing-option {
  min-height: 490px;
  padding: 34px 38px 38px;
}
.pricing-option + .pricing-option { border-left: 1px solid var(--line); }
.pricing-option-managed {
  color: #f6f4ef;
  background: var(--deep);
  border-radius: 0 9px 9px 0;
}
.option-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--coral);
  font-family: var(--serif);
  font-size: 18px;
}
.status-badge {
  padding: 6px 10px;
  border: 1px solid #bad0bf;
  border-radius: 999px;
  color: #397249;
  background: #edf7ef;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.status-badge-muted {
  border-color: #59635e;
  color: #d7ddd9;
  background: #26322c;
}
.pricing-option h3 {
  margin: 62px 0 14px;
  font-size: 26px;
  letter-spacing: -.04em;
}
.price {
  margin: 0 0 27px;
  color: var(--coral);
  font-family: var(--serif);
  font-size: 58px;
  line-height: 1;
}
.price small {
  color: var(--muted);
  font-family: var(--sans);
  font-size: 13px;
}
.managed-price {
  margin: 0 0 27px;
  display: flex;
  align-items: baseline;
  gap: 14px;
}
.managed-price strong {
  color: #f39a79;
  font-family: var(--serif);
  font-size: 72px;
  font-weight: 400;
  line-height: 1;
}
.managed-price span { color: #d5dbd7; font-size: 16px; font-weight: 700; }
.pricing-option > p:not(.price):not(.managed-price) {
  max-width: 440px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}
.pricing-option-managed > p:not(.managed-price) { color: #b9c1bc; }
.pricing-option ul {
  margin: 29px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
}
.pricing-option li, .credit-examples span {
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 4px;
  color: #626b6f;
  font-size: 11px;
}
.credit-examples { margin-top: 30px; display: flex; gap: 9px; }
.credit-examples span { border-color: #48554f; color: #c7ceca; }
.credit-examples b { margin-right: 6px; color: #f39a79; }
.pricing-promise {
  margin: 24px 0 0;
  color: var(--muted);
  text-align: center;
  font-size: 13px;
}
.pricing-promise strong { color: var(--ink); }

.principles { max-width: 1240px; margin: auto; padding: 112px 32px; }
.principle-grid {
  margin-top: 38px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
}
.principle-grid article {
  min-height: 264px;
  padding: 25px 33px 20px 0;
  border-right: 1px solid var(--line);
}
.principle-grid article + article { padding-left: 33px; }
.principle-grid article:last-child { border: 0; }
.principle-grid h2 { margin: 58px 0 13px; font-size: 28px; }
.principle-grid p { max-width: 290px; margin: 0; color: var(--muted); font-size: 15px; line-height: 1.57; }

.download {
  padding: 110px 32px 116px;
  color: #f6f4ef;
  text-align: center;
  background:
    radial-gradient(circle at 50% 130%, rgba(209, 105, 73, .35), transparent 42rem),
    var(--deep);
}
.download .eyebrow { color: #b8c0bc; }
.download h2 { margin: 20px 0; font-size: clamp(52px, 7vw, 90px); line-height: .92; }
.download > p:not(.eyebrow):not(.release-note) {
  max-width: 470px;
  margin: auto;
  color: #bdc4c0;
  font-size: 16px;
  line-height: 1.56;
}
.download-actions { justify-content: center; }
.download .release-note { color: #aeb6b1; }
.download .release-note a { text-decoration: underline; }
.download .text-link { color: #edf0eb; }

footer {
  max-width: 1240px;
  min-height: 130px;
  margin: auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
footer p { margin: 0; color: var(--muted); font-size: 13px; }
footer div { display: flex; gap: 21px; font-size: 13px; font-weight: 650; }

.legal-page {
  width: min(1180px, calc(100% - 48px));
  margin: auto;
  padding: 90px 0 112px;
}
.legal-hero {
  max-width: 880px;
  padding-bottom: 66px;
}
.legal-hero h1 {
  margin: 24px 0 20px;
  font-size: clamp(62px, 8vw, 112px);
}
.legal-effective {
  margin-bottom: 30px;
  color: var(--coral);
  font-size: 13px;
  font-weight: 750;
}
.legal-lead {
  max-width: 760px;
  margin: 0;
  color: #515b60;
  font-size: 20px;
  line-height: 1.58;
}
.privacy-summary {
  margin-bottom: 90px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--surface);
}
.privacy-summary div {
  min-height: 190px;
  padding: 27px 29px;
}
.privacy-summary div + div { border-left: 1px solid var(--line); }
.privacy-summary span {
  color: var(--coral);
  font-family: var(--serif);
  font-size: 17px;
}
.privacy-summary strong {
  margin: 39px 0 8px;
  display: block;
  font-size: 16px;
}
.privacy-summary p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}
.legal-layout {
  display: grid;
  grid-template-columns: 190px minmax(0, 720px);
  justify-content: space-between;
  gap: 88px;
}
.legal-toc {
  position: sticky;
  top: 32px;
  align-self: start;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.legal-toc p {
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.legal-toc a {
  color: var(--muted);
  font-size: 13px;
}
.legal-toc a:hover { color: var(--coral); }
.legal-content section {
  padding: 0 0 58px;
  scroll-margin-top: 28px;
}
.legal-content section + section {
  padding-top: 58px;
  border-top: 1px solid var(--line);
}
.legal-number {
  margin-bottom: 14px;
  color: var(--coral);
  font-family: var(--serif);
  font-size: 18px;
}
.legal-content h2 {
  margin: 0 0 26px;
  font-size: clamp(31px, 4vw, 43px);
  line-height: 1.04;
}
.legal-content h3 {
  margin: 34px 0 12px;
  font-size: 18px;
  letter-spacing: -.03em;
}
.legal-content p, .legal-content li {
  color: #555f64;
  font-size: 15px;
  line-height: 1.72;
}
.legal-content a {
  color: var(--coral);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.legal-content ul { padding-left: 20px; }
.legal-content li + li { margin-top: 8px; }
.legal-content strong { color: var(--ink); }
.legal-notice {
  margin-top: 26px;
  padding: 18px 20px;
  border-left: 3px solid var(--coral);
  color: #586166;
  background: var(--coral-soft);
  font-size: 13px;
  line-height: 1.55;
}

@media (max-width: 980px) {
  .hero::before { display: none; }
  .hero-layout { grid-template-columns: 1fr; gap: 50px; }
  .hero-copy-block { max-width: 720px; }
  .hero-product { width: 100%; }
  .feature { grid-template-columns: 1fr; }
  .image-frame { order: -1; }
  .legal-layout { grid-template-columns: 1fr; }
  .legal-toc { position: static; padding-bottom: 28px; border-bottom: 1px solid var(--line); }
}

@media (max-width: 700px) {
  .site-header { width: calc(100% - 40px); height: 68px; }
  .site-header nav, .button-small { display: none; }
  .hero { padding: 66px 20px 70px; }
  .hero-layout { gap: 40px; }
  .hero-copy-block { padding: 0; }
  h1 { font-size: clamp(52px, 16vw, 72px); }
  .hero-copy { font-size: 15px; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 18px; }
  .product-caption { display: none; }
  .statement { padding: 82px 20px 72px; }
  .statement-grid { grid-template-columns: 1fr; gap: 22px; }
  .statement-grid > p { font-size: 15px; }
  .steps { margin-top: 54px; grid-template-columns: 1fr; gap: 31px; }
  .feature { padding: 72px 20px; gap: 40px; }
  .feature h2 { font-size: 48px; }
  .pricing { padding: 80px 20px 74px; }
  .pricing-intro { grid-template-columns: 1fr; gap: 22px; }
  .pricing-intro > p { font-size: 15px; }
  .pricing-options { margin-top: 48px; grid-template-columns: 1fr; }
  .pricing-option { min-height: 0; padding: 28px 24px 32px; }
  .pricing-option + .pricing-option { border-top: 1px solid var(--line); border-left: 0; }
  .pricing-option-managed { border-radius: 0 0 9px 9px; }
  .pricing-option h3 { margin-top: 46px; }
  .managed-price strong { font-size: 64px; }
  .credit-examples { flex-direction: column; align-items: flex-start; }
  .principles { padding: 76px 20px; }
  .principle-grid { grid-template-columns: 1fr; }
  .principle-grid article, .principle-grid article + article {
    min-height: 0;
    padding: 25px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .principle-grid h2 { margin: 30px 0 10px; }
  .download { padding: 84px 20px; }
  .download-actions { align-items: center; flex-direction: column; gap: 18px; }
  .legal-page { width: calc(100% - 40px); padding: 66px 0 76px; }
  .legal-hero { padding-bottom: 48px; }
  .legal-hero h1 { font-size: 56px; }
  .legal-lead { font-size: 17px; }
  .privacy-summary { margin-bottom: 64px; grid-template-columns: 1fr; }
  .privacy-summary div { min-height: 0; }
  .privacy-summary div + div { border-top: 1px solid var(--line); border-left: 0; }
  .privacy-summary strong { margin-top: 22px; }
  .legal-layout { gap: 46px; }
  .legal-content section { padding-bottom: 44px; }
  .legal-content section + section { padding-top: 44px; }
  footer { min-height: 170px; padding: 28px 20px; align-items: flex-start; flex-direction: column; gap: 18px; }
}

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