:root {
  --ink: #090d18;
  --ink-soft: #121827;
  --paper: #f4f2ea;
  --paper-deep: #ebe7dc;
  --white: #fffdf7;
  --text: #131722;
  --muted: #656a75;
  --line: rgba(15, 20, 31, 0.14);
  --blue: #17b9ee;
  --blue-deep: #087dbc;
  --indigo: #5665ef;
  --yellow: #ffc12f;
  --orange: #ff7a1a;
  --coral: #ff6b61;
  --radius-lg: 36px;
  --radius-md: 24px;
  --shadow-phone: 0 40px 90px rgba(0, 0, 0, 0.48), 0 8px 20px rgba(0, 0, 0, 0.32);
  --font-sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-mono: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--text);
  background: var(--paper);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
}

::selection {
  color: var(--ink);
  background: var(--yellow);
}

:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 14px;
  border-radius: 10px;
  color: var(--ink);
  background: var(--yellow);
  font-weight: 800;
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

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

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

.section {
  padding: 128px 0;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  padding: 18px 0;
  color: var(--white);
  transition: padding 220ms ease, background-color 220ms ease, box-shadow 220ms ease;
}

.site-header.is-scrolled {
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(9, 13, 24, 0.84);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.18);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1240px, calc(100% - 48px));
  margin-inline: auto;
}

.brand {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  color: inherit;
  font-size: 18px;
  font-weight: 650;
  letter-spacing: -0.025em;
  text-decoration: none;
}

.brand img {
  width: 44px;
  height: 44px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 13px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.brand strong {
  color: var(--yellow);
  font-weight: 800;
}

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

.site-nav a {
  position: relative;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  font-weight: 650;
  text-decoration: none;
  transition: color 180ms ease;
}

.site-nav > a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: -5px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 200ms ease;
}

.site-nav > a:not(.nav-cta):hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.site-nav a:hover {
  color: var(--white);
}

.site-nav .nav-cta {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  padding: 11px 17px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  transition: color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.site-nav .nav-cta:hover {
  color: var(--ink);
  background: var(--yellow);
  transform: translateY(-2px);
}

.nav-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: 920px;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 76% 34%, rgba(62, 102, 244, 0.24), transparent 24%),
    radial-gradient(circle at 91% 75%, rgba(21, 184, 238, 0.12), transparent 22%),
    var(--ink);
}

.hero::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 72px 72px;
  content: "";
  -webkit-mask-image: radial-gradient(circle at 80% 45%, black, transparent 70%);
  mask-image: radial-gradient(circle at 80% 45%, black, transparent 70%);
}

.hero-noise {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.17;
  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='.88' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.18'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 30px;
  align-items: center;
  min-height: 850px;
  padding-top: 110px;
  padding-bottom: 68px;
}

.hero-copy {
  position: relative;
  z-index: 5;
  padding-top: 10px;
}

.eyebrow,
.kicker {
  margin: 0 0 24px;
  color: var(--indigo);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  gap: 10px;
  align-items: center;
  color: rgba(255, 255, 255, 0.68);
}

.eyebrow span {
  width: 30px;
  height: 2px;
  background: var(--yellow);
}

.hero h1 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(58px, 6.2vw, 100px);
  font-weight: 830;
  letter-spacing: -0.07em;
  line-height: 0.93;
}

.hero h1 em {
  color: var(--yellow);
  font-style: normal;
  white-space: nowrap;
}

.hero-lede {
  max-width: 570px;
  margin: 34px 0 0;
  color: rgba(255, 255, 255, 0.67);
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.7;
}

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

.play-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 64px;
  border-radius: 12px;
  transition: transform 180ms ease, filter 180ms ease;
}

.play-badge img {
  width: 194px;
  height: 75px;
  object-fit: contain;
}

.play-badge:hover {
  filter: brightness(1.08);
  transform: translateY(-3px);
}

.text-link {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  color: rgba(255, 255, 255, 0.84);
  font-size: 14px;
  font-weight: 750;
  text-decoration: none;
}

.text-link span {
  transition: transform 180ms ease;
}

.text-link:hover span {
  transform: translateY(3px);
}

.hero-facts {
  display: flex;
  gap: 22px;
  align-items: center;
  margin: 24px 0 0;
  padding: 0;
  color: rgba(255, 255, 255, 0.48);
  font-size: 12px;
  list-style: none;
}

.hero-facts li {
  display: flex;
  gap: 7px;
  align-items: center;
}

.fact-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
}

.fact-blue { background: var(--blue); }
.fact-yellow { background: var(--yellow); }
.fact-coral { background: var(--coral); }

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

.hero-art::before {
  position: absolute;
  top: 16%;
  left: 3%;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--indigo), var(--blue));
  box-shadow: 0 0 100px rgba(56, 105, 241, 0.24);
  content: "";
}

.hero-orbit {
  position: absolute;
  z-index: 0;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
}

.orbit-one {
  top: 6%;
  left: -8%;
  width: 690px;
  height: 690px;
}

.orbit-two {
  top: 19%;
  left: 5%;
  width: 500px;
  height: 500px;
  border-style: dashed;
  opacity: 0.7;
}

.spark {
  position: absolute;
  z-index: 6;
  color: var(--yellow);
  font-size: 28px;
  text-shadow: 0 0 25px rgba(255, 193, 47, 0.55);
  animation: twinkle 3.2s ease-in-out infinite;
}

.spark-one { top: 18%; left: 4%; }
.spark-two { right: 2%; bottom: 21%; animation-delay: -1.4s; }

@keyframes twinkle {
  0%, 100% { opacity: 0.4; transform: scale(0.75) rotate(0); }
  50% { opacity: 1; transform: scale(1.1) rotate(18deg); }
}

.device {
  position: absolute;
  z-index: 3;
  overflow: hidden;
  margin: 0;
  border: 9px solid #050609;
  border-radius: 48px;
  background: #000;
  box-shadow: var(--shadow-phone);
}

.device::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 38px;
  pointer-events: none;
  content: "";
}

.device-speaker {
  position: absolute;
  top: 10px;
  left: 50%;
  z-index: 4;
  width: 58px;
  height: 5px;
  border-radius: 99px;
  background: #0d0f14;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.07);
  transform: translateX(-50%);
}

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

.device-main {
  top: 52px;
  left: 190px;
  width: 306px;
  aspect-ratio: 720 / 1605;
  transform: rotate(5deg);
}

.device-side {
  top: 170px;
  left: 26px;
  width: 226px;
  aspect-ratio: 720 / 1605;
  opacity: 0.88;
  filter: saturate(0.9) brightness(0.86);
  transform: rotate(-8deg);
}

.app-medallion {
  position: absolute;
  top: 84px;
  right: -2px;
  z-index: 7;
  display: grid;
  width: 138px;
  height: 138px;
  border: 7px solid var(--ink);
  border-radius: 36px;
  background: var(--yellow);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.35);
  place-items: center;
  transform: rotate(7deg);
}

.app-medallion img {
  width: 100%;
  height: 100%;
  border-radius: 27px;
}

.floating-note {
  position: absolute;
  z-index: 8;
  display: flex;
  gap: 12px;
  align-items: center;
  min-width: 178px;
  padding: 12px 15px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 17px;
  color: var(--white);
  background: rgba(9, 13, 24, 0.77);
  box-shadow: 0 20px 38px rgba(0, 0, 0, 0.28);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}

.floating-note .mini-icon {
  display: grid;
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  border-radius: 12px;
  color: var(--ink);
  background: var(--yellow);
  font-size: 25px;
  font-weight: 850;
  line-height: 1;
  place-items: center;
}

.floating-note .heart {
  color: var(--white);
  background: var(--coral);
  font-size: 17px;
}

.floating-note b,
.floating-note small {
  display: block;
  line-height: 1.35;
}

.floating-note b { font-size: 13px; }
.floating-note small { color: rgba(255, 255, 255, 0.5); font-size: 10px; }

.note-search { top: 445px; right: -34px; }
.note-save { bottom: 74px; left: -18px; }

.hero-ticker {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 9;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: var(--yellow);
  color: var(--ink);
  transform: rotate(-1deg) scale(1.02);
}

.hero-ticker > div {
  display: flex;
  width: max-content;
  animation: ticker 26s linear infinite;
}

.hero-ticker span,
.hero-ticker i {
  display: block;
  padding: 13px 18px;
  font-size: 13px;
  font-style: normal;
  font-weight: 900;
  letter-spacing: 0.15em;
}

.hero-ticker i {
  color: var(--blue-deep);
}

@keyframes ticker {
  to { transform: translateX(-50%); }
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(260px, 0.62fr);
  gap: 64px;
  align-items: end;
  margin-bottom: 68px;
}

.section-heading h2,
.principles-copy h2,
.faq-intro h2,
.closing-inner h2,
.preview-copy h2 {
  margin: 0;
  font-size: clamp(42px, 5.2vw, 72px);
  font-weight: 820;
  letter-spacing: -0.065em;
  line-height: 0.99;
}

.section-heading p:last-child {
  margin: 0 0 6px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.feature-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 20px;
}

.feature-card {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
}

.feature-card .feature-copy {
  position: relative;
  z-index: 3;
  padding: 38px;
}

.feature-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 26px;
  margin-bottom: 40px;
  border: 1px solid currentColor;
  border-radius: 999px;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 800;
}

.feature-card h3 {
  margin: 0 0 12px;
  font-size: clamp(30px, 3vw, 44px);
  letter-spacing: -0.055em;
  line-height: 1.02;
}

.feature-card p {
  max-width: 430px;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
}

.feature-search {
  min-height: 410px;
  color: var(--white);
  background:
    radial-gradient(circle at 87% 30%, rgba(23, 185, 238, 0.26), transparent 24%),
    var(--ink-soft);
}

.feature-search .feature-copy {
  max-width: 62%;
}

.feature-search .feature-number,
.feature-search p {
  color: rgba(255, 255, 255, 0.58);
}

.search-demo {
  position: absolute;
  right: -24px;
  bottom: 54px;
  width: 48%;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 26px 0 0 26px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25);
  transform: rotate(-3deg);
}

.search-field {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  border-radius: 16px;
  color: #777b86;
  background: var(--white);
  font-size: 13px;
}

.search-field b {
  color: var(--ink);
  font-size: 25px;
  line-height: 1;
}

.search-chips {
  display: flex;
  gap: 7px;
  margin-top: 12px;
}

.search-chips span {
  padding: 7px 11px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.08);
  font-size: 10px;
  font-weight: 700;
}

.feature-picks {
  color: var(--white);
  background: var(--indigo);
}

.feature-picks .feature-copy {
  position: absolute;
  inset: auto 0 0;
  padding-top: 90px;
  background: linear-gradient(transparent, rgba(10, 12, 23, 0.95) 52%);
}

.feature-picks .feature-number,
.feature-picks p {
  color: rgba(255, 255, 255, 0.65);
}

.poster-peek {
  position: absolute;
  inset: -25% 0 auto;
  height: 118%;
}

.poster-peek::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 12, 23, 0.05), rgba(10, 12, 23, 0.5));
  content: "";
}

.poster-peek img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 10%;
  filter: saturate(0.92);
}

.feature-favorite {
  min-height: 420px;
  color: var(--ink);
  background: var(--coral);
}

.feature-favorite .feature-copy {
  position: absolute;
  inset: auto 0 0;
}

.feature-favorite .feature-number,
.feature-favorite p {
  color: rgba(9, 13, 24, 0.64);
}

.favorite-orb {
  position: absolute;
  top: 36px;
  right: 52px;
  display: grid;
  width: 168px;
  height: 168px;
  border: 2px solid rgba(9, 13, 24, 0.16);
  border-radius: 50%;
  background: var(--paper);
  box-shadow: 0 20px 0 rgba(9, 13, 24, 0.13);
  place-items: center;
}

.favorite-orb::before,
.favorite-orb::after {
  position: absolute;
  width: 168px;
  height: 168px;
  border: 1px solid rgba(9, 13, 24, 0.16);
  border-radius: 50%;
  content: "";
}

.favorite-orb::before { transform: scale(1.26); }
.favorite-orb::after { transform: scale(1.52); }

.favorite-orb span {
  color: var(--coral);
  font-size: 65px;
  line-height: 1;
}

.feature-details {
  min-height: 420px;
  background: var(--yellow);
}

.feature-details .feature-copy {
  max-width: 62%;
}

.feature-details .feature-number,
.feature-details p {
  color: rgba(9, 13, 24, 0.62);
}

.rating-demo {
  position: absolute;
  top: 50%;
  right: 34px;
  display: grid;
  gap: 10px;
  width: 31%;
  transform: translateY(-50%);
}

.rating-demo div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 18px;
  border: 1px solid rgba(9, 13, 24, 0.14);
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.5);
  box-shadow: 0 8px 0 rgba(9, 13, 24, 0.08);
  transform: rotate(2deg);
}

.rating-demo div:nth-child(2) { transform: translateX(-13px) rotate(-2deg); }
.rating-demo div:nth-child(3) { transform: rotate(1deg); }

.rating-demo b {
  font-size: 22px;
  letter-spacing: -0.04em;
}

.rating-demo span {
  color: rgba(9, 13, 24, 0.55);
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.preview-shell {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  min-height: 820px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 44px;
  background: #101625;
}

.preview-copy {
  position: relative;
  z-index: 3;
  padding: 72px 56px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.kicker-light {
  color: var(--blue);
}

.preview-copy h2 {
  font-size: clamp(44px, 4.6vw, 67px);
}

.preview-copy > p:not(.kicker) {
  min-height: 84px;
  margin: 28px 0 48px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 16px;
  line-height: 1.75;
}

.preview-tabs {
  display: grid;
}

.preview-tab {
  display: grid;
  grid-template-columns: 32px 1fr auto;
  gap: 15px;
  align-items: center;
  width: 100%;
  padding: 17px 0;
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.11);
  color: rgba(255, 255, 255, 0.4);
  background: transparent;
  text-align: left;
  cursor: pointer;
  transition: color 180ms ease, padding 180ms ease;
}

.preview-tab:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
}

.preview-tab span {
  font-family: var(--font-mono);
  font-size: 10px;
}

.preview-tab b {
  font-size: 17px;
}

.preview-tab i {
  font-style: normal;
  opacity: 0;
  transform: translateX(-10px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.preview-tab:hover,
.preview-tab.is-active {
  padding-left: 10px;
  color: var(--white);
}

.preview-tab.is-active span {
  color: var(--yellow);
}

.preview-tab.is-active i {
  opacity: 1;
  transform: translateX(0);
}

.preview-visual {
  position: relative;
  min-width: 0;
  overflow: hidden;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    radial-gradient(circle at 52% 45%, rgba(23, 185, 238, 0.18), transparent 38%),
    #0c111e;
  background-size: 64px 64px, 64px 64px, auto, auto;
}

.preview-halo {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 570px;
  height: 570px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--indigo), var(--blue));
  box-shadow: 0 0 80px rgba(51, 111, 244, 0.26);
  transform: translate(-50%, -50%);
}

.preview-halo::before,
.preview-halo::after {
  position: absolute;
  inset: -55px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  content: "";
}

.preview-halo::after {
  inset: -120px;
  border-style: dashed;
}

.preview-device {
  top: 62px;
  left: 50%;
  width: 326px;
  aspect-ratio: 720 / 1605;
  transform: translateX(-50%) rotate(2deg);
}

.preview-device img {
  transition: opacity 140ms ease, transform 140ms ease;
}

.preview-device img.is-changing {
  opacity: 0;
  transform: scale(0.985);
}

.preview-caption {
  position: absolute;
  right: 32px;
  bottom: 34px;
  z-index: 5;
  display: grid;
  gap: 3px;
  padding: 14px 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 16px;
  background: rgba(9, 13, 24, 0.72);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}

.preview-caption span {
  color: var(--yellow);
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.preview-caption strong {
  font-size: 13px;
}

.principles {
  background: var(--paper-deep);
}

.principles-card {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr) 0.72fr;
  gap: 54px;
  align-items: center;
  padding: 70px;
  border: 1px solid rgba(9, 13, 24, 0.1);
  border-radius: 44px;
  background: var(--white);
  box-shadow: 0 26px 80px rgba(9, 13, 24, 0.07);
}

.principles-mark {
  display: grid;
  width: 166px;
  height: 166px;
  border-radius: 50%;
  color: var(--ink);
  background: var(--yellow);
  box-shadow: 0 20px 0 rgba(9, 13, 24, 0.09);
  place-items: center;
}

.principles-mark svg {
  width: 70px;
}

.principles-copy h2 {
  font-size: clamp(38px, 4vw, 60px);
}

.principles-copy > p:last-child {
  max-width: 620px;
  margin: 24px 0 0;
  color: var(--muted);
}

.principles-links {
  display: grid;
}

.principles-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 2px;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
  font-weight: 750;
  text-decoration: none;
}

.principles-links a:first-child {
  border-top: 1px solid var(--line);
}

.principles-links i {
  display: grid;
  width: 29px;
  height: 29px;
  border-radius: 50%;
  background: var(--paper);
  font-style: normal;
  place-items: center;
  transition: color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.principles-links a:hover i {
  color: var(--white);
  background: var(--indigo);
  transform: translate(2px, -2px);
}

.faq {
  background: var(--paper);
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 100px;
}

.faq-intro {
  position: sticky;
  top: 130px;
  align-self: start;
}

.faq-intro h2 {
  max-width: 420px;
}

.faq-intro > p:last-child {
  margin: 28px 0 0;
  color: var(--muted);
}

.faq-intro a {
  color: var(--indigo);
  font-weight: 700;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
  padding: 27px 0;
  font-size: 18px;
  font-weight: 750;
  letter-spacing: -0.025em;
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary span {
  position: relative;
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.faq-list summary span::before,
.faq-list summary span::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 1px;
  background: currentColor;
  content: "";
  transform: translate(-50%, -50%);
  transition: transform 180ms ease;
}

.faq-list summary span::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-list details[open] summary span::after {
  transform: translate(-50%, -50%) rotate(0);
}

.faq-list details > p {
  max-width: 660px;
  margin: -5px 50px 27px 0;
  color: var(--muted);
  line-height: 1.8;
}

.faq-list details a {
  color: var(--indigo);
  font-weight: 700;
}

.closing-cta {
  position: relative;
  overflow: hidden;
  padding: 126px 0 116px;
  color: var(--white);
  background: var(--indigo);
  text-align: center;
}

.closing-cta::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 64px 64px;
  content: "";
  -webkit-mask-image: radial-gradient(circle, black, transparent 72%);
  mask-image: radial-gradient(circle, black, transparent 72%);
}

.closing-inner {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.closing-inner > img {
  width: 104px;
  height: 104px;
  margin-bottom: 32px;
  border: 5px solid var(--ink);
  border-radius: 29px;
  box-shadow: 0 18px 0 rgba(9, 13, 24, 0.18);
  transform: rotate(-5deg);
}

.closing-inner .kicker {
  color: rgba(255, 255, 255, 0.64);
}

.closing-inner h2 {
  margin-bottom: 30px;
  font-size: clamp(54px, 7.5vw, 104px);
  line-height: 0.9;
}

.closing-orb {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 50%;
}

.orb-left {
  top: -240px;
  left: -210px;
  width: 570px;
  height: 570px;
  box-shadow: inset 0 0 80px rgba(23, 185, 238, 0.12);
}

.orb-right {
  right: -180px;
  bottom: -270px;
  width: 660px;
  height: 660px;
  border-style: dashed;
}

.site-footer {
  padding: 68px 0 30px;
  color: var(--white);
  background: var(--ink);
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 40px;
  align-items: center;
  padding-bottom: 58px;
}

.footer-brand img {
  width: 48px;
  height: 48px;
}

.footer-top > p {
  max-width: 350px;
  margin: 0;
  color: rgba(255, 255, 255, 0.48);
  font-size: 13px;
}

.footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  font-weight: 650;
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--yellow);
}

.footer-bottom {
  display: flex;
  gap: 30px;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.34);
  font-size: 10px;
}

.js [data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms cubic-bezier(0.2, 0.65, 0.25, 1), transform 700ms cubic-bezier(0.2, 0.65, 0.25, 1);
}

.js [data-reveal][data-delay="1"] {
  transition-delay: 130ms;
}

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

/* Legal pages */
.legal-page {
  background: var(--paper);
}

.legal-page .site-header:not(.is-scrolled) {
  background: transparent;
}

.legal-hero {
  position: relative;
  overflow: hidden;
  padding: 174px 0 90px;
  color: var(--white);
  background:
    radial-gradient(circle at 82% 28%, rgba(23, 185, 238, 0.18), transparent 25%),
    var(--ink);
}

.legal-hero::before {
  position: absolute;
  top: -200px;
  right: -120px;
  width: 620px;
  height: 620px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  box-shadow: 0 0 0 80px rgba(255, 255, 255, 0.018), 0 0 0 160px rgba(255, 255, 255, 0.012);
  content: "";
}

.legal-hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: end;
}

.legal-hero h1 {
  max-width: 850px;
  margin: 0;
  font-size: clamp(58px, 8vw, 108px);
  font-weight: 840;
  letter-spacing: -0.075em;
  line-height: 0.9;
}

.legal-meta {
  min-width: 200px;
  padding: 18px 0 3px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.54);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  line-height: 1.8;
  text-transform: uppercase;
}

.legal-summary {
  margin-top: -1px;
  color: var(--ink);
  background: var(--yellow);
}

.legal-summary-inner {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 80px;
  padding-top: 42px;
  padding-bottom: 42px;
}

.legal-summary h2 {
  margin: 0;
  font-size: 24px;
  letter-spacing: -0.04em;
}

.legal-summary p {
  margin: 0;
  font-size: 15px;
  line-height: 1.75;
}

.legal-main {
  padding: 88px 0 120px;
}

.legal-layout {
  display: grid;
  grid-template-columns: 245px minmax(0, 760px);
  gap: 92px;
  justify-content: center;
}

.legal-toc {
  position: sticky;
  top: 108px;
  align-self: start;
  padding: 24px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.legal-toc p {
  margin: 0 0 15px;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.legal-toc nav {
  display: grid;
  gap: 9px;
}

.legal-toc a {
  color: #555b66;
  font-size: 12px;
  font-weight: 650;
  line-height: 1.35;
  text-decoration: none;
}

.legal-toc a:hover {
  color: var(--indigo);
}

.legal-content {
  min-width: 0;
}

.legal-intro {
  margin: 0 0 68px;
  color: #343944;
  font-size: clamp(20px, 2.3vw, 27px);
  font-weight: 520;
  letter-spacing: -0.025em;
  line-height: 1.5;
}

.legal-content section {
  margin: 0 0 64px;
  scroll-margin-top: 115px;
}

.legal-content h2 {
  display: flex;
  gap: 16px;
  align-items: baseline;
  margin: 0 0 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
  font-size: 28px;
  letter-spacing: -0.045em;
  line-height: 1.2;
}

.legal-content h2 span {
  color: var(--indigo);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
}

.legal-content h3 {
  margin: 30px 0 10px;
  font-size: 17px;
  letter-spacing: -0.02em;
}

.legal-content p,
.legal-content li {
  color: #555b66;
  font-size: 15px;
  line-height: 1.85;
}

.legal-content p {
  margin: 0 0 16px;
}

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

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

.legal-content a {
  color: var(--indigo);
  font-weight: 700;
}

.legal-content strong {
  color: #2a2f39;
}

.legal-callout {
  margin: 28px 0;
  padding: 24px 26px;
  border-left: 4px solid var(--indigo);
  border-radius: 0 17px 17px 0;
  background: rgba(86, 101, 239, 0.07);
}

.legal-callout.warning {
  border-left-color: var(--orange);
  background: rgba(255, 122, 26, 0.08);
}

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

.data-table-wrap {
  overflow-x: auto;
  margin: 26px 0 32px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
}

.data-table {
  width: 100%;
  min-width: 620px;
  border-collapse: collapse;
}

.data-table th,
.data-table td {
  padding: 17px 18px;
  border-bottom: 1px solid var(--line);
  color: #555b66;
  font-size: 12px;
  line-height: 1.65;
  text-align: left;
  vertical-align: top;
}

.data-table th {
  color: var(--text);
  background: var(--paper-deep);
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.data-table tr:last-child td {
  border-bottom: 0;
}

.legal-contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 28px;
}

.legal-contact a,
.legal-contact div {
  display: block;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 18px;
  color: var(--text);
  background: var(--white);
  font-weight: 700;
  text-decoration: none;
}

.legal-contact small {
  display: block;
  margin-bottom: 5px;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.legal-contact a:hover {
  border-color: var(--indigo);
}

.delete-steps {
  display: grid;
  gap: 14px;
  margin: 28px 0;
  padding: 0;
  list-style: none;
  counter-reset: deletion;
}

.delete-steps li {
  position: relative;
  padding: 22px 22px 22px 70px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
  counter-increment: deletion;
}

.delete-steps li::before {
  position: absolute;
  top: 19px;
  left: 20px;
  display: grid;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  color: var(--ink);
  background: var(--yellow);
  content: counter(deletion, decimal-leading-zero);
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 800;
  place-items: center;
}

.deletion-button {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  margin: 8px 0 16px;
  padding: 16px 22px;
  border-radius: 999px;
  color: var(--white) !important;
  background: var(--indigo);
  box-shadow: 0 10px 24px rgba(86, 101, 239, 0.22);
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.deletion-button:hover {
  box-shadow: 0 14px 30px rgba(86, 101, 239, 0.3);
  transform: translateY(-2px);
}

@media (max-width: 1100px) {
  .hero-grid {
    grid-template-columns: 0.94fr 1.06fr;
  }

  .hero-art {
    transform: translateX(-30px) scale(0.9);
    transform-origin: center;
  }

  .principles-card {
    grid-template-columns: 140px 1fr;
  }

  .principles-mark {
    width: 140px;
    height: 140px;
  }

  .principles-links {
    grid-column: 2;
  }

  .legal-layout {
    grid-template-columns: 210px minmax(0, 700px);
    gap: 52px;
  }
}

@media (max-width: 920px) {
  .section {
    padding: 96px 0;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    min-height: 0;
    padding-top: 164px;
    padding-bottom: 110px;
  }

  .hero-copy {
    max-width: 700px;
  }

  .hero-art {
    width: 590px;
    max-width: 100%;
    min-height: 700px;
    margin: 20px auto 0;
    transform: none;
  }

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

  .section-heading p:last-child {
    max-width: 600px;
  }

  .preview-shell {
    grid-template-columns: 1fr 1.14fr;
  }

  .preview-copy {
    padding: 56px 38px;
  }

  .preview-device {
    width: 300px;
  }

  .preview-halo {
    width: 490px;
    height: 490px;
  }

  .faq-grid {
    grid-template-columns: 0.68fr 1.32fr;
    gap: 60px;
  }

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

  .legal-toc {
    position: static;
  }

  .legal-toc nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 840px) {
  .nav-shell,
  .page-shell {
    width: min(100% - 34px, 1180px);
  }

  .nav-toggle {
    position: relative;
    z-index: 102;
    display: grid;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.07);
    cursor: pointer;
    place-content: center;
  }

  .nav-toggle span {
    display: block;
    width: 18px;
    height: 1.5px;
    margin: 3px 0;
    background: var(--white);
    transition: transform 180ms ease;
  }

  .nav-toggle.is-open span:first-child {
    transform: translateY(3.75px) rotate(45deg);
  }

  .nav-toggle.is-open span:last-child {
    transform: translateY(-3.75px) rotate(-45deg);
  }

  .site-nav {
    position: fixed;
    inset: 0;
    z-index: 101;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
    justify-content: center;
    padding: 92px 34px 50px;
    visibility: hidden;
    background: rgba(9, 13, 24, 0.97);
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  }

  .site-nav.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .site-nav > a {
    font-size: 32px;
    letter-spacing: -0.04em;
  }

  .site-nav .nav-cta {
    margin-top: 12px;
    padding: 12px 18px;
    font-size: 17px;
  }

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

  .feature-search,
  .feature-picks,
  .feature-favorite,
  .feature-details {
    min-height: 400px;
  }

  .preview-shell {
    grid-template-columns: 1fr;
  }

  .preview-copy {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .preview-copy > p:not(.kicker) {
    min-height: 0;
  }

  .preview-tabs {
    grid-template-columns: 1fr 1fr;
    gap: 0 24px;
  }

  .preview-visual {
    min-height: 780px;
  }

  .preview-device {
    top: 50px;
  }

  .principles-card {
    grid-template-columns: 1fr;
    gap: 38px;
    padding: 50px;
  }

  .principles-links {
    grid-column: auto;
  }

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

  .faq-intro {
    position: static;
  }

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

  .footer-top > p {
    text-align: right;
  }

  .footer-links {
    grid-column: 1 / -1;
    justify-content: flex-start;
  }

  .legal-hero-inner,
  .legal-summary-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .legal-meta {
    width: 210px;
  }
}

@media (max-width: 620px) {
  html {
    scroll-padding-top: 82px;
  }

  .section {
    padding: 78px 0;
  }

  .site-header,
  .site-header.is-scrolled {
    padding: 9px 0;
  }

  .brand {
    font-size: 16px;
  }

  .brand img {
    width: 40px;
    height: 40px;
    border-radius: 12px;
  }

  .hero-grid {
    padding-top: 128px;
    padding-bottom: 86px;
  }

  .hero h1 {
    font-size: clamp(52px, 15vw, 76px);
  }

  .hero h1 em {
    white-space: normal;
  }

  .hero-lede {
    margin-top: 27px;
    font-size: 16px;
  }

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

  .hero-actions .text-link {
    margin-left: 8px;
  }

  .hero-facts {
    gap: 10px 17px;
    flex-wrap: wrap;
    font-size: 10px;
  }

  .hero-art {
    width: 390px;
    min-height: 570px;
    margin-top: 36px;
    transform: translateX(-5px);
  }

  .hero-art::before {
    top: 14%;
    left: 8%;
    width: 340px;
    height: 340px;
  }

  .orbit-one {
    top: 5%;
    left: -6%;
    width: 430px;
    height: 430px;
  }

  .orbit-two {
    top: 13%;
    left: 8%;
    width: 330px;
    height: 330px;
  }

  .device {
    border-width: 7px;
    border-radius: 37px;
  }

  .device::after {
    border-radius: 29px;
  }

  .device-main {
    top: 43px;
    left: 122px;
    width: 220px;
  }

  .device-side {
    top: 135px;
    left: 4px;
    width: 166px;
  }

  .app-medallion {
    top: 48px;
    right: -2px;
    width: 88px;
    height: 88px;
    border-width: 5px;
    border-radius: 25px;
  }

  .app-medallion img {
    border-radius: 18px;
  }

  .floating-note {
    min-width: 146px;
    padding: 9px 11px;
    border-radius: 14px;
  }

  .floating-note .mini-icon {
    width: 31px;
    height: 31px;
    border-radius: 9px;
    font-size: 20px;
  }

  .floating-note b { font-size: 11px; }
  .floating-note small { font-size: 8px; }
  .note-search { top: 356px; right: -7px; }
  .note-save { bottom: 39px; left: 4px; }

  .hero-ticker span,
  .hero-ticker i {
    padding: 10px 12px;
    font-size: 10px;
  }

  .section-heading {
    margin-bottom: 44px;
  }

  .section-heading h2,
  .principles-copy h2,
  .faq-intro h2,
  .preview-copy h2 {
    font-size: clamp(38px, 12vw, 54px);
  }

  .feature-card .feature-copy {
    padding: 28px;
  }

  .feature-search .feature-copy,
  .feature-details .feature-copy {
    max-width: 100%;
  }

  .feature-search {
    padding-bottom: 180px;
  }

  .search-demo {
    right: -10px;
    bottom: 28px;
    width: 88%;
  }

  .feature-picks {
    min-height: 450px;
  }

  .favorite-orb {
    top: 38px;
    right: 50%;
    width: 135px;
    height: 135px;
    transform: translateX(50%);
  }

  .favorite-orb::before,
  .favorite-orb::after {
    width: 135px;
    height: 135px;
  }

  .rating-demo {
    top: auto;
    right: 25px;
    bottom: 28px;
    left: 25px;
    grid-template-columns: repeat(3, 1fr);
    width: auto;
    transform: none;
  }

  .rating-demo div,
  .rating-demo div:nth-child(2),
  .rating-demo div:nth-child(3) {
    flex-direction: column;
    gap: 2px;
    padding: 11px;
    transform: none;
  }

  .feature-details {
    padding-bottom: 120px;
  }

  .preview-shell {
    border-radius: 30px;
  }

  .preview-copy {
    padding: 42px 25px;
  }

  .preview-copy > p:not(.kicker) {
    margin: 22px 0 34px;
  }

  .preview-tabs {
    display: grid;
    grid-template-columns: 1fr;
  }

  .preview-tab {
    padding: 13px 0;
  }

  .preview-tab:nth-child(3) {
    border-top: 0;
  }

  .preview-visual {
    min-height: 650px;
  }

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

  .preview-device {
    top: 38px;
    width: 250px;
  }

  .preview-caption {
    right: 17px;
    bottom: 18px;
  }

  .principles-card {
    padding: 34px 26px;
    border-radius: 30px;
  }

  .principles-mark {
    width: 106px;
    height: 106px;
  }

  .principles-mark svg {
    width: 50px;
  }

  .faq-list summary {
    font-size: 16px;
  }

  .closing-cta {
    padding: 95px 0 86px;
  }

  .closing-inner h2 {
    font-size: clamp(51px, 15vw, 72px);
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-top > p {
    text-align: left;
  }

  .footer-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 13px 20px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .legal-hero {
    padding: 136px 0 64px;
  }

  .legal-hero h1 {
    font-size: clamp(54px, 16vw, 78px);
  }

  .legal-summary-inner {
    padding-top: 32px;
    padding-bottom: 32px;
  }

  .legal-main {
    padding: 64px 0 80px;
  }

  .legal-toc nav {
    grid-template-columns: 1fr;
  }

  .legal-content section {
    margin-bottom: 52px;
  }

  .legal-content h2 {
    font-size: 25px;
  }

  .legal-contact {
    grid-template-columns: 1fr;
  }
}

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

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

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