:root {
  color-scheme: light;
  --ink: #14182b;
  --muted: #5f6679;
  --quiet: #8c92a2;
  --cobalt: #2949dc;
  --cobalt-dark: #1e35a5;
  --cobalt-soft: #e9edff;
  --orange: #ff8a2b;
  --orange-soft: #fff0e3;
  --paper: #fffaf0;
  --canvas: #f5f6fb;
  --surface: #ffffff;
  --line: rgba(20, 24, 43, 0.11);
  --line-strong: rgba(20, 24, 43, 0.19);
  --shadow-soft: 0 18px 55px rgba(29, 39, 89, 0.11);
  --shadow-phone: 0 34px 80px rgba(18, 26, 70, 0.24);
  --page: 76rem;
  --measure: 48rem;
  --header-height: 4.75rem;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--canvas);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

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

a {
  color: inherit;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

a:hover {
  text-decoration-thickness: 0.14em;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 4px;
  border-radius: 0.5rem;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 0.7rem;
  left: 0.7rem;
  padding: 0.7rem 0.95rem;
  border-radius: 0.65rem;
  background: var(--ink);
  color: #fff;
  font-weight: 750;
  transform: translateY(-180%);
  transition: transform 180ms ease;
}

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

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  border-bottom: 1px solid rgba(20, 24, 43, 0.08);
  background: rgba(245, 246, 251, 0.84);
  backdrop-filter: blur(22px) saturate(1.15);
  -webkit-backdrop-filter: blur(22px) saturate(1.15);
}

.nav,
.hero-inner,
.proof-inner,
.section,
.legal-hero,
.legal-shell,
.site-footer {
  width: min(calc(100% - 2.5rem), var(--page));
  margin-inline: auto;
}

.nav {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 0.72rem;
  color: var(--ink);
  font-size: 1.03rem;
  font-weight: 820;
  letter-spacing: -0.025em;
  text-decoration: none;
}

.brand img {
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 0.72rem;
  box-shadow: 0 8px 22px rgba(34, 72, 186, 0.2);
}

.nav-links,
.footer-links {
  display: flex;
  align-items: center;
  gap: clamp(0.9rem, 2vw, 1.55rem);
}

.nav-links a,
.footer-links a {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
}

.nav-links a:hover,
.nav-links a[aria-current="page"],
.footer-links a:hover,
.footer-links a[aria-current="page"] {
  color: var(--ink);
}

.nav-links a[aria-current="page"] {
  text-decoration: underline;
  text-decoration-color: var(--cobalt);
  text-decoration-thickness: 0.16rem;
  text-underline-offset: 0.42rem;
}

.nav-cta {
  padding: 0.58rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink) !important;
}

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 84% 24%, rgba(60, 89, 226, 0.19), transparent 27rem),
    linear-gradient(180deg, #f8f9ff 0%, #f1f3fb 100%);
}

.hero::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 7% auto auto -10rem;
  width: 25rem;
  height: 25rem;
  border: 1px solid rgba(41, 73, 220, 0.12);
  border-radius: 50%;
  box-shadow:
    0 0 0 4rem rgba(41, 73, 220, 0.025),
    0 0 0 8rem rgba(41, 73, 220, 0.02);
}

.hero-inner {
  min-height: calc(100svh - var(--header-height));
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(27rem, 1.1fr);
  align-items: center;
  gap: clamp(3rem, 7vw, 6.5rem);
  padding-block: clamp(4rem, 8vw, 7.5rem);
}

.hero-copy {
  position: relative;
  z-index: 3;
}

.app-lockup {
  display: inline-flex;
  align-items: center;
  gap: 0.72rem;
  margin-bottom: 1.35rem;
  color: var(--cobalt-dark);
  font-size: 0.8rem;
  font-weight: 850;
  letter-spacing: 0.115em;
  text-transform: uppercase;
}

.app-lockup img {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.84rem;
  box-shadow: 0 10px 28px rgba(34, 72, 186, 0.2);
}

.eyebrow {
  margin: 0 0 0.85rem;
  color: var(--cobalt);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin-top: 0;
  line-height: 1.06;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

.hero h1 {
  max-width: 11ch;
  margin-bottom: 0.6rem;
  font-size: clamp(3.5rem, 7vw, 6.8rem);
  letter-spacing: -0.067em;
}

.hero-promise {
  max-width: 13ch;
  margin: 0 0 1.35rem;
  font-size: clamp(2rem, 3.8vw, 3.6rem);
  font-weight: 760;
  line-height: 1.03;
  letter-spacing: -0.052em;
  text-wrap: balance;
}

.hero-promise em {
  color: var(--cobalt);
  font-style: normal;
}

.hero-line {
  max-width: 34rem;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1.12rem, 2vw, 1.4rem);
  line-height: 1.52;
}

.hero-note {
  max-width: 31rem;
  margin: 1.15rem 0 0;
  color: var(--quiet);
  font-size: 0.93rem;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  min-height: 3.15rem;
  align-items: center;
  justify-content: center;
  padding: 0.78rem 1.15rem;
  border: 1px solid transparent;
  border-radius: 0.9rem;
  font-size: 0.95rem;
  font-weight: 780;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  text-decoration: none;
}

.button.primary {
  background: var(--cobalt);
  color: #fff;
  box-shadow: 0 14px 30px rgba(41, 73, 220, 0.25);
}

.button.primary:hover {
  background: var(--cobalt-dark);
  box-shadow: 0 17px 34px rgba(41, 73, 220, 0.32);
}

.button.secondary {
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.7);
  color: var(--ink);
}

.hero-visual {
  position: relative;
  min-height: 42rem;
}

.phone-stack {
  position: absolute;
  inset: 50% auto auto 50%;
  width: min(100%, 37rem);
  height: 40rem;
  transform: translate(-50%, -50%);
}

.phone-frame {
  position: absolute;
  margin: 0;
  overflow: hidden;
  border: 0.58rem solid #10131d;
  border-radius: 2.8rem;
  background: #10131d;
  box-shadow: var(--shadow-phone);
}

.phone-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.primary-phone {
  z-index: 3;
  top: 0;
  left: 50%;
  width: 17.4rem;
  aspect-ratio: 660 / 1434;
  transform: translateX(-50%) rotate(-1.2deg);
}

.back-phone {
  z-index: 1;
  top: 5.2rem;
  width: 13.9rem;
  aspect-ratio: 660 / 1434;
  opacity: 0.94;
}

.back-phone.left {
  left: 0.6rem;
  transform: rotate(-8deg);
}

.back-phone.right {
  right: 0.4rem;
  transform: rotate(8deg);
}

.receipt-note {
  position: absolute;
  z-index: 5;
  right: -0.6rem;
  bottom: 4rem;
  width: 15.5rem;
  padding: 1rem 1.1rem 1.15rem;
  border: 1px solid rgba(123, 83, 31, 0.15);
  border-radius: 1rem 1rem 0.35rem 0.35rem;
  background: var(--paper);
  box-shadow: 0 18px 50px rgba(70, 49, 22, 0.16);
  transform: rotate(2.4deg);
}

.receipt-note::after {
  content: "";
  position: absolute;
  inset: auto 0 -0.5rem;
  height: 0.8rem;
  background: linear-gradient(135deg, transparent 0.35rem, var(--paper) 0) 0 0 / 0.8rem 0.8rem repeat-x;
}

.receipt-note span,
.receipt-note small {
  display: block;
  color: var(--muted);
}

.receipt-note span {
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.receipt-note strong {
  display: block;
  margin: 0.18rem 0;
  font-size: 1.08rem;
}

.receipt-note small {
  font-size: 0.8rem;
}

.proof-strip {
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}

.proof-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.proof-item {
  min-height: 9.5rem;
  padding: 2rem clamp(1.2rem, 3vw, 2.5rem);
  border-right: 1px solid var(--line);
}

.proof-item:first-child {
  padding-left: 0;
}

.proof-item:last-child {
  padding-right: 0;
  border-right: 0;
}

.proof-item strong,
.proof-item span {
  display: block;
}

.proof-item strong {
  margin-bottom: 0.35rem;
  font-size: 1.05rem;
}

.proof-item span {
  color: var(--muted);
  font-size: 0.93rem;
}

.section {
  padding-block: clamp(5.5rem, 10vw, 9rem);
}

.section-header {
  max-width: 48rem;
  margin-bottom: clamp(2.5rem, 5vw, 4.5rem);
}

.section h2,
.legal-hero h1 {
  margin-bottom: 1rem;
  font-size: clamp(2.5rem, 5.2vw, 4.7rem);
}

.section-header > p:last-child,
.copy-block > p,
.legal-hero > p:last-child {
  max-width: 42rem;
  margin-bottom: 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.7vw, 1.25rem);
}

.workflow {
  background: var(--canvas);
}

.screen-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 2.6vw, 2rem);
}

.screen-shot {
  margin: 0;
}

.screen-shot-shell {
  padding: clamp(0.7rem, 1.4vw, 1rem);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: clamp(1.6rem, 3vw, 2.3rem);
  background: linear-gradient(145deg, #fff 0%, #e9ecf8 100%);
  box-shadow: var(--shadow-soft);
}

.screen-shot:nth-child(2) .screen-shot-shell {
  background: linear-gradient(145deg, #fffaf0 0%, #f4e9da 100%);
}

.screen-shot:nth-child(3) .screen-shot-shell {
  background: linear-gradient(145deg, #eef1ff 0%, #dce3ff 100%);
}

.screen-shot img {
  width: 100%;
  border: 0.42rem solid #151824;
  border-radius: 2rem;
  box-shadow: 0 18px 45px rgba(22, 27, 53, 0.16);
}

.screen-shot figcaption {
  padding: 1.15rem 0.35rem 0;
}

.screen-shot figcaption strong,
.screen-shot figcaption span {
  display: block;
}

.screen-shot figcaption strong {
  margin-bottom: 0.28rem;
  font-size: 1.05rem;
}

.screen-shot figcaption span {
  color: var(--muted);
  font-size: 0.93rem;
}

.privacy-band {
  position: relative;
  width: min(calc(100% - 2.5rem), var(--page));
  margin: 0 auto clamp(5.5rem, 10vw, 9rem);
  overflow: hidden;
  border-radius: clamp(1.8rem, 4vw, 3.5rem);
  background: var(--ink);
  color: #fff;
}

.privacy-band::after {
  content: "";
  position: absolute;
  right: -7rem;
  bottom: -9rem;
  width: 25rem;
  height: 25rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  box-shadow: 0 0 0 4rem rgba(255, 255, 255, 0.025), 0 0 0 8rem rgba(255, 255, 255, 0.018);
}

.privacy-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(18rem, 0.95fr);
  gap: clamp(2.5rem, 7vw, 7rem);
  padding: clamp(3rem, 7vw, 6rem);
}

.privacy-band .eyebrow {
  color: #aebcff;
}

.privacy-band h2 {
  max-width: 11ch;
  margin-bottom: 1.25rem;
  font-size: clamp(2.6rem, 5.2vw, 4.8rem);
}

.privacy-band p {
  max-width: 38rem;
  margin: 0;
  color: #c7ccdb;
  font-size: 1.05rem;
}

.privacy-list {
  display: grid;
  align-content: center;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.privacy-list li {
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  font-weight: 690;
}

.privacy-list li::before {
  content: "✓";
  display: inline-grid;
  width: 1.55rem;
  height: 1.55rem;
  place-items: center;
  margin-right: 0.7rem;
  border-radius: 50%;
  background: rgba(126, 150, 255, 0.18);
  color: #b9c5ff;
  font-size: 0.8rem;
}

.legal-links-panel {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 0.5rem;
}

.legal-link-card {
  position: relative;
  min-height: 9.5rem;
  padding: 1.35rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 1.2rem;
  background: rgba(255, 255, 255, 0.07);
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease;
}

.legal-link-card:hover {
  background: rgba(255, 255, 255, 0.11);
  transform: translateY(-2px);
  text-decoration: none;
}

.legal-link-card small,
.legal-link-card strong,
.legal-link-card span {
  display: block;
}

.legal-link-card small {
  margin-bottom: 0.38rem;
  color: #aebcff;
  font-weight: 780;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.legal-link-card strong {
  font-size: 1.35rem;
}

.legal-link-card span {
  max-width: 29rem;
  margin-top: 0.4rem;
  color: #c7ccdb;
  font-size: 0.91rem;
}

.final-cta {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 2rem;
  padding-top: 0;
}

.final-cta h2 {
  max-width: 14ch;
  margin-bottom: 0;
}

.site-footer {
  min-height: 7rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding-block: 1.7rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.9rem;
}

.site-footer strong {
  color: var(--ink);
}

body.legal,
body.support {
  background:
    radial-gradient(circle at 80% 4%, rgba(41, 73, 220, 0.11), transparent 24rem),
    var(--canvas);
}

.legal-hero {
  padding-block: clamp(4.5rem, 9vw, 7.5rem) clamp(3rem, 6vw, 5rem);
}

.legal-hero h1 {
  max-width: 13ch;
}

.legal-shell {
  padding-bottom: clamp(5rem, 10vw, 9rem);
}

.legal-content {
  max-width: var(--measure);
  padding: clamp(2rem, 5vw, 4.5rem);
  border: 1px solid var(--line);
  border-radius: clamp(1.4rem, 3vw, 2.4rem);
  background: rgba(255, 255, 255, 0.91);
  box-shadow: var(--shadow-soft);
}

.legal-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
  margin-bottom: 3.5rem;
}

.meta-box {
  min-width: 0;
  padding: 0.95rem;
  border: 1px solid var(--line);
  border-radius: 0.9rem;
  background: var(--canvas);
}

.meta-box span,
.meta-box strong {
  display: block;
}

.meta-box span {
  margin-bottom: 0.2rem;
  color: var(--quiet);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.meta-box strong {
  overflow-wrap: anywhere;
  font-size: 0.92rem;
}

.legal-content h2 {
  margin: 3rem 0 0.75rem;
  font-size: clamp(1.45rem, 2.8vw, 2rem);
  letter-spacing: -0.035em;
}

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

.legal-content h3 {
  margin: 1.8rem 0 0.5rem;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
}

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

.legal-content ul,
.legal-content ol {
  padding-left: 1.25rem;
}

.legal-content li + li {
  margin-top: 0.55rem;
}

.legal-content address {
  padding: 1.2rem 1.35rem;
  border-left: 0.25rem solid var(--cobalt);
  background: var(--cobalt-soft);
  font-style: normal;
}

.summary-box,
.notice {
  padding: 1.25rem 1.35rem;
  border-radius: 1rem;
  background: var(--cobalt-soft);
}

.summary-box {
  margin-bottom: 3rem;
}

.summary-box h2 {
  margin-top: 0;
}

.notice {
  border: 1px solid rgba(41, 73, 220, 0.14);
}

.question-list {
  display: grid;
  gap: 0;
}

.question {
  padding-block: 1.5rem;
  border-bottom: 1px solid var(--line);
}

.question h3 {
  margin-top: 0;
}

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

.email-button {
  display: inline-flex;
  margin-top: 1.5rem;
}

.js [data-reveal] {
  opacity: 0;
  transform: translateY(1.4rem);
  transition: opacity 650ms cubic-bezier(0.2, 0.7, 0.2, 1), transform 650ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.js [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.js .hero-visual[data-reveal] {
  transition-delay: 100ms;
}

@media (max-width: 1000px) {
  .hero-inner {
    grid-template-columns: minmax(0, 0.85fr) minmax(23rem, 1.15fr);
    gap: 2rem;
  }

  .hero-visual {
    min-height: 36rem;
  }

  .phone-stack {
    width: 31rem;
    height: 35rem;
  }

  .primary-phone {
    width: 15rem;
  }

  .back-phone {
    width: 11.8rem;
  }

  .receipt-note {
    right: 0;
    bottom: 2rem;
  }
}

@media (max-width: 800px) {
  .hero-inner {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .hero-copy {
    max-width: 40rem;
  }

  .hero h1 {
    max-width: 10ch;
  }

  .hero-visual {
    min-height: 38rem;
  }

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

  .screen-shot:last-child {
    grid-column: 1 / -1;
    width: calc(50% - 0.5rem);
    justify-self: center;
  }

  .privacy-inner {
    grid-template-columns: 1fr;
  }

  .privacy-band h2 {
    max-width: 13ch;
  }

  .final-cta {
    grid-template-columns: 1fr;
    align-items: start;
  }
}

@media (max-width: 680px) {
  :root {
    --header-height: 4.2rem;
  }

  .nav,
  .hero-inner,
  .proof-inner,
  .section,
  .legal-hero,
  .legal-shell,
  .site-footer,
  .privacy-band {
    width: min(calc(100% - 1.5rem), var(--page));
  }

  .brand img {
    width: 2rem;
    height: 2rem;
  }

  .nav-links {
    gap: 0.9rem;
  }

  .nav-links a:not(.nav-cta) {
    display: none;
  }

  .hero h1 {
    font-size: clamp(3.15rem, 17vw, 5rem);
  }

  .hero-visual {
    min-height: 32rem;
  }

  .phone-stack {
    width: 26rem;
    height: 30rem;
  }

  .primary-phone {
    width: 13.4rem;
  }

  .back-phone {
    top: 4.5rem;
    width: 10.4rem;
  }

  .back-phone.left {
    left: 1rem;
  }

  .back-phone.right {
    right: 1rem;
  }

  .receipt-note {
    right: 0.6rem;
    bottom: 0.5rem;
    width: 13.5rem;
  }

  .proof-inner,
  .screen-gallery,
  .legal-links-panel,
  .legal-meta {
    grid-template-columns: 1fr;
  }

  .proof-item,
  .proof-item:first-child,
  .proof-item:last-child {
    min-height: auto;
    padding: 1.4rem 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .proof-item:last-child {
    border-bottom: 0;
  }

  .screen-shot:last-child {
    grid-column: auto;
    width: auto;
  }

  .privacy-band {
    border-radius: 1.6rem;
  }

  .privacy-inner {
    padding: 2.2rem 1.3rem;
  }

  .legal-content {
    padding: 1.6rem 1.2rem;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-links {
    flex-wrap: wrap;
  }
}

@media (max-width: 390px) {
  .hero-visual {
    min-height: 29rem;
  }

  .phone-stack {
    width: 23rem;
    transform: translate(-50%, -50%) scale(0.94);
  }
}

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

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

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

@media print {
  .site-header,
  .site-footer,
  .skip-link {
    display: none;
  }

  body,
  body.legal,
  body.support {
    background: #fff;
    color: #000;
  }

  .legal-hero,
  .legal-shell {
    width: 100%;
  }

  .legal-content {
    max-width: none;
    padding: 0;
    border: 0;
    box-shadow: none;
  }

  a {
    color: inherit;
  }
}
