:root {
  --canvas: #f6f6f4;
  --paper: #ffffff;
  --ink: #171918;
  --muted: #6c706c;
  --coral: #ff5c61;
  --lime: #d8ff52;
  --blue: #477bff;
  --amber: #ffb647;
  --line: rgba(23, 25, 24, 0.12);
  --display: "Arial Rounded MT Bold", "Trebuchet MS", Arial, sans-serif;
  --body: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --radius: 30px;
  --shadow: 0 26px 70px rgba(23, 25, 24, 0.14);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--canvas);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input {
  font: inherit;
}

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

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

.section {
  padding-block: 128px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 1000;
  padding: 10px 16px;
  background: var(--ink);
  color: white;
  border-radius: 99px;
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

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

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  transition: background 220ms ease, box-shadow 220ms ease;
}

.site-header.scrolled {
  background: rgba(246, 246, 244, 0.92);
  box-shadow: 0 1px 0 var(--line);
  backdrop-filter: blur(16px);
}

.nav {
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.wordmark {
  position: relative;
  z-index: 2;
  font-family: var(--display);
  font-size: 29px;
  font-weight: 900;
  letter-spacing: -2.3px;
  line-height: 1;
}

.wordmark span {
  color: var(--coral);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
  font-size: 14px;
  font-weight: 700;
}

.nav-links > a:not(.nav-cta) {
  position: relative;
}

.nav-links > a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -6px;
  height: 2px;
  background: var(--coral);
  transition: right 180ms ease;
}

.nav-links > a:hover::after,
.nav-links > a:focus-visible::after {
  right: 0;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 12px 12px 12px 20px;
  border-radius: 99px;
  background: var(--ink);
  color: white;
}

.nav-cta span {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--coral);
  transition: transform 180ms ease;
}

.nav-cta:hover span {
  transform: rotate(45deg);
}

.menu-toggle {
  display: none;
  position: relative;
  z-index: 2;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: var(--ink);
}

.menu-toggle span {
  position: absolute;
  left: 12px;
  width: 20px;
  height: 2px;
  background: white;
  transition: transform 180ms ease, top 180ms ease;
}

.menu-toggle span:first-child { top: 17px; }
.menu-toggle span:last-child { top: 25px; }
.menu-toggle[aria-expanded="true"] span:first-child { top: 21px; transform: rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:last-child { top: 21px; transform: rotate(-45deg); }

.hero {
  min-height: 860px;
  padding-top: 88px;
  background: var(--canvas);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  min-height: 772px;
  align-items: center;
  gap: 40px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 24px;
  color: var(--muted);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.2;
}

.eyebrow > span {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 0 0 5px rgba(255, 92, 97, 0.14);
}

.eyebrow.coral {
  color: var(--coral);
}

.hero h1,
.section-heading h2,
.feature-intro h2,
.compat-copy h2,
.sample-heading h2,
.price-copy h2,
.gas-copy h2,
.early-card h2 {
  margin: 0;
  font-family: var(--display);
  font-weight: 900;
  letter-spacing: -0.065em;
  line-height: 0.94;
}

.hero h1 {
  max-width: 730px;
  font-size: clamp(64px, 7vw, 108px);
}

.hero h1 em {
  color: var(--coral);
  font-style: normal;
}

.hero-intro {
  max-width: 620px;
  margin: 32px 0 0;
  color: #4f5350;
  font-size: 20px;
  line-height: 1.55;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  min-height: 58px;
  padding: 9px 10px 9px 24px;
  border-radius: 999px;
  font-weight: 800;
  line-height: 1;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

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

.button-dark {
  background: var(--ink);
  color: white;
  box-shadow: 0 10px 25px rgba(23, 25, 24, 0.18);
}

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

.button-icon {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--coral);
  color: var(--ink);
  font-size: 20px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 800;
}

.text-link span {
  color: var(--coral);
}

.hero-proof {
  display: flex;
  gap: 0;
  margin-top: 54px;
}

.hero-proof div {
  min-width: 135px;
  padding-right: 24px;
  margin-right: 24px;
  border-right: 1px solid var(--line);
}

.hero-proof div:last-child {
  border: 0;
}

.hero-proof strong,
.hero-proof span {
  display: block;
}

.hero-proof strong {
  font-family: var(--display);
  font-size: 18px;
  letter-spacing: -0.03em;
}

.hero-proof span {
  color: var(--muted);
  font-size: 13px;
}

.hero-visual {
  position: relative;
  height: 700px;
}

.hero-shape {
  position: absolute;
  border-radius: 50%;
}

.shape-lime {
  top: 60px;
  right: -60px;
  width: 530px;
  height: 530px;
  background: var(--lime);
}

.shape-coral {
  right: 410px;
  bottom: 70px;
  width: 96px;
  height: 96px;
  background: var(--coral);
}

.phone {
  position: relative;
  z-index: 2;
  overflow: hidden;
  padding: 10px;
  border: 2px solid rgba(255, 255, 255, 0.28);
  border-radius: 52px;
  background: #101110;
  box-shadow: var(--shadow);
}

.phone::after {
  content: "";
  position: absolute;
  z-index: 3;
  top: 16px;
  left: 50%;
  width: 86px;
  height: 25px;
  border-radius: 99px;
  background: #050505;
  transform: translateX(-50%);
}

.phone-screen {
  overflow: hidden;
  width: 100%;
  height: 100%;
  border-radius: 42px;
  background: white;
}

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

.phone-hero {
  position: absolute;
  top: 34px;
  right: 54px;
  width: 326px;
  aspect-ratio: 1206 / 2622;
  transform: rotate(2.5deg);
}

.floating-card {
  position: absolute;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(23, 25, 24, 0.08);
  background: white;
  box-shadow: 0 18px 50px rgba(23, 25, 24, 0.16);
}

.fit-card {
  top: 150px;
  left: 5px;
  padding: 12px 18px 12px 12px;
  border-radius: 24px;
  transform: rotate(-5deg);
}

.score-ring {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border: 7px solid var(--coral);
  border-radius: 50%;
  font-family: var(--display);
  font-size: 18px;
}

.floating-card strong,
.floating-card small {
  display: block;
}

.floating-card strong {
  font-size: 14px;
}

.floating-card small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 11px;
}

.photo-count {
  right: -6px;
  bottom: 102px;
  padding: 13px 17px;
  border-radius: 20px;
  transform: rotate(3deg);
}

.photo-count svg {
  width: 26px;
  height: 26px;
  color: var(--blue);
}

.signal-strip {
  overflow: hidden;
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  background: var(--lime);
}

.signal-track {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 36px;
  min-width: max-content;
  height: 66px;
  padding-inline: 32px;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.signal-track b {
  color: var(--coral);
  font-size: 22px;
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  align-items: end;
  gap: 70px;
}

.section-heading .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -42px;
}

.section-heading h2,
.feature-intro h2,
.sample-heading h2,
.price-copy h2,
.gas-copy h2,
.early-card h2 {
  font-size: clamp(52px, 5.6vw, 82px);
}

.section-heading > p:last-child,
.sample-heading > p {
  margin: 0 0 4px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
}

.journey-path {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 18px;
  margin-top: 84px;
}

.journey-step {
  position: relative;
  min-height: 300px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.step-number {
  position: absolute;
  top: 28px;
  right: 28px;
  color: #979a97;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 12px;
  font-weight: 800;
}

.step-icon {
  display: grid;
  place-items: center;
  width: 74px;
  height: 74px;
  border-radius: 22px;
}

.step-icon svg {
  width: 34px;
  height: 34px;
}

.coral-bg { background: var(--coral); }
.lime-bg { background: var(--lime); }
.blue-bg { background: var(--blue); color: white; }

.journey-step h3 {
  margin: 46px 0 8px;
  font-family: var(--display);
  font-size: 25px;
  letter-spacing: -0.04em;
}

.journey-step p {
  max-width: 280px;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.journey-arrow {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--coral);
  background: var(--canvas);
  font-size: 18px;
}

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

.feature-intro {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: start;
  gap: 70px;
  margin-bottom: 72px;
}

.feature-intro .eyebrow {
  margin-top: 15px;
  color: #a7aba7;
}

.feature-intro h2 {
  max-width: 780px;
}

.feature-console {
  display: grid;
  grid-template-columns: 0.64fr 1.36fr;
  min-height: 690px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 36px;
  background: #212421;
}

.feature-tabs {
  display: flex;
  flex-direction: column;
  padding: 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.13);
}

.feature-tab {
  position: relative;
  flex: 1;
  width: 100%;
  padding: 22px 18px 22px 68px;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: none;
  color: white;
  text-align: left;
  cursor: pointer;
}

.feature-tab:last-child {
  border: 0;
}

.feature-tab::before {
  content: "";
  position: absolute;
  left: 12px;
  top: 50%;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  transform: translateY(-50%);
  transition: background 180ms ease, border 180ms ease;
}

.feature-tab::after {
  content: "→";
  position: absolute;
  left: 23px;
  top: 50%;
  opacity: 0;
  color: var(--ink);
  transform: translate(-8px, -52%);
  transition: opacity 180ms ease, transform 180ms ease;
}

.feature-tab.active::before {
  border-color: var(--coral);
  background: var(--coral);
}

.feature-console[data-tone="lime"] .feature-tab.active::before { border-color: var(--lime); background: var(--lime); }
.feature-console[data-tone="blue"] .feature-tab.active::before { border-color: var(--blue); background: var(--blue); }

.feature-tab.active::after {
  opacity: 1;
  transform: translate(0, -52%);
}

.feature-console[data-tone="blue"] .feature-tab.active::after { color: white; }

.feature-tab > span,
.feature-tab strong,
.feature-tab small {
  display: block;
}

.feature-tab > span {
  margin-bottom: 5px;
  color: #898e89;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 10px;
  font-weight: 800;
}

.feature-tab strong {
  font-size: 16px;
}

.feature-tab small {
  margin-top: 3px;
  color: #8e938e;
  font-size: 12px;
}

.feature-stage {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  min-width: 0;
  overflow: hidden;
  background: var(--coral);
  color: var(--ink);
  transition: background 220ms ease;
}

.feature-console[data-tone="lime"] .feature-stage { background: var(--lime); }
.feature-console[data-tone="blue"] .feature-stage { background: var(--blue); color: white; }

.feature-copy {
  align-self: end;
  padding: 64px 24px 58px 52px;
}

.feature-kicker {
  margin: 0 0 17px;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.13em;
}

.feature-copy h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(38px, 4vw, 59px);
  letter-spacing: -0.06em;
  line-height: 0.98;
}

.feature-copy > p:not(.feature-kicker) {
  margin: 22px 0 26px;
  font-size: 16px;
  line-height: 1.55;
}

.feature-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.feature-meta span {
  padding: 8px 12px;
  border: 1px solid currentColor;
  border-radius: 99px;
  font-size: 11px;
  font-weight: 800;
}

.feature-device-wrap {
  position: relative;
  min-width: 0;
}

.phone-feature {
  position: absolute;
  top: 58px;
  left: 42px;
  width: 310px;
  aspect-ratio: 1206 / 2622;
  box-shadow: 0 26px 60px rgba(23, 25, 24, 0.26);
  transform: rotate(2deg);
  transition: transform 260ms ease;
}

.feature-console.is-switching .phone-feature {
  transform: rotate(2deg) translateY(12px) scale(0.98);
}

.feature-sticker {
  position: absolute;
  z-index: 4;
  right: 28px;
  bottom: 34px;
  display: grid;
  place-items: center;
  width: 118px;
  height: 118px;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: white;
  color: var(--ink);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-align: center;
  transform: rotate(8deg);
}

.compatibility {
  overflow: hidden;
  background: #101210;
  color: white;
}

.compat-grid {
  display: grid;
  grid-template-columns: 0.94fr 1.06fr;
  align-items: center;
  gap: 110px;
}

.compat-visual {
  position: relative;
  height: 710px;
}

.compat-visual::before {
  content: "";
  position: absolute;
  top: 54px;
  left: -88px;
  width: 590px;
  height: 590px;
  border: 1px solid rgba(216, 255, 82, 0.35);
  border-radius: 50%;
}

.compat-visual::after {
  content: "";
  position: absolute;
  top: 112px;
  left: -29px;
  width: 470px;
  height: 470px;
  border: 1px solid rgba(216, 255, 82, 0.16);
  border-radius: 50%;
}

.phone-compat {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 68px;
  width: 330px;
  aspect-ratio: 1206 / 2622;
  transform: rotate(-3deg);
}

.compat-orbit span {
  position: absolute;
  z-index: 4;
  padding: 8px 12px;
  border: 1px solid rgba(216, 255, 82, 0.5);
  border-radius: 99px;
  background: #101210;
  color: var(--lime);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.compat-orbit span:nth-child(1) { top: 115px; left: -12px; }
.compat-orbit span:nth-child(2) { top: 420px; left: -10px; }
.compat-orbit span:nth-child(3) { top: 575px; left: 330px; }

.lime-text {
  color: var(--lime);
}

.compat-copy h2 {
  max-width: 700px;
  font-size: clamp(58px, 6.2vw, 92px);
}

.compat-lede {
  max-width: 650px;
  margin: 30px 0 38px;
  color: #aeb2ae;
  font-size: 19px;
  line-height: 1.6;
}

.compat-list {
  max-width: 650px;
  margin-bottom: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.compat-list article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.compat-list h3,
.compat-list p {
  margin: 0;
}

.compat-list h3 {
  font-family: var(--display);
  font-size: 18px;
}

.compat-list p {
  margin-top: 3px;
  color: #929792;
  font-size: 13px;
}

.status-dot {
  width: 14px;
  height: 14px;
  margin-top: 5px;
  border-radius: 50%;
}

.status-dot.good { background: var(--lime); }
.status-dot.caveat { background: var(--amber); }
.status-dot.bad { background: var(--coral); }

.sample-heading {
  display: grid;
  grid-template-columns: 1.15fr 0.75fr;
  align-items: end;
  gap: 80px;
}

.photo-wall {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  grid-template-rows: 310px 310px;
  gap: 18px;
  margin-top: 72px;
}

.photo-card {
  position: relative;
  overflow: hidden;
  margin: 0;
  border-radius: 26px;
  background: #ddd;
}

.photo-card-tall {
  grid-row: 1 / span 2;
}

.photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.photo-card:hover img {
  transform: scale(1.025);
}

.photo-card figcaption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.creator,
.gear-tag {
  display: flex;
  align-items: center;
  min-height: 38px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  font-size: 11px;
  font-weight: 800;
  backdrop-filter: blur(12px);
}

.creator {
  gap: 8px;
  padding: 4px 13px 4px 4px;
}

.creator i {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--blue);
  color: white;
  font-style: normal;
  font-size: 9px;
}

.gear-tag {
  padding: 0 13px;
}

.photo-card:nth-child(2) {
  grid-column: 2;
  grid-row: 1;
}

.photo-card:nth-child(3) {
  grid-column: 3;
  grid-row: 1;
}

.album-card {
  grid-column: 2 / span 2;
  grid-row: 2;
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: end;
  gap: 0 22px;
  padding: 34px;
  overflow: hidden;
  border-radius: 26px;
  background: var(--coral);
}

.album-card::after {
  content: "";
  position: absolute;
  top: -70px;
  right: -30px;
  width: 240px;
  height: 240px;
  border: 2px solid var(--ink);
  border-radius: 50%;
}

.album-label {
  grid-column: 1 / -1;
  align-self: start;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.album-card > strong {
  font-family: var(--display);
  font-size: 100px;
  letter-spacing: -0.08em;
  line-height: 0.78;
}

.album-card > p {
  max-width: 210px;
  margin: 0;
  font-size: 15px;
  font-weight: 650;
  line-height: 1.35;
}

.avatar-stack {
  display: flex;
  margin-top: 26px;
}

.avatar-stack i {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-right: -8px;
  border: 2px solid var(--coral);
  border-radius: 50%;
  background: white;
  font-style: normal;
  font-size: 9px;
  font-weight: 900;
}

.album-card > a {
  position: relative;
  z-index: 1;
  justify-self: end;
  align-self: center;
  border-bottom: 1px solid var(--ink);
  font-size: 13px;
  font-weight: 800;
}

.price-section {
  background: var(--lime);
}

.price-grid {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  align-items: center;
  gap: 90px;
}

.price-copy h2 {
  max-width: 620px;
}

.price-copy > p:not(.eyebrow) {
  max-width: 560px;
  margin: 30px 0;
  font-size: 18px;
  line-height: 1.6;
}

.check-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
  font-size: 14px;
  font-weight: 750;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 12px;
}

.check-list span {
  display: grid;
  place-items: center;
  width: 23px;
  height: 23px;
  border: 1px solid var(--ink);
  border-radius: 50%;
  font-size: 11px;
}

.price-board {
  padding: 28px;
  border: 2px solid var(--ink);
  border-radius: 30px;
  background: white;
  box-shadow: 14px 14px 0 var(--ink);
  transform: rotate(1deg);
}

.price-board-head,
.watched-product,
.alert-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.price-board-head {
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.price-board-head small,
.watched-product small,
.best-price small {
  display: block;
  color: var(--muted);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.price-board-head strong {
  display: block;
  margin-top: 4px;
  font-size: 16px;
}

.live-pill {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 7px 10px;
  border-radius: 99px;
  background: #eff5df;
  font-size: 9px;
  font-weight: 800;
}

.live-pill i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #65a926;
}

.watched-product {
  gap: 16px;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}

.lens-illustration {
  position: relative;
  flex: 0 0 64px;
  width: 64px;
  height: 92px;
  border-radius: 17px 17px 22px 22px;
  background: #171918;
  box-shadow: inset 8px 0 13px rgba(255, 255, 255, 0.12);
}

.lens-illustration::before {
  content: "";
  position: absolute;
  top: -5px;
  left: -4px;
  width: 72px;
  height: 16px;
  border-radius: 50%;
  background: #252725;
  box-shadow: inset 0 3px 0 #574640;
}

.lens-illustration span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 3px;
  background: #3d403d;
}

.lens-illustration span:first-child { top: 38px; }
.lens-illustration span:last-child { top: 64px; }

.watched-product > div:nth-child(2) {
  flex: 1;
}

.watched-product > div:nth-child(2) strong,
.watched-product > div:nth-child(2) span,
.best-price strong,
.best-price span {
  display: block;
}

.watched-product > div:nth-child(2) strong {
  margin: 3px 0;
  font-size: 16px;
}

.watched-product > div:nth-child(2) span {
  color: var(--muted);
  font-size: 11px;
}

.best-price {
  text-align: right;
}

.best-price strong {
  font-family: var(--display);
  font-size: 23px;
  letter-spacing: -0.03em;
}

.best-price span {
  color: #4e8b1e;
  font-size: 9px;
  font-weight: 800;
}

.offer-list > div {
  display: grid;
  grid-template-columns: 1fr 1.2fr auto;
  gap: 16px;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-size: 11px;
}

.offer-list > div > span {
  color: var(--muted);
}

.offer-list b {
  font-size: 12px;
}

.alert-row {
  gap: 14px;
  padding-top: 22px;
  font-size: 11px;
}

.alert-row > span {
  color: var(--muted);
}

.alert-row > strong {
  flex: 1;
  font-size: 18px;
}

.alert-row button {
  padding: 10px 16px;
  border: 0;
  border-radius: 99px;
  background: var(--ink);
  color: white;
  font-size: 11px;
  font-weight: 800;
  cursor: pointer;
}

.alert-row button.is-set {
  background: var(--coral);
  color: var(--ink);
}

.good-gas {
  padding-bottom: 0;
}

.good-gas-card {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 90px;
  padding: 74px;
  border-radius: 38px;
  background: white;
}

.gas-copy h2 {
  font-size: clamp(48px, 4.8vw, 70px);
}

.gas-copy > p:last-child {
  max-width: 510px;
  margin: 27px 0 0;
  color: var(--muted);
  font-size: 17px;
}

.gas-meter {
  align-self: center;
}

.meter-scale,
.meter-labels {
  display: flex;
  justify-content: space-between;
}

.meter-scale {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.meter-line {
  position: relative;
  height: 18px;
  margin: 16px 0 27px;
  border-radius: 99px;
  background: linear-gradient(to right, var(--coral) 0 48%, var(--lime) 48% 100%);
}

.meter-line i {
  position: absolute;
  top: 50%;
  left: 76%;
  width: 38px;
  height: 38px;
  border: 8px solid var(--ink);
  border-radius: 50%;
  background: white;
  transform: translate(-50%, -50%);
}

.meter-labels > div:last-child {
  text-align: right;
}

.meter-labels small,
.meter-labels strong {
  display: block;
}

.meter-labels small {
  color: var(--muted);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.meter-labels strong {
  margin-top: 4px;
  font-family: var(--display);
  font-size: 16px;
}

.early-access {
  padding-bottom: 64px;
}

.early-card {
  position: relative;
  overflow: hidden;
  padding: 92px 64px;
  border-radius: 42px;
  background: var(--ink);
  color: white;
  text-align: center;
}

.early-card::before,
.early-card::after {
  content: "";
  position: absolute;
  border-radius: 50%;
}

.early-card::before {
  top: -130px;
  left: -90px;
  width: 330px;
  height: 330px;
  border: 1px solid rgba(216, 255, 82, 0.3);
  box-shadow: 0 0 0 48px rgba(216, 255, 82, 0.04);
}

.early-card::after {
  right: -70px;
  bottom: -110px;
  width: 280px;
  height: 280px;
  background: var(--coral);
}

.early-card > * {
  position: relative;
  z-index: 1;
}

.early-icon {
  width: 76px;
  height: 76px;
  margin: 0 auto 32px;
  border-radius: 18px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
}

.early-card .eyebrow {
  justify-content: center;
}

.early-card h2 {
  max-width: 840px;
  margin-inline: auto;
}

.early-card > p:not(.eyebrow):not(.form-note) {
  margin: 26px 0 30px;
  color: #aeb2ae;
  font-size: 17px;
}

.signup-form {
  display: flex;
  width: min(600px, 100%);
  min-height: 62px;
  margin-inline: auto;
  padding: 6px;
  border-radius: 99px;
  background: white;
}

.signup-form input {
  min-width: 0;
  flex: 1;
  padding: 0 20px;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
}

.signup-form input::placeholder {
  color: #8c908c;
}

.signup-form button {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0 20px;
  border: 0;
  border-radius: 99px;
  background: var(--coral);
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
  cursor: pointer;
}

.signup-form.is-success input {
  color: #4e8b1e;
  font-weight: 750;
}

.signup-form.is-success button {
  background: var(--lime);
}

.signup-form.is-error {
  box-shadow: 0 0 0 3px var(--coral);
}

.form-note {
  min-height: 19px;
  margin: 14px 0 0;
  color: #777c77;
  font-size: 11px;
}

.form-note.error {
  color: var(--coral);
}

.form-note.success {
  color: var(--lime);
}

.site-footer {
  padding: 52px 0 24px;
  background: var(--canvas);
}

.footer-main {
  display: flex;
  justify-content: space-between;
  gap: 80px;
  padding-bottom: 70px;
}

.footer-wordmark {
  display: inline-block;
  font-size: 38px;
}

.footer-main > div:first-child p {
  color: var(--muted);
  font-size: 13px;
}

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

.footer-links > div {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 110px;
}

.footer-links strong {
  margin-bottom: 7px;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 10px;
  letter-spacing: 0.1em;
}

.footer-links a {
  color: var(--muted);
  font-size: 13px;
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: #777b77;
  font-size: 10px;
}

.js .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 650ms ease, transform 650ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal-delay {
  transition-delay: 120ms;
}

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

@media (max-width: 1100px) {
  .hero-grid { grid-template-columns: 1fr 0.85fr; }
  .hero h1 { font-size: clamp(62px, 8.4vw, 88px); }
  .phone-hero { right: 8px; width: 300px; }
  .fit-card { left: -32px; }
  .photo-count { right: -28px; }
  .feature-stage { grid-template-columns: 1fr 1.1fr; }
  .feature-device-wrap { overflow: hidden; }
  .phone-feature { left: 20px; }
  .feature-sticker { right: 14px; }
  .compat-grid { gap: 48px; }
  .price-grid { gap: 48px; }
  .good-gas-card { padding: 58px; gap: 52px; }
  .photo-card figcaption { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 860px) {
  .shell { width: min(100% - 40px, 700px); }
  .section { padding-block: 92px; }
  .menu-toggle { display: block; }
  .nav-links {
    position: fixed;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 24px;
    padding: 80px 34px;
    visibility: hidden;
    background: var(--canvas);
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms;
  }
  .nav-links.open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }
  .nav-links > a:not(.nav-cta) { font-family: var(--display); font-size: 38px; letter-spacing: -0.05em; }
  .nav-cta { margin-top: 10px; }

  .hero { min-height: auto; }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    padding-top: 74px;
  }
  .hero-copy { text-align: center; }
  .hero-copy .eyebrow { justify-content: center; }
  .hero h1 { margin-inline: auto; }
  .hero-intro { margin-inline: auto; }
  .hero-actions, .hero-proof { justify-content: center; }
  .hero-visual { width: min(100%, 590px); height: 680px; margin-inline: auto; }
  .shape-lime { right: 50%; transform: translateX(50%); }
  .shape-coral { right: auto; left: 10px; }
  .phone-hero { right: 50%; transform: translateX(50%) rotate(2deg); }
  .fit-card { left: 0; }
  .photo-count { right: 0; }

  .section-heading,
  .feature-intro,
  .sample-heading,
  .price-grid,
  .good-gas-card {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .section-heading .eyebrow { margin-bottom: -5px; }
  .journey-path { grid-template-columns: 1fr; margin-top: 50px; }
  .journey-step { min-height: 230px; }
  .journey-step h3 { margin-top: 34px; }
  .journey-arrow { transform: rotate(90deg); margin-inline: auto; }
  .feature-intro { margin-bottom: 48px; }
  .feature-console { grid-template-columns: 1fr; }
  .feature-tabs {
    display: grid;
    grid-template-columns: repeat(4, minmax(150px, 1fr));
    overflow-x: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,.13);
  }
  .feature-tab { min-height: 125px; padding: 22px 16px; border-right: 1px solid rgba(255,255,255,.12); border-bottom: 0; }
  .feature-tab::before, .feature-tab::after { display: none; }
  .feature-tab.active { background: rgba(255,255,255,.09); }
  .feature-stage { min-height: 620px; }
  .compat-grid { grid-template-columns: 1fr; }
  .compat-visual { order: 2; width: min(100%, 560px); margin-inline: auto; }
  .compat-copy { order: 1; }
  .phone-compat { left: 50%; transform: translateX(-50%) rotate(-3deg); }
  .compat-visual::before { left: 50%; transform: translateX(-50%); }
  .compat-visual::after { left: 50%; transform: translateX(-50%); }
  .compat-orbit span:nth-child(1) { left: 5px; }
  .compat-orbit span:nth-child(2) { left: 8px; }
  .photo-wall { grid-template-columns: 1fr 1fr; grid-template-rows: 500px 300px 280px; }
  .photo-card-tall { grid-column: 1 / -1; grid-row: 1; }
  .photo-card:nth-child(2) { grid-column: 1; grid-row: 2; }
  .photo-card:nth-child(3) { grid-column: 2; grid-row: 2; }
  .album-card { grid-column: 1 / -1; grid-row: 3; }
  .price-copy > p:not(.eyebrow) { max-width: 660px; }
  .price-board { margin-top: 30px; transform: none; }
  .good-gas-card { padding: 54px; }
}

@media (max-width: 560px) {
  .shell { width: calc(100% - 32px); }
  .section { padding-block: 76px; }
  .nav { height: 72px; }
  .site-header.scrolled { backdrop-filter: blur(12px); }
  .wordmark { font-size: 26px; }
  .hero { padding-top: 72px; }
  .hero-grid { padding-top: 52px; }
  .hero h1 { font-size: clamp(52px, 16vw, 72px); }
  .hero-intro { margin-top: 24px; font-size: 17px; }
  .hero-actions { flex-direction: column; gap: 17px; margin-top: 28px; }
  .hero-proof { gap: 0; margin-top: 42px; }
  .hero-proof div { min-width: 0; flex: 1; padding-right: 12px; margin-right: 12px; }
  .hero-proof strong { font-size: 15px; }
  .hero-proof span { font-size: 10px; }
  .hero-visual { height: 590px; }
  .shape-lime { top: 58px; width: 390px; height: 390px; }
  .shape-coral { bottom: 38px; width: 72px; height: 72px; }
  .phone-hero { top: 30px; width: 270px; }
  .fit-card { top: 125px; left: -3px; padding: 8px 11px 8px 8px; }
  .score-ring { width: 45px; height: 45px; border-width: 5px; font-size: 14px; }
  .photo-count { right: -4px; bottom: 78px; padding: 9px 11px; }
  .photo-count svg { width: 21px; }
  .floating-card strong { font-size: 11px; }
  .floating-card small { font-size: 9px; }
  .signal-track { height: 58px; }
  .section-heading h2,
  .feature-intro h2,
  .sample-heading h2,
  .price-copy h2,
  .gas-copy h2,
  .early-card h2 { font-size: clamp(43px, 13vw, 60px); }
  .section-heading > p:last-child, .sample-heading > p { font-size: 16px; }
  .journey-step { min-height: auto; padding: 24px; }
  .feature-lab .shell { width: 100%; }
  .feature-intro { width: calc(100% - 32px); margin-inline: auto; }
  .feature-console { border-inline: 0; border-radius: 0; }
  .feature-tabs { padding: 10px 16px; grid-template-columns: repeat(4, 145px); }
  .feature-tab { min-height: 104px; padding: 16px 10px; }
  .feature-tab strong { font-size: 13px; }
  .feature-stage { grid-template-columns: 1fr; min-height: 760px; }
  .feature-copy { padding: 42px 28px 10px; align-self: start; }
  .feature-copy h3 { font-size: 45px; }
  .feature-device-wrap { min-height: 560px; }
  .phone-feature { top: 22px; left: 50%; width: 270px; transform: translateX(-50%) rotate(2deg); }
  .feature-console.is-switching .phone-feature { transform: translateX(-50%) rotate(2deg) translateY(10px) scale(.98); }
  .feature-sticker { right: 16px; bottom: 18px; width: 90px; height: 90px; font-size: 9px; }
  .compatibility { padding-bottom: 42px; }
  .compat-copy h2 { font-size: clamp(50px, 15vw, 70px); }
  .compat-visual { height: 600px; }
  .compat-visual::before { top: 45px; width: 470px; height: 470px; }
  .compat-visual::after { top: 100px; width: 360px; height: 360px; }
  .phone-compat { width: 276px; }
  .compat-orbit span:nth-child(2) { top: 390px; }
  .compat-orbit span:nth-child(3) { top: 520px; left: auto; right: 4px; }
  .photo-wall { grid-template-columns: 1fr; grid-template-rows: 460px 330px 330px 340px; gap: 12px; margin-top: 46px; }
  .photo-card-tall { grid-column: 1; grid-row: 1; }
  .photo-card:nth-child(2) { grid-column: 1; grid-row: 2; }
  .photo-card:nth-child(3) { grid-column: 1; grid-row: 3; }
  .album-card { grid-column: 1; grid-row: 4; grid-template-columns: 1fr; align-items: start; padding: 28px; }
  .album-card > strong { margin: 34px 0 15px; font-size: 90px; }
  .album-card > p { max-width: 250px; }
  .album-card > a { justify-self: start; margin-top: 26px; }
  .price-board { padding: 20px; box-shadow: 8px 8px 0 var(--ink); }
  .watched-product { flex-wrap: wrap; }
  .lens-illustration { flex-basis: 54px; width: 54px; height: 80px; }
  .lens-illustration::before { width: 62px; }
  .best-price { width: 100%; padding-left: 70px; text-align: left; }
  .offer-list > div { grid-template-columns: 1fr auto; }
  .offer-list > div > span { grid-column: 1; }
  .offer-list b { grid-column: 2; grid-row: 1 / span 2; }
  .alert-row { flex-wrap: wrap; }
  .alert-row > strong { text-align: right; }
  .alert-row button { width: 100%; }
  .good-gas { padding-top: 76px; }
  .good-gas-card { padding: 36px 26px; border-radius: 28px; }
  .meter-labels { gap: 18px; }
  .meter-labels strong { font-size: 13px; }
  .early-access { padding-top: 76px; }
  .early-card { width: 100%; padding: 72px 22px; border-radius: 0; }
  .early-card::after { width: 180px; height: 180px; }
  .early-card > p:not(.eyebrow):not(.form-note) { font-size: 15px; }
  .signup-form { flex-direction: column; gap: 8px; padding: 8px; border-radius: 24px; background: transparent; }
  .signup-form input { min-height: 54px; border-radius: 99px; background: white; }
  .signup-form button { justify-content: center; min-height: 54px; }
  .footer-main { flex-direction: column; padding-bottom: 50px; }
  .footer-links { gap: 48px; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
}

@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 .reveal { opacity: 1; transform: none; }
}
