:root {
  --ink: #0b0b0d;
  --muted: #77777c;
  --line: rgba(15, 15, 18, 0.09);
  --paper: #fbfbfc;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 45% -10%, rgba(193, 245, 241, 0.52), transparent 26rem),
    radial-gradient(circle at 72% 5%, rgba(255, 223, 204, 0.52), transparent 25rem),
    var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

main { position: relative; min-height: 100vh; overflow: hidden; }

.aurora {
  position: absolute;
  border-radius: 999px;
  filter: blur(70px);
  pointer-events: none;
  opacity: .6;
}

.aurora-one {
  width: 340px;
  height: 340px;
  right: -110px;
  top: 250px;
  background: linear-gradient(135deg, #ffd3ed, #fff0b5 48%, #c4fff0);
}

.aurora-two {
  width: 260px;
  height: 260px;
  left: -120px;
  top: 520px;
  background: linear-gradient(135deg, #d6e7ff, #f7d8ff);
}

.site-nav {
  width: min(1180px, calc(100% - 40px));
  height: 88px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 5;
}

.wordmark { display: flex; align-items: center; gap: 11px; font-weight: 750; letter-spacing: -.025em; }

.wordmark-icon {
  width: 38px;
  height: 38px;
  border-radius: 11px;
  display: block;
  box-shadow: 0 8px 24px rgba(64, 71, 78, .12);
}

.wordmark-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 13px;
  font-size: 19px;
  background: rgba(255,255,255,.64);
  border: 1px solid rgba(255,255,255,.9);
  box-shadow: inset 0 0 0 1px var(--line), 0 8px 24px rgba(64, 71, 78, .1);
  backdrop-filter: blur(18px);
}

.nav-links { display: flex; align-items: center; gap: 22px; font-size: 14px; font-weight: 650; }
.nav-links a { transition: opacity .2s ease, transform .2s ease; }
.nav-links a:hover { opacity: .65; }
.nav-pill { padding: 11px 17px; border: 1px solid var(--line); border-radius: 999px; background: rgba(255,255,255,.6); }

.hero {
  width: min(1180px, calc(100% - 40px));
  min-height: 780px;
  margin: 22px auto 90px;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  align-items: center;
  gap: 40px;
  position: relative;
  z-index: 1;
}

.hero-copy { padding: 25px 0 70px; position: relative; z-index: 2; }

h1 {
  margin: 0;
  font-size: clamp(76px, 9.2vw, 140px);
  line-height: .79;
  letter-spacing: -.085em;
  font-weight: 800;
}

.hero-subtitle { margin: 34px 0 0; color: #626268; font-size: clamp(25px, 2.6vw, 38px); line-height: 1.12; letter-spacing: -.045em; }

.hero-body { max-width: 500px; margin: 24px 0 0; color: var(--muted); font-size: 17px; line-height: 1.62; letter-spacing: -.012em; }

.hero-actions { display: flex; flex-wrap: wrap; gap: 11px; margin-top: 36px; }

.button {
  min-height: 52px;
  padding: 0 20px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 13px;
  font-size: 14px;
  font-weight: 710;
  transition: transform .2s ease, box-shadow .2s ease;
}

.button:hover { transform: translateY(-2px); }
.button-dark { color: white; background: var(--ink); box-shadow: 0 12px 30px rgba(0,0,0,.14); }
.button-glass { border: 1px solid var(--line); background: rgba(255,255,255,.56); backdrop-filter: blur(16px); }

.device-stage { min-height: 760px; display: grid; place-items: center; position: relative; }

.device-glow {
  position: absolute;
  width: 610px;
  height: 610px;
  border-radius: 50%;
  background: conic-gradient(from 120deg, #d8fff5, #f3ddff, #ffe2d2, #fff7c6, #d8fff5);
  filter: blur(42px);
  opacity: .68;
}

.device-shell {
  position: relative;
  width: min(378px, 70vw);
  aspect-ratio: 1242 / 2688;
  padding: 10px;
  border-radius: 56px;
  background: #0b0b0d;
  box-shadow: 0 40px 90px rgba(27, 31, 34, .22), 0 0 0 1px rgba(0,0,0,.22);
  transform: rotate(3.2deg);
  overflow: hidden;
  z-index: 1;
}

.device-shell img { width: 100%; height: 100%; object-fit: cover; display: block; border-radius: 47px; }

.device-island {
  position: absolute;
  z-index: 2;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 105px;
  height: 27px;
  background: #08080a;
  border-radius: 999px;
}

.floating-note {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 16px;
  border-radius: 20px;
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(255,255,255,.92);
  box-shadow: inset 0 0 0 1px rgba(15,15,20,.05), 0 16px 46px rgba(44,48,52,.12);
  backdrop-filter: blur(20px);
}

.floating-note strong, .floating-note small { display: block; }
.floating-note strong { font-size: 13px; margin-bottom: 3px; }
.floating-note small { color: var(--muted); font-size: 11px; }
.note-dot { width: 32px; height: 32px; border-radius: 11px; box-shadow: inset 0 0 0 1px rgba(0,0,0,.04); }
.mint { background: linear-gradient(135deg, #dffdf4, #cceee3); }
.peach { background: linear-gradient(135deg, #ffe2d7, #fff1be); }
.note-one { left: -5px; top: 235px; }
.note-two { right: -8px; bottom: 170px; }

.story-section,
.skills-section,
.results-section,
.privacy-callout,
footer {
  width: min(1180px, calc(100% - 40px));
  margin-left: auto;
  margin-right: auto;
}

.story-section,
.skills-section,
.results-section { padding: 150px 0 20px; }

.section-heading { max-width: 840px; margin: 0 auto 68px; text-align: center; }
.section-heading h2,
.privacy-callout h2 {
  margin: 0;
  font-size: clamp(58px, 7.5vw, 104px);
  line-height: .93;
  letter-spacing: -.07em;
  font-weight: 800;
}

.section-heading > p:last-child { max-width: 650px; margin: 28px auto 0; color: var(--muted); font-size: 18px; line-height: 1.55; }

.story-card {
  min-height: 790px;
  border-radius: 52px;
  overflow: hidden;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  position: relative;
  background:
    radial-gradient(circle at 12% 15%, rgba(255, 210, 232, .92), transparent 28%),
    radial-gradient(circle at 95% 30%, rgba(208, 250, 241, .9), transparent 34%),
    radial-gradient(circle at 35% 95%, rgba(255, 238, 194, .78), transparent 35%),
    #f4f5f5;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,.055);
}

.story-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(rgba(0,0,0,.035) .6px, transparent .6px);
  background-size: 5px 5px;
  opacity: .28;
}

.story-card-copy { align-self: center; padding: 70px 30px 70px 70px; position: relative; z-index: 1; }
.story-card h3 { margin: 0; font-size: clamp(45px, 5vw, 76px); line-height: .94; letter-spacing: -.065em; }
.story-card-copy > p { max-width: 440px; margin: 26px 0 0; color: #69696f; font-size: 17px; line-height: 1.62; }

.story-phone-wrap { align-self: end; justify-self: center; width: min(430px, 90%); height: 690px; overflow: hidden; border-radius: 49px 49px 0 0; box-shadow: 0 30px 80px rgba(56,57,60,.22); transform: rotate(1.5deg) translateY(18px); position: relative; z-index: 1; background: white; }
.story-phone { width: 100%; height: auto; display: block; }

.skills-section { padding-top: 190px; }
.skills-heading { max-width: 960px; }

.skills-layout { display: grid; grid-template-columns: .82fr 1.18fr; gap: 28px; align-items: stretch; }

.skills-list {
  min-height: 760px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 38px;
  border-radius: 44px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.62);
  backdrop-filter: blur(16px);
}

.skill-row { display: flex; align-items: center; min-height: 100px; border-bottom: 1px solid var(--line); }
.skill-row:last-child { border-bottom: 0; }
.skill-row strong, .skill-row small { display: block; }
.skill-row strong { font-size: 20px; letter-spacing: -.025em; }
.skill-row small { margin-top: 5px; color: var(--muted); font-size: 13px; }

.skills-preview {
  max-height: 860px;
  overflow: hidden;
  border-radius: 44px;
  background:
    radial-gradient(circle at 0 20%, rgba(245,210,255,.6), transparent 35%),
    radial-gradient(circle at 100% 80%, rgba(190,250,241,.7), transparent 35%),
    #f8f8f8;
  box-shadow: inset 0 0 0 1px var(--line);
}

.skills-preview img { width: 100%; height: auto; display: block; }

.results-section { padding-top: 190px; }
.results-heading { max-width: 780px; }

.result-grid { display: grid; grid-template-columns: 1.05fr .95fr; grid-template-rows: 370px 370px; gap: 20px; }
.result-card { margin: 0; position: relative; overflow: hidden; border-radius: 40px; background: #eee; }
.result-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s cubic-bezier(.2,.7,.2,1); }
.result-card:hover img { transform: scale(1.025); }
.result-card figcaption { position: absolute; left: 18px; right: 18px; bottom: 18px; min-height: 58px; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 0 19px; border-radius: 19px; background: rgba(255,255,255,.72); border: 1px solid rgba(255,255,255,.82); backdrop-filter: blur(16px); font-weight: 730; }
.result-card figcaption small { color: #68686e; font-size: 11px; text-transform: uppercase; letter-spacing: .12em; }
.result-tall { grid-row: 1 / 3; }
.result-wide img { object-position: center 35%; }

.result-quote {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 42px;
  border-radius: 40px;
  color: white;
  background: #0b0b0d;
}

.spark { color: #caffed; font-size: 28px; }
.result-quote blockquote { margin: 20px 0 10px; font-size: clamp(38px, 4vw, 57px); line-height: .98; font-weight: 760; letter-spacing: -.055em; }
.result-quote p { max-width: 430px; margin: 0; color: #a9a9ae; font-size: 14px; line-height: 1.55; }

.privacy-callout {
  min-height: 520px;
  margin-top: 180px;
  margin-bottom: 80px;
  padding: 70px;
  display: grid;
  grid-template-columns: 1.3fr .7fr;
  align-items: end;
  gap: 60px;
  border-radius: 48px;
  background:
    radial-gradient(circle at 85% 0, rgba(255,206,236,.75), transparent 38%),
    radial-gradient(circle at 12% 95%, rgba(190,248,237,.85), transparent 36%),
    radial-gradient(circle at 60% 100%, rgba(255,235,194,.72), transparent 36%),
    #f5f5f6;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,.055);
}

.privacy-callout h2 { font-size: clamp(48px, 5.6vw, 76px); }
.privacy-callout-copy { max-width: 400px; justify-self: end; }
.privacy-callout-copy p { margin: 0 0 28px; color: #66666c; font-size: 17px; line-height: 1.62; }
.privacy-actions { display: flex; flex-wrap: wrap; gap: 11px; }

footer { min-height: 240px; padding: 55px 5px 35px; display: grid; grid-template-columns: 1.2fr 1fr auto; align-items: start; gap: 25px 40px; border-top: 1px solid var(--line); }
footer > p { margin: 12px 0 0; color: var(--muted); font-size: 14px; }
.footer-links { display: flex; align-items: center; gap: 23px; margin-top: 12px; font-size: 13px; font-weight: 700; }
footer > small { grid-column: 1 / -1; align-self: end; color: #a1a1a6; font-size: 11px; }

.legal-page {
  min-height: 100vh;
  overflow: visible;
  padding: 0 24px 120px;
  background: #fff;
}

.legal-nav {
  width: min(720px, 100%);
  margin: 0 auto;
  padding: 32px 0;
  font-size: 14px;
  font-weight: 650;
}

.legal-document {
  width: min(720px, 100%);
  margin: 64px auto 0;
}

.legal-document h1 {
  margin: 0;
  font-size: clamp(46px, 7vw, 68px);
  line-height: 1;
  letter-spacing: -.055em;
}

.legal-document .effective-date {
  margin: 20px 0 48px;
  color: var(--muted);
}

.legal-document h2 {
  margin: 64px 0 20px;
  font-size: 30px;
  line-height: 1.15;
  letter-spacing: -.035em;
}

.legal-document h3 {
  margin: 34px 0 12px;
  font-size: 18px;
  line-height: 1.3;
  letter-spacing: -.015em;
}

.legal-document p,
.legal-document li,
.legal-document address {
  color: #4f4f55;
  font-size: 16px;
  line-height: 1.72;
}

.legal-document p { margin: 0 0 20px; }
.legal-document ul { margin: 0 0 24px; padding-left: 22px; }
.legal-document li + li { margin-top: 7px; }
.legal-document strong { color: var(--ink); }
.legal-document a { color: var(--ink); text-decoration: underline; text-underline-offset: 3px; }
.legal-document address { font-style: normal; }
.table-wrap { margin: 24px 0 28px; overflow-x: auto; }
.legal-document table { width: 100%; border-collapse: collapse; }
.legal-document th,
.legal-document td { padding: 14px 12px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; font-size: 14px; line-height: 1.55; }
.legal-document th { color: var(--ink); }
.legal-document td { color: #4f4f55; }
.legal-document th:first-child,
.legal-document td:first-child { width: 38%; }

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; text-align: center; margin-top: 40px; }
  .hero-copy { padding-bottom: 0; }
  .hero-actions { justify-content: center; }
  .hero-body { margin-left: auto; margin-right: auto; }
  .device-stage { min-height: 730px; }
  .device-shell { transform: rotate(2deg); }
  .note-one { left: 5%; }
  .note-two { right: 4%; }
  .story-card { grid-template-columns: 1fr; }
  .story-card-copy { text-align: center; padding: 65px 45px 35px; }
  .story-card-copy > p { margin-left: auto; margin-right: auto; }
  .story-phone-wrap { height: 590px; width: min(420px, 78%); }
  .skills-layout { grid-template-columns: 1fr; }
  .skills-list { min-height: auto; }
  .skills-preview { max-height: 760px; }
  .privacy-callout { grid-template-columns: 1fr; align-items: start; }
  .privacy-callout-copy { justify-self: start; }
}

@media (max-width: 560px) {
  .site-nav { width: min(100% - 28px, 1180px); height: 76px; }
  .wordmark-mark { width: 34px; height: 34px; border-radius: 11px; }
  .wordmark-icon { width: 34px; height: 34px; border-radius: 10px; }
  .wordmark span:last-child { display: none; }
  .nav-links { gap: 12px; }
  .nav-links > a:first-child { display: none; }
  .hero { width: min(100% - 28px, 1180px); min-height: auto; margin-top: 42px; gap: 15px; }
  h1 { font-size: clamp(72px, 24vw, 105px); }
  .hero-subtitle { font-size: 25px; }
  .hero-body { font-size: 16px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .button { justify-content: space-between; }
  .device-stage { min-height: 660px; margin: 5px -12px 0; }
  .device-shell { width: 290px; border-radius: 46px; padding: 8px; }
  .device-shell img { border-radius: 39px; }
  .device-island { top: 16px; width: 85px; height: 22px; }
  .floating-note { padding: 10px 12px; border-radius: 17px; }
  .floating-note small { max-width: 145px; }
  .note-one { top: 180px; left: -2px; }
  .note-two { bottom: 125px; right: -2px; }
  .story-section, .skills-section, .results-section { width: min(100% - 28px, 1180px); padding-top: 110px; }
  .section-heading { margin-bottom: 45px; }
  .section-heading h2 { font-size: 54px; }
  .section-heading > p:last-child { font-size: 16px; }
  .story-card { min-height: 780px; border-radius: 34px; }
  .story-card-copy { padding: 48px 24px 25px; }
  .story-card h3 { font-size: 48px; }
  .story-card-copy > p { font-size: 15px; }
  .story-phone-wrap { height: 460px; width: 84%; border-radius: 36px 36px 0 0; }
  .skills-section, .results-section { padding-top: 125px; }
  .skills-list { padding: 15px 20px; border-radius: 30px; }
  .skill-row { min-height: 88px; }
  .skill-row strong { font-size: 17px; }
  .skill-row small { font-size: 11px; }
  .skills-preview { border-radius: 30px; max-height: 610px; }
  .result-grid { grid-template-columns: 1fr; grid-template-rows: 510px 320px 320px auto; }
  .result-tall { grid-row: auto; }
  .result-quote { min-height: 350px; padding: 32px; }
  .privacy-callout { width: min(100% - 28px, 1180px); min-height: auto; margin-top: 115px; padding: 40px 27px; border-radius: 34px; gap: 35px; }
  .privacy-callout h2 { font-size: 45px; }
  .privacy-callout-copy p { font-size: 15px; }
  footer { width: min(100% - 28px, 1180px); grid-template-columns: 1fr; padding-top: 40px; }
  footer > p { margin-top: 0; }
  footer > small { grid-column: auto; }
  .legal-page { padding: 0 20px 80px; }
  .legal-nav { padding: 24px 0; }
  .legal-document { margin-top: 40px; }
  .legal-document h1 { font-size: 46px; }
  .legal-document h2 { margin-top: 52px; font-size: 27px; }
  .legal-document p, .legal-document li, .legal-document address { font-size: 15px; }
}

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