@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@300;400;500;600&family=Manrope:wght@200;300;400;500&display=swap");

:root {
  --bg: #0a0a09;
  --bg-soft: #10100e;
  --panel: #171714;
  --panel-2: #1d1c18;
  --text: #f1ede5;
  --muted: #aaa69e;
  --faint: #65625c;
  --line: #302f2a;
  --blue: #a8d5ff;
  --blue-deep: #5f8eaf;
  --sand: #d5c0a2;
  --mint: #afcdbb;
  --radius: 28px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 82px;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "DM Sans", sans-serif;
  font-weight: 300;
  overflow-x: hidden;
}
button,
input {
  font: inherit;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
}
em {
  font-style: normal;
  color: var(--blue);
}
.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  background: var(--text);
  color: #111;
  padding: 12px 18px;
  z-index: 100;
  border-radius: 8px;
}
.skip-link:focus {
  top: 16px;
}
.nav {
  height: 82px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 4.5vw;
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10, 10, 9, 0.74);
  backdrop-filter: blur(22px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: background 0.3s;
}
.nav.scrolled {
  background: rgba(10, 10, 9, 0.93);
}
.logo {
  display: inline-block;
  width: max-content;
  font: 300 20px/1 "Manrope";
  letter-spacing: 0.22em;
  color: var(--text);
}
.logo-mark {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  letter-spacing: 0;
}
.logo-letters {
  font: 200 30px/1 "Manrope";
  letter-spacing: 0.02em;
}
.logo-bars {
  width: 40px;
  height: 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: repeat(3, 1fr);
  column-gap: 5px;
  row-gap: 5px;
}
.logo-bars i {
  display: block;
  background: currentColor;
}
.brand-logo {
  display: block;
  width: 124px;
  min-width: 0;
  max-width: 124px;
  overflow: hidden;
  line-height: 0;
}
.brand-logo img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto !important;
}
.footer-brand-logo {
  width: 148px;
  max-width: 148px;
}
.nav nav {
  display: flex;
  gap: 30px;
  color: #aaa69d;
  font-size: 13px;
}
.nav nav a,
.footer-links a {
  transition: color 0.2s;
}
.nav nav a:hover,
.footer-links a:hover {
  color: var(--text);
}
.nav-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 12px;
}
.pill {
  border: 1px solid #504e47;
  border-radius: 999px;
  padding: 10px 17px;
  font-size: 12px;
  letter-spacing: 0.04em;
  transition: 0.25s;
}
.pill:hover {
  border-color: var(--sand);
  background: var(--sand);
  color: #111;
}
.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  color: inherit;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
}
.menu-button i {
  display: block;
  width: 16px;
  border-top: 1px solid currentColor;
  transition: 0.25s;
}
.eyebrow {
  font-size: 10px;
  letter-spacing: 0.27em;
  color: #b2a896;
  margin: 0 0 22px;
  font-weight: 500;
}
.eyebrow > span {
  width: 22px;
  display: inline-block;
  border-top: 1px solid currentColor;
  vertical-align: middle;
  margin-right: 8px;
}
.section-number {
  font-size: 10px;
  letter-spacing: 0.2em;
  color: #66635d;
  margin-bottom: 68px;
}
.hero {
  min-height: calc(100vh - 82px);
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 5vw;
  padding: 7vw 6vw 8vw;
  background: radial-gradient(
    ellipse 42% 45% at 76% 42%,
    rgba(140, 170, 188, 0.1),
    transparent 70%
  );
}
.hero h1,
.thesis h2,
.section-head h2,
.category h2,
.download h2,
.faq h2,
.proof h2 {
  font: 200 clamp(54px, 6.3vw, 104px)/0.97 "Manrope";
  letter-spacing: -0.055em;
  margin: 0;
}
.hero .lede {
  font-size: clamp(17px, 1.5vw, 22px);
  line-height: 1.55;
  color: var(--muted);
  max-width: 610px;
  margin: 30px 0;
}
.actions {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-top: 36px;
}
.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  background: linear-gradient(135deg, #eee9e0, #cdb696);
  color: #111;
  padding: 16px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 13px;
  min-width: 172px;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
.cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(212, 190, 160, 0.15);
}
.text-link {
  font-size: 13px;
  color: #bbb7ae;
}
.text-link span {
  color: var(--blue);
  margin-left: 6px;
}
.hero-note {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #77746d;
  font-size: 11px;
  letter-spacing: 0.08em;
  margin-top: 34px;
}
.hero-note span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 12px rgba(175, 205, 187, 0.6);
}
.hero-score {
  position: relative;
  overflow: hidden;
  padding: 26px;
  border: 1px solid #3a3934;
  border-radius: var(--radius);
  background:
    radial-gradient(
      circle at 50% 34%,
      rgba(168, 213, 255, 0.1),
      transparent 34%
    ),
    linear-gradient(145deg, #1b1b18, #10100e 72%);
  box-shadow: 0 38px 90px rgba(0, 0, 0, 0.42);
}
.score-sample-label,
.profile-frame-top {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: #8d8981;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.18em;
}
.score-sample-label i,
.profile-frame-top i {
  color: var(--mint);
  font-style: normal;
}
.hero-dial {
  display: grid;
  place-items: center;
  margin: 18px 0 22px;
}
.dial-shell {
  position: relative;
  display: grid;
  place-items: center;
  width: min(280px, 58vw);
  aspect-ratio: 1;
  border: 1px solid #4a4d4e;
  border-radius: 50%;
  background:
    radial-gradient(
      circle at 42% 34%,
      rgba(255, 255, 255, 0.08),
      transparent 30%
    ),
    radial-gradient(
      circle,
      #2e3335 0 48%,
      #24282a 49% 61%,
      #17191a 62% 69%,
      #303537 70% 72%,
      #1a1c1d 73%
    );
  box-shadow:
    0 24px 38px rgba(0, 0, 0, 0.58),
    inset 0 0 0 9px rgba(255, 255, 255, 0.018);
}
.dial-shell::before,
.dial-shell::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.dial-shell::before {
  inset: 12%;
  border: 1px solid #646b6d;
  box-shadow: inset 0 0 28px rgba(0, 0, 0, 0.5);
}
.dial-shell::after {
  inset: 25%;
  border: 1px solid rgba(213, 192, 162, 0.24);
}
.dial-arc {
  position: absolute;
  inset: 14%;
  border-radius: 50%;
  background: conic-gradient(
    from -42deg,
    var(--blue) 0 84%,
    rgba(168, 213, 255, 0.11) 84% 100%
  );
  -webkit-mask: radial-gradient(
    farthest-side,
    transparent calc(100% - 2px),
    #000 0
  );
  mask: radial-gradient(farthest-side, transparent calc(100% - 2px), #000 0);
  animation: dial-reveal 1.35s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}
.dial-core {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.dial-core small,
.dial-core span,
.hero-dial > p,
.hero-guidance > span,
.hero-timing p span {
  color: #9c988f;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.2em;
}
.dial-core strong {
  color: var(--sand);
  font: 200 68px/1 "Manrope";
  letter-spacing: -0.06em;
  margin: 12px 0 8px;
}
.hero-dial > p {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--blue);
  margin: 13px 0 0;
}
.hero-dial > p i {
  width: 18px;
  border-top: 1px solid rgba(168, 213, 255, 0.55);
}
.hero-guidance {
  padding: 21px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.hero-guidance > span,
.hero-timing p span {
  color: var(--blue);
}
.hero-guidance h2 {
  margin: 8px 0 0;
  font: 300 clamp(23px, 2.1vw, 32px) / 1.2 "Manrope";
  letter-spacing: -0.035em;
}
.hero-timing {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 22px;
  align-items: center;
  padding-top: 21px;
}
.hero-timing > div {
  display: grid;
  grid-template-columns: auto repeat(6, 1fr) auto;
  align-items: center;
  gap: 5px;
}
.hero-timing > div span {
  color: #77746d;
  font-size: 8px;
}
.hero-timing > div i {
  height: 3px;
  border-radius: 99px;
  background: #3a3935;
}
.hero-timing > div i.active {
  background: var(--blue);
  box-shadow: 0 0 12px rgba(168, 213, 255, 0.45);
  animation: timing-pulse 2.8s ease-in-out infinite;
}
.hero-timing p {
  margin: 0;
}
.hero-timing p span,
.hero-timing p strong {
  display: block;
}
.hero-timing p strong {
  color: #cbc6bc;
  font: 300 13px/1.4 "Manrope";
  margin-top: 6px;
}
@keyframes dial-reveal {
  from {
    transform: rotate(-18deg);
    opacity: 0;
  }
  to {
    transform: rotate(0);
    opacity: 1;
  }
}
@keyframes timing-pulse {
  50% {
    opacity: 0.58;
  }
}
.thesis,
.product,
.signals,
.plans,
.faq {
  padding: 9vw 7vw;
}
.thesis {
  background: var(--bg-soft);
}
.thesis-copy {
  max-width: 1120px;
}
.thesis h2,
.section-head h2,
.category h2,
.download h2,
.faq h2 {
  font-size: clamp(43px, 5vw, 80px);
  line-height: 1.04;
}
.thesis-copy > p:last-child {
  font-size: 17px;
  line-height: 1.65;
  color: var(--muted);
  max-width: 630px;
  margin: 35px 0 0 auto;
}
.states {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 74px;
}
.states > div {
  border-top: 1px solid var(--line);
  padding: 18px 0 0;
  color: #8f8b83;
  transition: 0.25s;
}
.states span {
  font-size: 9px;
  letter-spacing: 0.17em;
}
.states strong {
  display: block;
  font: 300 24px "Manrope";
  letter-spacing: 0.12em;
  margin-top: 32px;
}
.states p {
  font-size: 13px;
  line-height: 1.5;
  max-width: 240px;
  color: #aaa69e;
}
.states .active {
  color: var(--blue);
  border-color: var(--blue);
}
.decision {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 8vw;
  padding: 10vw 7vw;
  align-items: center;
}
.decision h2 {
  font: 200 clamp(45px, 5vw, 78px)/1 "Manrope";
  letter-spacing: -0.045em;
  margin: 0 0 26px;
}
.decision-copy > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
  max-width: 500px;
}
.decision-tabs {
  display: flex;
  gap: 8px;
  margin-top: 34px;
  flex-wrap: wrap;
}
.decision-tabs button {
  background: transparent;
  color: #77736c;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 15px;
  cursor: pointer;
  font-size: 11px;
}
.decision-tabs button.active {
  color: #111;
  background: var(--text);
  border-color: var(--text);
}
.decision-card {
  background: linear-gradient(145deg, #1c1c19, #11110f);
  border: 1px solid #3b3933;
  border-radius: var(--radius);
  padding: 34px;
  box-shadow: 0 35px 90px rgba(0, 0, 0, 0.28);
}
.card-top {
  display: flex;
  justify-content: space-between;
  font-size: 9px;
  letter-spacing: 0.18em;
  color: #77736b;
  border-bottom: 1px solid var(--line);
  padding-bottom: 22px;
  margin-bottom: 26px;
}
.sample-dot {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--blue);
}
.sample-dot:before {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  border: 1px solid currentColor;
  border-radius: 50%;
}
.mini {
  font-size: 9px;
  letter-spacing: 0.2em;
  color: #8d877d;
  font-weight: 500;
}
.question {
  border: 1px solid #3d3b35;
  background: #10100e;
  border-radius: 14px;
  padding: 17px;
  font: 300 20px "Manrope";
  margin: 10px 0 27px;
}
.verdict {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.blue {
  color: var(--blue);
  letter-spacing: 0.2em;
  font-size: 10px;
  margin: 0 0 8px;
}
.verdict h3 {
  font: 300 clamp(23px, 2.2vw, 32px) "Manrope";
  margin: 0;
}
.verdict-arrow {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid #4d4a43;
  border-radius: 50%;
  color: var(--blue);
  font-size: 19px;
}
.window-rail {
  height: 87px;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 7px;
  align-items: end;
  border-bottom: 1px solid var(--line);
  margin: 27px 0;
}
.window-rail div {
  display: flex;
  flex-direction: column-reverse;
  gap: 7px;
  align-items: center;
  height: 100%;
}
.window-rail i {
  width: 100%;
  height: var(--strength);
  border-radius: 3px 3px 0 0;
  background: #302f2b;
  transition:
    height 0.35s ease,
    background 0.35s ease;
}
.window-rail span {
  font-size: 8px;
  color: #68655f;
}
.window-rail .selected i {
  background: linear-gradient(var(--blue), #5b788b);
}
.window-rail .selected span {
  color: var(--blue);
}
.card-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 28px;
}
.card-grid > div + div {
  border-left: 1px solid var(--line);
  padding-left: 26px;
}
.card-grid p:last-child {
  font-size: 13px;
  line-height: 1.55;
  color: #b7b2a9;
}
.fit {
  border-top: 1px solid var(--line);
  padding-top: 18px;
  margin: 18px 0 0;
  font-size: 11px;
  color: #77736c;
}
.fit span {
  color: #a49d91;
  letter-spacing: 0.15em;
  margin-right: 12px;
}
.product {
  background: var(--bg-soft);
  border-top: 1px solid var(--line);
}
.section-head {
  max-width: 1060px;
  margin-bottom: 72px;
}
.product-stage {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 8vw;
  align-items: center;
}
.phone {
  max-width: 450px;
  margin: auto;
  border: 1px solid #3b3832;
  border-radius: 40px;
  overflow: hidden;
  box-shadow: 0 45px 100px rgba(0, 0, 0, 0.55);
  aspect-ratio: 854/1320;
  background: #12110f;
}
.phone img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}
.features article {
  display: grid;
  grid-template-columns: 42px 1fr auto;
  border-top: 1px solid var(--line);
  padding: 27px 0;
  align-items: start;
}
.features b {
  color: #67645e;
  font-size: 10px;
  letter-spacing: 0.12em;
}
.features h3 {
  font: 300 24px "Manrope";
  margin: 0;
}
.features p {
  color: var(--muted);
  margin: 7px 0 0;
  line-height: 1.5;
  font-size: 14px;
}
.features > article > span {
  color: #53514c;
  transition: 0.25s;
}
.features article:hover > span {
  color: var(--blue);
  transform: translate(2px, -2px);
}
.proof {
  padding: 9vw 7vw;
}
.proof h2 {
  font-size: clamp(43px, 5vw, 72px);
}
.profile-heading {
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  gap: 7vw;
  align-items: end;
  margin-bottom: 66px;
}
.profile-heading > p {
  max-width: 540px;
  margin: 0 0 5px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}
.profile-frame {
  padding: 30px;
  border: 1px solid #3b3933;
  border-radius: var(--radius);
  background: linear-gradient(145deg, #1b1b18, #10100e);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.3);
}
.profile-frame-top {
  padding-bottom: 21px;
  border-bottom: 1px solid var(--line);
}
.profile-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.profile-cards article {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 20px;
  min-height: 196px;
  padding: 30px;
  border-bottom: 1px solid var(--line);
}
.profile-cards article:nth-child(odd) {
  padding-left: 0;
  border-right: 1px solid var(--line);
}
.profile-symbol {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border: 1px solid #4b4943;
  border-radius: 50%;
  color: var(--sand);
  font: 300 21px "Manrope";
  background: #11110f;
}
.profile-symbol.design,
.profile-symbol.context {
  color: var(--blue);
}
.profile-cards small {
  color: #8e8a82;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.18em;
}
.profile-cards h3 {
  margin: 10px 0 8px;
  color: #e4dfd6;
  font: 300 20px/1.35 "Manrope";
}
.profile-cards p {
  margin: 0;
  color: #9f9b93;
  font-size: 13px;
  line-height: 1.6;
}
.profile-resolve {
  margin: 25px 0 0;
  color: #aaa69e;
  font-size: 13px;
  line-height: 1.6;
}
.profile-resolve span {
  margin-right: 13px;
  color: var(--blue);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.17em;
}
.plan ul {
  list-style: none;
  padding: 0;
  margin: 35px 0 0;
}
.signals {
  background: #10100e;
}
.signal-primer {
  border-bottom: 1px solid var(--line);
}
.signal-primer .section-head {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  column-gap: 7vw;
  max-width: none;
}
.signal-primer .section-number,
.signal-primer .eyebrow {
  grid-column: 1 / -1;
}
.signal-intro {
  align-self: end;
  max-width: 590px;
  margin: 0 0 6px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}
.signal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--line);
}
.signal-grid article {
  min-height: 190px;
  padding: 28px 0;
  display: grid;
  grid-template-columns: 48px 1fr;
  border-bottom: 1px solid var(--line);
}
.signal-grid article:nth-child(odd) {
  border-right: 1px solid var(--line);
  padding-right: 34px;
}
.signal-grid article:nth-child(even) {
  padding-left: 34px;
}
.signal-grid > article > span {
  font-size: 10px;
  color: #65625d;
}
.signal-grid p {
  font-size: 9px;
  letter-spacing: 0.17em;
  color: #77736b;
  margin: 0 0 36px;
}
.signal-grid h3 {
  font: 300 24px "Manrope";
  margin: 0 0 7px;
}
.signal-grid small {
  font-size: 13px;
  color: var(--muted);
}
.signal-close {
  font: 300 clamp(25px, 3vw, 42px)/1.4 "Manrope";
  color: #74716a;
  margin: 64px 0 0;
}
.signal-close strong {
  color: var(--text);
  font-weight: 300;
}
.plans {
  border-top: 1px solid var(--line);
}
.plan-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.plan {
  position: relative;
  min-height: 530px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px;
  background: #11110f;
  display: flex;
  flex-direction: column;
}
.plan.featured {
  background: linear-gradient(145deg, #24231f, #151512);
  border-color: #5a554b;
}
.plan h3 {
  font: 300 50px "Manrope";
  margin: 18px 0 5px;
}
.plan h3 small {
  font-size: 14px;
  color: #8e8a82;
}
.plan > div > span {
  font-size: 13px;
  color: var(--muted);
}
.pro-price .trial-callout {
  width: max-content;
  margin: 19px 0 2px;
  padding: 7px 11px;
  border: 1px solid rgba(168, 213, 255, 0.34);
  border-radius: 999px;
  color: var(--blue);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.pro-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 17px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.pro-options > div {
  padding: 18px 16px 18px 0;
}
.pro-options > div + div {
  padding-left: 16px;
  border-left: 1px solid var(--line);
}
.pro-options strong,
.pro-options span {
  display: block;
}
.pro-options strong {
  color: var(--text);
  font: 300 25px/1.1 "Manrope";
}
.pro-options span {
  margin-top: 7px;
  color: #8f8b83;
  font-size: 10px;
  letter-spacing: 0.08em;
}
.popular {
  position: absolute;
  right: 28px;
  top: 28px !important;
  font-size: 8px !important;
  letter-spacing: 0.17em !important;
  color: #111 !important;
  background: var(--blue);
  padding: 7px 10px;
  border-radius: 999px;
}
.plan li {
  border-top: 1px solid var(--line);
  padding: 15px 0;
  color: #b4b0a8;
  font-size: 13px;
}
.plan li:before {
  content: "·";
  color: var(--blue);
  margin-right: 12px;
}
.plan-link {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid #5a574f;
  padding-top: 17px;
  margin-top: auto;
  font-size: 12px;
  letter-spacing: 0.05em;
}
.plan-link span {
  color: var(--blue);
}
.pricing-note {
  text-align: center;
  color: #65625c;
  font-size: 11px;
  margin: 20px 0 0;
}
.category {
  min-height: 82vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10vw 7vw;
  background: #060606;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.tiny-orbit {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  border: 1px solid #494944;
  display: grid;
  place-items: center;
  box-shadow: 0 0 70px rgba(158, 203, 250, 0.1);
  margin-bottom: 44px;
}
.tiny-orbit span {
  width: 46px;
  height: 46px;
  border: 1px solid var(--blue);
  border-radius: 50%;
  display: block;
  clip-path: polygon(0 0, 100% 0, 100% 65%, 72% 65%, 72% 100%, 0 100%);
}
.category p:not(.eyebrow) {
  font: 300 clamp(22px, 2.5vw, 36px) "Manrope";
  color: var(--blue);
  margin: 35px 0;
}
.wordmark {
  font-size: 10px;
  letter-spacing: 0.43em;
  color: #6c6962;
}
.faq {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 8vw;
}
.faq-head {
  position: sticky;
  top: 130px;
  align-self: start;
}
.faq h2 {
  font-size: clamp(42px, 4vw, 66px);
}
.faq-list details {
  border-top: 1px solid var(--line);
  padding: 24px 0;
}
.faq-list details:last-child {
  border-bottom: 1px solid var(--line);
}
.faq-list summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font: 300 19px "Manrope";
}
.faq-list summary::-webkit-details-marker {
  display: none;
}
.faq-list summary span {
  font: 300 24px "Manrope";
  color: var(--blue);
  transition: 0.25s;
}
.faq-list details[open] summary span {
  transform: rotate(45deg);
}
.faq-list details p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
  max-width: 650px;
  padding-right: 45px;
}
.faq-list .score-explainer {
  margin-top: 25px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: linear-gradient(145deg, #171714, #10100e);
}
.faq-list .score-explainer p {
  max-width: none;
  padding-right: 0;
}
.faq-list .score-explainer-lede {
  margin: 0;
  color: #c1bdb4;
  font: 300 17px/1.65 "Manrope";
}
.score-explainer-lede strong,
.score-distinction strong {
  color: var(--text);
  font-weight: 400;
}
.score-explainer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 27px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.score-explainer-grid > div {
  padding: 22px 18px 22px 0;
}
.score-explainer-grid > div + div {
  padding-left: 18px;
  border-left: 1px solid var(--line);
}
.score-explainer-grid span {
  display: block;
  margin-bottom: 14px;
  color: var(--blue);
  font-size: 8px;
  letter-spacing: 0.17em;
}
.faq-list .score-explainer-grid p {
  margin: 0;
  color: #918d85;
  font-size: 12px;
}
.faq-list .score-distinction {
  margin: 0;
  color: #8d8981;
}
.download {
  position: relative;
  overflow: hidden;
  min-height: 82vh;
  display: grid;
  grid-template-columns: 1fr 0.6fr;
  align-items: center;
  padding: 9vw 7vw;
  background:
    radial-gradient(
      circle at 72% 48%,
      rgba(120, 151, 171, 0.16),
      transparent 26%
    ),
    #0d0d0b;
}
.download-copy {
  position: relative;
  z-index: 2;
}
.download h2 {
  font-size: clamp(51px, 6vw, 94px);
}
.download-copy > p:not(.eyebrow) {
  max-width: 560px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
  margin: 28px 0;
}
.download small {
  display: block;
  color: #6e6b64;
  font-size: 10px;
  margin: 15px 0 0 18px;
}
.download-mark {
  font: 200 min(41vw, 590px)/1 "Manrope";
  color: transparent;
  -webkit-text-stroke: 1px rgba(168, 213, 255, 0.16);
  text-align: center;
  text-shadow: 0 0 80px rgba(168, 213, 255, 0.05);
}
footer {
  padding: 65px 6vw 28px;
  border-top: 1px solid var(--line);
  background: #070707;
}
.footer-brand p {
  color: #77736d;
  font-size: 13px;
  line-height: 1.6;
  margin-top: 22px;
}
.footer-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8vw;
  max-width: 480px;
  margin: -40px 0 80px auto;
}
.footer-links div {
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.footer-links p {
  font-size: 9px;
  letter-spacing: 0.2em;
  color: #5f5c56;
  margin-bottom: 9px;
}
.footer-links a {
  font-size: 13px;
  color: #9a968e;
}
.footer-bottom {
  border-top: 1px solid var(--line);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  color: #5f5c56;
  font-size: 10px;
}
.footer-bottom a {
  color: #8c8880;
}
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* Support and legal pages share a centered, readable content frame. */
.support-page {
  background:
    radial-gradient(
      circle at 86% 12%,
      rgba(115, 148, 169, 0.09),
      transparent 25%
    ),
    var(--bg);
}
.support-page .support-nav {
  grid-template-columns: 1fr auto;
  max-width: 1440px;
  margin: 0 auto;
  width: 100%;
}
.support {
  width: min(1180px, calc(100% - 96px));
  margin: 0 auto;
  padding: 112px 0 132px;
}
.support-hero {
  max-width: 820px;
}
.support h1 {
  font: 200 clamp(52px, 6vw, 88px) / 1 "Manrope";
  letter-spacing: -0.05em;
  margin: 0;
}
.support .lede {
  max-width: 720px;
  color: var(--muted);
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.6;
  margin: 28px 0 34px;
}
.support-cta {
  min-width: 184px;
}
.response-note {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 18px 0 0;
  color: var(--faint);
  font-size: 11px;
}
.response-note i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 12px rgba(175, 205, 187, 0.5);
}
.support-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 86px;
}
.support-grid article {
  min-height: 290px;
  display: flex;
  flex-direction: column;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: linear-gradient(145deg, #171714, #10100e);
  transition:
    border-color 0.25s,
    transform 0.25s;
}
.support-grid article:hover {
  border-color: #4d4a43;
  transform: translateY(-2px);
}
.support-number {
  color: var(--blue);
  font-size: 9px;
  letter-spacing: 0.18em;
}
.support-grid h2,
.legalBlock h2 {
  font: 300 25px "Manrope";
  letter-spacing: -0.02em;
  margin: 38px 0 10px;
}
.support-grid p,
.legalBlock p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
  margin: 0;
}
.support-grid article > a,
.support-legal-links {
  margin-top: auto;
}
.support-grid a {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-top: 17px;
  border-top: 1px solid var(--line);
  color: #c2beb5;
  font-size: 12px;
}
.support-grid a span {
  color: var(--blue);
}
.support-legal-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.legal-page .support {
  width: min(900px, calc(100% - 96px));
}
.legal-page .support > .lede {
  margin-bottom: 56px;
}
.legalBlock {
  padding: 30px 0;
  border-top: 1px solid var(--line);
}
.legalBlock:last-child {
  border-bottom: 1px solid var(--line);
}
.legalBlock h2 {
  margin-top: 0;
}
.legalBlock a {
  color: var(--blue);
}
.support-footer {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  padding-left: 0;
  padding-right: 0;
}
.support-footer > div {
  display: flex;
  gap: 22px;
  align-items: center;
  color: var(--muted);
  font-size: 12px;
}
.support-footer > p {
  grid-column: 1 / -1;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: var(--faint);
  font-size: 10px;
  margin: 0;
}
@media (max-width: 920px) {
  .nav {
    grid-template-columns: 1fr auto;
  }
  .nav nav {
    position: absolute;
    top: 81px;
    left: 0;
    right: 0;
    background: #0d0d0c;
    border-bottom: 1px solid var(--line);
    padding: 18px 22px 26px;
    display: none;
    flex-direction: column;
    gap: 0;
  }
  .nav nav.open {
    display: flex;
  }
  .nav nav a {
    padding: 14px 0;
    border-bottom: 1px solid #252420;
  }
  .nav .pill {
    display: none;
  }
  .menu-button {
    display: flex;
  }
  .menu-button[aria-expanded="true"] i:first-child {
    transform: translateY(3.5px) rotate(45deg);
  }
  .menu-button[aria-expanded="true"] i:last-child {
    transform: translateY(-3.5px) rotate(-45deg);
  }
  .hero,
  .decision,
  .product-stage,
  .proof,
  .faq {
    grid-template-columns: 1fr;
  }
  .hero {
    padding-top: 13vw;
  }
  .hero-score {
    margin-top: 30px;
  }
  .profile-heading {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .decision {
    gap: 55px;
  }
  .product-stage {
    gap: 60px;
  }
  .proof {
    gap: 60px;
  }
  .faq-head {
    position: static;
  }
  .plan-grid {
    grid-template-columns: 1fr;
  }
  .download {
    grid-template-columns: 1fr;
  }
  .download-mark {
    position: absolute;
    right: -2vw;
    opacity: 0.55;
  }
  .footer-links {
    margin: 50px 0 70px;
  }
  .screen-grid img {
    height: auto;
  }
  .section-number {
    margin-bottom: 45px;
  }
  .signal-primer .section-head {
    grid-template-columns: 1fr;
  }
  .signal-intro {
    margin-top: 30px;
  }
  .support {
    width: min(100% - 48px, 760px);
    padding-top: 84px;
  }
  .support-grid {
    grid-template-columns: 1fr;
    margin-top: 64px;
  }
  .support-grid article {
    min-height: 260px;
  }
  .legal-page .support {
    width: min(100% - 48px, 760px);
  }
  .support-footer {
    width: min(100% - 48px, 760px);
  }
}
@media (max-width: 600px) {
  .nav {
    height: 72px;
    padding: 0 20px;
  }
  .logo-mark {
    gap: 9px;
  }
  .logo-letters {
    font-size: 25px;
  }
  .logo-bars {
    width: 33px;
    height: 16px;
    column-gap: 4px;
    row-gap: 4px;
  }
  .brand-logo {
    width: 104px;
    max-width: 104px;
  }
  .footer-brand-logo {
    width: 128px;
    max-width: 128px;
  }
  .nav nav {
    top: 71px;
  }
  .hero,
  .thesis,
  .decision,
  .product,
  .proof,
  .signals,
  .plans,
  .faq,
  .download {
    padding-left: 22px;
    padding-right: 22px;
  }
  .hero {
    min-height: auto;
    padding-top: 90px;
    padding-bottom: 75px;
  }
  .hero h1 {
    font-size: 48px;
    font-weight: 300;
  }
  .hero .lede {
    font-size: 17px;
  }
  .actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }
  .hero-score {
    padding: 20px;
  }
  .dial-shell {
    width: min(246px, 69vw);
  }
  .dial-core strong {
    font-size: 58px;
  }
  .hero-timing {
    grid-template-columns: 1fr;
  }
  .thesis,
  .product,
  .signals,
  .plans,
  .faq {
    padding-top: 100px;
    padding-bottom: 100px;
  }
  .states {
    grid-template-columns: 1fr;
    margin-top: 55px;
  }
  .states > div {
    display: grid;
    grid-template-columns: 34px 1fr;
    column-gap: 5px;
  }
  .states strong {
    margin-top: 0;
  }
  .states p {
    grid-column: 2;
  }
  .decision {
    padding-top: 100px;
    padding-bottom: 100px;
  }
  .decision-card {
    padding: 22px;
    border-radius: 22px;
  }
  .card-top {
    font-size: 8px;
  }
  .verdict {
    align-items: flex-start;
  }
  .verdict h3 {
    font-size: 23px;
  }
  .verdict-arrow {
    width: 40px;
    height: 40px;
  }
  .card-grid {
    grid-template-columns: 1fr;
  }
  .card-grid > div + div {
    border-left: 0;
    border-top: 1px solid var(--line);
    padding-left: 0;
    padding-top: 18px;
  }
  .fit {
    line-height: 1.6;
  }
  .phone {
    border-radius: 30px;
  }
  .features article {
    grid-template-columns: 34px 1fr auto;
  }
  .proof {
    padding-top: 100px;
    padding-bottom: 100px;
  }
  .profile-heading {
    margin-bottom: 45px;
  }
  .profile-frame {
    padding: 22px;
  }
  .profile-frame-top {
    flex-direction: column;
    gap: 8px;
  }
  .profile-cards {
    grid-template-columns: 1fr;
  }
  .profile-cards article,
  .profile-cards article:nth-child(odd) {
    grid-template-columns: 48px 1fr;
    gap: 14px;
    min-height: 0;
    padding: 25px 0;
    border-right: 0;
  }
  .profile-symbol {
    width: 43px;
    height: 43px;
  }
  .profile-resolve span {
    display: block;
    margin: 0 0 8px;
  }
  .signal-grid {
    grid-template-columns: 1fr;
  }
  .signal-grid article:nth-child(odd) {
    border-right: 0;
    padding-right: 0;
  }
  .signal-grid article:nth-child(even) {
    padding-left: 0;
  }
  .signal-grid article {
    min-height: 165px;
  }
  .plan {
    min-height: 510px;
    padding: 26px;
  }
  .plan h3 {
    font-size: 42px;
  }
  .popular {
    right: 22px;
    top: 22px !important;
  }
  .category {
    min-height: 72vh;
    padding-left: 22px;
    padding-right: 22px;
  }
  .faq {
    gap: 55px;
  }
  .faq-list summary {
    font-size: 17px;
    gap: 20px;
  }
  .faq-list .score-explainer {
    padding: 21px;
  }
  .score-explainer-grid {
    grid-template-columns: 1fr;
  }
  .score-explainer-grid > div,
  .score-explainer-grid > div + div {
    padding: 18px 0;
    border-left: 0;
  }
  .score-explainer-grid > div + div {
    border-top: 1px solid var(--line);
  }
  .download {
    min-height: 78vh;
    padding-top: 110px;
    padding-bottom: 110px;
  }
  .download-mark {
    font-size: 100vw;
    right: -28vw;
  }
  .download .cta {
    width: 100%;
  }
  .footer-links {
    gap: 40px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 12px;
  }
  .footer-bottom span:nth-child(2) {
    display: none;
  }
  .support-page .support-nav {
    padding-left: 22px;
    padding-right: 22px;
  }
  .support-page .support-nav .pill {
    display: inline-flex;
  }
  .support {
    width: calc(100% - 44px);
    padding: 72px 0 90px;
  }
  .support h1 {
    font-size: 48px;
  }
  .support-grid {
    margin-top: 52px;
  }
  .support-grid article {
    min-height: 280px;
    padding: 25px;
  }
  .support-legal-links {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .legal-page .support {
    width: calc(100% - 44px);
  }
  .support-footer {
    width: calc(100% - 44px);
    grid-template-columns: 1fr;
  }
  .support-footer > p {
    grid-column: 1;
  }
}

/* Build 9: a shorter, product-led five-section story. */
.build-nine .hero-nine {
  grid-template-columns: 1.08fr 0.72fr;
  gap: 8vw;
  min-height: calc(100vh - 82px);
  padding: 6.5vw 7vw 8vw;
  background:
    radial-gradient(circle at 74% 38%, rgba(168, 213, 255, 0.09), transparent 26%),
    radial-gradient(circle at 63% 73%, rgba(213, 192, 162, 0.06), transparent 24%),
    var(--bg);
}
.hero-nine .hero-copy {
  max-width: 760px;
}
.hero-nine .lede {
  max-width: 690px;
}
.hero-product-shot {
  width: min(100%, 470px);
  margin: 0 auto;
}
.shot-label {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 0 10px 14px;
  color: #8d8981;
  font-size: 8px;
  font-weight: 500;
  letter-spacing: 0.17em;
}
.shot-label i {
  color: var(--mint);
  font-style: normal;
}
.hero-phone {
  overflow: hidden;
  border: 1px solid #3c3a35;
  border-radius: 38px;
  background: #11110f;
  box-shadow: 0 42px 100px rgba(0, 0, 0, 0.55);
}
.hero-phone img {
  display: block;
  width: 100%;
}
.hero-product-shot figcaption {
  max-width: 340px;
  margin: 18px auto 0;
  color: #8c8880;
  font-size: 12px;
  line-height: 1.5;
  text-align: center;
}
.inside-nine {
  padding: 10vw 7vw 9vw;
  overflow: hidden;
  background: var(--bg-soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.inside-heading {
  display: grid;
  grid-template-columns: 1.15fr 0.72fr;
  gap: 8vw;
  align-items: end;
}
.inside-heading h2,
.get-omee h2,
.footer-questions h2 {
  margin: 0;
  font: 200 clamp(44px, 5vw, 80px) / 1.03 "Manrope";
  letter-spacing: -0.055em;
}
.inside-heading > p {
  max-width: 590px;
  margin: 0 0 6px;
  color: #b4b0a8;
  font-size: 16px;
  line-height: 1.72;
}
.method-line {
  display: flex;
  align-items: center;
  gap: 15px;
  margin: 68px 0 78px;
  padding: 19px 0;
  overflow-x: auto;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  scrollbar-width: none;
  white-space: nowrap;
}
.method-line::-webkit-scrollbar {
  display: none;
}
.method-line span {
  margin-right: 18px;
  color: #77736c;
  font-size: 8px;
  font-weight: 500;
  letter-spacing: 0.18em;
}
.method-line p,
.method-line strong {
  margin: 0;
  color: #d0cbc2;
  font: 300 14px "Manrope";
}
.method-line strong {
  color: var(--blue);
  font-weight: 400;
}
.method-line i,
.method-line b {
  color: #5d5a54;
  font-size: 12px;
  font-style: normal;
  font-weight: 300;
}
.method-line b {
  color: var(--blue);
  margin-left: 8px;
}
.gallery-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}
.gallery-controls p {
  margin: 0;
  color: #66625c;
  font-size: 9px;
  letter-spacing: 0.18em;
}
.gallery-controls p span {
  color: var(--blue);
}
.gallery-controls > div {
  display: none;
  gap: 8px;
}
.gallery-controls button {
  width: 42px;
  height: 42px;
  border: 1px solid #43413b;
  border-radius: 50%;
  background: transparent;
  color: #b8b3aa;
  cursor: pointer;
  transition: 0.2s;
}
.gallery-controls button:hover {
  border-color: var(--blue);
  color: var(--blue);
}
.screen-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(22px, 3vw, 46px);
  outline: 0;
}
.screen-story {
  min-width: 0;
  margin: 0;
  scroll-snap-align: center;
}
.screen-frame {
  width: 100%;
  aspect-ratio: 390 / 844;
  overflow: hidden;
  border: 1px solid #3a3833;
  border-radius: clamp(26px, 2.8vw, 40px);
  background: #090908;
  box-shadow: 0 36px 80px rgba(0, 0, 0, 0.46);
}
.screen-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.daily-screen-frame {
  position: relative;
  aspect-ratio: 390 / 844;
  background: #11100e;
}
.daily-screen-frame img {
  height: 100%;
  object-fit: contain;
  object-position: center;
}
.preview-setup-cta {
  position: absolute;
  z-index: 1;
  top: 85.9%;
  left: 5.85%;
  display: flex;
  width: 88.3%;
  height: 6.2%;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border-radius: 999px;
  background: #d2b08f;
  color: #15120e;
  font: 500 clamp(10px, 1vw, 15px) / 1 "Manrope", sans-serif;
  letter-spacing: 0.06em;
}
.preview-setup-cta b {
  font-size: 1.35em;
  font-weight: 400;
  line-height: 1;
}
.screen-story figcaption {
  padding: 22px 4px 0;
}
.screen-story figcaption span,
.screen-story figcaption strong {
  display: block;
}
.screen-story figcaption span {
  margin-bottom: 12px;
  color: var(--blue);
  font-size: 8px;
  font-weight: 500;
  letter-spacing: 0.18em;
}
.screen-story figcaption strong {
  color: #e5e0d7;
  font: 300 clamp(20px, 1.7vw, 27px) / 1.25 "Manrope";
}
.screen-story figcaption p {
  max-width: 350px;
  margin: 9px 0 0;
  color: #9f9b93;
  font-size: 13px;
  line-height: 1.58;
}
.build-nine .decision {
  padding-top: 11vw;
  padding-bottom: 11vw;
}
.get-omee {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 8vw;
  align-items: center;
  padding: 10vw 7vw;
  background:
    radial-gradient(circle at 20% 46%, rgba(168, 213, 255, 0.075), transparent 28%),
    #0d0d0b;
}
.get-copy > p:not(.eyebrow) {
  max-width: 540px;
  margin: 28px 0;
  color: #aaa69e;
  font-size: 16px;
  line-height: 1.68;
}
.get-copy > small {
  display: block;
  margin: 14px 0 0 17px;
  color: #6f6b64;
  font-size: 10px;
}
.pricing-compact {
  overflow: hidden;
  border: 1px solid #3b3933;
  border-radius: var(--radius);
  background: linear-gradient(145deg, #1b1b18, #10100e);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.34);
}
.pricing-compact article {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 32px;
  padding: 30px;
  align-items: center;
}
.pricing-compact article + article {
  border-top: 1px solid var(--line);
}
.pricing-compact h3 {
  margin: 11px 0 0;
  color: #f0ece4;
  font: 300 35px "Manrope";
  letter-spacing: -0.04em;
}
.pricing-compact article > p,
.pro-compact > p {
  margin: 0;
  color: #aaa69e;
  font-size: 13px;
  line-height: 1.62;
}
.pro-compact {
  display: block !important;
  background: rgba(213, 192, 162, 0.035);
}
.pro-heading {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: flex-start;
}
.pro-heading > span {
  padding: 7px 10px;
  border: 1px solid rgba(168, 213, 255, 0.32);
  border-radius: 999px;
  color: var(--blue);
  font-size: 8px;
  letter-spacing: 0.15em;
}
.pro-compact > p {
  max-width: 620px;
  margin-top: 15px;
}
.price-choices {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 24px;
  border-top: 1px solid var(--line);
}
.price-choices > div {
  padding: 22px 18px 2px 0;
}
.price-choices > div + div {
  padding-left: 22px;
  border-left: 1px solid var(--line);
}
.price-choices span,
.price-choices strong,
.price-choices small {
  display: block;
}
.price-choices span {
  color: #89857e;
  font-size: 8px;
  font-weight: 500;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}
.price-choices strong {
  margin: 10px 0 5px;
  color: #eee9e0;
  font: 300 29px "Manrope";
}
.price-choices small {
  color: #8f8b83;
  font-size: 10px;
}
.price-choices .best-value span {
  color: var(--blue);
}
.pricing-compact > .pricing-note {
  margin: 0;
  padding: 16px 30px;
  border-top: 1px solid var(--line);
  color: #6d6962;
  font-size: 10px;
  line-height: 1.5;
  text-align: left;
}
.footer-nine {
  padding-top: 0;
}
.footer-questions {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 8vw;
  padding: 8vw 0;
}
.footer-questions h2 {
  font-size: clamp(37px, 4vw, 62px);
}
.footer-faq details {
  padding: 22px 0;
  border-top: 1px solid var(--line);
}
.footer-faq details:last-child {
  border-bottom: 1px solid var(--line);
}
.footer-faq summary {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  color: #d0cbc2;
  font: 300 18px "Manrope";
  cursor: pointer;
  list-style: none;
}
.footer-faq summary::-webkit-details-marker {
  display: none;
}
.footer-faq summary span {
  color: var(--blue);
  font-size: 22px;
  transition: transform 0.2s;
}
.footer-faq details[open] summary span {
  transform: rotate(45deg);
}
.footer-faq details p {
  max-width: 700px;
  margin: 17px 45px 0 0;
  color: #928e86;
  font-size: 13px;
  line-height: 1.7;
}
.footer-main {
  padding: 64px 0 6px;
  border-top: 1px solid var(--line);
}
.footer-nine .footer-links {
  margin-bottom: 68px;
}

@media (max-width: 920px) {
  .build-nine .hero-nine,
  .inside-heading,
  .get-omee,
  .footer-questions {
    grid-template-columns: 1fr;
  }
  .build-nine .hero-nine {
    gap: 70px;
  }
  .hero-product-shot {
    width: min(74vw, 480px);
  }
  .inside-heading {
    gap: 30px;
  }
  .inside-heading > p {
    max-width: 720px;
  }
  .screen-gallery {
    grid-template-columns: repeat(3, minmax(280px, 1fr));
    gap: 26px;
    overflow-x: auto;
    padding: 4px 7vw 20px 0;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }
  .screen-gallery::-webkit-scrollbar {
    display: none;
  }
  .gallery-controls > div {
    display: flex;
  }
  .get-omee {
    gap: 62px;
  }
  .footer-questions {
    gap: 44px;
  }
}

@media (max-width: 600px) {
  .build-nine .hero-nine,
  .inside-nine,
  .get-omee {
    padding-left: 22px;
    padding-right: 22px;
  }
  .build-nine .hero-nine {
    padding-top: 82px;
    padding-bottom: 90px;
    gap: 64px;
  }
  .hero-nine .hero-copy h1 {
    font-size: 47px;
  }
  .hero-nine .lede {
    font-size: 16px;
    line-height: 1.62;
  }
  .hero-product-shot {
    width: min(100%, 430px);
  }
  .shot-label {
    gap: 12px;
    font-size: 7px;
  }
  .hero-phone {
    border-radius: 29px;
  }
  .inside-nine {
    padding-top: 100px;
    padding-bottom: 95px;
  }
  .inside-heading h2,
  .get-omee h2 {
    font-size: 43px;
    font-weight: 300;
  }
  .inside-heading > p {
    font-size: 15px;
  }
  .method-line {
    margin: 48px 0 55px;
    padding-right: 26px;
  }
  .gallery-controls {
    margin-bottom: 18px;
  }
  .screen-gallery {
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: min(84vw, 354px);
    gap: 18px;
    margin-right: -22px;
    padding-right: 22px;
  }
  .screen-story figcaption {
    padding-top: 19px;
  }
  .build-nine .decision {
    padding-top: 100px;
    padding-bottom: 100px;
  }
  .category {
    min-height: 78vh;
    padding-top: 110px;
    padding-bottom: 110px;
  }
  .category h2 {
    font-size: 44px;
    font-weight: 300;
  }
  .category p:not(.eyebrow) {
    font-size: 24px;
    line-height: 1.35;
  }
  .get-omee {
    padding-top: 105px;
    padding-bottom: 105px;
  }
  .get-copy .cta {
    width: 100%;
  }
  .pricing-compact article {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 24px;
  }
  .pro-heading {
    align-items: center;
  }
  .pro-heading h3 {
    font-size: 30px;
  }
  .price-choices strong {
    font-size: 25px;
  }
  .pricing-compact > .pricing-note {
    padding: 15px 24px;
  }
  .footer-nine {
    padding-left: 22px;
    padding-right: 22px;
  }
  .footer-questions {
    padding: 92px 0 82px;
  }
  .footer-questions h2 {
    font-weight: 300;
  }
  .footer-faq summary {
    font-size: 16px;
  }
  .footer-main {
    padding-top: 56px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .dial-arc,
  .hero-timing > div i.active {
    animation: none;
  }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
