:root {
  --ink: #11120f;
  --soft-ink: #070707;
  --paper: #000000;
  --cream: #0a0a0a;
  --mist: #000000;
  --clay: #c3532b;
  --orange: #ff5a1f;
  --coral: #ff2d55;
  --yellow: #ffd45a;
  --lime: #a7ff4f;
  --green: #174b34;
  --cyan: #58f0ff;
  --blue: #21476a;
  --white: #ffffff;
  --muted: rgba(255, 255, 255, 0.78);
  --muted-light: rgba(255, 255, 255, 0.82);
  --line: rgba(255, 255, 255, 0.12);
  --glass: rgba(255, 255, 255, 0.075);
  --glass-strong: rgba(255, 255, 255, 0.12);
  --glow: 0 26px 90px rgba(255, 90, 31, 0.22);
  --shadow: 0 34px 120px rgba(0, 0, 0, 0.55);
  --font-rounded: ui-rounded, "SF Pro Rounded", "Avenir Next", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-rounded);
  color: var(--white);
  background: #000000;
}

body.legal-page,
body.article-page {
  background: #000000;
}

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

button,
input {
  font: inherit;
}

img {
  max-width: 100%;
}

.skip-link,
.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:focus {
  z-index: 100;
  top: 12px;
  left: 12px;
  width: auto;
  height: auto;
  padding: 10px 14px;
  clip: auto;
  color: var(--ink);
  background: var(--yellow);
  border-radius: 8px;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: min(calc(100% - 32px), 1220px);
  margin: 14px auto 0;
  padding: 12px 14px;
  color: var(--white);
  background: rgba(12, 14, 12, 0.56);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  box-shadow: 0 18px 70px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(22px) saturate(160%);
}

.site-header.on-light {
  color: var(--white);
  background: rgba(8, 9, 8, 0.72);
  border-bottom: 1px solid var(--line);
}

.brand,
.nav-links,
.hero-actions,
.live-strip,
.site-footer,
.post-meta,
.article-nav {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 900;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 0 28px rgba(255, 106, 26, 0.34), inset 0 0 0 1px rgba(255, 255, 255, 0.2);
}

.brand-mark img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nav-links {
  gap: 26px;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.82);
}

.site-header.on-light .nav-links {
  color: rgba(255, 255, 255, 0.72);
}

.header-action {
  min-width: max-content;
  padding: 10px 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  font-weight: 800;
}

.site-header.on-light .header-action {
  border-color: rgba(255, 255, 255, 0.22);
}

.hero {
  position: relative;
  min-height: 96vh;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.7fr);
  gap: clamp(36px, 7vw, 100px);
  align-items: flex-end;
  padding: 150px clamp(20px, 6vw, 88px) 92px;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(115deg, rgba(255, 90, 31, 0.16), transparent 38%),
    linear-gradient(245deg, rgba(88, 240, 255, 0.12), transparent 42%),
    #000000;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.65), transparent 78%);
  pointer-events: none;
}

.hero-subpage {
  min-height: 64vh;
  align-items: center;
}

.hero-image,
.hero-scrim {
  position: absolute;
  inset: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-scrim {
  background:
    linear-gradient(90deg, rgba(17, 18, 15, 0.9), rgba(17, 18, 15, 0.46) 56%, rgba(17, 18, 15, 0.18)),
    linear-gradient(0deg, rgba(17, 18, 15, 0.78), transparent 45%);
}

.hero-content {
  position: relative;
  max-width: 860px;
  z-index: 1;
}

.pill,
.eyebrow {
  margin: 0 0 14px;
  color: var(--orange);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.pill {
  display: inline-flex;
  padding: 9px 12px;
  color: var(--ink);
  background: linear-gradient(135deg, var(--yellow), var(--orange));
  border-radius: 999px;
  box-shadow: 0 0 36px rgba(255, 90, 31, 0.28);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 18px;
  font-size: clamp(4.3rem, 12vw, 11.5rem);
  line-height: 0.86;
  letter-spacing: 0;
}

.hero-subpage h1 {
  font-size: clamp(3.4rem, 9vw, 7.5rem);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.2rem, 5vw, 4.7rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.35rem;
  letter-spacing: 0;
}

p {
  line-height: 1.68;
}

.hero-copy {
  max-width: 720px;
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  line-height: 1.44;
  color: rgba(255, 255, 255, 0.86);
}

.hero-app-stack {
  position: relative;
  z-index: 1;
  min-height: 560px;
  align-self: center;
}

.hero-app-stack-small {
  min-height: 360px;
}

.app-shot {
  position: absolute;
  right: 0;
  width: min(100%, 360px);
  min-height: 520px;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 38px;
  background:
    linear-gradient(140deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.03) 52%, rgba(255, 90, 31, 0.1)),
    #11140f;
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(28px) saturate(150%);
}

.app-shot::before {
  content: "";
  position: absolute;
  inset: 9px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 30px;
  pointer-events: none;
}

.app-shot-main {
  top: 0;
  z-index: 2;
}

.app-shot-back {
  top: 72px;
  right: 120px;
  z-index: 1;
  min-height: 380px;
  opacity: 0.72;
  transform: rotate(-7deg);
}

.shot-label {
  display: inline-flex;
  margin-bottom: 20px;
  padding: 8px 10px;
  border-radius: 8px;
  color: var(--ink);
  background: var(--yellow);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.app-shot strong {
  display: block;
  font-size: 2rem;
  line-height: 1.05;
}

.app-shot p,
.app-shot small {
  color: rgba(255, 255, 255, 0.72);
}

.mini-map {
  position: relative;
  height: 220px;
  margin: 26px 0;
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(255, 212, 90, 0.22) 0 16%, transparent 16%),
    linear-gradient(135deg, rgba(88, 240, 255, 0.18), transparent 52%),
    repeating-linear-gradient(32deg, transparent 0 22px, rgba(255, 255, 255, 0.08) 22px 24px),
    #173f2d;
  overflow: hidden;
}

.mini-map::after {
  content: "";
  position: absolute;
  left: 24%;
  top: 20%;
  width: 54%;
  height: 58%;
  border: 5px solid var(--orange);
  border-left-color: transparent;
  border-bottom-color: transparent;
  border-radius: 45% 55% 50% 42%;
  transform: rotate(22deg);
}

.shot-row,
.mini-riders {
  display: flex;
  align-items: center;
}

.shot-row {
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 8px;
}

.shot-row span {
  color: rgba(255, 255, 255, 0.76);
}

.shot-row b {
  color: var(--lime);
}

.mini-riders {
  gap: 8px;
  margin-top: 22px;
}

.mini-riders span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  color: var(--ink);
  background: linear-gradient(135deg, var(--yellow), var(--orange));
  font-size: 0.74rem;
  font-weight: 900;
}

.mini-map span {
  position: absolute;
  z-index: 1;
  width: 18px;
  height: 18px;
  border: 4px solid var(--white);
  border-radius: 50%;
  background: var(--yellow);
}

.mini-map span:nth-child(1) {
  left: 25%;
  bottom: 22%;
}

.mini-map span:nth-child(2) {
  left: 49%;
  top: 42%;
  background: var(--blue);
}

.mini-map span:nth-child(3) {
  right: 22%;
  top: 24%;
  background: var(--orange);
}

.under-cta {
  max-width: 650px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.68);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 0;
  border-radius: 14px;
  cursor: pointer;
  font-weight: 900;
}

.primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--orange), var(--coral));
  box-shadow: 0 16px 42px rgba(255, 90, 31, 0.35);
}

.ghost {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(20px) saturate(150%);
}

.button.secondary {
  color: var(--ink);
  background: var(--yellow);
}

.intro-band,
.planner-band,
.privacy-band,
.cta-band,
.signals-band,
.showcase-band,
.legal-wrap,
.blog-grid,
.article-layout,
.support-grid {
  display: grid;
  gap: clamp(28px, 6vw, 86px);
  padding: clamp(76px, 10vw, 132px) clamp(20px, 6vw, 88px);
}

.intro-band,
.planner-band,
.privacy-band,
.cta-band,
.signals-band,
.support-grid {
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 520px);
  align-items: center;
}

.section-copy p,
.section-heading p,
.feature-card p,
.signal-grid p,
.faq-list p,
.legal-content p,
.legal-content li,
.article-content p,
.article-content li,
.post-card p,
.support-card p {
  color: var(--muted);
}

.section-heading {
  max-width: 880px;
  padding: clamp(76px, 10vw, 120px) clamp(20px, 6vw, 88px) 32px;
}

.feature-band {
  background: #000000;
}

.feature-grid,
.signal-grid,
.post-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  padding: 0 clamp(20px, 6vw, 88px) clamp(76px, 10vw, 120px);
  background: #000000;
}

.feature-card,
.signal-grid article,
.post-card,
.support-card {
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018)),
    var(--cream);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 28px;
}

.feature-card {
  min-height: 360px;
  padding: clamp(30px, 5vw, 58px);
}

.feature-card,
.signal-grid article,
.post-card,
.support-card,
.table-wrap,
details {
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.feature-index {
  display: inline-flex;
  margin-bottom: 80px;
  color: var(--orange);
  font-weight: 900;
}

.phone-shell {
  width: min(100%, 390px);
  justify-self: center;
  border: 10px solid var(--ink);
  border-radius: 34px;
  padding: 18px;
  background: #181b19;
  color: var(--white);
  box-shadow: var(--shadow);
}

.screenshot-frame {
  width: min(100%, 520px);
  justify-self: center;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 30px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.035)),
    rgba(255, 255, 255, 0.04);
  box-shadow: var(--shadow);
  backdrop-filter: blur(24px) saturate(160%);
}

.frame-toolbar {
  display: flex;
  gap: 8px;
  padding: 5px 4px 13px;
}

.frame-toolbar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--orange);
}

.frame-toolbar span:nth-child(2) {
  background: var(--yellow);
}

.frame-toolbar span:nth-child(3) {
  background: var(--lime);
}

.screenshot-placeholder {
  display: grid;
  min-height: 560px;
  align-content: end;
  gap: 12px;
  padding: 28px;
  border-radius: 22px;
  background:
    linear-gradient(145deg, rgba(255, 90, 31, 0.22), transparent 44%),
    linear-gradient(315deg, rgba(88, 240, 255, 0.16), transparent 52%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
    #070908;
}

.screenshot-placeholder span {
  width: max-content;
  max-width: 100%;
  padding: 8px 10px;
  border-radius: 999px;
  color: var(--ink);
  background: var(--yellow);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.screenshot-placeholder strong {
  max-width: 340px;
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  line-height: 0.98;
}

.phone-status,
.app-topline,
.ride-card {
  display: flex;
}

.phone-status {
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.8rem;
}

.app-topline {
  flex-direction: column;
  gap: 5px;
  margin: 22px 0 14px;
}

.app-topline span {
  color: var(--yellow);
  font-size: 0.82rem;
  font-weight: 900;
}

.route-map {
  position: relative;
  height: 236px;
  border-radius: 22px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(246, 196, 83, 0.18) 0 12%, transparent 12% 100%),
    repeating-linear-gradient(32deg, transparent 0 22px, rgba(255, 255, 255, 0.08) 22px 24px),
    var(--green);
}

.route-line {
  position: absolute;
  left: 22%;
  top: 18%;
  width: 54%;
  height: 62%;
  border: 5px solid var(--orange);
  border-left-color: transparent;
  border-bottom-color: transparent;
  border-radius: 45% 55% 50% 42%;
  transform: rotate(22deg);
}

.pin {
  position: absolute;
  z-index: 2;
  width: 18px;
  height: 18px;
  border: 4px solid var(--white);
  border-radius: 50%;
}

.pin.start {
  left: 28%;
  bottom: 24%;
  background: var(--yellow);
}

.pin.mid {
  left: 48%;
  top: 38%;
  background: var(--blue);
}

.pin.end {
  right: 21%;
  top: 22%;
  background: var(--orange);
}

.live-strip {
  gap: 8px;
  margin: 16px 0;
}

.avatar {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  color: var(--ink);
  background: var(--yellow);
  font-size: 0.72rem;
  font-weight: 900;
}

.live-copy {
  margin-left: 4px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.9rem;
}

.ride-card {
  flex-direction: column;
  gap: 7px;
  padding: 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.1);
}

.ride-type {
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.ride-card span:last-child {
  color: rgba(255, 255, 255, 0.68);
}

.steps-band {
  color: var(--white);
  background: #000000;
}

.steps-band .section-heading p,
.steps-band .steps-list p {
  color: var(--muted-light);
}

.steps-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0 clamp(20px, 6vw, 88px) clamp(76px, 10vw, 120px);
  list-style: none;
  background: #000000;
}

.steps-list li {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr);
  gap: 24px;
  padding: clamp(26px, 4vw, 44px);
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01)),
    #050505;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
}

.steps-list span {
  color: var(--yellow);
  font-weight: 900;
}

.signals-band {
  background: #000000;
}

.signal-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding: 0;
}

.signal-grid article {
  min-height: 180px;
  padding: 28px;
}

.showcase-band {
  display: block;
  background:
    #000000;
}

.showcase-band .section-heading {
  padding-top: clamp(76px, 10vw, 120px);
}

.shot-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 220px;
  gap: 16px;
  padding: 0 clamp(20px, 6vw, 88px) clamp(76px, 10vw, 120px);
}

.shot-tile {
  display: grid;
  align-content: end;
  gap: 8px;
  min-width: 0;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 28px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.025)),
    linear-gradient(315deg, rgba(255, 90, 31, 0.15), transparent 50%),
    #10120f;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.shot-tile.tall {
  grid-row: span 2;
}

.shot-tile.wide {
  grid-column: span 2;
}

.shot-tile span {
  color: var(--orange);
  font-weight: 900;
}

.shot-tile strong {
  font-size: 1.45rem;
}

.shot-tile p {
  margin: 0;
  color: var(--muted);
}

.comparison-band {
  padding: clamp(76px, 10vw, 120px) clamp(20px, 6vw, 88px);
  background:
    #000000;
}

.comparison-band .section-heading {
  padding: 0 0 32px;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 28px;
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.01)),
    #050505;
  backdrop-filter: blur(18px);
}

table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
}

th,
td {
  padding: 20px;
  text-align: left;
  border-bottom: 1px solid var(--line);
}

th {
  color: var(--yellow);
  font-size: 0.78rem;
  text-transform: uppercase;
}

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

.planner-band {
  color: var(--white);
  background:
    linear-gradient(115deg, rgba(88, 240, 255, 0.14), transparent 42%),
    linear-gradient(245deg, rgba(255, 90, 31, 0.18), transparent 44%),
    #16334d;
}

.planner-band .section-copy p {
  color: var(--muted-light);
}

.planner-panel {
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(20px) saturate(150%);
}

.segment-control {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.segment {
  min-height: 44px;
  border: 0;
  border-radius: 12px;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.09);
  cursor: pointer;
  font-weight: 900;
}

.segment.active {
  color: var(--ink);
  background: linear-gradient(135deg, var(--yellow), var(--orange));
}

.planner-output {
  margin-top: 14px;
  min-height: 240px;
  padding: 34px;
  border-radius: 24px;
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.015)),
    #050505;
  color: var(--white);
}

.metric {
  display: inline-flex;
  margin-bottom: 34px;
  color: var(--orange);
  font-size: 2.5rem;
  font-weight: 900;
}

.planner-output p {
  color: var(--muted);
}

.privacy-band {
  background: #000000;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  padding: 18px 18px 18px 48px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.045);
  position: relative;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 24px;
  width: 14px;
  height: 8px;
  border-left: 3px solid var(--orange);
  border-bottom: 3px solid var(--orange);
  transform: rotate(-45deg);
}

.faq-band {
  padding: clamp(76px, 10vw, 120px) clamp(20px, 6vw, 88px);
  background: #000000;
}

.faq-band .section-heading {
  padding: 0 0 28px;
}

.faq-list {
  display: grid;
  gap: 10px;
  max-width: 920px;
}

details {
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--cream);
}

summary {
  cursor: pointer;
  padding: 20px;
  font-weight: 900;
}

details p {
  margin: 0;
  padding: 0 20px 20px;
}

.cta-band {
  align-items: end;
  background:
    linear-gradient(135deg, rgba(255, 90, 31, 0.14), transparent 42%),
    #000000;
  color: var(--white);
}

.cta-band p {
  color: var(--muted-light);
}

.waitlist-form {
  display: grid;
  gap: 12px;
}

.waitlist-form input,
.support-card input,
.support-card textarea {
  width: 100%;
  min-height: 56px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.support-card input,
.support-card textarea {
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--line);
}

.support-card textarea {
  min-height: 140px;
  padding-top: 14px;
  resize: vertical;
}

.waitlist-form input:focus,
.support-card input:focus,
.support-card textarea:focus {
  outline: 3px solid rgba(255, 106, 26, 0.35);
}

.form-message {
  min-height: 24px;
  margin: 0;
  color: var(--yellow);
}

.site-footer {
  justify-content: space-between;
  gap: 18px;
  padding: 24px clamp(20px, 6vw, 88px);
  color: rgba(255, 255, 255, 0.62);
  background: var(--ink);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.site-footer nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-brand {
  color: var(--white);
  font-weight: 900;
}

.blog-grid {
  grid-template-columns: 0.75fr 1.25fr;
  align-items: start;
  background: #000000;
}

.post-list {
  grid-template-columns: 1fr;
}

.post-card {
  display: grid;
  gap: 10px;
  padding: 28px;
}

.post-card:hover h2,
.post-card:hover h3 {
  color: var(--orange);
}

.post-meta {
  gap: 10px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.legal-wrap,
.article-layout {
  grid-template-columns: minmax(0, 260px) minmax(0, 820px);
  align-items: start;
  padding-top: 140px;
}

.legal-sidebar,
.article-sidebar {
  position: sticky;
  top: 110px;
  display: grid;
  gap: 12px;
}

.legal-sidebar a,
.article-sidebar a {
  color: var(--muted);
}

.legal-content,
.article-content {
  max-width: 820px;
}

.legal-content h1,
.article-content h1 {
  font-size: clamp(3rem, 7vw, 5.5rem);
  line-height: 0.96;
}

.legal-content h2,
.article-content h2 {
  margin-top: 48px;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
}

.legal-content ul,
.article-content ul {
  padding-left: 22px;
}

.article-nav {
  justify-content: space-between;
  gap: 16px;
  margin-top: 54px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.support-grid {
  align-items: start;
  padding-top: 140px;
}

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

.support-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

@media (max-width: 1040px) {
  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 860px) {
  .site-header {
    position: absolute;
  }

  .nav-links {
    display: none;
  }

  .hero {
    min-height: 88vh;
    grid-template-columns: 1fr;
    align-items: center;
    padding-bottom: 70px;
  }

  .hero-app-stack {
    min-height: 430px;
  }

  .app-shot {
    position: relative;
    right: auto;
    width: min(100%, 330px);
    min-height: 430px;
  }

  .app-shot-back {
    display: none;
  }

  .intro-band,
  .planner-band,
  .privacy-band,
  .cta-band,
  .signals-band,
  .showcase-band,
  .blog-grid,
  .legal-wrap,
  .article-layout,
  .support-grid {
    grid-template-columns: 1fr;
  }

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

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

  .shot-tile.tall,
  .shot-tile.wide {
    grid-column: auto;
    grid-row: auto;
  }

  .feature-card {
    min-height: auto;
  }

  .feature-index {
    margin-bottom: 42px;
  }

  .legal-sidebar,
  .article-sidebar {
    position: static;
  }
}

@media (max-width: 520px) {
  .header-action {
    display: none;
  }

  h1 {
    font-size: clamp(3.8rem, 20vw, 6.4rem);
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .phone-shell {
    border-width: 7px;
    border-radius: 28px;
  }

  .screenshot-placeholder {
    min-height: 420px;
  }

  .steps-list li {
    grid-template-columns: 1fr;
  }

  .planner-output {
    padding: 24px;
  }

  .site-footer,
  .article-nav {
    align-items: flex-start;
    flex-direction: column;
  }

  .table-wrap {
    overflow: visible;
    border: 0;
    background: transparent;
  }

  table,
  thead,
  tbody,
  tr,
  td {
    display: block;
    width: 100%;
    min-width: 0;
  }

  thead {
    display: none;
  }

  tr {
    margin-bottom: 12px;
    border: 1px solid var(--line);
    border-radius: 22px;
    overflow: hidden;
    background:
      linear-gradient(150deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.01)),
      #050505;
  }

  td {
    display: grid;
    grid-template-columns: minmax(90px, 0.42fr) minmax(0, 1fr);
    gap: 14px;
    padding: 14px;
  }

  td::before {
    content: attr(data-label);
    color: var(--yellow);
    font-size: 0.72rem;
    font-weight: 900;
    text-transform: uppercase;
  }
}
