:root {
  color-scheme: light;
  --font-body: ui-sans-serif, -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", Roboto, Arial, sans-serif;
  --font-display: ui-sans-serif, -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", Roboto, Arial, sans-serif;
  --font-mono: ui-monospace, "SF Mono", Menlo, Consolas, "Liberation Mono", monospace;
  --ink: #121717;
  --ink-strong: #071012;
  --muted: #536063;
  --paper: #fbfaf6;
  --paper-soft: #eef7f3;
  --surface: #ffffff;
  --night: #0b1114;
  --night-soft: #121c20;
  --teal: #0f766e;
  --teal-deep: #0d514d;
  --coral: #d85f42;
  --gold: #d8b76a;
  --line: rgba(18, 23, 23, 0.14);
  --shadow: rgba(9, 22, 26, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--paper);
  color: var(--ink);
  font: 17px/1.7 var(--font-body);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

::selection {
  background: rgba(216, 95, 66, 0.24);
}

a {
  color: inherit;
}

code {
  overflow-wrap: anywhere;
}

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

.external-link,
.button.is-external {
  display: inline-flex;
  align-items: center;
  gap: 0.32em;
}

.external-link-icon {
  flex: 0 0 auto;
  width: 0.82em;
  height: 0.82em;
  stroke: currentColor;
  stroke-width: 2.15;
  stroke-linecap: round;
  stroke-linejoin: round;
  transform: translateY(-0.06em);
}

.skip-link {
  position: absolute;
  left: 16px;
  top: 12px;
  z-index: 5;
  padding: 10px 14px;
  background: var(--surface);
  color: var(--ink);
  border-radius: 8px;
  transform: translateY(-140%);
  transition: transform 180ms ease;
}

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

.hero,
.product-hero {
  position: relative;
  min-height: 82svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: #fffaf0;
  background: var(--night);
  isolation: isolate;
}

.hero-media,
.hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media {
  z-index: -2;
}

.hero-media img {
  object-fit: cover;
  object-position: 62% center;
  filter: saturate(0.95) contrast(1.06);
}

.hero::after,
.product-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(7, 16, 18, 0.94) 0%, rgba(7, 16, 18, 0.82) 34%, rgba(7, 16, 18, 0.28) 74%, rgba(7, 16, 18, 0.66) 100%),
    linear-gradient(180deg, rgba(7, 16, 18, 0.4) 0%, rgba(7, 16, 18, 0.08) 46%, rgba(7, 16, 18, 0.76) 100%);
}

.product-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 74% 26%, rgba(15, 118, 110, 0.42), transparent 34%),
    radial-gradient(circle at 82% 78%, rgba(216, 95, 66, 0.34), transparent 30%),
    linear-gradient(135deg, #091214, #172327);
}

.home-hero {
  min-height: 760px;
  background:
    radial-gradient(circle at 84% 28%, rgba(216, 183, 106, 0.12), transparent 24%),
    radial-gradient(circle at 72% 72%, rgba(15, 118, 110, 0.18), transparent 30%),
    linear-gradient(135deg, #071012 0%, #0b1114 54%, #111a1e 100%);
}

.home-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(rgba(255, 250, 240, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 250, 240, 0.035) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(90deg, transparent 0%, #000 24%, #000 76%, transparent 100%);
}

.home-hero::after {
  background:
    linear-gradient(90deg, rgba(7, 16, 18, 0.78), rgba(7, 16, 18, 0.08) 58%, rgba(7, 16, 18, 0.42)),
    linear-gradient(180deg, rgba(7, 16, 18, 0.12), rgba(7, 16, 18, 0.72));
}

.nav {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 24px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0;
  color: #fffaf0;
  text-decoration: none;
  font-weight: 760;
  letter-spacing: 0;
}

.brand-mark {
  position: relative;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(216, 183, 106, 0.42);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(216, 183, 106, 0.14), rgba(15, 118, 110, 0.12)),
    rgba(255, 250, 240, 0.06);
  color: var(--gold);
  font-size: 0.86rem;
  font-weight: 850;
}

.brand-mark::after {
  content: "";
  position: absolute;
  right: 6px;
  bottom: 6px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--coral);
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 14px 18px;
  color: rgba(255, 250, 240, 0.78);
  font-size: 0.94rem;
}

.nav-links a {
  text-decoration: none;
  text-underline-offset: 5px;
}

.language-toggle {
  display: inline-flex;
  gap: 3px;
  padding: 3px;
  border: 1px solid rgba(255, 250, 240, 0.16);
  border-radius: 999px;
  background: rgba(255, 250, 240, 0.06);
}

.language-toggle a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  min-height: 28px;
  padding: 4px 8px;
  border-radius: 999px;
  color: rgba(255, 250, 240, 0.68);
  font-size: 0.78rem;
  font-weight: 850;
  text-decoration: none;
}

.language-toggle a[aria-current="true"] {
  background: rgba(216, 183, 106, 0.18);
  color: var(--gold);
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: #fffaf0;
  text-decoration: underline;
}

.nav-links > a[aria-current="page"] {
  color: var(--gold);
}

.language-toggle a:hover,
.language-toggle a:focus-visible {
  color: #fffaf0;
  text-decoration: none;
}

.plain-header {
  min-height: 88px;
  color: #fffaf0;
  background: var(--night);
}

.plain-header .nav {
  position: relative;
}

.hero-inner,
.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.hero-inner {
  padding: 112px 0 72px;
}

.home-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(320px, 0.72fr);
  gap: clamp(36px, 7vw, 92px);
  align-items: center;
}

.hero-copy,
.product-copy {
  width: min(680px, 100%);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 22px;
  color: rgba(255, 250, 240, 0.78);
  font-size: 0.88rem;
  font-weight: 700;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 2px;
  background: var(--coral);
}

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

h1 {
  max-width: 11ch;
  margin-bottom: 22px;
  font-size: 4.8rem;
  line-height: 0.98;
  letter-spacing: 0;
}

.home-hero h1 {
  max-width: 790px;
  font-size: clamp(2.85rem, 6.6vw, 5.8rem);
  line-height: 0.98;
}

h2 {
  margin-bottom: 0;
  color: var(--ink-strong);
  font-size: 2.6rem;
  line-height: 1.08;
  letter-spacing: 0;
}

.hero-lede {
  max-width: 680px;
  margin-bottom: 32px;
  color: rgba(255, 250, 240, 0.82);
  font-size: 1.2rem;
}

.actions,
.small-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border: 1px solid rgba(255, 250, 240, 0.28);
  border-radius: 8px;
  color: #fffaf0;
  background: rgba(255, 250, 240, 0.08);
  text-align: center;
  text-decoration: none;
  font-weight: 760;
  overflow-wrap: anywhere;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.16);
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(255, 250, 240, 0.54);
  background: rgba(255, 250, 240, 0.14);
}

.button.primary {
  border-color: var(--coral);
  background: var(--coral);
  color: #fffaf0;
}

.button.primary:hover,
.button.primary:focus-visible {
  background: #ef704f;
}

.hero-note {
  margin: 38px 0 0;
  color: rgba(255, 250, 240, 0.64);
  font-size: 0.96rem;
}

.maker-shelf {
  position: relative;
  min-height: 480px;
  border: 1px solid rgba(255, 250, 240, 0.13);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 250, 240, 0.08), rgba(255, 250, 240, 0.02)),
    rgba(255, 250, 240, 0.035);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.2);
}

.maker-shelf::before {
  content: "";
  position: absolute;
  left: 10%;
  right: 10%;
  bottom: 76px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 250, 240, 0.32), transparent);
}

.shelf-card {
  position: absolute;
  left: 34px;
  top: 54px;
  width: min(250px, 58%);
  padding: 22px;
  border: 1px solid rgba(255, 250, 240, 0.16);
  border-radius: 8px;
  background: rgba(7, 16, 18, 0.62);
  color: #fffaf0;
}

.shelf-card span {
  display: block;
  margin-bottom: 10px;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.shelf-card strong {
  display: block;
  margin-bottom: 18px;
  font-size: 1.4rem;
  line-height: 1.05;
}

.ui-lines {
  display: grid;
  gap: 9px;
}

.ui-lines i {
  display: block;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 250, 240, 0.16);
}

.ui-lines i:nth-child(2) {
  width: 72%;
  background: rgba(15, 118, 110, 0.46);
}

.ui-lines i:nth-child(3) {
  width: 46%;
  background: rgba(216, 95, 66, 0.5);
}

.phone-silhouette {
  position: absolute;
  right: 58px;
  top: 88px;
  width: 132px;
  height: 220px;
  border: 1px solid rgba(255, 250, 240, 0.28);
  border-radius: 24px 24px 18px 18px;
  background:
    linear-gradient(180deg, rgba(255, 250, 240, 0.1), rgba(255, 250, 240, 0.02)),
    #10191d;
  box-shadow:
    inset 0 0 0 8px rgba(7, 16, 18, 0.65),
    0 26px 64px rgba(0, 0, 0, 0.28);
  transform: rotate(5deg);
}

.phone-screen {
  position: absolute;
  left: 24px;
  right: 24px;
  top: 32px;
  height: 72px;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(15, 118, 110, 0.75), rgba(216, 183, 106, 0.32)),
    #0b1114;
}

.phone-keypad {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  height: 58px;
  background-image: radial-gradient(circle, rgba(255, 250, 240, 0.44) 0 3px, transparent 4px);
  background-size: 22px 18px;
}

.sound-disc {
  position: absolute;
  left: 46%;
  bottom: 60px;
  width: 148px;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 250, 240, 0.2);
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, #0b1114 0 13%, rgba(216, 183, 106, 0.8) 14% 17%, transparent 18%),
    repeating-radial-gradient(circle, rgba(255, 250, 240, 0.22) 0 1px, transparent 2px 14px),
    linear-gradient(135deg, rgba(15, 118, 110, 0.38), rgba(216, 95, 66, 0.3));
}

.sound-disc span {
  position: absolute;
  inset: 28px;
  border: 1px solid rgba(255, 250, 240, 0.16);
  border-radius: 50%;
}

.shelf-chip,
.shelf-mark {
  position: absolute;
  border: 1px solid rgba(255, 250, 240, 0.14);
  border-radius: 999px;
  background: rgba(255, 250, 240, 0.06);
  color: rgba(255, 250, 240, 0.72);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.shelf-chip {
  padding: 7px 10px;
}

.chip-one {
  left: 42px;
  bottom: 36px;
}

.chip-two {
  right: 40px;
  bottom: 44px;
}

.chip-three {
  right: 148px;
  top: 38px;
}

.shelf-mark {
  right: 30px;
  top: 30px;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-color: rgba(216, 183, 106, 0.36);
  color: var(--gold);
  border-radius: 10px;
}

main {
  background: var(--paper);
}

.section {
  padding: 76px 0;
}

.section.alt {
  background: var(--paper-soft);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.55fr);
  gap: 40px;
  align-items: end;
  margin-bottom: 34px;
}

.section-kicker {
  margin-bottom: 12px;
  color: var(--teal);
  font-size: 0.86rem;
  font-weight: 800;
  text-transform: uppercase;
}

.section-heading p {
  margin-bottom: 0;
  color: var(--muted);
}

.wide-copy {
  max-width: 760px;
  margin: -10px 0 30px;
  color: var(--muted);
  font-size: 1.08rem;
}

.card-row,
.make-grid,
.principles-grid {
  display: grid;
  gap: 18px;
}

.card-row {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.quiet-card,
.make-card,
.principle-card,
.product-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 18px 50px rgba(9, 22, 26, 0.07);
}

.quiet-card,
.make-card,
.principle-card {
  padding: 26px;
}

.quiet-card h3,
.make-card h3,
.principle-card h3 {
  margin-bottom: 10px;
  color: var(--ink-strong);
  font-size: 1.12rem;
  line-height: 1.25;
}

.quiet-card p,
.make-card p,
.principle-card p {
  margin-bottom: 0;
  color: var(--muted);
}

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

.make-card {
  min-height: 250px;
  display: flex;
  flex-direction: column;
}

.make-card span {
  width: fit-content;
  margin-bottom: 26px;
  padding: 6px 9px;
  border: 1px solid rgba(15, 118, 110, 0.16);
  border-radius: 999px;
  color: var(--teal-deep);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.app-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.56fr);
  gap: 18px;
}

.app-card,
.future-panel,
.proof-item,
.contact-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 22px 60px var(--shadow);
}

.app-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 0.48fr);
  overflow: hidden;
}

.app-content {
  padding: 32px;
}

.app-badge {
  display: inline-flex;
  margin-bottom: 24px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(15, 118, 110, 0.1);
  color: var(--teal-deep);
  font-size: 0.82rem;
  font-weight: 800;
}

.app-card h3,
.future-panel h3,
.contact-panel h3 {
  margin-bottom: 12px;
  color: var(--ink-strong);
  font-size: 1.55rem;
  line-height: 1.18;
  letter-spacing: 0;
}

.app-card p,
.future-panel p,
.contact-panel p {
  color: var(--muted);
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 24px 0;
  padding: 0;
  list-style: none;
}

.feature-list.wide {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-bottom: 0;
}

.feature-list li {
  min-height: 44px;
  display: flex;
  align-items: center;
  padding: 10px 12px;
  border: 1px solid rgba(18, 23, 23, 0.09);
  border-radius: 8px;
  background: #faf7f0;
  color: #273132;
  font-weight: 650;
}

.app-visual {
  display: grid;
  align-content: end;
  gap: 12px;
  min-height: 100%;
  padding: 28px;
  background: var(--night-soft);
  color: #fffaf0;
}

.metric {
  border: 1px solid rgba(255, 250, 240, 0.16);
  border-radius: 8px;
  padding: 16px;
  background: rgba(255, 250, 240, 0.06);
}

.metric strong {
  display: block;
  margin-bottom: 4px;
  color: var(--gold);
  font-size: 1.6rem;
  line-height: 1;
}

.metric span {
  color: rgba(255, 250, 240, 0.72);
  font-size: 0.92rem;
}

.small-actions {
  margin-top: 22px;
}

.store-badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 12px;
  margin: 26px 0 0;
}

.google-play-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 58px;
  border-radius: 8px;
  transition: transform 180ms ease, filter 180ms ease;
}

.google-play-badge:hover,
.google-play-badge:focus-visible {
  transform: translateY(-2px);
  filter: brightness(1.06);
}

.google-play-badge img {
  display: block;
  width: auto;
  height: 58px;
}

.google-play-badge .external-link-icon {
  width: 15px;
  height: 15px;
  opacity: 0.74;
}

.ios-store-badge {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  width: 182px;
  height: 58px;
  padding: 6px 14px 6px 12px;
  border: 1px solid #a6a6a6;
  border-radius: 7px;
  background: #000000;
  color: #ffffff;
  font: inherit;
  opacity: 0.5;
  cursor: not-allowed;
  user-select: none;
}

.ios-store-group {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
}

.ios-store-mark {
  flex: 0 0 auto;
  width: 29px;
  height: 29px;
}

.ios-store-badge small,
.ios-store-badge strong {
  display: block;
  line-height: 1;
}

.ios-store-badge small {
  margin-bottom: 3px;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0;
}

.ios-store-badge strong {
  font-size: 1.28rem;
  font-weight: 650;
  letter-spacing: 0;
}

.store-note {
  max-width: 182px;
  padding-left: 1px;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.25;
}

.product-hero .store-note,
.product-hero .store-badges {
  color: rgba(255, 250, 240, 0.68);
}

.store-actions {
  margin-top: 28px;
}

.hero-policy-links {
  margin-top: 14px;
}

.secondary-links {
  margin-top: 16px;
}

.small-actions .button {
  min-height: 42px;
  padding: 9px 13px;
  border-color: var(--line);
  color: var(--teal-deep);
  background: #ffffff;
  box-shadow: none;
  font-size: 0.94rem;
}

.small-actions .button.primary {
  border-color: var(--teal);
  background: var(--teal);
  color: #ffffff;
}

.future-panel {
  padding: 28px;
  background:
    linear-gradient(180deg, rgba(216, 183, 106, 0.18), rgba(216, 183, 106, 0) 42%),
    var(--surface);
}

.product-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.55fr);
  gap: 32px;
  align-items: center;
  padding: clamp(26px, 5vw, 46px);
  background:
    linear-gradient(135deg, rgba(216, 183, 106, 0.12), rgba(15, 118, 110, 0.06) 42%, transparent),
    var(--surface);
}

.product-panel-copy h2 {
  margin-bottom: 18px;
}

.product-panel-copy p {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.05rem;
}

.feature-list.chip-list {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 9px;
  margin: 26px 0;
}

.feature-list.chip-list li {
  min-height: 38px;
  justify-content: center;
  padding: 8px 10px;
  border-color: rgba(15, 118, 110, 0.13);
  background: rgba(15, 118, 110, 0.07);
  color: var(--teal-deep);
  font-size: 0.9rem;
  text-align: center;
}

.car-interface {
  display: grid;
  gap: 12px;
  padding: 24px;
  border: 1px solid rgba(255, 250, 240, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 250, 240, 0.08), rgba(255, 250, 240, 0.02)),
    var(--night-soft);
  color: #fffaf0;
  box-shadow: 0 24px 70px rgba(9, 22, 26, 0.18);
}

.car-topline,
.car-card-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.car-topline {
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 250, 240, 0.14);
}

.car-topline span {
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 850;
  text-transform: uppercase;
}

.car-topline strong {
  font-size: 1.45rem;
}

.car-card-line {
  min-height: 46px;
  padding: 11px 12px;
  border: 1px solid rgba(255, 250, 240, 0.12);
  border-radius: 8px;
  background: rgba(255, 250, 240, 0.055);
}

.car-card-line span {
  color: rgba(255, 250, 240, 0.62);
}

.car-card-line b {
  font-weight: 760;
}

.odometer {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 6px;
  margin-top: 10px;
}

.odometer span {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 42px;
  border: 1px solid rgba(255, 250, 240, 0.12);
  border-radius: 7px;
  background: #071012;
}

.odometer span::before {
  content: "";
  width: 54%;
  height: 2px;
  border-radius: 999px;
  background: rgba(216, 183, 106, 0.72);
  box-shadow: 0 8px 0 rgba(216, 183, 106, 0.32), 0 -8px 0 rgba(216, 183, 106, 0.24);
}

.mini-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}

.mini-tags span {
  padding: 6px 9px;
  border: 1px solid rgba(255, 250, 240, 0.12);
  border-radius: 999px;
  color: rgba(255, 250, 240, 0.72);
  font-size: 0.78rem;
}

.slot-list {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.slot-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 48px;
  padding: 11px 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.slot-list span {
  color: var(--ink);
  font-weight: 750;
}

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

.creator-card {
  min-height: 360px;
  display: grid;
  align-content: space-between;
  gap: 28px;
  overflow: hidden;
  position: relative;
  padding: 30px;
  border: 1px solid rgba(255, 250, 240, 0.16);
  border-radius: 8px;
  background: #10191d;
  color: #fffaf0;
  box-shadow: 0 22px 60px var(--shadow);
  isolation: isolate;
}

.creator-card::before {
  content: "";
  position: absolute;
  inset: auto -16% -38% auto;
  z-index: -1;
  width: 68%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(216, 95, 66, 0.36), rgba(216, 95, 66, 0) 66%);
}

.creator-card.mobile::after,
.creator-card.music::after {
  content: "";
  position: absolute;
  right: 30px;
  bottom: 30px;
  z-index: -1;
  width: 126px;
  height: 178px;
  border: 1px solid rgba(255, 250, 240, 0.26);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 250, 240, 0.08), rgba(255, 250, 240, 0.02)),
    linear-gradient(90deg, rgba(15, 118, 110, 0.35), rgba(216, 183, 106, 0.12));
  box-shadow: inset 0 0 0 8px rgba(7, 16, 18, 0.62), 0 28px 70px rgba(0, 0, 0, 0.28);
  transform: rotate(8deg);
}

.creator-card.music::after {
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, #10191d 0 14%, transparent 15%),
    repeating-radial-gradient(circle, rgba(255, 250, 240, 0.28) 0 1px, transparent 2px 13px),
    linear-gradient(135deg, rgba(15, 118, 110, 0.48), rgba(216, 95, 66, 0.38));
  transform: rotate(-12deg);
}

.creator-label {
  display: inline-flex;
  width: fit-content;
  padding: 7px 10px;
  border: 1px solid rgba(255, 250, 240, 0.18);
  border-radius: 999px;
  color: rgba(255, 250, 240, 0.74);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
}

.creator-card h3 {
  max-width: 10ch;
  margin: 18px 0 14px;
  color: #fffaf0;
  font-size: 2.35rem;
  line-height: 0.98;
  letter-spacing: 0;
}

.creator-card p {
  max-width: 500px;
  margin-bottom: 0;
  color: rgba(255, 250, 240, 0.72);
}

.creator-card .button {
  width: fit-content;
  box-shadow: none;
}

.deep-section,
.music-section {
  overflow: hidden;
}

.deep-section {
  color: #fffaf0;
  background:
    radial-gradient(circle at 18% 18%, rgba(216, 183, 106, 0.12), transparent 24%),
    linear-gradient(135deg, #0b1114, #121c20);
}

.music-section {
  background:
    linear-gradient(135deg, rgba(216, 183, 106, 0.18), rgba(255, 250, 240, 0) 34%),
    var(--paper);
}

.split-feature {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(280px, 0.52fr);
  gap: clamp(30px, 6vw, 72px);
  align-items: center;
}

.split-feature.reversed {
  grid-template-columns: minmax(280px, 0.52fr) minmax(0, 0.82fr);
}

.split-feature h2 {
  max-width: 760px;
  margin-bottom: 18px;
}

.deep-section h2 {
  color: #fffaf0;
}

.split-feature p {
  max-width: 680px;
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 1.06rem;
}

.deep-section .split-feature p {
  color: rgba(255, 250, 240, 0.72);
}

.deep-section .section-kicker {
  color: rgba(255, 250, 240, 0.62);
}

.retro-phone {
  position: relative;
  width: min(260px, 100%);
  aspect-ratio: 0.58;
  justify-self: center;
  border: 1px solid rgba(255, 250, 240, 0.24);
  border-radius: 30px 30px 24px 24px;
  background:
    linear-gradient(180deg, rgba(255, 250, 240, 0.08), rgba(255, 250, 240, 0.02)),
    #10191d;
  box-shadow:
    0 0 90px rgba(216, 183, 106, 0.16),
    inset 0 0 0 11px rgba(7, 16, 18, 0.58);
}

.retro-screen {
  position: absolute;
  left: 48px;
  right: 48px;
  top: 70px;
  height: 112px;
  border: 1px solid rgba(216, 183, 106, 0.3);
  border-radius: 10px;
  background:
    linear-gradient(135deg, rgba(15, 118, 110, 0.64), rgba(216, 183, 106, 0.24)),
    #0b1114;
}

.retro-speaker {
  position: absolute;
  top: 40px;
  left: 50%;
  width: 54px;
  height: 5px;
  border-radius: 999px;
  background: rgba(255, 250, 240, 0.28);
  transform: translateX(-50%);
}

.retro-keys {
  position: absolute;
  left: 50px;
  right: 50px;
  bottom: 58px;
  height: 124px;
  background-image: radial-gradient(circle, rgba(255, 250, 240, 0.42) 0 5px, transparent 6px);
  background-size: 32px 27px;
}

.music-sketch {
  position: relative;
  min-height: 310px;
  justify-self: stretch;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(15, 118, 110, 0.09), rgba(216, 95, 66, 0.08)),
    var(--paper-soft);
}

.record {
  position: absolute;
  left: 42px;
  top: 50%;
  width: min(190px, 42vw);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, var(--paper-soft) 0 14%, var(--coral) 15% 18%, transparent 19%),
    repeating-radial-gradient(circle, rgba(18, 23, 23, 0.18) 0 1px, transparent 2px 14px),
    linear-gradient(135deg, rgba(15, 118, 110, 0.34), rgba(216, 95, 66, 0.3));
  transform: translateY(-50%);
}

.wave {
  position: absolute;
  right: 46px;
  height: 2px;
  border-radius: 999px;
  background: var(--teal);
}

.wave-one {
  top: 108px;
  width: 42%;
}

.wave-two {
  top: 154px;
  width: 56%;
  background: var(--coral);
}

.wave-three {
  top: 200px;
  width: 34%;
  background: var(--gold);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.proof-item {
  padding: 26px;
}

.proof-item strong {
  display: block;
  margin-bottom: 10px;
  color: var(--ink-strong);
  font-size: 1.08rem;
}

.proof-item p {
  margin-bottom: 0;
  color: var(--muted);
}

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

.principle-card {
  min-height: 230px;
}

.contact-band {
  color: #fffaf0;
  background: var(--night);
}

.contact-band h2 {
  color: #fffaf0;
}

.contact-band .section-heading p {
  color: rgba(255, 250, 240, 0.72);
}

.contact-band .section-kicker {
  color: rgba(255, 250, 240, 0.58);
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: 34px;
  border-color: rgba(255, 250, 240, 0.16);
  background:
    linear-gradient(135deg, rgba(15, 118, 110, 0.28), rgba(216, 95, 66, 0.18)),
    #10191d;
  box-shadow: none;
}

.contact-panel h2,
.contact-panel h3 {
  color: #fffaf0;
}

.contact-panel p {
  max-width: 680px;
  margin-bottom: 0;
  color: rgba(255, 250, 240, 0.72);
}

.product-hero {
  min-height: 680px;
}

.product-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.6fr);
  gap: 48px;
  align-items: center;
  padding: 112px 0 72px;
}

.product-device {
  display: grid;
  min-height: 360px;
  align-items: end;
  padding: 26px;
  border: 1px solid rgba(255, 250, 240, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 250, 240, 0.08), rgba(255, 250, 240, 0.02)),
    rgba(255, 250, 240, 0.06);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.2);
}

.device-card {
  padding: 22px;
  border: 1px solid rgba(255, 250, 240, 0.18);
  border-radius: 8px;
  background: rgba(7, 16, 18, 0.62);
}

.device-card span {
  display: block;
  margin-bottom: 18px;
  color: var(--gold);
  font-size: 0.9rem;
  overflow-wrap: anywhere;
}

.device-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 2rem;
  line-height: 1.05;
}

.device-card p {
  margin-bottom: 0;
  color: rgba(255, 250, 240, 0.72);
}

.legal-card h2 {
  font-size: 2rem;
}

.app-visual .meta {
  margin: 0;
  background: rgba(255, 250, 240, 0.06);
  color: #fffaf0;
}

.app-visual .meta a {
  color: #fffaf0;
}

.legal-page {
  width: min(960px, calc(100% - 32px));
  margin: 0 auto;
  padding: 48px 0;
  background: var(--paper);
}

.legal-page article {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(24px, 5vw, 56px);
  box-shadow: 0 20px 60px rgba(20, 30, 45, 0.08);
}

.legal-page h1 {
  max-width: none;
  font-size: clamp(32px, 5vw, 52px);
  line-height: 1.1;
}

.legal-page h2 {
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  font-size: 26px;
}

.legal-page h3 {
  margin-top: 28px;
  font-size: 20px;
}

.legal-page p {
  margin-bottom: 14px;
}

.legal-page ul {
  margin: 0 0 18px 22px;
  padding: 0;
}

.legal-page li {
  margin-bottom: 8px;
}

.legal-page a {
  color: var(--teal-deep);
}

.meta {
  display: grid;
  gap: 8px;
  margin: 24px 0 28px;
  padding: 18px;
  border-radius: 8px;
  background: rgba(15, 118, 110, 0.1);
  color: var(--ink);
}

.meta p {
  margin: 0;
}

.muted {
  color: var(--muted);
}

.language-switch {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 26px 0 0;
}

.language-switch a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  text-decoration: none;
}

.divider {
  margin-top: 56px;
  padding-top: 40px;
  border-top: 3px solid var(--line);
}

.footer {
  padding: 24px 0 38px;
  color: rgba(255, 250, 240, 0.58);
  background: var(--night);
  font-size: 0.92rem;
}

.footer.compact {
  margin-top: 0;
}

.footer .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 16px;
}

.footer a {
  color: rgba(255, 250, 240, 0.78);
  text-decoration: none;
}

.footer a:hover,
.footer a:focus-visible {
  text-decoration: underline;
  text-underline-offset: 5px;
}

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

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

@media (max-width: 900px) {
  .hero {
    min-height: 78svh;
  }

  h1 {
    font-size: 3.45rem;
  }

  h2 {
    font-size: 2.1rem;
  }

  .section-heading,
  .app-grid,
  .app-card,
  .card-row,
  .product-panel,
  .contact-panel,
  .home-hero-grid,
  .split-feature,
  .split-feature.reversed,
  .product-hero-inner {
    grid-template-columns: 1fr;
  }

  .maker-shelf {
    min-height: 360px;
  }

  .app-visual {
    min-height: 280px;
  }

  .proof-grid,
  .creator-grid {
    grid-template-columns: 1fr;
  }

  .product-hero {
    min-height: auto;
  }
}

@media (max-width: 740px) {
  .nav {
    width: min(100% - 28px, 1180px);
    flex-wrap: wrap;
    align-items: flex-start;
    padding-top: 16px;
  }

  .nav-links {
    width: 100%;
    display: flex;
    justify-content: flex-start;
  }

  .nav-links > a {
    display: inline-flex;
  }
}

@media (max-width: 640px) {

  .hero {
    min-height: auto;
  }

  .hero-media img {
    object-position: 70% center;
  }

  .hero::after {
    background:
      linear-gradient(180deg, rgba(7, 16, 18, 0.94) 0%, rgba(7, 16, 18, 0.82) 44%, rgba(7, 16, 18, 0.64) 100%),
      linear-gradient(90deg, rgba(7, 16, 18, 0.92), rgba(7, 16, 18, 0.5));
  }

  .hero-inner,
  .container {
    width: min(100% - 28px, 1180px);
  }

  .hero-inner,
  .product-hero-inner {
    padding: 104px 0 58px;
  }

  h1 {
    max-width: 10ch;
    font-size: 2.75rem;
  }

  .home-hero h1 {
    max-width: none;
    font-size: 2.58rem;
  }

  .hero-lede {
    font-size: 1.06rem;
  }

  .button {
    width: 100%;
  }

  .store-badges {
    align-items: flex-start;
  }

  .google-play-badge,
  .google-play-badge img,
  .ios-store-badge {
    height: 52px;
  }

  .ios-store-badge {
    width: 176px;
  }

  .store-note {
    max-width: none;
    width: 100%;
  }

  .section {
    padding: 54px 0;
  }

  .app-content,
  .future-panel,
  .creator-card,
  .proof-item,
  .quiet-card,
  .make-card,
  .principle-card,
  .product-panel,
  .contact-panel {
    padding: 22px;
  }

  .maker-shelf {
    min-height: 270px;
  }

  .shelf-card {
    left: 18px;
    top: 28px;
    width: 58%;
    padding: 16px;
  }

  .phone-silhouette {
    right: 22px;
    top: 54px;
    width: 96px;
    height: 164px;
  }

  .sound-disc {
    left: 28%;
    bottom: 26px;
    width: 104px;
  }

  .shelf-chip,
  .shelf-mark {
    display: none;
  }

  .creator-card {
    min-height: 330px;
  }

  .creator-card h3 {
    font-size: 2rem;
  }

  .feature-list,
  .feature-list.wide,
  .feature-list.chip-list,
  .make-grid,
  .principles-grid {
    grid-template-columns: 1fr;
  }

  .car-interface {
    padding: 18px;
  }

  .odometer {
    gap: 4px;
  }

  .odometer span {
    min-height: 36px;
  }

  .retro-phone {
    width: min(210px, 78vw);
  }

  .music-sketch {
    min-height: 240px;
  }

  .record {
    left: 22px;
    width: 132px;
  }

  .wave {
    right: 22px;
  }

  .product-device {
    min-height: 300px;
    padding: 18px;
  }
}

/* Personal homepage direction */
.home-hero {
  min-height: 720px;
  color: var(--ink);
  background:
    radial-gradient(circle at 78% 18%, rgba(216, 183, 106, 0.18), transparent 26%),
    radial-gradient(circle at 16% 82%, rgba(15, 118, 110, 0.1), transparent 28%),
    linear-gradient(180deg, #fffaf0 0%, #f6f3ed 78%, #efe9dd 100%);
}

.home-hero::before {
  background-image:
    linear-gradient(rgba(18, 23, 23, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(18, 23, 23, 0.045) 1px, transparent 1px);
  background-size: 44px 44px;
  opacity: 0.72;
  mask-image: linear-gradient(180deg, #000 0%, transparent 74%);
}

.home-hero::after {
  background:
    linear-gradient(180deg, rgba(255, 250, 240, 0.08), rgba(246, 243, 237, 0.9)),
    radial-gradient(circle at 72% 56%, rgba(216, 95, 66, 0.08), transparent 34%);
}

.home-hero .brand,
.home-hero .nav-links {
  color: var(--ink);
}

.home-hero .brand-mark {
  background: #fffaf0;
  color: var(--teal-deep);
  border-color: rgba(18, 23, 23, 0.18);
  box-shadow: 0 8px 20px rgba(18, 23, 23, 0.07);
}

.home-hero .nav-links {
  color: rgba(18, 23, 23, 0.68);
}

.home-hero .nav-links a:hover,
.home-hero .nav-links a:focus-visible {
  color: var(--ink-strong);
}

.home-hero .language-toggle {
  border-color: rgba(18, 23, 23, 0.14);
  background: rgba(255, 250, 240, 0.72);
}

.home-hero .language-toggle a {
  color: rgba(18, 23, 23, 0.62);
}

.home-hero .language-toggle a[aria-current="true"] {
  background: rgba(15, 118, 110, 0.1);
  color: var(--teal-deep);
}

.home-hero .eyebrow {
  color: var(--teal-deep);
}

.home-hero .hero-lede {
  color: var(--muted);
}

.home-hero .hero-note {
  max-width: 640px;
  margin-top: 28px;
  color: rgba(18, 23, 23, 0.56);
}

.home-hero .button {
  border-color: rgba(18, 23, 23, 0.16);
  background: rgba(255, 250, 240, 0.72);
  color: var(--ink);
  box-shadow: 0 12px 28px rgba(18, 23, 23, 0.08);
}

.home-hero .button.primary {
  border-color: var(--teal);
  background: var(--teal);
  color: #fffaf0;
}

.home-hero h1 {
  max-width: 820px;
  font-size: clamp(2.65rem, 6vw, 5.25rem);
  line-height: 1;
}

.maker-shelf {
  min-height: 430px;
  border: 1px solid rgba(18, 23, 23, 0.12);
  background:
    linear-gradient(135deg, rgba(255, 250, 240, 0.9), rgba(246, 243, 237, 0.64)),
    rgba(255, 250, 240, 0.72);
  box-shadow: 0 26px 70px rgba(18, 23, 23, 0.1);
}

.maker-shelf::before {
  left: 8%;
  right: 8%;
  bottom: 72px;
  background: linear-gradient(90deg, transparent, rgba(18, 23, 23, 0.22), transparent);
}

.shelf-paper {
  position: absolute;
  left: 32px;
  top: 44px;
  width: min(250px, 60%);
  padding: 20px;
  border: 1px solid rgba(18, 23, 23, 0.13);
  border-radius: 8px;
  background: #fffaf0;
  color: var(--ink);
  box-shadow: 0 18px 40px rgba(18, 23, 23, 0.1);
  transform: rotate(-2deg);
}

.shelf-paper span {
  display: block;
  margin-bottom: 8px;
  color: var(--teal-deep);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.shelf-paper strong {
  display: block;
  margin-bottom: 18px;
  color: var(--ink-strong);
  font-size: 1.35rem;
  line-height: 1.05;
}

.shelf-paper i {
  display: block;
  height: 7px;
  margin-top: 9px;
  border-radius: 999px;
  background: rgba(15, 118, 110, 0.16);
}

.shelf-paper i:last-child {
  width: 62%;
  background: rgba(216, 95, 66, 0.18);
}

.phone-silhouette {
  right: 46px;
  top: 82px;
  width: 118px;
  height: 202px;
  border-color: rgba(18, 23, 23, 0.18);
  background:
    linear-gradient(180deg, rgba(18, 23, 23, 0.06), rgba(18, 23, 23, 0.02)),
    #f6f3ed;
  box-shadow:
    inset 0 0 0 8px rgba(255, 250, 240, 0.8),
    0 20px 46px rgba(18, 23, 23, 0.13);
  transform: rotate(4deg);
}

.phone-screen {
  background:
    linear-gradient(135deg, rgba(15, 118, 110, 0.65), rgba(216, 183, 106, 0.36)),
    #102023;
}

.phone-keypad {
  background-image: radial-gradient(circle, rgba(18, 23, 23, 0.38) 0 3px, transparent 4px);
}

.waveform-mini {
  position: absolute;
  left: 40%;
  bottom: 64px;
  display: flex;
  align-items: end;
  gap: 7px;
  height: 76px;
  padding: 16px 18px;
  border: 1px solid rgba(18, 23, 23, 0.12);
  border-radius: 8px;
  background: rgba(255, 250, 240, 0.76);
  transform: rotate(2deg);
}

.waveform-mini span {
  width: 8px;
  border-radius: 999px;
  background: var(--coral);
}

.waveform-mini span:nth-child(1) {
  height: 28px;
}

.waveform-mini span:nth-child(2) {
  height: 44px;
  background: var(--teal);
}

.waveform-mini span:nth-child(3) {
  height: 22px;
  background: var(--gold);
}

.waveform-mini span:nth-child(4) {
  height: 52px;
  background: var(--teal);
}

.waveform-mini span:nth-child(5) {
  height: 34px;
}

.shelf-chip,
.shelf-mark {
  border-color: rgba(18, 23, 23, 0.12);
  background: rgba(255, 250, 240, 0.86);
  color: rgba(18, 23, 23, 0.66);
}

.shelf-mark {
  color: var(--teal-deep);
}

.about-section {
  background:
    linear-gradient(180deg, rgba(255, 250, 240, 0.62), rgba(255, 250, 240, 0)),
    var(--paper);
}

.projects-section {
  background: var(--paper-soft);
}

.project-shelf {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.project-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(190px, 0.42fr);
  gap: 24px;
  min-height: 360px;
  padding: clamp(24px, 4vw, 34px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 18px 50px rgba(18, 23, 23, 0.07);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.project-card:hover {
  transform: translateY(-3px);
  border-color: rgba(15, 118, 110, 0.22);
  box-shadow: 0 24px 64px rgba(18, 23, 23, 0.1);
}

.project-card.featured {
  grid-column: 1 / -1;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.48fr);
  background:
    linear-gradient(135deg, rgba(216, 183, 106, 0.12), rgba(15, 118, 110, 0.06) 52%, transparent),
    var(--surface);
}

.project-copy h3 {
  margin-bottom: 12px;
  color: var(--ink-strong);
  font-size: clamp(1.55rem, 3vw, 2.4rem);
  line-height: 1.04;
}

.project-copy p {
  max-width: 700px;
  color: var(--muted);
}

.archive-badge {
  background: rgba(216, 183, 106, 0.18);
  color: #786027;
}

.music-badge {
  background: rgba(216, 95, 66, 0.12);
  color: #9f3f2b;
}

.project-visual {
  min-height: 230px;
  align-self: stretch;
  border: 1px solid rgba(18, 23, 23, 0.11);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 250, 240, 0.84), rgba(246, 243, 237, 0.72)),
    var(--paper);
}

.car-mini {
  display: grid;
  align-content: center;
  gap: 12px;
  padding: 22px;
}

.car-mini-head,
.car-mini-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.car-mini-head {
  margin-bottom: 6px;
  color: var(--teal-deep);
  font-size: 0.82rem;
  font-weight: 850;
  text-transform: uppercase;
}

.car-mini-head b {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(15, 118, 110, 0.18);
  border-radius: 8px;
  background: #fffaf0;
}

.car-mini-row {
  min-height: 42px;
  padding: 10px 12px;
  border: 1px solid rgba(18, 23, 23, 0.09);
  border-radius: 8px;
  background: #fffaf0;
  color: var(--ink);
  font-weight: 700;
}

.car-mini-row i {
  width: 38%;
  height: 7px;
  border-radius: 999px;
  background: rgba(15, 118, 110, 0.16);
}

.phone-mini {
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.phone-mini::before {
  content: "";
  width: 108px;
  height: 180px;
  border: 1px solid rgba(18, 23, 23, 0.2);
  border-radius: 22px 22px 18px 18px;
  background:
    linear-gradient(180deg, rgba(18, 23, 23, 0.06), transparent),
    #fffaf0;
  box-shadow: inset 0 0 0 8px rgba(246, 243, 237, 0.88), 0 18px 40px rgba(18, 23, 23, 0.1);
  transform: rotate(-4deg);
}

.phone-mini-screen,
.phone-mini-keys {
  position: absolute;
  left: 50%;
  transform: translateX(-50%) rotate(-4deg);
}

.phone-mini-screen {
  top: calc(50% - 62px);
  width: 58px;
  height: 50px;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(15, 118, 110, 0.68), rgba(216, 183, 106, 0.32));
}

.phone-mini-keys {
  top: calc(50% + 14px);
  width: 62px;
  height: 54px;
  background-image: radial-gradient(circle, rgba(18, 23, 23, 0.42) 0 3px, transparent 4px);
  background-size: 18px 16px;
}

.music-mini {
  position: relative;
  overflow: hidden;
}

.track-card {
  position: absolute;
  left: 24px;
  right: 24px;
  top: 34px;
  padding: 18px;
  border: 1px solid rgba(18, 23, 23, 0.12);
  border-radius: 8px;
  background: #fffaf0;
  box-shadow: 0 18px 42px rgba(18, 23, 23, 0.08);
}

.track-card i {
  display: block;
  width: 42px;
  height: 42px;
  margin-bottom: 14px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, #fffaf0 0 18%, transparent 19%),
    repeating-radial-gradient(circle, rgba(18, 23, 23, 0.16) 0 1px, transparent 2px 8px),
    linear-gradient(135deg, rgba(216, 95, 66, 0.38), rgba(15, 118, 110, 0.32));
}

.track-card b,
.track-card em {
  display: block;
  font-style: normal;
}

.track-card b {
  color: var(--ink-strong);
}

.track-card em {
  color: var(--muted);
  font-size: 0.88rem;
}

.wave-row {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 34px;
  display: flex;
  align-items: end;
  gap: 7px;
  height: 54px;
}

.wave-row i {
  flex: 1;
  min-width: 8px;
  border-radius: 999px;
  background: var(--coral);
}

.wave-row i:nth-child(1),
.wave-row i:nth-child(5) {
  height: 22px;
}

.wave-row i:nth-child(2) {
  height: 44px;
  background: var(--teal);
}

.wave-row i:nth-child(3) {
  height: 32px;
  background: var(--gold);
}

.wave-row i:nth-child(4) {
  height: 52px;
  background: var(--teal);
}

.wave-row i:nth-child(6) {
  height: 30px;
}

.why-section {
  background:
    linear-gradient(180deg, rgba(255, 250, 240, 0.75), rgba(246, 243, 237, 0.2)),
    var(--paper);
}

.why-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(280px, 0.58fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: start;
}

.why-grid h2 {
  margin-bottom: 18px;
}

.why-grid p {
  max-width: 700px;
  color: var(--muted);
  font-size: 1.08rem;
}

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

.note-list li {
  min-height: 48px;
  display: flex;
  align-items: center;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffaf0;
  color: var(--ink);
  font-weight: 760;
  box-shadow: 0 10px 26px rgba(18, 23, 23, 0.05);
}

.principles-grid.compact {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.principles-grid.compact .principle-card {
  min-height: 190px;
}

@media (max-width: 980px) {
  .project-card,
  .project-card.featured,
  .why-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 640px) {
  .home-hero h1 {
    font-size: 2.45rem;
  }

  .maker-shelf {
    min-height: 260px;
  }

  .shelf-paper {
    left: 18px;
    top: 28px;
    width: 58%;
    padding: 15px;
  }

  .phone-silhouette {
    right: 20px;
    top: 56px;
    width: 92px;
    height: 156px;
  }

  .waveform-mini {
    left: 34px;
    bottom: 24px;
    height: 56px;
    padding: 12px 14px;
  }

  .project-shelf,
  .principles-grid.compact {
    grid-template-columns: 1fr;
  }

  .project-card,
  .project-card.featured {
    min-height: auto;
    padding: 22px;
  }

  .project-visual {
    min-height: 210px;
  }
}

/* Typography and lightness pass */
h1,
h2,
.home-hero h1,
.section-heading h2,
.why-grid h2,
.contact-panel h2,
.project-copy h3,
.shelf-paper strong {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: 0;
}

.brand,
.nav-links,
.button,
.section-kicker,
.app-badge,
.store-note,
.note-list li,
.car-mini-head,
.car-mini-row,
.track-card,
.footer {
  font-family: var(--font-body);
}

main {
  background:
    linear-gradient(180deg, #fbfaf6 0%, #ffffff 34%, #f4faf7 72%, #fbfaf6 100%);
}

.home-hero {
  min-height: 700px;
  background:
    linear-gradient(180deg, #fffdf8 0%, #fbfaf6 56%, #f2f7f4 100%);
}

.home-hero::before {
  background-image:
    linear-gradient(rgba(18, 23, 23, 0.034) 1px, transparent 1px),
    linear-gradient(90deg, rgba(18, 23, 23, 0.034) 1px, transparent 1px);
  background-size: 52px 52px;
  opacity: 0.55;
  mask-image: linear-gradient(180deg, #000 0%, transparent 68%);
}

.home-hero::after {
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.18), rgba(242, 247, 244, 0.86)),
    linear-gradient(115deg, rgba(15, 118, 110, 0.06), transparent 46%, rgba(216, 95, 66, 0.04));
}

.nav {
  padding-top: 22px;
}

.brand {
  font-size: 1rem;
  font-weight: 680;
  white-space: nowrap;
}

.brand-mark {
  font-family: var(--font-mono);
  font-weight: 700;
}

.home-hero .brand-mark {
  border-color: rgba(15, 118, 110, 0.16);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 6px 18px rgba(18, 23, 23, 0.045);
}

.nav-links {
  gap: 12px 17px;
  color: rgba(18, 23, 23, 0.58);
  font-size: 0.9rem;
  font-weight: 460;
}

.home-hero .nav-links > a[aria-current="page"] {
  color: #0d514d;
}

.language-toggle {
  border-color: rgba(18, 23, 23, 0.1);
  background: rgba(255, 255, 255, 0.58);
}

.language-toggle a {
  min-height: 27px;
  font-weight: 650;
}

.home-hero-grid {
  gap: 80px;
}

.hero-copy,
.product-copy {
  width: min(760px, 100%);
}

.eyebrow,
.home-hero .eyebrow {
  margin-bottom: 26px;
  color: #1d766e;
  font-size: 0.94rem;
  font-weight: 560;
  line-height: 1.5;
  text-transform: none;
}

.eyebrow::before {
  width: 28px;
  height: 1px;
  background: rgba(216, 95, 66, 0.58);
}

.home-hero h1 {
  max-width: 680px;
  margin-bottom: 26px;
  color: #111a19;
  font-size: 4.15rem;
  line-height: 1.08;
}

h2,
.section-heading h2,
.why-grid h2,
.contact-panel h2 {
  font-size: 2.75rem;
  line-height: 1.15;
}

.hero-lede,
.home-hero .hero-lede,
.section-heading p,
.wide-copy,
.project-copy p,
.why-grid p,
.contact-panel p {
  color: #596665;
  font-size: 1.08rem;
  line-height: 1.78;
}

.hero-lede {
  max-width: 660px;
  margin-bottom: 30px;
}

.home-hero .hero-note {
  max-width: 620px;
  color: rgba(18, 23, 23, 0.5);
  font-size: 0.98rem;
  line-height: 1.65;
}

.button {
  min-height: 46px;
  padding: 11px 17px;
  border-radius: 8px;
  font-weight: 640;
  box-shadow: none;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.home-hero .button {
  border-color: rgba(18, 23, 23, 0.12);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 8px 20px rgba(18, 23, 23, 0.055);
}

.home-hero .button.primary,
.small-actions .button.primary {
  border-color: #0f766e;
  background: #0f766e;
  color: #fffdf8;
}

.section {
  padding: 90px 0;
}

.section-heading {
  align-items: start;
  margin-bottom: 46px;
}

.section-kicker {
  margin-bottom: 16px;
  color: #1d766e;
  font-size: 0.94rem;
  font-weight: 560;
  line-height: 1.4;
  text-transform: none;
}

.wide-copy {
  max-width: 800px;
  margin: -16px 0 38px;
}

.quiet-card,
.make-card,
.principle-card,
.product-panel,
.project-card,
.app-card,
.future-panel,
.proof-item,
.contact-panel {
  border-color: rgba(18, 23, 23, 0.1);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 10px 34px rgba(18, 23, 23, 0.045);
}

.quiet-card h3,
.make-card h3,
.principle-card h3 {
  font-size: 1.08rem;
  font-weight: 650;
  line-height: 1.35;
}

.quiet-card p,
.make-card p,
.principle-card p {
  line-height: 1.68;
}

.maker-shelf {
  min-height: 410px;
  overflow: hidden;
  border-color: rgba(18, 23, 23, 0.09);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.74), rgba(255, 255, 255, 0.48)),
    #f4faf7;
  box-shadow: 0 14px 42px rgba(18, 23, 23, 0.065);
}

.maker-shelf::before {
  bottom: 70px;
  background: linear-gradient(90deg, transparent, rgba(18, 23, 23, 0.16), transparent);
}

.shelf-paper {
  border-color: rgba(18, 23, 23, 0.1);
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(18, 23, 23, 0.075);
}

.shelf-paper span,
.shelf-chip,
.car-mini-head,
.app-badge {
  font-size: 0.78rem;
  font-weight: 680;
  letter-spacing: 0;
  text-transform: none;
}

.shelf-paper strong {
  font-size: 1.42rem;
  line-height: 1.14;
}

.phone-silhouette,
.phone-mini::before {
  box-shadow:
    inset 0 0 0 8px rgba(255, 255, 255, 0.72),
    0 12px 32px rgba(18, 23, 23, 0.085);
}

.waveform-mini,
.project-visual {
  border-color: rgba(18, 23, 23, 0.09);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.44)),
    #f4faf7;
}

.projects-section {
  background:
    linear-gradient(180deg, #f4faf7 0%, #ffffff 100%);
}

.project-shelf {
  gap: 20px;
}

.project-card {
  min-height: 340px;
  padding: 34px;
  box-shadow: 0 10px 34px rgba(18, 23, 23, 0.045);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.project-card:hover {
  transform: translateY(-1px);
  border-color: rgba(15, 118, 110, 0.18);
  box-shadow: 0 16px 44px rgba(18, 23, 23, 0.065);
}

.project-card.featured {
  background:
    linear-gradient(115deg, rgba(15, 118, 110, 0.055), rgba(255, 255, 255, 0.86) 42%, rgba(216, 95, 66, 0.045)),
    #ffffff;
}

.project-copy h3 {
  max-width: 16ch;
  margin-bottom: 14px;
  font-size: 2rem;
  line-height: 1.13;
}

.project-card.featured .project-copy h3 {
  font-size: 2.35rem;
}

.project-copy p {
  max-width: 720px;
}

.app-badge {
  margin-bottom: 22px;
  padding: 6px 10px;
  background: rgba(15, 118, 110, 0.08);
}

.archive-badge {
  background: rgba(216, 183, 106, 0.14);
}

.music-badge {
  background: rgba(216, 95, 66, 0.09);
}

.car-mini-row {
  border-color: rgba(18, 23, 23, 0.075);
  background: rgba(255, 255, 255, 0.72);
  font-weight: 560;
}

.track-card {
  border-color: rgba(18, 23, 23, 0.085);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 10px 28px rgba(18, 23, 23, 0.055);
}

.store-badges {
  margin-top: 24px;
}

.google-play-badge,
.google-play-badge img,
.ios-store-badge {
  height: 54px;
}

.ios-store-badge {
  width: 182px;
  border-color: #a6a6a6;
  background: #000000;
  opacity: 0.5;
}

.ios-store-mark {
  width: 29px;
  height: 29px;
}

.ios-store-badge small {
  font-size: 0.68rem;
  font-weight: 500;
}

.ios-store-badge strong {
  font-size: 1.28rem;
  font-weight: 650;
}

.store-note {
  color: #65706e;
  font-size: 0.78rem;
  line-height: 1.35;
}

.small-actions {
  gap: 10px;
}

.small-actions .button {
  min-height: 40px;
  color: #0d514d;
  background: rgba(255, 255, 255, 0.78);
}

.why-section {
  background:
    linear-gradient(180deg, #ffffff 0%, #fbfaf6 100%);
}

.why-grid {
  gap: 70px;
}

.note-list {
  gap: 9px;
}

.note-list li {
  min-height: 46px;
  border-color: rgba(18, 23, 23, 0.085);
  background: rgba(255, 255, 255, 0.7);
  color: #24302f;
  font-weight: 560;
  box-shadow: none;
}

.principles-section {
  background: #fbfaf6;
}

.principles-grid.compact {
  gap: 16px;
}

.principles-grid.compact .principle-card {
  min-height: 178px;
}

.contact-band {
  background:
    linear-gradient(180deg, #14201f 0%, #0b1114 100%);
}

.contact-panel {
  border-color: rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.035)),
    transparent;
}

.contact-panel h2 {
  max-width: 700px;
}

.footer {
  background: #0b1114;
}

.product-hero.carkeeper-hero {
  min-height: 660px;
  color: var(--ink);
  background:
    linear-gradient(180deg, #fffdf8 0%, #f5faf7 100%);
}

.product-hero.carkeeper-hero::before {
  background:
    linear-gradient(rgba(18, 23, 23, 0.032) 1px, transparent 1px),
    linear-gradient(90deg, rgba(18, 23, 23, 0.032) 1px, transparent 1px),
    radial-gradient(circle at 78% 28%, rgba(15, 118, 110, 0.1), transparent 30%),
    radial-gradient(circle at 24% 82%, rgba(216, 95, 66, 0.055), transparent 26%);
  background-size: 52px 52px, 52px 52px, auto, auto;
}

.product-hero.carkeeper-hero::after {
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.22), rgba(245, 250, 247, 0.9)),
    linear-gradient(115deg, rgba(15, 118, 110, 0.06), transparent 48%, rgba(216, 95, 66, 0.04));
}

.carkeeper-hero .brand,
.carkeeper-hero .nav-links {
  color: var(--ink);
}

.carkeeper-hero .nav-links {
  color: rgba(18, 23, 23, 0.58);
}

.carkeeper-hero .nav-links a:hover,
.carkeeper-hero .nav-links a:focus-visible,
.carkeeper-hero .nav-links > a[aria-current="page"] {
  color: #0d514d;
}

.carkeeper-hero .language-toggle {
  border-color: rgba(18, 23, 23, 0.1);
  background: rgba(255, 255, 255, 0.58);
}

.carkeeper-hero .language-toggle a {
  color: rgba(18, 23, 23, 0.62);
}

.carkeeper-hero .language-toggle a[aria-current="true"] {
  background: rgba(15, 118, 110, 0.1);
  color: #0d514d;
}

.product-hero-inner {
  gap: 78px;
}

.carkeeper-hero h1 {
  max-width: 720px;
  color: #111a19;
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 400;
  line-height: 1.08;
}

.carkeeper-hero .eyebrow {
  color: #1d766e;
  font-weight: 560;
  text-transform: none;
}

.carkeeper-hero .hero-lede {
  max-width: 670px;
  color: #596665;
  font-size: 1.08rem;
  line-height: 1.78;
}

.carkeeper-hero .button {
  border-color: rgba(18, 23, 23, 0.14);
  background: rgba(255, 255, 255, 0.8);
  color: #0d514d;
}

.carkeeper-hero .store-badges,
.carkeeper-hero .store-note {
  color: #65706e;
}

.product-device {
  min-height: 360px;
  border-color: rgba(18, 23, 23, 0.1);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.74), rgba(255, 255, 255, 0.44)),
    #f4faf7;
  box-shadow: 0 14px 42px rgba(18, 23, 23, 0.065);
}

.device-card {
  border-color: rgba(18, 23, 23, 0.1);
  background: rgba(255, 255, 255, 0.86);
  color: var(--ink);
  box-shadow: 0 12px 28px rgba(18, 23, 23, 0.075);
}

.device-card span {
  color: #1d766e;
  font-size: 0.78rem;
  font-weight: 680;
}

.device-card strong {
  color: var(--ink-strong);
  font-family: var(--font-display);
  font-weight: 400;
}

.device-card p {
  color: #596665;
  line-height: 1.65;
}

.feature-list li {
  background: rgba(255, 255, 255, 0.72);
  font-weight: 560;
}

@media (max-width: 900px) {
  .home-hero-grid {
    gap: 44px;
  }

  .home-hero h1 {
    font-size: 3.25rem;
  }

  h2,
  .section-heading h2,
  .why-grid h2,
  .contact-panel h2 {
    font-size: 2.35rem;
  }

  .project-card.featured .project-copy h3,
  .project-copy h3 {
    font-size: 1.85rem;
  }

  .carkeeper-hero h1 {
    font-size: 3.25rem;
  }

  .section {
    padding: 74px 0;
  }
}

@media (max-width: 640px) {
  html,
  body {
    max-width: 100%;
    overflow-x: hidden;
  }

  body {
    font-size: 16px;
    line-height: 1.68;
  }

  .hero-inner,
  .container,
  .nav {
    width: calc(100% - 28px);
    max-width: 100%;
  }

  .nav {
    gap: 12px;
    padding-top: 14px;
  }

  .brand {
    gap: 9px;
  }

  .brand-mark {
    width: 32px;
    height: 32px;
  }

  .nav-links {
    width: 100%;
    flex: 0 0 auto;
  }

  .home-hero-grid,
  .section-heading,
  .project-card,
  .project-card.featured,
  .why-grid,
  .product-hero-inner,
  .contact-panel {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-copy,
  .product-copy,
  .section-heading > *,
  .project-copy,
  .wide-copy,
  .why-grid > *,
  .contact-panel > * {
    min-width: 0;
    width: 100%;
    max-width: 100%;
  }

  .home-hero {
    min-height: auto;
  }

  .home-hero h1 {
    max-width: 100%;
    font-size: 2.12rem;
    line-height: 1.1;
  }

  .carkeeper-hero h1 {
    font-size: 2.42rem;
  }

  h2,
  .section-heading h2,
  .why-grid h2,
  .contact-panel h2 {
    max-width: 100%;
    font-size: 2rem;
    overflow-wrap: break-word;
  }

  .hero-lede,
  .home-hero .hero-lede,
  .section-heading p,
  .wide-copy,
  .project-copy p,
  .why-grid p,
  .contact-panel p {
    font-size: 1rem;
    line-height: 1.72;
  }

  .section {
    padding: 58px 0;
  }

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

  .actions,
  .small-actions,
  .store-badges {
    width: 100%;
    max-width: 100%;
  }

  .button {
    max-width: 100%;
    white-space: normal;
  }

  .project-card,
  .project-card.featured {
    padding: 23px;
  }

  .project-copy h3,
  .project-card.featured .project-copy h3 {
    font-size: 1.72rem;
  }

  .maker-shelf {
    width: 100%;
    max-width: 100%;
    min-height: 260px;
  }
}

/* Final home-page overrides. Keep this block last: it isolates the editorial redesign from older site styles. */
@media (max-width: 520px) {
  .home-page .container,
  .home-page .home-hero-grid {
    width: min(calc(100vw - 32px), 358px) !important;
  }

  .home-page .home-hero h1 {
    font-size: 1.58rem !important;
    line-height: 1.16 !important;
  }

  .home-page .eyebrow,
  .home-page .hero-lede,
  .home-page .project-copy p {
    overflow-wrap: anywhere;
  }
}

.home-page {
  background: linear-gradient(180deg, #fffdfa 0%, #fbfaf6 52%, #f2f7f4 100%);
  color: var(--ink);
}

.home-page .home-hero {
  min-height: auto;
  align-items: start;
  overflow: visible;
  padding: 0 0 72px;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(15, 118, 110, 0.08) 1px, transparent 1px),
    linear-gradient(180deg, rgba(15, 118, 110, 0.06) 1px, transparent 1px),
    #fffdfa;
  background-size: 44px 44px;
}

.home-page .home-hero::before,
.home-page .home-hero::after {
  display: none;
}

.home-page .nav {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 48px));
  padding: 24px 0;
  color: var(--ink);
}

.home-page .brand,
.home-page .nav-links {
  color: var(--ink);
}

.home-page .brand {
  font-weight: 820;
  letter-spacing: 0;
  text-transform: none;
}

.home-page .nav-links {
  gap: 8px;
}

.home-page .nav-links a,
.home-page .language-toggle {
  border-color: rgba(18, 23, 23, 0.12);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: none;
}

.home-page .nav-links a:hover,
.home-page .nav-links a:focus-visible {
  border-color: rgba(15, 118, 110, 0.34);
  background: #ffffff;
  color: var(--teal-deep);
}

.home-page .language-toggle a[aria-current="true"] {
  color: #fffdf8;
  background: var(--teal);
}

.home-page .home-hero-grid {
  position: relative;
  z-index: 1;
  width: min(960px, calc(100% - 48px));
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
  align-items: start;
  padding: 92px 0 0;
}

.home-page .hero-copy {
  max-width: 860px;
}

.home-page .eyebrow,
.home-page .section-kicker {
  color: var(--teal-deep);
  font-family: var(--font-mono);
  font-size: 0.82rem;
  font-weight: 720;
  letter-spacing: 0;
  text-transform: uppercase;
}

.home-page .home-hero h1 {
  max-width: 760px;
  margin: 0 0 22px;
  color: var(--ink-strong);
  font-family: var(--font-body);
  font-size: 3.2rem;
  line-height: 1.06;
  font-weight: 780;
  letter-spacing: 0;
}

.home-page .hero-lede {
  max-width: 720px;
  margin: 0 0 30px;
  color: var(--ink);
  font-size: 1.08rem;
  line-height: 1.7;
}

.home-page .hero-lede p,
.home-page .long-copy p {
  margin: 0 0 14px;
}

.home-page .hero-lede p:last-child,
.home-page .long-copy p:last-child {
  margin-bottom: 0;
}

.home-page .hero-note {
  max-width: 680px;
  margin-top: 30px;
  color: var(--muted);
  font-size: 0.98rem;
}

.home-page .button {
  border-color: rgba(18, 23, 23, 0.14);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.8);
  box-shadow: none;
}

.home-page .button:hover,
.home-page .button:focus-visible {
  border-color: rgba(15, 118, 110, 0.34);
  background: #ffffff;
}

.home-page .button.primary,
.home-page .small-actions .button.primary {
  border-color: var(--teal);
  color: #fffdf8;
  background: var(--teal);
}

.home-page .button.primary:hover,
.home-page .button.primary:focus-visible {
  background: var(--teal-deep);
}

.home-page .button-disabled,
.home-page .button-disabled:hover {
  cursor: not-allowed;
  color: rgba(18, 23, 23, 0.46);
  background: rgba(18, 23, 23, 0.04);
  border-color: rgba(18, 23, 23, 0.1);
  transform: none;
}

.home-page .section {
  padding: 72px 0;
  background: transparent;
}

.home-page .section + .section {
  border-top: 1px solid rgba(18, 23, 23, 0.09);
}

.home-page .container {
  width: min(1080px, calc(100% - 48px));
}

.home-page .section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(280px, 1fr);
  gap: 42px;
  align-items: start;
  margin-bottom: 36px;
}

.home-page .section-heading h2,
.home-page .why-grid h2,
  .home-page .contact-panel h2 {
  color: var(--ink-strong);
  font-family: var(--font-body);
  font-size: 2rem;
  line-height: 1.16;
  font-weight: 760;
  letter-spacing: 0;
}

.home-page .section-heading p,
.home-page .long-copy,
.home-page .project-copy p,
.home-page .why-grid p,
.home-page .contact-panel p {
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.78;
}

.home-page .long-copy {
  max-width: 850px;
}

.home-page .card-row {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 42px;
}

.home-page .quiet-card,
.home-page .principle-card {
  padding: 22px 0 0;
  border: 0;
  border-top: 1px solid rgba(18, 23, 23, 0.16);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.home-page .quiet-card h3,
.home-page .principle-card h3 {
  color: var(--ink-strong);
  font-family: var(--font-body);
  font-size: 1.04rem;
  font-weight: 790;
}

.home-page .project-shelf.minimal {
  display: grid;
  gap: 22px;
}

.home-page .project-card,
.home-page .project-card.featured {
  display: block;
  padding: 34px;
  border: 1px solid rgba(18, 23, 23, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: none;
}

.home-page .project-card:hover {
  transform: none;
  border-color: rgba(15, 118, 110, 0.24);
}

.home-page .project-copy {
  max-width: 860px;
}

.home-page .project-copy h3,
.home-page .project-card.featured .project-copy h3 {
  margin-top: 12px;
  color: var(--ink-strong);
  font-family: var(--font-body);
  font-size: 1.56rem;
  line-height: 1.18;
  font-weight: 780;
  letter-spacing: 0;
}

.home-page .app-badge {
  display: inline-flex;
  width: auto;
  border-radius: 999px;
  color: var(--teal-deep);
  background: rgba(15, 118, 110, 0.09);
}

.home-page .compact-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.home-page .compact-tags li {
  padding: 7px 10px;
  border: 1px solid rgba(18, 23, 23, 0.11);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255, 253, 250, 0.82);
  font-size: 0.9rem;
  line-height: 1.2;
}

.home-page .inline-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 18px;
  font-size: 0.92rem;
}

.home-page .inline-links a {
  color: var(--teal-deep);
  text-underline-offset: 4px;
}

.home-page .why-section {
  color: var(--ink);
  background: transparent;
}

.home-page .why-grid {
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 60px;
  align-items: start;
}

.home-page .note-list {
  margin: 0;
  padding: 0;
  border-left: 1px solid rgba(18, 23, 23, 0.13);
  list-style: none;
}

.home-page .note-list li {
  padding: 14px 0 14px 22px;
  border-bottom: 1px solid rgba(18, 23, 23, 0.09);
  color: var(--ink);
}

.home-page .note-list li::before {
  display: none;
}

.home-page .principles-grid.compact {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}

.home-page .contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: 34px 0 0;
  border: 0;
  border-top: 1px solid rgba(18, 23, 23, 0.16);
  border-radius: 0;
  color: var(--ink);
  background: transparent;
  box-shadow: none;
}

.home-page .footer {
  color: var(--ink);
  background: #f2f7f4;
  border-top: 1px solid rgba(18, 23, 23, 0.09);
}

@media (max-width: 980px) {
  .home-page .home-hero-grid,
  .home-page .section-heading,
  .home-page .why-grid,
  .home-page .contact-panel {
    grid-template-columns: 1fr;
  }

  .home-page .card-row,
  .home-page .principles-grid.compact {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .home-page .nav,
  .home-page .container,
  .home-page .home-hero-grid {
    width: min(100% - 32px, 1080px);
  }

  .home-page .home-hero {
    padding-bottom: 72px;
  }

  .home-page .home-hero-grid {
    padding-top: 64px;
    gap: 34px;
  }

  .home-page .home-hero h1 {
    font-size: 2.22rem;
    line-height: 1.08;
  }

  .home-page .section {
    padding: 66px 0;
  }

  .home-page .section-heading h2,
  .home-page .why-grid h2,
  .home-page .contact-panel h2 {
    font-size: 2rem;
  }

  .home-page .card-row,
  .home-page .principles-grid.compact {
    grid-template-columns: 1fr;
  }

  .home-page .project-card,
  .home-page .project-card.featured {
    padding: 24px;
  }

  .home-page .project-copy h3,
  .home-page .project-card.featured .project-copy h3 {
    font-size: 1.6rem;
  }
}

/* Final responsive polish for the editorial home page. */
.home-page {
  overflow-x: hidden;
}

.home-page .hero-copy,
.home-page .project-copy,
.home-page .section-heading > *,
.home-page .why-grid > *,
.home-page .contact-panel > * {
  min-width: 0;
  max-width: 100%;
}

.home-page .home-hero-grid {
  padding-top: 86px;
}

.home-page .home-hero h1 {
  font-family: var(--font-body);
  font-size: 3.2rem;
  font-weight: 780;
  overflow-wrap: anywhere;
  word-break: normal;
}

.home-page .section-heading h2,
.home-page .why-grid h2,
.home-page .contact-panel h2,
.home-page .project-copy h3 {
  overflow-wrap: anywhere;
}

@media (max-width: 680px) {
  .home-page .nav {
    align-items: flex-start;
    gap: 16px;
  }

  .home-page .nav-links {
    width: 100%;
    min-width: 0;
    justify-content: flex-start;
  }

  .home-page .nav-links a,
  .home-page .language-toggle {
    max-width: 100%;
  }

  .home-page .home-hero-grid {
    padding-top: 48px;
  }

  .home-page .home-hero h1 {
    font-size: 1.78rem;
    line-height: 1.14;
  }

  .home-page .hero-lede,
  .home-page .section-heading p,
  .home-page .long-copy,
  .home-page .project-copy p,
  .home-page .why-grid p,
  .home-page .contact-panel p {
    font-size: 0.98rem;
    line-height: 1.72;
    overflow-wrap: anywhere;
  }

  .home-page .button {
    width: 100%;
  }
}

/* Minimal CarKeeper page. */
.carkeeper-page {
  overflow-x: hidden;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(15, 118, 110, 0.055) 1px, transparent 1px),
    linear-gradient(180deg, rgba(15, 118, 110, 0.04) 1px, transparent 1px),
    #fffdfa;
  background-size: 44px 44px;
}

.carkeeper-page .product-hero.carkeeper-hero {
  min-height: auto;
  padding: 0 0 76px;
  color: var(--ink);
  background: transparent;
}

.carkeeper-page .product-hero.carkeeper-hero::before,
.carkeeper-page .product-hero.carkeeper-hero::after {
  display: none;
}

.carkeeper-page .nav {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 48px));
  padding: 24px 0;
  color: var(--ink);
}

.carkeeper-page .brand,
.carkeeper-page .nav-links {
  color: var(--ink);
}

.carkeeper-page .brand {
  font-weight: 820;
  letter-spacing: 0;
}

.carkeeper-page .nav-links {
  gap: 8px;
}

.carkeeper-page .nav-links a,
.carkeeper-page .language-toggle {
  border-color: rgba(18, 23, 23, 0.12);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: none;
}

.carkeeper-page .nav-links a:hover,
.carkeeper-page .nav-links a:focus-visible,
.carkeeper-page .nav-links > a[aria-current="page"] {
  border-color: rgba(15, 118, 110, 0.34);
  background: #ffffff;
  color: var(--teal-deep);
}

.carkeeper-page .language-toggle a[aria-current="true"] {
  color: #fffdf8;
  background: var(--teal);
}

.carkeeper-page .product-hero-inner {
  display: block;
  width: min(960px, calc(100% - 48px));
  padding: 92px 0 0;
}

.carkeeper-page .product-copy {
  max-width: 720px;
}

.carkeeper-page .app-badge {
  display: inline-flex;
  width: auto;
  margin: 0 0 18px;
  color: var(--teal-deep);
  background: rgba(15, 118, 110, 0.09);
}

.carkeeper-page .carkeeper-hero h1 {
  max-width: 720px;
  margin: 0 0 18px;
  color: var(--ink-strong);
  font-family: var(--font-body);
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: 0;
}

.carkeeper-page .carkeeper-hero .hero-lede {
  max-width: 680px;
  margin: 0;
  color: var(--ink);
  font-size: 1.08rem;
  line-height: 1.72;
}

.carkeeper-page .store-badges {
  margin-top: 28px;
}

.carkeeper-page .hero-note {
  max-width: 660px;
  margin-top: 22px;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.65;
}

.carkeeper-page .section {
  padding: 68px 0;
  border-top: 1px solid rgba(18, 23, 23, 0.09);
  background: rgba(255, 253, 250, 0.74);
}

.carkeeper-details-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(320px, 1fr);
  gap: 44px;
  align-items: start;
}

.carkeeper-page .section-kicker {
  color: var(--teal-deep);
  font-family: var(--font-mono);
  font-size: 0.82rem;
  font-weight: 720;
  letter-spacing: 0;
  text-transform: uppercase;
}

.carkeeper-page h2 {
  max-width: 520px;
  margin: 8px 0 0;
  color: var(--ink-strong);
  font-family: var(--font-body);
  font-size: 2rem;
  font-weight: 780;
  line-height: 1.16;
  letter-spacing: 0;
}

.carkeeper-page .compact-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.carkeeper-page .compact-tags li {
  padding: 7px 10px;
  border: 1px solid rgba(18, 23, 23, 0.11);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  line-height: 1.2;
}

.carkeeper-facts {
  display: grid;
  gap: 0;
  margin: 28px 0 0;
  padding: 0;
  border-top: 1px solid rgba(18, 23, 23, 0.12);
}

.carkeeper-facts div {
  display: grid;
  grid-template-columns: 148px minmax(0, 1fr);
  gap: 18px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(18, 23, 23, 0.09);
}

.carkeeper-facts dt {
  color: var(--muted);
  font-size: 0.9rem;
}

.carkeeper-facts dd {
  margin: 0;
  color: var(--ink);
}

.carkeeper-facts a {
  color: var(--teal-deep);
  text-underline-offset: 4px;
}

.carkeeper-page .footer {
  color: var(--ink);
  background: #fffdfa;
  border-top: 1px solid rgba(18, 23, 23, 0.09);
}

.carkeeper-page .footer a:hover,
.carkeeper-page .footer a:focus-visible {
  color: var(--teal-deep);
}

@media (max-width: 760px) {
  .carkeeper-page .nav,
  .carkeeper-page .product-hero-inner,
  .carkeeper-page .container {
    width: min(100% - 32px, 960px);
  }

  .carkeeper-page .nav {
    align-items: flex-start;
    gap: 16px;
  }

  .carkeeper-page .nav-links {
    width: 100%;
    min-width: 0;
    justify-content: flex-start;
  }

  .carkeeper-page .product-hero-inner {
    padding-top: 58px;
  }

  .carkeeper-page .carkeeper-hero h1 {
    font-size: 2.2rem;
  }

  .carkeeper-details-grid,
  .carkeeper-facts div {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .carkeeper-page .button {
    width: 100%;
  }
}
