:root {
  --ink: #10100f;
  --paper: #f8f7f2;
  --white: #ffffff;
  --soft: #eeede7;
  --line: rgba(16, 16, 15, 0.13);
  --muted: #6c6b66;
  --purple: #5b4ee5;
  --purple-dark: #4537ce;
  --mint: #20bb87;
  --orange: #ff7138;
  --cream: #fff0cf;
  --radius-sm: 18px;
  --radius-md: 30px;
  --radius-lg: 48px;
  --shadow: 0 30px 80px rgba(30, 24, 92, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    'Segoe UI',
    sans-serif;
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

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

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

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

.site-header {
  position: relative;
  z-index: 20;
  display: flex;
  width: min(1280px, calc(100% - 48px));
  min-height: 88px;
  margin-inline: auto;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--ink);
  font-size: 19px;
  font-weight: 850;
  letter-spacing: -0.04em;
  text-decoration: none;
}

.brand-mark {
  display: flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  gap: 2px;
  border-radius: 50%;
  background: var(--purple);
}

.brand-mark i {
  display: block;
  width: 3px;
  border-radius: 999px;
  background: var(--white);
}

.brand-mark i:nth-child(1),
.brand-mark i:nth-child(5) {
  height: 7px;
}

.brand-mark i:nth-child(2),
.brand-mark i:nth-child(4) {
  height: 13px;
}

.brand-mark i:nth-child(3) {
  height: 20px;
}

.site-header nav {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 14px;
  font-weight: 700;
}

.site-header nav a {
  text-decoration: none;
}

.site-header nav a:not(.nav-cta):hover {
  color: var(--purple);
}

.nav-cta {
  padding: 11px 17px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
}

.hero {
  display: grid;
  min-height: 760px;
  grid-template-columns: minmax(0, 1.05fr) minmax(390px, 0.95fr);
  align-items: center;
  gap: 72px;
  padding-block: 75px 90px;
}

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

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 20px;
  color: var(--purple-dark);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 25px;
  height: 2px;
  background: currentColor;
}

.hero h1 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(58px, 6.6vw, 94px);
  font-weight: 900;
  letter-spacing: -0.075em;
  line-height: 0.94;
}

.hero h1 em {
  display: block;
  color: var(--purple);
  font-family: Georgia, 'Times New Roman', serif;
  font-weight: 500;
  letter-spacing: -0.07em;
}

.hero-lede {
  max-width: 610px;
  margin: 32px 0 0;
  color: #3e3d39;
  font-size: clamp(18px, 1.8vw, 22px);
  line-height: 1.5;
}

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

.button {
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 0 24px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
  transition:
    transform 180ms ease,
    background 180ms ease;
}

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

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

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

.text-link {
  font-size: 14px;
  font-weight: 800;
  text-underline-offset: 4px;
}

.availability {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.hero-art {
  position: relative;
  display: flex;
  min-height: 630px;
  align-items: center;
  justify-content: center;
}

.halo {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
}

.halo-one {
  width: 520px;
  height: 520px;
  background: #e6e1ff;
}

.halo-two {
  top: 26px;
  right: -4px;
  width: 170px;
  height: 170px;
  background: #c7f1e3;
}

.phone {
  position: relative;
  overflow: hidden;
  margin: 0;
  border: 9px solid #161616;
  border-radius: 45px;
  background: #fff;
  box-shadow: var(--shadow);
}

.phone::before {
  position: absolute;
  z-index: 2;
  top: 8px;
  left: 50%;
  width: 32%;
  height: 21px;
  border-radius: 999px;
  background: #111;
  content: '';
  transform: translateX(-50%);
}

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

.phone-hero {
  z-index: 3;
  width: 302px;
  aspect-ratio: 9 / 16;
  transform: rotate(2.5deg);
}

.story-note {
  position: absolute;
  z-index: 4;
  max-width: 235px;
  padding: 16px 18px;
  border: 1px solid rgba(16, 16, 15, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 16px 40px rgba(32, 30, 58, 0.13);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 16px;
  line-height: 1.25;
  backdrop-filter: blur(14px);
}

.story-note span {
  display: block;
  margin-bottom: 7px;
  color: var(--muted);
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    'Segoe UI',
    sans-serif;
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.note-one {
  top: 98px;
  left: -46px;
  transform: rotate(-5deg);
}

.note-two {
  right: -38px;
  bottom: 92px;
  transform: rotate(4deg);
}

.statement {
  padding-block: 118px;
  background: var(--ink);
  color: var(--white);
}

.statement-inner {
  max-width: 1050px;
}

.statement .eyebrow {
  color: #a49af8;
}

.statement h2 {
  margin: 0;
  color: #898986;
  font-size: clamp(38px, 5.1vw, 70px);
  font-weight: 750;
  letter-spacing: -0.055em;
  line-height: 1.08;
}

.statement h2 strong {
  color: var(--white);
  font-weight: 750;
}

.steps {
  padding-block: 125px;
}

.section-heading {
  display: grid;
  margin-bottom: 58px;
  grid-template-columns: 0.75fr 1.25fr;
  align-items: end;
  gap: 40px;
}

.section-heading .eyebrow {
  margin-bottom: 8px;
}

.section-heading h2 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(42px, 4.5vw, 64px);
  letter-spacing: -0.06em;
  line-height: 1.04;
}

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

.step-card {
  position: relative;
  display: flex;
  min-height: 470px;
  padding: 30px;
  flex-direction: column;
  border-radius: var(--radius-md);
}

.step-find {
  background: #ddd8ff;
}

.step-shape {
  background: #d9f3e9;
}

.step-tell {
  background: var(--cream);
}

.step-number {
  color: rgba(16, 16, 15, 0.5);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.12em;
}

.step-icon {
  display: flex;
  width: 78px;
  height: 78px;
  margin-top: 34px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.65);
  font-size: 32px;
  font-weight: 700;
}

.step-card h3 {
  margin: 27px 0 9px;
  font-size: 35px;
  letter-spacing: -0.05em;
}

.step-card p {
  margin: 0;
  color: #383733;
  font-size: 16px;
}

.step-card .step-example {
  margin-top: auto;
  padding-top: 26px;
  border-top: 1px solid rgba(16, 16, 15, 0.18);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 17px;
  font-style: italic;
}

.product-section {
  overflow: hidden;
  padding-block: 120px 135px;
  background: var(--purple);
  color: var(--white);
}

.product-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 80px;
}

.eyebrow-light {
  color: #dcd8ff;
}

.product-copy h2 {
  margin: 0;
  font-size: clamp(46px, 4.8vw, 70px);
  letter-spacing: -0.065em;
  line-height: 0.99;
}

.product-copy > p:not(.eyebrow) {
  max-width: 570px;
  margin: 27px 0 0;
  color: #e3e0ff;
  font-size: 19px;
}

.feature-list {
  margin: 46px 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  display: grid;
  padding: 19px 0;
  grid-template-columns: 44px 1fr;
  gap: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  color: #dcd8ff;
  font-size: 14px;
}

.feature-list li:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}

.feature-list li > span {
  color: #a9ffc8;
  font-size: 11px;
  font-weight: 850;
}

.feature-list strong {
  display: block;
  margin-bottom: 2px;
  color: var(--white);
  font-size: 16px;
}

.phone-stack {
  position: relative;
  min-height: 720px;
}

.phone-stack .phone {
  position: absolute;
  width: 335px;
  aspect-ratio: 9 / 16;
}

.phone-back {
  top: 0;
  left: 15px;
  transform: rotate(-7deg);
}

.phone-front {
  right: 5px;
  bottom: -40px;
  transform: rotate(6deg);
}

.privacy-section {
  padding-block: 125px;
}

.privacy-card {
  display: grid;
  padding: clamp(36px, 6vw, 78px);
  grid-template-columns: 1fr 0.9fr;
  align-items: center;
  gap: 70px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
}

.privacy-copy h2 {
  margin: 0;
  font-size: clamp(43px, 4.4vw, 62px);
  letter-spacing: -0.06em;
  line-height: 1.02;
}

.privacy-copy > p:not(.eyebrow) {
  max-width: 530px;
  margin: 22px 0;
  color: var(--muted);
  font-size: 17px;
}

.privacy-facts {
  display: grid;
  gap: 12px;
}

.privacy-facts article {
  display: grid;
  min-height: 105px;
  padding: 19px 22px;
  grid-template-columns: 120px 1fr;
  align-items: center;
  border-radius: 22px;
  background: var(--soft);
}

.privacy-facts strong {
  color: var(--purple);
  font-size: 32px;
  letter-spacing: -0.05em;
}

.privacy-facts span {
  color: #464541;
  font-size: 14px;
  font-weight: 650;
}

.closing {
  padding-bottom: 115px;
}

.closing-card {
  position: relative;
  overflow: hidden;
  padding: 80px;
  border-radius: var(--radius-lg);
  background: var(--ink);
  color: var(--white);
}

.closing-card::after {
  position: absolute;
  top: -180px;
  right: -80px;
  width: 560px;
  height: 560px;
  border: 80px solid var(--purple);
  border-radius: 50%;
  content: '';
  opacity: 0.72;
}

.closing-icon {
  position: absolute;
  z-index: 2;
  right: 92px;
  bottom: -40px;
  width: 260px;
  border-radius: 55px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  transform: rotate(8deg);
}

.closing-card > *:not(.closing-icon) {
  position: relative;
  z-index: 3;
  max-width: 650px;
}

.closing-card h2 {
  margin: 0;
  font-size: clamp(48px, 5.5vw, 76px);
  letter-spacing: -0.07em;
  line-height: 0.98;
}

.closing-card > p:not(.eyebrow) {
  max-width: 570px;
  margin: 23px 0 30px;
  color: #c5c4bf;
}

.button-light {
  background: var(--white);
  color: var(--ink);
}

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

.site-footer {
  display: grid;
  min-height: 170px;
  grid-template-columns: 1fr 1.4fr 1fr auto;
  align-items: center;
  gap: 30px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  font-weight: 700;
  text-underline-offset: 4px;
}

.copyright {
  text-align: right;
}

.legal-main {
  padding-block: 86px 120px;
}

.legal-header {
  max-width: 850px;
  margin-bottom: 68px;
}

.legal-header h1 {
  margin: 0 0 22px;
  font-size: clamp(54px, 7vw, 92px);
  letter-spacing: -0.075em;
  line-height: 0.96;
}

.legal-header > p:not(.eyebrow) {
  max-width: 660px;
  color: var(--muted);
  font-size: 19px;
}

.legal-layout {
  display: grid;
  grid-template-columns: 240px minmax(0, 720px);
  gap: 70px;
}

.legal-aside {
  position: sticky;
  top: 30px;
  align-self: start;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.66);
}

.legal-aside strong {
  display: block;
  margin-bottom: 8px;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.legal-aside p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.legal-content h2 {
  margin: 54px 0 13px;
  font-size: 30px;
  letter-spacing: -0.04em;
}

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

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

.legal-content li + li {
  margin-top: 9px;
}

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

.support-card {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--white);
}

.support-card h2 {
  margin: 0 0 10px;
  font-size: 24px;
  letter-spacing: -0.04em;
}

.support-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.support-card a {
  color: var(--purple-dark);
  font-weight: 800;
}

.support-contact {
  display: flex;
  min-height: 260px;
  margin-top: 16px;
  padding: 44px;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  border-radius: 28px;
  background: #ddd8ff;
}

.support-contact h2 {
  margin: 0;
  font-size: clamp(36px, 5vw, 56px);
  letter-spacing: -0.06em;
}

.support-contact p {
  margin: 9px 0 0;
  color: #4c486e;
}

.not-found {
  display: grid;
  min-height: calc(100vh - 88px);
  place-items: center;
  text-align: center;
}

.not-found h1 {
  margin: 0;
  color: var(--purple);
  font-size: clamp(90px, 20vw, 220px);
  letter-spacing: -0.09em;
  line-height: 0.8;
}

.not-found h2 {
  margin: 30px 0 8px;
  font-size: 36px;
  letter-spacing: -0.05em;
}

.not-found p {
  margin: 0 0 25px;
  color: var(--muted);
}

@media (max-width: 1050px) {
  .site-header nav a:not(.nav-cta) {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr 0.85fr;
    gap: 30px;
  }

  .note-one {
    left: -10px;
  }

  .note-two {
    right: -10px;
  }

  .product-grid {
    gap: 20px;
  }

  .phone-stack .phone {
    width: 290px;
  }

  .closing-icon {
    right: 40px;
    width: 210px;
  }
}

@media (max-width: 820px) {
  .shell,
  .site-header {
    width: min(100% - 30px, 680px);
  }

  .site-header {
    min-height: 74px;
  }

  .site-header nav {
    gap: 10px;
  }

  .nav-cta {
    padding: 9px 13px;
  }

  .hero {
    min-height: auto;
    padding-block: 72px 80px;
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: clamp(54px, 14vw, 82px);
  }

  .hero-art {
    min-height: 610px;
  }

  .hero-lede {
    max-width: 580px;
  }

  .statement {
    padding-block: 88px;
  }

  .steps {
    padding-block: 90px;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 14px;
  }

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

  .step-card {
    min-height: 390px;
  }

  .product-section {
    padding-block: 90px 80px;
  }

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

  .phone-stack {
    min-height: 680px;
    margin-top: 35px;
  }

  .phone-stack .phone {
    width: min(49vw, 310px);
  }

  .phone-front {
    right: 8%;
  }

  .phone-back {
    left: 8%;
  }

  .privacy-section {
    padding-block: 85px;
  }

  .privacy-card {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .closing-card {
    padding: 60px 42px 330px;
  }

  .closing-icon {
    right: 50%;
    bottom: 45px;
    width: 240px;
    transform: translateX(50%) rotate(5deg);
  }

  .site-footer {
    padding-block: 45px;
    grid-template-columns: 1fr 1fr;
  }

  .site-footer > p:not(.copyright) {
    text-align: right;
  }

  .copyright {
    text-align: right;
  }

  .legal-main {
    padding-block: 65px 90px;
  }

  .legal-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .legal-aside {
    position: static;
  }
}

@media (max-width: 560px) {
  body {
    font-size: 16px;
  }

  .brand {
    font-size: 17px;
  }

  .site-header nav {
    font-size: 12px;
  }

  .hero {
    padding-top: 52px;
  }

  .hero h1 {
    font-size: clamp(48px, 16vw, 68px);
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }

  .hero-art {
    min-height: 560px;
  }

  .phone-hero {
    width: 260px;
  }

  .halo-one {
    width: 390px;
    height: 390px;
  }

  .story-note {
    max-width: 190px;
    font-size: 13px;
  }

  .note-one {
    top: 34px;
    left: -3px;
  }

  .note-two {
    right: -3px;
    bottom: 40px;
  }

  .statement h2,
  .section-heading h2,
  .product-copy h2,
  .privacy-copy h2 {
    font-size: 41px;
  }

  .step-card {
    min-height: 430px;
  }

  .phone-stack {
    min-height: 530px;
  }

  .phone-stack .phone {
    width: 215px;
    border-width: 6px;
    border-radius: 32px;
  }

  .phone::before {
    top: 6px;
    height: 15px;
  }

  .phone-back {
    left: 0;
  }

  .phone-front {
    right: 0;
  }

  .privacy-card {
    padding: 34px 24px;
    border-radius: 34px;
  }

  .privacy-facts article {
    grid-template-columns: 88px 1fr;
  }

  .privacy-facts strong {
    font-size: 25px;
  }

  .closing {
    padding-bottom: 75px;
  }

  .closing-card {
    padding: 45px 25px 300px;
    border-radius: 34px;
  }

  .closing-card h2 {
    font-size: 48px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .site-footer > p:not(.copyright),
  .copyright {
    text-align: left;
  }

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

  .support-contact {
    padding: 34px 26px;
    align-items: flex-start;
    flex-direction: column;
  }
}

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

  .button {
    transition: none;
  }
}
