:root {
  --bg: #faf9f7;
  --surface: #ffffff;
  --surface-alt: #f1f5f9;
  --ink: #0f172a;
  --slate: #334155;
  --muted: #64748b;
  --line: #e2e8f0;
  --line-strong: #cbd5e1;
  --navy: #0f172a;
  --navy-deep: #0a0f1d;
  --navy-soft: #1e293b;
  --blue: #2563eb;
  --blue-dark: #1d4ed8;
  --blue-soft: #eef3ff;
  --amber: #f97316;
  --amber-dark: #ea580c;
  --white: #ffffff;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 12px 28px -12px rgba(15, 23, 42, 0.22);
  --shadow-lg: 0 30px 70px -24px rgba(15, 23, 42, 0.4);
  --font-heading: "Poppins", "Inter", Arial, Helvetica, sans-serif;
  --font-body: "Inter", Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

[id] {
  scroll-margin-top: 104px;
}

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

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

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

:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
  border-radius: 3px;
}

.skip-link {
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 999;
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-sm);
  color: var(--white);
  background: var(--ink);
  font-weight: 600;
  transform: translateY(-200%);
  transition: transform 180ms ease;
}

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

/* Announcement bar */

.announcement {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 0.75rem;
  min-height: 42px;
  padding: 0.55rem clamp(1rem, 4vw, 4rem);
  color: var(--white);
  background: var(--navy);
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
}

.announcement span:first-child {
  color: #93a5c9;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.68rem;
}

.announcement strong {
  justify-self: center;
  font-weight: 700;
  color: var(--white);
}

.announcement a {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  background: rgba(249, 115, 22, 0.16);
  color: #ffc79a;
  font-weight: 700;
  font-size: 0.72rem;
  transition: background 160ms ease, color 160ms ease;
}

.announcement a:hover {
  background: var(--amber);
  color: var(--white);
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 84px;
  padding: 0 clamp(1rem, 4vw, 4rem);
  border-bottom: 1px solid var(--line);
  background: rgba(250, 249, 247, 0.9);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  width: max-content;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.brand-name {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.brand-name b {
  padding-right: 0.5rem;
  border-right: 2px solid var(--line-strong);
  font: inherit;
}

.brand-name span {
  color: var(--muted);
  font-weight: 600;
  font-size: 0.92em;
  letter-spacing: 0.01em;
}

.roof-mark {
  display: block;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background-color: var(--blue);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 11.5 12 4l9 7.5'/%3E%3Cpath d='M5.5 9.5V19a1 1 0 0 0 1 1h11a1 1 0 0 0 1-1V9.5'/%3E%3Cpath d='M9.5 20v-5.5a1 1 0 0 1 1-1h3a1 1 0 0 1 1 1V20'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 56%;
}

.roof-mark i {
  display: none;
}

footer .roof-mark {
  background: var(--blue);
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(1.5rem, 2.7vw, 2.6rem);
  font-size: 0.9rem;
  font-weight: 550;
}

.desktop-nav a {
  position: relative;
  padding: 0.75rem 0;
  color: var(--slate);
  transition: color 160ms ease;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 0.45rem;
  left: 0;
  height: 2px;
  content: "";
  border-radius: 2px;
  background: var(--amber);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.desktop-nav a:hover {
  color: var(--ink);
}

.desktop-nav a:hover::after {
  transform: scaleX(1);
}

.header-cta {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 1.3rem;
  border-radius: var(--radius-sm);
  color: var(--white);
  background: var(--ink);
  font-size: 0.85rem;
  font-weight: 650;
  letter-spacing: 0.01em;
  transition: background 160ms ease, transform 160ms ease;
}

.header-cta:hover {
  background: var(--blue);
  transform: translateY(-1px);
}

.mobile-menu {
  display: none;
}

/* Hero */

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(400px, 0.92fr);
  gap: clamp(3rem, 6vw, 6rem);
  min-height: calc(100vh - 126px);
  padding: clamp(3.5rem, 7vh, 6rem) clamp(1.25rem, 6vw, 6rem) 5rem;
  overflow: hidden;
}

.hero-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(circle at 14% 12%, rgba(37, 99, 235, 0.07), transparent 26rem);
}

.hero-copy {
  position: relative;
  z-index: 2;
  align-self: center;
  max-width: 720px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 1.4rem;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  color: var(--blue-dark);
  background: var(--blue-soft);
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.eyebrow.light,
.section-number.light {
  color: #bcd0ff;
  background: rgba(255, 255, 255, 0.1);
}

.hero h1,
.section h2,
.package-section h2,
.ryder-proof h2,
.additions-section h2,
.custom-section h2,
.ownership-section h2,
.founder-section h2,
.start-section h2 {
  margin: 0;
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

.hero h1 {
  max-width: 700px;
  font-size: clamp(2.7rem, 5vw, 4.4rem);
  line-height: 1.08;
}

.hero h1 span {
  display: block;
  color: var(--blue);
}

.hero-lede {
  max-width: 620px;
  margin: 1.6rem 0 0;
  color: var(--slate);
  font-size: clamp(1.05rem, 1.3vw, 1.2rem);
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.5rem;
  margin-top: 2.2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 54px;
  padding: 0.9rem 1.7rem;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 650;
  letter-spacing: -0.005em;
  transition: transform 160ms ease, color 160ms ease, background 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

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

.button-primary {
  color: var(--white);
  background: var(--amber);
  box-shadow: 0 12px 24px -10px rgba(249, 115, 22, 0.55);
}

.button-primary:hover {
  background: var(--amber-dark);
  box-shadow: 0 16px 30px -10px rgba(249, 115, 22, 0.6);
}

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

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

.button-outline {
  border-color: var(--line-strong);
  color: var(--ink);
}

.button-outline:hover {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--white);
}

.text-link {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--line-strong);
  color: var(--slate);
  font-size: 0.9rem;
  font-weight: 600;
  transition: border-color 160ms ease, color 160ms ease;
}

.text-link:hover {
  border-color: var(--blue);
  color: var(--blue);
}

.text-link span {
  display: inline-block;
  margin-left: 0.3rem;
  transition: transform 160ms ease;
}

.text-link:hover span {
  transform: translateX(4px);
}

.capacity {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 1.5rem;
  color: var(--muted);
  font-size: 0.82rem;
}

.capacity span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.16);
}

/* Home plan diagram */

.home-plan {
  position: relative;
  align-self: center;
  min-height: 560px;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle, rgba(37, 99, 235, 0.1) 1px, transparent 1px) 0 0 / 26px 26px,
    var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
}

.home-plan::before,
.home-plan::after {
  position: absolute;
  content: "";
}

.home-plan::before {
  inset: 22px;
  border: 1px dashed rgba(37, 99, 235, 0.3);
  border-radius: 16px;
}

.home-plan::after {
  display: none;
}

.plan-kicker {
  position: absolute;
  top: 1.6rem;
  left: 2rem;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.plan-roof {
  position: absolute;
  top: 108px;
  left: 50%;
  width: 220px;
  height: 130px;
  border-top: 3px solid var(--blue);
  border-left: 3px solid var(--blue);
  border-radius: 6px 0 0 0;
  transform: translateX(-50%) rotate(45deg) skew(-8deg, -8deg);
  opacity: 0.55;
}

.plan-home {
  position: absolute;
  top: 190px;
  left: 50%;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 236px;
  height: 210px;
  padding: 2rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow-md);
  transform: translateX(-50%);
}

.plan-home::before {
  position: absolute;
  top: -8px;
  left: -8px;
  width: 14px;
  height: 14px;
  border: 3px solid var(--amber);
  border-radius: 50%;
  content: "";
  background: var(--surface);
}

.plan-label,
.plan-home small {
  color: var(--blue);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.plan-home strong {
  margin: 0.6rem 0 0.9rem;
  font-family: var(--font-heading);
  font-size: 2.1rem;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.01em;
}

.plan-node {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  min-width: 108px;
  padding: 0.6rem 0.85rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: var(--ink);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  font-size: 0.76rem;
  font-weight: 650;
}

.plan-node::before {
  position: absolute;
  z-index: -1;
  height: 1px;
  content: "";
  background: repeating-linear-gradient(90deg, rgba(37, 99, 235, 0.45) 0 4px, transparent 4px 8px);
}

.plan-node span {
  display: grid;
  place-items: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  color: var(--white);
  background: var(--blue);
  font-size: 0.6rem;
  font-weight: 700;
}

.node-music { top: 108px; left: 18px; }
.node-music::before { top: 60px; left: 90px; width: 95px; transform: rotate(31deg); }
.node-social { top: 122px; right: 16px; }
.node-social::before { top: 55px; right: 90px; width: 78px; transform: rotate(-37deg); }
.node-merch { bottom: 82px; left: 20px; }
.node-merch::before { bottom: 65px; left: 94px; width: 90px; transform: rotate(-34deg); }
.node-search { right: 17px; bottom: 98px; }
.node-search::before { right: 98px; bottom: 60px; width: 77px; transform: rotate(36deg); }

.plan-note {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  color: var(--muted);
  font-size: 0.7rem;
  line-height: 1.5;
  text-align: center;
  transform: translateX(-50%);
}

/* Marquee */

.marquee {
  overflow: hidden;
  background: var(--navy);
  color: rgba(255, 255, 255, 0.85);
}

.marquee div {
  display: flex;
  gap: 2rem;
  align-items: center;
  width: max-content;
  padding: 0.95rem 0;
  font-family: var(--font-heading);
  font-size: clamp(0.85rem, 1.3vw, 1rem);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
  animation: drift 32s linear infinite alternate;
}

.marquee b {
  color: var(--amber);
  font-size: 0.5rem;
}

@keyframes drift {
  from { transform: translateX(2vw); }
  to { transform: translateX(-20vw); }
}

/* Section grid base */

.section,
.additions-section,
.ownership-section {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr) minmax(300px, 0.72fr);
  gap: clamp(2rem, 5vw, 5rem);
  padding: clamp(4.5rem, 8vw, 7.5rem) clamp(1.25rem, 6vw, 6rem);
  border-bottom: 1px solid var(--line);
}

.section-number {
  padding-top: 0.35rem;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.section-heading h2,
.ryder-copy h2,
.additions-section h2,
.ownership-heading h2,
.founder-section h2 {
  font-size: clamp(2.1rem, 3.6vw, 3.1rem);
  line-height: 1.14;
}

.section-heading.compact {
  grid-column: 2 / 4;
  max-width: 900px;
}

.why-copy,
.ownership-copy {
  color: var(--slate);
  line-height: 1.75;
}

.large-copy {
  margin-top: 0;
  color: var(--ink);
  font-size: clamp(1.1rem, 1.5vw, 1.3rem);
  font-weight: 550;
  line-height: 1.6;
}

.source-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.75rem;
}

.source-links a {
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: var(--blue-dark);
  font-size: 0.76rem;
  font-weight: 650;
  transition: border-color 160ms ease, background 160ms ease;
}

.source-links a:hover {
  border-color: var(--blue);
  background: var(--blue-soft);
}

.reality-card {
  grid-column: 3;
  align-self: start;
  padding: 2rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow-md);
}

.reality-card span,
.list-title,
.custom-cards article > span,
.start-card > span {
  color: var(--blue-dark);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.reality-card h3 {
  margin: 1rem 0;
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 650;
  line-height: 1.25;
}

.reality-card p {
  margin-bottom: 0;
  color: var(--slate);
  font-size: 0.92rem;
  line-height: 1.7;
}

/* Package / pricing */

.package-section {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  color: #e2e8f0;
  background: var(--navy);
}

.package-intro,
.package-list {
  padding: clamp(4.5rem, 8vw, 7rem) clamp(1.25rem, 6vw, 6rem);
}

.package-intro {
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.package-intro h2,
.custom-lede h2,
.start-copy h2 {
  color: var(--white);
  font-size: clamp(2.4rem, 4.4vw, 3.6rem);
  line-height: 1.1;
}

.package-intro > p:not(.eyebrow) {
  max-width: 620px;
  margin: 1.6rem 0 0;
  color: #aab6cc;
  font-size: 1.05rem;
  line-height: 1.75;
}

.price-lockup {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.35rem;
  margin: 2.5rem 0 2rem;
  padding: 1.75rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.price-lockup > span,
.price-lockup small {
  color: #93a5c9;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.price-lockup strong {
  color: var(--amber);
  font-family: var(--font-heading);
  font-size: clamp(3.6rem, 6vw, 5rem);
  font-weight: 700;
  line-height: 1;
}

.price-lockup sup {
  position: relative;
  top: -1.6rem;
  margin-right: 0.15rem;
  font-size: 1.5rem;
}

.package-list {
  align-self: center;
}

.package-list ol {
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.package-list li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 1rem;
  align-items: center;
  min-height: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.package-list li span {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(249, 115, 22, 0.18);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23f97316' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='5 13 10 18 19 7'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 13px;
  font-size: 0;
}

.package-list li p {
  margin: 0;
  color: #dbe2f0;
  font-size: clamp(0.92rem, 1.15vw, 1.02rem);
}

.terms-note {
  margin-top: 2rem;
  color: #93a5c9;
  font-size: 0.8rem;
  line-height: 1.65;
}

.terms-note summary {
  width: max-content;
  color: var(--white);
  font-weight: 650;
}

.terms-note p {
  max-width: 620px;
  margin-top: 0.75rem;
}

/* Ryder proof */

.ryder-proof {
  grid-template-columns: 150px minmax(0, 0.82fr) minmax(380px, 1.18fr);
}

.ryder-copy p:not(.eyebrow) {
  color: var(--slate);
  line-height: 1.7;
}

.ryder-copy .button {
  margin-top: 1.4rem;
}

.ryder-visual {
  position: relative;
  display: block;
  min-height: 580px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  color: var(--white);
  background: radial-gradient(circle at 72% 30%, rgba(37, 99, 235, 0.5), transparent 22rem), var(--navy-deep);
  box-shadow: var(--shadow-lg);
  transition: transform 300ms ease, box-shadow 300ms ease;
}

.ryder-visual:hover {
  transform: translateY(-4px);
  box-shadow: 0 40px 80px -20px rgba(15, 23, 42, 0.5);
}

.ryder-visual::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(165deg, transparent 30%, rgba(0, 0, 0, 0.18) 58%, rgba(0, 0, 0, 0.82) 100%);
}

.ryder-catalog {
  position: absolute;
  inset: 3.25rem 2.25rem 6.75rem 10.5rem;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: auto repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.catalog-label {
  grid-column: 1 / -1;
  align-self: end;
  padding-bottom: 0.25rem;
  color: #9fb4e8;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.record-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 140px;
  padding: 1.15rem;
  overflow: hidden;
  border-radius: var(--radius-md);
  color: var(--ink);
  background: var(--surface);
  box-shadow: var(--shadow-md);
  transition: transform 260ms ease;
}

.ryder-visual:hover .record-card {
  transform: translateY(-2px);
}

.record-card::after {
  position: absolute;
  right: -2rem;
  bottom: -2rem;
  width: 6rem;
  height: 6rem;
  border: 1.1rem solid rgba(37, 99, 235, 0.14);
  border-radius: 50%;
  content: "";
}

.record-card small {
  position: relative;
  z-index: 1;
  color: var(--blue);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.record-card strong {
  position: relative;
  z-index: 1;
  font-family: var(--font-heading);
  font-size: clamp(1.35rem, 2vw, 1.9rem);
  font-weight: 700;
  line-height: 1.1;
}

.record-two {
  color: var(--white);
  background: var(--blue);
}

.record-two small {
  color: #cddaff;
}

.record-three {
  background: #eef1f6;
}

.record-four {
  color: var(--white);
  background: var(--navy-soft);
}

.ryder-stamp {
  position: absolute;
  top: 1.75rem;
  left: 1.75rem;
  z-index: 2;
  display: flex;
  flex-direction: column;
  padding: 0.95rem 1.15rem;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(8px);
}

.ryder-stamp span,
.ryder-stamp small {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #9fb4e8;
}

.ryder-stamp strong {
  margin: 0.35rem 0;
  font-family: var(--font-heading);
  font-size: 1.7rem;
  font-weight: 700;
  line-height: 1.05;
  color: var(--white);
}

.ryder-stats {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: rgba(10, 15, 29, 0.72);
  backdrop-filter: blur(10px);
}

.ryder-stats span {
  display: flex;
  flex-direction: column;
  padding: 1.15rem;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  color: #cdd7ef;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.ryder-stats b {
  margin-bottom: 0.3rem;
  color: var(--amber);
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
}

/* Additions */

.additions-section {
  grid-template-rows: auto auto auto;
}

.add-on-grid {
  grid-column: 2 / 4;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.add-on-grid article {
  min-height: 210px;
  padding: 1.9rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 200ms ease, transform 200ms ease, border-color 200ms ease;
}

.add-on-grid article:hover {
  border-color: var(--blue);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.add-on-grid article > span {
  display: inline-grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  color: var(--blue-dark);
  background: var(--blue-soft);
  font-size: 0.7rem;
  font-weight: 750;
}

.add-on-grid h3 {
  margin: 1.4rem 0 0.6rem;
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 650;
}

.add-on-grid p {
  max-width: 470px;
  margin: 0;
  color: var(--slate);
  line-height: 1.65;
}

.add-on-note {
  grid-column: 2 / 4;
  max-width: 900px;
  margin: 0;
  padding: 1.35rem 1.6rem;
  border-radius: var(--radius-sm);
  border-left: 4px solid var(--blue);
  background: var(--blue-soft);
  color: var(--slate);
  font-size: 0.88rem;
  line-height: 1.65;
}

/* Custom builds */

.custom-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  color: #e2e8f0;
  background: var(--blue-dark);
}

.custom-lede,
.custom-cards {
  padding: clamp(4.5rem, 8vw, 7rem) clamp(1.25rem, 6vw, 6rem);
}

.custom-lede {
  border-right: 1px solid rgba(255, 255, 255, 0.16);
}

.custom-lede h2 {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  color: var(--white);
}

.custom-cards {
  display: grid;
  gap: 1.5rem;
  align-content: center;
}

.custom-cards article {
  padding: 2rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.06);
  transition: background 200ms ease, transform 200ms ease;
}

.custom-cards article:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-3px);
}

.custom-cards article > span {
  color: #c3d3ff;
}

.custom-cards h3 {
  margin: 1.1rem 0 0.75rem;
  font-family: var(--font-heading);
  font-size: clamp(1.3rem, 2vw, 1.7rem);
  font-weight: 650;
  line-height: 1.2;
  color: var(--white);
}

.custom-cards p {
  color: #d7e0fb;
  line-height: 1.7;
}

.custom-cards a {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 1.1rem;
  padding-bottom: 0.2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  color: var(--white);
  font-weight: 650;
  transition: border-color 160ms ease, color 160ms ease;
}

.custom-cards a:hover {
  border-color: var(--amber);
  color: #ffd2ac;
}

/* Ownership */

.ownership-section {
  grid-template-columns: 150px minmax(0, 0.85fr) minmax(320px, 0.75fr);
}

.ownership-heading h2 {
  color: var(--ink);
}

.ownership-copy ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin: 1.75rem 0;
  padding: 0;
  list-style: none;
}

.ownership-copy li {
  position: relative;
  padding: 0.85rem 1rem 0.85rem 2.5rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--ink);
  font-size: 0.85rem;
  font-weight: 600;
}

.ownership-copy li::before {
  position: absolute;
  top: 50%;
  left: 0.9rem;
  width: 15px;
  height: 15px;
  content: "";
  transform: translateY(-50%);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232563eb' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='5 13 10 18 19 7'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
}

.ownership-copy small {
  color: var(--muted);
  font-size: 0.75rem;
  line-height: 1.5;
}

/* Founder */

.founder-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(3rem, 8vw, 7rem);
  align-items: center;
  padding: clamp(4.5rem, 9vw, 7.5rem) clamp(1.25rem, 8vw, 10rem);
  border-bottom: 1px solid var(--line);
}

.founder-mark {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow-lg);
}

.lsg-stamp {
  position: absolute;
  top: 1.4rem;
  left: 1.4rem;
  z-index: 3;
  padding: 0.5rem 0.8rem;
  border-radius: var(--radius-sm);
  color: var(--white);
  background: var(--ink);
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.footer-brand strong span {
  color: var(--blue);
}

.founder-mark::after {
  display: none;
}

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

.founder-wordmark {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.3rem;
  padding: 3.5rem 2rem;
  background:
    radial-gradient(circle, rgba(37, 99, 235, 0.08) 1px, transparent 1px) 0 0 / 24px 24px,
    var(--surface-alt);
  text-align: center;
}

.founder-wordmark > * {
  position: relative;
  z-index: 2;
}

.founder-wordmark > strong {
  color: var(--ink);
  font-family: var(--font-heading);
  font-size: clamp(2.6rem, 5vw, 3.6rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.05;
}

.founder-wordmark > small {
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.poster-roof {
  display: block;
  width: 84px;
  height: 84px;
  border-radius: 20px;
  background-color: var(--blue);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 11.5 12 4l9 7.5'/%3E%3Cpath d='M5.5 9.5V19a1 1 0 0 0 1 1h11a1 1 0 0 0 1-1V9.5'/%3E%3Cpath d='M9.5 20v-5.5a1 1 0 0 1 1-1h3a1 1 0 0 1 1 1V20'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 56%;
}

.poster-roof i {
  display: none;
}

.founder-section > div:last-child {
  max-width: 760px;
}

.founder-section p:not(.eyebrow) {
  color: var(--slate);
  font-size: 1.05rem;
  line-height: 1.8;
}

/* Start / CTA */

.start-section {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  color: var(--white);
  background: var(--navy);
}

.start-copy,
.start-card {
  padding: clamp(4rem, 8vw, 7rem) clamp(1.25rem, 7vw, 7rem);
}

.start-copy {
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.start-copy h2 {
  max-width: 780px;
  color: var(--white);
}

.start-copy > p:not(.eyebrow) {
  max-width: 620px;
  margin-top: 1.5rem;
  color: #aab6cc;
  font-size: 1.05rem;
  line-height: 1.7;
}

.start-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.04);
}

.start-card > span {
  color: #93a5c9;
}

.start-card > strong {
  margin: 0.9rem 0;
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--white);
}

.start-card p {
  max-width: 520px;
  color: #aab6cc;
  line-height: 1.7;
}

.start-card .button {
  align-self: flex-start;
  margin-top: 1.5rem;
}

.start-card small {
  display: block;
  margin-top: 0.85rem;
  color: #8494b3;
  font-size: 0.72rem;
}

.inquiry-form {
  position: relative;
  margin-top: 1.75rem;
}

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

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

.inquiry-form label {
  display: grid;
  gap: 0.5rem;
  color: #dbe2f0;
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.4;
}

.inquiry-form label > span {
  color: #8494b3;
  font-size: 0.75rem;
  font-weight: 500;
}

.form-full {
  grid-column: 1 / -1;
}

.inquiry-form input,
.inquiry-form select,
.inquiry-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 0.75rem 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-sm);
  color: var(--ink);
  background: var(--white);
  font: 500 0.92rem/1.4 var(--font-body);
}

.inquiry-form textarea {
  min-height: 128px;
  resize: vertical;
}

.inquiry-form input::placeholder,
.inquiry-form textarea::placeholder {
  color: var(--muted);
}

.inquiry-form input:focus,
.inquiry-form select:focus,
.inquiry-form textarea:focus {
  border-color: var(--blue);
  outline: 3px solid rgba(37, 99, 235, 0.28);
  outline-offset: 1px;
}

.form-submit {
  margin-top: 1.1rem;
  width: 100%;
}

.inquiry-form > small {
  display: block;
  margin-top: 0.85rem;
  color: #8494b3;
  font-size: 0.75rem;
}

/* Thank-you page */

.thanks-page {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 2rem;
  background:
    radial-gradient(circle, rgba(37, 99, 235, 0.08) 1px, transparent 1px) 0 0 / 28px 28px,
    var(--bg);
}

.thanks-card {
  width: min(680px, 100%);
  padding: clamp(2.5rem, 7vw, 4.5rem);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow-lg);
}

.thanks-card h1 {
  margin: 1.4rem 0;
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 6vw, 3.4rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.thanks-card p:not(.eyebrow) {
  max-width: 540px;
  color: var(--slate);
  font-size: 1.05rem;
  line-height: 1.7;
}

.thanks-card .button {
  margin-top: 1.5rem;
}

/* Footer */

footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  padding: 3.5rem clamp(1.25rem, 6vw, 6rem) 2rem;
  color: #cbd5e1;
  background: var(--navy);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.7rem;
}

.footer-brand strong {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--white);
}

.footer-brand small {
  color: #8494b3;
}

.footer-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem 2rem;
  align-content: start;
  font-size: 0.85rem;
}

.footer-links a {
  transition: color 160ms ease;
}

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

footer > p {
  grid-column: 1 / -1;
  margin: 2rem 0 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #64748b;
  font-size: 0.78rem;
}

/* Responsive */

@media (max-width: 1100px) {
  .desktop-nav {
    display: none;
  }

  .site-header {
    grid-template-columns: 1fr auto auto;
    gap: 0.75rem;
  }

  .mobile-menu {
    position: relative;
    display: block;
  }

  .mobile-menu summary {
    display: flex;
    align-items: center;
    min-height: 44px;
    padding: 0 1.1rem;
    border-radius: var(--radius-sm);
    border: 1px solid var(--line-strong);
    font-size: 0.85rem;
    font-weight: 650;
    list-style: none;
  }

  .mobile-menu summary::-webkit-details-marker {
    display: none;
  }

  .mobile-menu nav {
    position: absolute;
    top: calc(100% + 0.6rem);
    right: 0;
    display: grid;
    width: min(300px, 86vw);
    padding: 0.5rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--line);
    background: var(--surface);
    box-shadow: var(--shadow-lg);
  }

  .mobile-menu nav a {
    padding: 0.9rem 0.85rem;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-weight: 600;
  }

  .mobile-menu nav a:hover {
    background: var(--surface-alt);
  }

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

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

  .home-plan {
    width: min(640px, 100%);
    margin: 0 auto;
  }

  .section,
  .additions-section,
  .ownership-section,
  .ryder-proof {
    grid-template-columns: 100px 1fr;
  }

  .why-copy,
  .reality-card,
  .ryder-visual,
  .ownership-copy {
    grid-column: 2;
  }

  .reality-card {
    margin-top: 1.5rem;
  }

  .package-section,
  .custom-section,
  .start-section {
    grid-template-columns: 1fr;
  }

  .package-intro,
  .custom-lede,
  .start-copy {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .section-heading.compact,
  .add-on-grid,
  .add-on-note {
    grid-column: 2;
  }
}

@media (max-width: 720px) {
  .announcement {
    grid-template-columns: 1fr auto;
    gap: 0.5rem;
    min-height: 42px;
    font-size: 0.7rem;
  }

  .announcement span:first-child {
    display: none;
  }

  .announcement strong {
    justify-self: start;
  }

  .site-header {
    min-height: 68px;
  }

  .brand {
    font-size: 0.92rem;
  }

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

  .header-cta {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-top: 3.5rem;
  }

  .hero h1 {
    font-size: clamp(2.3rem, 9vw, 3rem);
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
  }

  .button {
    width: 100%;
  }

  .home-plan {
    min-height: 480px;
  }

  .plan-roof {
    width: 180px;
    height: 110px;
  }

  .plan-home {
    top: 175px;
    width: 190px;
    height: 175px;
    padding: 1.4rem;
  }

  .plan-home strong {
    font-size: 1.7rem;
  }

  .plan-node {
    min-width: auto;
    padding: 0.5rem 0.65rem;
    font-size: 0.68rem;
  }

  .node-music { top: 92px; left: 10px; }
  .node-social { top: 104px; right: 10px; }
  .node-merch { bottom: 72px; left: 10px; }
  .node-search { right: 10px; bottom: 84px; }

  .plan-node::before {
    display: none;
  }

  .section,
  .additions-section,
  .ownership-section,
  .ryder-proof {
    display: block;
  }

  .section-number {
    margin-bottom: 1.5rem;
  }

  .section-heading,
  .why-copy,
  .reality-card,
  .ryder-copy,
  .ryder-visual,
  .ownership-heading,
  .ownership-copy {
    margin-top: 1.75rem;
  }

  .section-heading h2,
  .ryder-copy h2,
  .additions-section h2,
  .ownership-heading h2,
  .founder-section h2 {
    font-size: clamp(1.9rem, 8vw, 2.6rem);
  }

  .package-intro,
  .package-list,
  .custom-lede,
  .custom-cards,
  .start-copy,
  .start-card {
    padding: 3.5rem 1.25rem;
  }

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

  .form-full {
    grid-column: auto;
  }

  .package-intro h2,
  .custom-lede h2,
  .start-copy h2 {
    font-size: clamp(2.1rem, 9vw, 2.8rem);
  }

  .ryder-visual {
    min-height: 480px;
  }

  .ryder-catalog {
    inset: 7rem 1.1rem 5.5rem 1.1rem;
  }

  .record-card {
    min-height: 110px;
    padding: 0.8rem;
  }

  .record-card strong {
    font-size: clamp(1.3rem, 7vw, 1.7rem);
  }

  .ryder-stats span {
    padding: 0.8rem;
  }

  .add-on-grid {
    grid-template-columns: 1fr;
    margin-top: 2.5rem;
  }

  .add-on-note {
    margin-top: 1.5rem;
  }

  .ownership-copy ul {
    grid-template-columns: 1fr;
  }

  .founder-section {
    grid-template-columns: 1fr;
    padding: 4rem 1.25rem;
  }

  .founder-mark {
    width: min(380px, 100%);
    margin: 0 auto;
  }

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

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

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

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