:root {
  color-scheme: light;
  --ink: #17132b;
  --muted: #625d72;
  --purple: #5f23e8;
  --purple-dark: #2b0757;
  --purple-soft: #ede9ff;
  --lavender: #dcd6ff;
  --mist: #f7f6fb;
  --white: #ffffff;
  --green: #24865a;
  --line: #dfdce8;
  --shadow: 0 24px 70px rgb(40 22 91 / 14%);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

button,
input {
  font: inherit;
}

.shell {
  width: min(1160px, calc(100% - 48px));
  margin-inline: auto;
}

.site-header {
  position: relative;
  z-index: 10;
  background: var(--white);
  border-bottom: 1px solid rgb(23 19 43 / 8%);
}

.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-size: 1.12rem;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: -0.02em;
}

.brand-mark {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: var(--ink);
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.18rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.site-nav a,
.site-footer nav a {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 600;
  text-decoration: none;
}

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

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border: 0;
  border-radius: 999px;
  background: var(--purple);
  color: var(--white);
  cursor: pointer;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 10px 25px rgb(95 35 232 / 24%);
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
  background: #4f15d0;
  box-shadow: 0 13px 30px rgb(95 35 232 / 30%);
}

.button:focus-visible,
a:focus-visible,
summary:focus-visible,
input:focus-visible {
  outline: 3px solid #ffbd59;
  outline-offset: 3px;
}

.button-small {
  min-height: 40px;
  padding-inline: 18px;
  font-size: 0.88rem;
}

.hero {
  overflow: hidden;
  background:
    radial-gradient(circle at 86% 12%, rgb(255 255 255 / 76%), transparent 26%),
    linear-gradient(118deg, #f1efff 0%, #d8d1ff 54%, #eeeaff 100%);
}

.hero-grid {
  min-height: 660px;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  gap: 70px;
  padding-block: 76px 68px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--purple);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

h1 {
  max-width: 650px;
  font-size: clamp(3.6rem, 6vw, 6.2rem);
}

h2 {
  font-size: clamp(2.65rem, 4.4vw, 4.6rem);
}

h3 {
  margin: 0;
  font-size: 1.12rem;
  line-height: 1.25;
}

.hero-lead {
  max-width: 580px;
  margin: 28px 0 0;
  color: #4f4960;
  font-size: clamp(1.05rem, 1.5vw, 1.24rem);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 32px;
}

.text-link {
  color: var(--purple);
  font-weight: 700;
  text-decoration: none;
}

.text-link:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin-top: 34px;
  margin-bottom: 0;
  padding: 0;
  color: #595266;
  font-size: 0.82rem;
  font-weight: 600;
  list-style: none;
}

.trust-row li::before {
  content: "✓";
  margin-right: 7px;
  color: var(--green);
}

.product-stage {
  position: relative;
  min-height: 520px;
  border-radius: 42px;
  background:
    linear-gradient(150deg, rgb(255 255 255 / 55%), transparent 42%),
    linear-gradient(135deg, #9f78ff, #7a42eb 55%, #b279f5);
  box-shadow: var(--shadow);
}

.phone {
  position: absolute;
  z-index: 3;
  top: 34px;
  right: 68px;
  width: 252px;
  height: 500px;
  overflow: hidden;
  border: 7px solid #17131d;
  border-radius: 40px;
  background: #f7f7fa;
  box-shadow: 0 30px 60px rgb(30 11 70 / 35%);
  transform: rotate(2deg);
}

.phone::before {
  content: "";
  position: absolute;
  z-index: 5;
  top: 7px;
  left: 50%;
  width: 80px;
  height: 20px;
  border-radius: 20px;
  background: #17131d;
  transform: translateX(-50%);
}

.phone-top {
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 17px;
  font-size: 0.6rem;
  font-weight: 700;
}

.phone-content {
  padding: 5px 14px 0;
}

.phone-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
  font-weight: 700;
}

.avatar {
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--purple-soft);
  color: var(--purple);
  font-size: 0.55rem;
}

.map-card {
  position: relative;
  height: 180px;
  overflow: hidden;
  border-radius: 18px;
  background:
    linear-gradient(28deg, transparent 45%, rgb(255 255 255 / 65%) 46%, rgb(255 255 255 / 65%) 49%, transparent 50%),
    linear-gradient(102deg, transparent 51%, rgb(255 255 255 / 72%) 52%, rgb(255 255 255 / 72%) 55%, transparent 56%),
    #d7eadb;
}

.map-road {
  position: absolute;
  height: 5px;
  border-radius: 10px;
  background: #b7b0d5;
}

.road-a { width: 170px; top: 82px; left: 22px; transform: rotate(-24deg); }
.road-b { width: 140px; top: 68px; left: 70px; transform: rotate(68deg); }

.mini-pin {
  position: absolute;
  top: 67px;
  left: 100px;
  width: 25px;
  height: 25px;
  border: 7px solid var(--purple);
  border-radius: 50% 50% 50% 0;
  background: white;
  transform: rotate(-45deg);
  box-shadow: 0 5px 10px rgb(43 7 87 / 20%);
}

.map-label {
  position: absolute;
  left: 14px;
  bottom: 12px;
  padding: 4px 8px;
  border-radius: 6px;
  background: rgb(255 255 255 / 86%);
  font-size: 0.48rem;
  font-weight: 600;
}

.visit-card {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 5px;
  margin-top: -18px;
  padding: 14px;
  border: 1px solid #ece9f3;
  border-radius: 16px;
  background: white;
  box-shadow: 0 8px 24px rgb(26 18 54 / 11%);
  font-size: 0.6rem;
}

.visit-card strong { font-size: 0.76rem; }
.visit-card > span:not(.visit-badge) { color: #716b7e; }

.visit-badge {
  width: fit-content;
  padding: 3px 7px;
  border-radius: 999px;
  background: #fff1d6;
  color: #865a05;
  font-size: 0.48rem;
  font-weight: 700;
}

.visit-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  align-items: center;
  margin-top: 5px;
  color: #716b7e;
}

.visit-actions b {
  padding: 5px 9px;
  border-radius: 8px;
  background: var(--purple);
  color: white;
}

.phone-tabs {
  position: absolute;
  inset: auto 0 0;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  border-top: 1px solid #e9e6ef;
  background: white;
  color: #8b8694;
  font-size: 0.52rem;
}

.phone-tabs b { color: var(--purple); }

.report-float,
.receipt-float {
  position: absolute;
  z-index: 4;
  border: 1px solid rgb(255 255 255 / 70%);
  background: rgb(255 255 255 / 93%);
  box-shadow: 0 16px 35px rgb(42 13 91 / 20%);
  backdrop-filter: blur(10px);
}

.report-float {
  top: 56px;
  left: 28px;
  width: 176px;
  display: grid;
  gap: 4px;
  padding: 18px;
  border-radius: 20px;
}

.float-label { color: var(--muted); font-size: 0.68rem; }
.report-float strong { font-family: Georgia, "Times New Roman", serif; font-size: 1.65rem; }
.float-positive { color: var(--green); font-size: 0.65rem; font-weight: 700; }

.receipt-float {
  right: 18px;
  bottom: 30px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 16px;
  font-size: 0.66rem;
}

.receipt-float span:last-child { display: grid; }
.receipt-float small { color: var(--muted); }
.receipt-icon { width: 24px; height: 24px; display: grid; place-items: center; border-radius: 50%; background: #dff6e9; color: var(--green); font-weight: 700; }

.route-line,
.map-pin {
  position: absolute;
  z-index: 1;
}

.route-line { height: 3px; border-top: 3px dashed rgb(255 255 255 / 50%); }
.route-line-one { width: 185px; top: 260px; left: 15px; transform: rotate(20deg); }
.route-line-two { width: 150px; top: 330px; left: 30px; transform: rotate(-34deg); }
.map-pin { width: 15px; height: 15px; border: 4px solid white; border-radius: 50% 50% 50% 0; transform: rotate(-45deg); }
.pin-one { top: 247px; left: 30px; }
.pin-two { top: 335px; left: 160px; }

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

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  padding-block: 28px;
}

.proof-grid p {
  display: grid;
  gap: 4px;
  margin: 0;
  padding: 0 34px;
  border-right: 1px solid var(--line);
}

.proof-grid p:first-child { padding-left: 0; }
.proof-grid p:last-child { border: 0; }
.proof-grid strong { font-size: 0.9rem; }
.proof-grid span { color: var(--muted); font-size: 0.76rem; }

.section {
  padding-block: 110px;
}

.section-heading {
  max-width: 740px;
  margin: 0 auto 58px;
  text-align: center;
}

.section-heading > p:last-child,
.section-copy {
  color: var(--muted);
  font-size: 1.05rem;
}

.section-heading > p:last-child { max-width: 620px; margin: 22px auto 0; }

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

.step-card {
  position: relative;
  min-height: 480px;
  padding: 26px;
  border-radius: 22px;
  background: var(--mist);
}

.step-number {
  display: inline-block;
  margin-bottom: 24px;
  color: var(--purple);
  font-size: 0.72rem;
  font-weight: 700;
}

.step-card h3 { margin-top: 28px; }
.step-card p { color: var(--muted); font-size: 0.9rem; }

.step-visual {
  position: relative;
  height: 230px;
  overflow: hidden;
  border: 1px solid #e7e3f1;
  border-radius: 16px;
  background: white;
  box-shadow: 0 14px 35px rgb(25 16 53 / 7%);
}

.mini-map { background: #dfeee4; }
.mini-map i { position: absolute; width: 300px; height: 16px; border: 4px solid white; border-width: 4px 0; transform: rotate(-28deg); }
.mini-map i:first-child { top: 45px; left: -70px; }
.mini-map i:nth-child(2) { top: 140px; left: -10px; transform: rotate(42deg); }
.mini-map b { position: absolute; top: 88px; left: 48%; width: 32px; height: 32px; border: 8px solid var(--purple); border-radius: 50% 50% 50% 0; background: white; transform: rotate(-45deg); }

.mini-visit {
  height: 180px;
  display: grid;
  align-content: center;
  gap: 9px;
  margin-top: 24px;
  padding: 26px;
}

.mini-visit b { font-size: 0.95rem; }
.mini-visit span { color: var(--muted); font-size: 0.7rem; }
.mini-visit i { width: fit-content; margin-top: 12px; padding: 7px 12px; border-radius: 8px; background: var(--purple); color: white; font-size: 0.66rem; font-style: normal; font-weight: 700; }

.mini-report { display: flex; align-items: flex-end; gap: 15px; padding: 35px 25px 62px; }
.mini-report b { flex: 1; border-radius: 8px 8px 3px 3px; background: var(--lavender); }
.mini-report b:first-child { height: 50px; }
.mini-report b:nth-child(2) { height: 110px; background: var(--purple); }
.mini-report b:nth-child(3) { height: 78px; }
.mini-report span { position: absolute; right: 18px; bottom: 18px; padding: 7px 11px; border-radius: 8px; background: var(--ink); color: white; font-size: 0.62rem; font-weight: 700; }

.section-dark {
  background: #1c0335;
  color: white;
}

.dark-grid {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 100px;
  align-items: start;
}

.eyebrow-light { color: #cbbcff; }
.dark-lead { max-width: 460px; color: #c9bfd2; font-size: 1.08rem; }

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

.feature-list article {
  min-height: 180px;
  display: flex;
  gap: 16px;
  padding: 24px;
  border: 1px solid rgb(255 255 255 / 12%);
  border-radius: 18px;
  background: rgb(255 255 255 / 7%);
}

.feature-list article > span {
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: #7a45e9;
  font-weight: 700;
}

.feature-list p { color: #c9bfd2; font-size: 0.84rem; }

.privacy-feature { background: #f8f7fb; }
.privacy-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: center; }
.privacy-grid .section-copy { margin: 25px 0; }

.privacy-visual {
  position: relative;
  min-height: 430px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 28px;
  background: linear-gradient(145deg, #d9d2ff, #f1efff);
}

.shield {
  position: relative;
  z-index: 3;
  width: 128px;
  height: 150px;
  display: grid;
  place-items: center;
  border-radius: 60px 60px 75px 75px;
  background: var(--ink);
  color: white;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 3.2rem;
  box-shadow: 0 22px 45px rgb(43 7 87 / 25%);
}

.orbit { position: absolute; width: 330px; height: 160px; border: 1px solid rgb(95 35 232 / 28%); border-radius: 50%; }
.orbit-one { transform: rotate(24deg); }
.orbit-two { transform: rotate(-24deg); }
.privacy-pill { position: absolute; z-index: 4; padding: 10px 14px; border-radius: 999px; background: rgb(255 255 255 / 88%); box-shadow: 0 10px 30px rgb(45 22 96 / 13%); color: var(--purple-dark); font-size: 0.7rem; font-weight: 700; }
.pill-one { top: 68px; left: 38px; }
.pill-two { right: 28px; bottom: 72px; }

.faq-grid { display: grid; grid-template-columns: 0.7fr 1.3fr; gap: 90px; }
.faq-list details { border-top: 1px solid var(--line); padding-block: 22px; }
.faq-list details:last-child { border-bottom: 1px solid var(--line); }
.faq-list summary { position: relative; padding-right: 30px; cursor: pointer; list-style: none; font-weight: 700; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; position: absolute; top: -4px; right: 4px; color: var(--purple); font-size: 1.5rem; font-weight: 400; }
.faq-list details[open] summary::after { content: "−"; }
.faq-list details p { margin-bottom: 0; color: var(--muted); font-size: 0.92rem; }

.beta-section {
  padding-block: 90px;
  background:
    radial-gradient(circle at 88% 20%, rgb(255 255 255 / 25%), transparent 26%),
    linear-gradient(120deg, #5431d5, #7b3dec 60%, #9760ee);
  color: white;
}

.beta-grid { display: grid; grid-template-columns: 1fr 0.9fr; gap: 100px; align-items: center; }
.beta-grid h2 { font-size: clamp(2.6rem, 4vw, 4.2rem); }
.beta-grid > div > p:last-child { max-width: 560px; color: #e6ddff; }

.signup-form {
  padding: 28px;
  border: 1px solid rgb(255 255 255 / 45%);
  border-radius: 22px;
  background: rgb(255 255 255 / 94%);
  color: var(--ink);
  box-shadow: 0 24px 55px rgb(30 5 74 / 22%);
}

.signup-form label { display: block; margin-bottom: 9px; font-size: 0.8rem; font-weight: 700; }
.signup-row { display: flex; gap: 10px; }
.signup-row input { min-width: 0; flex: 1; height: 50px; padding: 0 16px; border: 1px solid #cec9da; border-radius: 999px; background: white; color: var(--ink); }
.signup-row input::placeholder { color: #9892a2; }
.signup-row .button:disabled { cursor: wait; opacity: 0.72; transform: none; box-shadow: none; }
.form-honeypot { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.form-note { margin: 12px 4px 0; color: var(--muted); font-size: 0.7rem; }
.form-note a { color: var(--purple); font-weight: 700; }
.form-status { min-height: 1.2em; margin: 8px 4px 0; color: var(--green); font-size: 0.72rem; font-weight: 700; }
.form-status[data-state="pending"] { color: var(--muted); }
.form-status[data-state="error"] { color: #b42318; }

.site-footer {
  padding-block: 56px 30px;
  background: #130522;
  color: white;
}

.footer-grid { display: flex; justify-content: space-between; gap: 60px; }
.brand-footer { color: white; }
.brand-footer .brand-mark { background: white; color: var(--ink); }
.footer-grid p { color: #a99db5; font-size: 0.82rem; }
.site-footer nav { display: flex; gap: 28px; align-items: flex-start; }
.site-footer nav a { color: #c9bfd2; }
.footer-bottom { display: flex; justify-content: space-between; gap: 30px; margin-top: 44px; padding-top: 22px; border-top: 1px solid rgb(255 255 255 / 13%); color: #8f829b; font-size: 0.68rem; }

/* Policy and support pages */
.page-hero { padding-block: 88px 76px; background: linear-gradient(120deg, #f1efff, #ded8ff); }
.page-hero .shell { max-width: 900px; }
.page-hero h1 { font-size: clamp(3.3rem, 6vw, 5.5rem); }
.page-hero p:last-child { max-width: 720px; margin: 24px 0 0; color: var(--muted); font-size: 1.12rem; }
.article-section { padding-block: 76px 110px; }
.article-shell { width: min(820px, calc(100% - 48px)); margin-inline: auto; }
.article-shell h2 { margin: 48px 0 12px; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; font-size: 1.2rem; letter-spacing: -0.02em; line-height: 1.3; }
.article-shell h2:first-child { margin-top: 0; }
.article-shell p, .article-shell li { color: var(--muted); }
.article-shell a { color: var(--purple); font-weight: 600; }
.article-shell .effective-date { margin-top: 58px; padding-top: 20px; border-top: 1px solid var(--line); font-size: 0.82rem; }
.support-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; margin-bottom: 50px; }
.support-card { padding: 28px; border-radius: 20px; background: var(--mist); }
.support-card h2 { margin-top: 0; }
.support-card p:last-child { margin-bottom: 0; }
.support-card-full { grid-column: 1 / -1; }

.error-page { min-height: 100vh; display: grid; place-items: center; padding: 24px; background: linear-gradient(145deg, #eeeaff, #d8d1ff); text-align: center; }
.error-card { max-width: 620px; padding: 60px; border-radius: 28px; background: white; box-shadow: var(--shadow); }
.error-card h1 { font-size: 5rem; }
.error-card p { color: var(--muted); }

@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; gap: 44px; padding-top: 60px; }
  .hero-copy { max-width: 720px; }
  .product-stage { width: min(620px, 100%); min-height: 500px; margin-inline: auto; }
  .step-grid { grid-template-columns: 1fr; }
  .step-card { min-height: auto; display: grid; grid-template-columns: 0.85fr 1fr; column-gap: 28px; align-items: center; }
  .step-number { position: absolute; top: 24px; right: 24px; }
  .step-visual { grid-row: span 3; }
  .dark-grid, .privacy-grid, .faq-grid, .beta-grid { grid-template-columns: 1fr; gap: 55px; }
  .privacy-visual { max-width: 650px; width: 100%; margin-inline: auto; }
}

@media (max-width: 700px) {
  .shell, .article-shell { width: min(100% - 32px, 1160px); }
  .header-inner { min-height: 66px; }
  .site-nav { display: none; }
  .hero-grid { min-height: auto; padding-block: 48px 54px; }
  h1 { font-size: clamp(3.2rem, 16vw, 4.8rem); }
  h2 { font-size: clamp(2.5rem, 12vw, 3.7rem); }
  .hero-actions { align-items: flex-start; flex-direction: column; }
  .product-stage { min-height: 420px; border-radius: 28px; }
  .phone { top: 26px; right: 50%; width: 218px; height: 430px; transform: translateX(50%) rotate(2deg); }
  .map-card { height: 145px; }
  .report-float { top: 34px; left: 8px; width: 142px; padding: 12px; }
  .report-float strong { font-size: 1.35rem; }
  .receipt-float { right: 8px; bottom: 18px; }
  .route-line, .map-pin { display: none; }
  .proof-grid { grid-template-columns: 1fr; }
  .proof-grid p { padding: 14px 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .proof-grid p:last-child { border: 0; }
  .section { padding-block: 76px; }
  .section-heading { text-align: left; }
  .section-heading > p:last-child { margin-left: 0; }
  .step-card { display: block; padding: 20px; }
  .step-number { position: static; }
  .step-visual { height: 210px; }
  .feature-list { grid-template-columns: 1fr; }
  .feature-list article { min-height: auto; }
  .privacy-visual { min-height: 350px; }
  .support-grid { grid-template-columns: 1fr; }
  .support-card-full { grid-column: auto; }
  .signup-row { flex-direction: column; }
  .signup-row .button { width: 100%; }
  .footer-grid, .footer-bottom { flex-direction: column; }
  .site-footer nav { flex-wrap: wrap; }
  .page-hero { padding-block: 60px; }
  .article-section { padding-block: 54px 80px; }
  .error-card { padding: 42px 26px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: 0.01ms !important; }
}
