:root {
  --ink: #11100f;
  --muted: #7d7b78;
  --line: rgba(17, 16, 15, 0.11);
  --blue: #6da7e5;
  --blue-soft: #eaf4ff;
  --blue-pale: #f5f9ff;
  --cream: #fff8e9;
  --white: #ffffff;
  --coral: #ff8793;
  --shadow: 0 30px 80px rgba(31, 52, 73, 0.12);
  --rounded: ui-rounded, "SF Pro Rounded", "Arial Rounded MT Bold", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  overflow-x: clip;
  color: var(--ink);
  background: var(--white);
  font-family: var(--body);
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.22;
  z-index: 20;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.045'/%3E%3C/svg%3E");
}

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

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

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

.site-header {
  position: sticky;
  top: 14px;
  z-index: 30;
  width: min(1180px, calc(100% - 32px));
  height: 68px;
  margin: 14px auto -82px;
  padding: 0 12px 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid rgba(17, 16, 15, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(22px) saturate(150%);
  box-shadow: 0 12px 34px rgba(34, 48, 61, 0.07);
}

.brand {
  font-family: var(--rounded);
  font-size: 27px;
  font-weight: 900;
  letter-spacing: -1.7px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  font-family: var(--rounded);
  font-size: 14px;
  font-weight: 800;
}

.site-nav a:not(.nav-pill),
.footer-links a {
  color: rgba(17, 16, 15, 0.56);
  transition: color 180ms ease;
}

.site-nav a:hover,
.footer-links a:hover {
  color: var(--ink);
}

.nav-pill {
  padding: 14px 20px;
  border-radius: 999px;
  color: var(--white);
  background: var(--ink);
}

.hero {
  min-height: 900px;
  padding: 185px 0 100px;
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  align-items: center;
  gap: 40px;
}

.eyebrow {
  margin: 0 0 20px;
  color: #527eae;
  font-family: var(--rounded);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.status-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 8px;
  border-radius: 50%;
  background: #4ec47b;
  box-shadow: 0 0 0 5px rgba(78, 196, 123, 0.12);
}

h1,
h2,
h3 {
  font-family: var(--rounded);
}

h1 {
  max-width: 660px;
  margin: 0;
  font-size: clamp(64px, 7vw, 100px);
  line-height: 0.88;
  letter-spacing: -0.065em;
}

.hero-lede {
  max-width: 530px;
  margin: 34px 0 0;
  color: var(--muted);
  font-family: var(--rounded);
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 700;
  line-height: 1.5;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  min-height: 54px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-family: var(--rounded);
  font-weight: 900;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button-primary {
  border-color: transparent;
  background: var(--blue-soft);
  box-shadow: 0 16px 32px rgba(88, 145, 202, 0.16), inset 0 0 0 1px rgba(75, 123, 174, 0.12);
}

.button-primary:hover {
  background: #dceeff;
  box-shadow: 0 20px 38px rgba(88, 145, 202, 0.22), inset 0 0 0 1px rgba(75, 123, 174, 0.12);
}

.button-quiet {
  color: rgba(17, 16, 15, 0.62);
  background: rgba(255, 255, 255, 0.78);
}

.signal-list {
  margin: 30px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  color: rgba(17, 16, 15, 0.38);
  font-family: var(--rounded);
  font-size: 12px;
  font-weight: 800;
  list-style: none;
}

.signal-list li::before {
  content: "•";
  margin-right: 8px;
  color: var(--blue);
}

.hero-art {
  position: relative;
  min-height: 640px;
}

.soft-orbit {
  position: absolute;
  border-radius: 50%;
  filter: blur(1px);
}

.orbit-one {
  width: 570px;
  height: 570px;
  right: 0;
  top: 28px;
  background: var(--blue-pale);
}

.orbit-two {
  width: 270px;
  height: 270px;
  left: 40px;
  bottom: 5px;
  border: 1px solid rgba(109, 167, 229, 0.32);
}

.phone {
  position: absolute;
  margin: 0;
  overflow: hidden;
  border: 8px solid var(--ink);
  border-radius: 50px;
  background: var(--white);
  box-shadow: var(--shadow);
}

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

.phone-front {
  width: 274px;
  height: 596px;
  left: 90px;
  top: 34px;
  z-index: 4;
  transform: rotate(-3deg);
}

.phone-back {
  width: 240px;
  height: 522px;
  right: 20px;
  top: 90px;
  z-index: 2;
  transform: rotate(5deg);
  opacity: 0.94;
}

.floating-note {
  position: absolute;
  z-index: 6;
  min-width: 202px;
  padding: 12px 16px 12px 12px;
  display: flex;
  align-items: center;
  gap: 11px;
  border: 1px solid rgba(17, 16, 15, 0.08);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 36px rgba(28, 52, 76, 0.12);
}

.note-top {
  right: 2px;
  top: 55px;
}

.note-bottom {
  right: 0;
  bottom: 50px;
}

.note-icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--blue-soft);
  font-family: var(--rounded);
  font-weight: 900;
}

.floating-note strong,
.floating-note small {
  display: block;
  font-family: var(--rounded);
}

.floating-note strong {
  font-size: 13px;
}

.floating-note small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
}

.quiet-strip {
  color: var(--white);
  background: var(--ink);
}

.strip-content {
  min-height: 150px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.strip-content p {
  margin: 0;
  font-family: var(--rounded);
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 900;
  letter-spacing: -0.04em;
}

.strip-content span {
  max-width: 460px;
  color: rgba(255, 255, 255, 0.58);
  font-family: var(--rounded);
  font-weight: 700;
  line-height: 1.5;
}

.section {
  padding-top: 130px;
  padding-bottom: 130px;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 58px;
}

.section-heading.compact {
  max-width: 810px;
}

.section-heading h2,
.reminder-panel h2,
.final-cta h2 {
  margin: 0;
  font-size: clamp(48px, 6vw, 78px);
  line-height: 0.94;
  letter-spacing: -0.06em;
}

.section-heading > p:last-child {
  max-width: 620px;
  margin: 26px 0 0;
  color: var(--muted);
  font-family: var(--rounded);
  font-size: 19px;
  font-weight: 700;
  line-height: 1.5;
}

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

.feature-card {
  min-height: 410px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 38px;
}

.feature-number {
  align-self: flex-end;
  color: rgba(17, 16, 15, 0.34);
  font-family: var(--rounded);
  font-size: 12px;
  font-weight: 900;
}

.feature-symbol {
  width: 78px;
  height: 78px;
  margin-top: auto;
  display: grid;
  place-items: center;
  border: 4px solid currentColor;
  border-radius: 50%;
  font-family: var(--rounded);
  font-size: 36px;
  font-weight: 900;
}

.feature-card h3 {
  margin: 24px 0 8px;
  font-size: 30px;
  letter-spacing: -0.04em;
}

.feature-card p {
  margin: 0;
  color: rgba(17, 16, 15, 0.55);
  font-family: var(--rounded);
  font-weight: 700;
  line-height: 1.55;
}

.blue-card {
  background: var(--blue-soft);
}

.cream-card {
  background: var(--cream);
}

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

.ink-card .feature-number,
.ink-card p {
  color: rgba(255, 255, 255, 0.55);
}

.screens-section {
  padding: 130px 0;
  overflow: hidden;
  background: #f4f7fa;
}

.screens-grid {
  display: grid;
  grid-template-columns: 0.9fr 0.9fr 1.05fr;
  align-items: center;
  gap: 28px;
}

.screen-card {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 7px solid var(--ink);
  border-radius: 50px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.screen-card-tall {
  height: 660px;
  transform: rotate(-2deg);
}

.screen-card-short {
  height: 570px;
  transform: rotate(2deg);
}

.screens-copy {
  padding-left: 24px;
}

.mini-mascot {
  width: 130px;
  height: 130px;
  object-fit: contain;
}

.screens-copy h3 {
  margin: 24px 0 14px;
  font-size: 38px;
  letter-spacing: -0.045em;
}

.screens-copy p {
  margin: 0;
  color: var(--muted);
  font-family: var(--rounded);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.55;
}

.tiny-facts {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tiny-facts span {
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  font-family: var(--rounded);
  font-size: 11px;
  font-weight: 900;
}

.reminder-panel {
  position: relative;
  min-height: 510px;
  padding: 58px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-content: center;
  gap: 50px;
  border-radius: 54px;
  color: var(--white);
  background: var(--ink);
}

.eyebrow.light {
  color: #9dc8f5;
}

.reminder-copy {
  position: relative;
  z-index: 2;
  align-self: center;
}

.reminder-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-family: var(--rounded);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.6;
}

.reminder-copy .reminder-cap {
  margin-top: 26px;
  color: rgba(255, 255, 255, 0.46);
}

.reminder-copy strong {
  color: var(--white);
}

.reminder-bubbles {
  position: absolute;
  right: -14px;
  bottom: -30px;
  display: flex;
  gap: 10px;
  opacity: 0.13;
}

.reminder-bubbles span {
  width: 110px;
  height: 110px;
  display: grid;
  place-items: center;
  border: 4px solid var(--white);
  border-radius: 50%;
  font-family: var(--rounded);
  font-size: 25px;
  font-weight: 900;
}

.faq-section {
  padding-top: 20px;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--line);
}

.faq-item {
  min-height: 200px;
  padding: 34px 34px 34px 0;
  border-bottom: 1px solid var(--line);
}

.faq-item:nth-child(odd) {
  padding-right: 60px;
  border-right: 1px solid var(--line);
}

.faq-item:nth-child(even) {
  padding-left: 60px;
}

.faq-item h3 {
  margin: 0 0 12px;
  font-size: 24px;
  letter-spacing: -0.03em;
}

.faq-item p {
  margin: 0;
  color: var(--muted);
  font-family: var(--rounded);
  font-weight: 700;
  line-height: 1.55;
}

.final-cta {
  margin-bottom: 90px;
  padding: 100px 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border-radius: 54px;
  background: var(--blue-pale);
}

.final-cta img {
  width: 130px;
  height: 130px;
  margin-bottom: 24px;
  object-fit: contain;
}

.final-cta .button {
  margin-top: 34px;
  background: var(--white);
}

.site-footer {
  min-height: 130px;
  padding: 32px 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 30px;
  border-top: 1px solid var(--line);
}

.footer-links {
  display: flex;
  gap: 24px;
  font-family: var(--rounded);
  font-size: 13px;
  font-weight: 800;
}

.site-footer > p {
  justify-self: end;
  margin: 0;
  color: rgba(17, 16, 15, 0.38);
  font-family: var(--rounded);
  font-size: 12px;
  font-weight: 700;
}

/* Legal and support pages */
.inner-page {
  background: #f8fafc;
}

.inner-page .site-header {
  margin-bottom: 0;
}

.legal-shell {
  width: min(920px, calc(100% - 40px));
  margin: 0 auto;
  padding: 160px 0 110px;
}

.legal-hero {
  margin-bottom: 38px;
  padding: 58px;
  border: 1px solid var(--line);
  border-radius: 44px;
  background: var(--white);
  box-shadow: 0 24px 70px rgba(34, 57, 79, 0.06);
}

.legal-hero h1 {
  max-width: 780px;
  font-size: clamp(54px, 8vw, 84px);
}

.legal-intro {
  max-width: 700px;
  margin: 28px 0 0;
  color: var(--muted);
  font-family: var(--rounded);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.6;
}

.effective-date {
  margin: 24px 0 0;
  color: rgba(17, 16, 15, 0.38);
  font-family: var(--rounded);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.legal-card {
  padding: 20px 58px 58px;
  border: 1px solid var(--line);
  border-radius: 44px;
  background: var(--white);
}

.legal-section {
  padding: 38px 0;
  border-bottom: 1px solid var(--line);
}

.legal-section:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.legal-section h2 {
  margin: 0 0 15px;
  font-size: 27px;
  letter-spacing: -0.035em;
}

.legal-section h3 {
  margin: 24px 0 8px;
  font-size: 18px;
}

.legal-section p,
.legal-section li {
  color: #676562;
  font-family: var(--rounded);
  font-size: 15px;
  font-weight: 650;
  line-height: 1.7;
}

.legal-section p {
  margin: 0 0 14px;
}

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

.legal-section ul,
.legal-section ol {
  margin: 14px 0 0;
  padding-left: 22px;
}

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

.legal-section a,
.support-card a:not(.button) {
  color: #3c73aa;
  text-decoration: underline;
  text-decoration-color: rgba(60, 115, 170, 0.3);
  text-underline-offset: 3px;
}

.callout {
  margin: 18px 0;
  padding: 22px;
  border-radius: 24px;
  color: #3d5b79;
  background: var(--blue-pale);
}

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

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

.support-card.wide {
  grid-column: 1 / -1;
}

.support-card h2,
.support-card h3 {
  margin: 0 0 12px;
  font-size: 24px;
  letter-spacing: -0.035em;
}

.support-card p {
  margin: 0;
  color: var(--muted);
  font-family: var(--rounded);
  font-weight: 700;
  line-height: 1.55;
}

.support-card p + p {
  margin-top: 10px;
}

.support-card .button {
  margin-top: 22px;
}

.support-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.not-found {
  min-height: 78vh;
  display: grid;
  place-items: center;
  text-align: center;
}

.not-found img {
  width: 150px;
  margin: 0 auto 28px;
}

.not-found h1 {
  font-size: clamp(58px, 10vw, 100px);
}

.not-found p {
  color: var(--muted);
  font-family: var(--rounded);
  font-weight: 700;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

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

@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
    padding-top: 180px;
  }

  .hero-copy {
    text-align: center;
  }

  .hero-copy .hero-lede {
    margin-inline: auto;
  }

  .hero-actions,
  .signal-list {
    justify-content: center;
  }

  .hero-art {
    width: min(680px, 100%);
    margin-inline: auto;
  }

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

  .feature-card {
    min-height: 340px;
  }

  .screens-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .screens-copy {
    grid-column: 1 / -1;
    max-width: 620px;
    padding: 30px 0 0;
  }

  .reminder-panel {
    grid-template-columns: 1fr;
  }

  .site-footer {
    grid-template-columns: 1fr auto;
  }

  .site-footer > p {
    grid-column: 1 / -1;
    justify-self: start;
  }
}

@media (max-width: 700px) {
  .page-width {
    width: min(100% - 28px, 1180px);
  }

  .site-header {
    top: 8px;
    width: calc(100% - 16px);
    height: 60px;
    margin-top: 8px;
    padding-left: 18px;
  }

  .brand {
    font-size: 24px;
  }

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

  .site-nav a:first-child {
    display: none;
  }

  .nav-pill {
    padding: 11px 15px;
  }

  .hero {
    min-height: auto;
    padding: 150px 0 80px;
  }

  h1 {
    font-size: clamp(56px, 16vw, 78px);
  }

  .hero-lede {
    font-size: 17px;
  }

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

  .orbit-one {
    width: 420px;
    height: 420px;
    top: 70px;
    right: -80px;
  }

  .phone-front {
    width: 230px;
    height: 500px;
    left: calc(50% - 145px);
    top: 20px;
  }

  .phone-back {
    width: 190px;
    height: 414px;
    right: calc(50% - 185px);
    top: 78px;
  }

  .floating-note {
    min-width: 175px;
    padding-right: 12px;
  }

  .note-top {
    right: -4px;
    top: 14px;
  }

  .note-bottom {
    right: 0;
    bottom: 20px;
  }

  .strip-content {
    padding: 38px 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .section,
  .screens-section {
    padding-top: 90px;
    padding-bottom: 90px;
  }

  .section-heading h2,
  .reminder-panel h2,
  .final-cta h2 {
    font-size: clamp(44px, 13vw, 62px);
  }

  .screens-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .screen-card {
    border-width: 4px;
    border-radius: 30px;
  }

  .screen-card-tall,
  .screen-card-short {
    height: 430px;
  }

  .reminder-panel {
    min-height: 630px;
    padding: 38px 28px;
    border-radius: 38px;
  }

  .reminder-bubbles span {
    width: 85px;
    height: 85px;
    font-size: 18px;
  }

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

  .faq-item:nth-child(odd),
  .faq-item:nth-child(even) {
    padding: 28px 0;
    border-right: 0;
  }

  .final-cta {
    padding: 78px 20px;
    border-radius: 38px;
  }

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

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

  .site-footer > p {
    grid-column: auto;
  }

  .legal-shell {
    width: calc(100% - 20px);
    padding-top: 130px;
  }

  .legal-hero,
  .legal-card {
    padding: 34px 24px;
    border-radius: 32px;
  }

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

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

  .support-card.wide {
    grid-column: auto;
  }
}

@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;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
