:root {
  --site-header-height: 88px;
  --black: #050708;
  --charcoal: #0b1114;
  --graphite: #11191d;
  --panel: rgba(14, 24, 28, 0.78);
  --panel-strong: rgba(18, 30, 35, 0.92);
  --line: rgba(141, 234, 229, 0.15);
  --text: #f4f8f7;
  --muted: #9bacaa;
  --soft: #d4dddc;
  --teal: #27e0d0;
  --emerald: #4ee79b;
  --blue: #4a8dff;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.42);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  max-width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  max-width: 100%;
  margin: 0;
  padding-top: var(--site-header-height);
  overflow-x: hidden;
  background:
    radial-gradient(circle at 18% 12%, rgba(39, 224, 208, 0.13), transparent 32rem),
    radial-gradient(circle at 84% 8%, rgba(74, 141, 255, 0.15), transparent 34rem),
    linear-gradient(180deg, var(--black), #081012 42%, #050708);
  color: var(--text);
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  content: "";
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.022) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.72), transparent 75%);
}

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

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 9999;
  overflow: visible;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(3, 8, 10, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.nav-shell,
.section-inner {
  width: min(1456px, calc(100% - 80px));
  margin: 0 auto;
}

.nav-shell {
  display: flex;
  min-height: 80px;
  align-items: center;
  gap: 34px;
  overflow: visible;
}

.brand-link {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  border-radius: 14px;
  margin-right: -8px;
  padding: 0;
  box-shadow: 0 0 22px rgba(33, 242, 220, 0.14);
}

.brand-logo {
  width: 214px;
  max-height: 56px;
  height: auto;
  border-radius: 12px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2.1vw, 42px);
  color: var(--soft);
  font-size: 1rem;
}

.nav-links a {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.nav-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
  overflow: visible;
}

.nav-dropdown::after {
  position: absolute;
  top: 100%;
  left: -12px;
  width: calc(100% + 24px);
  height: 18px;
  content: "";
}

.nav-dropdown-toggle {
  appearance: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  border: 0;
  border-radius: 0;
  padding: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  line-height: inherit;
  cursor: pointer;
  text-decoration: none;
}

.nav-caret {
  color: var(--soft);
  font-size: 0.85rem;
}

.nav-live-badge {
  display: inline-flex;
  align-items: center;
  min-height: 18px;
  border: 1px solid rgba(39, 224, 208, 0.32);
  border-radius: 999px;
  padding: 0 7px;
  color: var(--teal);
  font-size: 0.65rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0;
}

.nav-links a,
.nav-dropdown-toggle,
.login-link {
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease;
}

.nav-links a:hover,
.nav-dropdown-toggle:hover,
.nav-dropdown.open .nav-dropdown-toggle,
.login-link:hover {
  color: var(--teal);
}

.nav-dropdown-menu {
  display: none;
  position: absolute;
  gap: 2px;
  top: calc(100% + 14px);
  left: 0;
  z-index: 10000;
  min-width: 230px;
  border: 1px solid rgba(35, 255, 230, 0.25);
  border-radius: 16px;
  padding: 10px;
  background: rgba(5, 14, 17, 0.96);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.45), 0 0 34px rgba(39, 224, 208, 0.1);
  backdrop-filter: blur(18px);
}

.nav-dropdown-menu::before {
  position: absolute;
  top: -7px;
  left: 50%;
  width: 12px;
  height: 12px;
  content: "";
  border-top: 1px solid rgba(39, 224, 208, 0.22);
  border-left: 1px solid rgba(39, 224, 208, 0.22);
  background: rgba(5, 12, 14, 0.9);
  transform: translateX(-50%) rotate(45deg);
}

.nav-dropdown-menu a {
  display: block;
  border-radius: 10px;
  padding: 10px 12px;
  color: inherit;
  text-decoration: none;
  white-space: nowrap;
}

.nav-dropdown-menu a:hover {
  background: rgba(39, 224, 208, 0.08);
  color: var(--teal);
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu {
  display: grid;
}

.nav-dropdown:hover .nav-dropdown-toggle,
.nav-dropdown.open .nav-dropdown-toggle {
  color: var(--teal);
}

.login-link {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(39, 224, 208, 0.44);
  border-radius: 999px;
  gap: 10px;
  padding: 0 30px;
  color: var(--text);
  font-size: 1rem;
  font-weight: 700;
  box-shadow: 0 0 22px rgba(39, 224, 208, 0.08);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  margin-left: auto;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
}

.nav-toggle span {
  display: block;
  width: 17px;
  height: 1px;
  margin: 5px auto;
  background: currentColor;
}

.hero-section {
  position: relative;
  overflow: hidden;
  min-height: clamp(620px, 62vh, 630px);
  padding: 34px 0 34px;
  display: flex;
  align-items: center;
  margin-top: 0;
  padding-top: clamp(48px, 7vh, 72px);
  background-image: url("images/Transportation_Hero_Background.png");
  background-position: center 48%;
  background-size: cover;
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(3, 6, 8, 0.82) 0%, rgba(5, 9, 12, 0.68) 34%, rgba(6, 14, 19, 0.28) 60%, rgba(3, 6, 8, 0.74) 100%),
    linear-gradient(180deg, rgba(1, 5, 8, 0.64) 0%, rgba(4, 8, 10, 0.18) 38%, rgba(2, 5, 7, 0.78) 100%),
    radial-gradient(circle at 66% 39%, rgba(39, 224, 208, 0.22), transparent 21rem),
    radial-gradient(circle at 82% 23%, rgba(74, 141, 255, 0.2), transparent 27rem),
    radial-gradient(circle at 28% 78%, rgba(78, 231, 155, 0.12), transparent 24rem);
}

.hero-section::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background:
    linear-gradient(rgba(255, 255, 255, 0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 86px 86px;
  mask-image: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.58) 28%, transparent 82%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(460px, 0.78fr) minmax(620px, 1fr);
  align-items: start;
  gap: 34px;
  transform: translateY(-8px);
}

.hero-copy {
  position: relative;
  z-index: 3;
  max-width: 640px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--teal);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 span {
  display: block;
  margin-bottom: 0.02em;
}

.hero-label {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 20px;
  color: #bffdf6;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-label::before {
  display: block;
  width: 42px;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, var(--teal), var(--emerald));
  box-shadow: 0 0 18px rgba(39, 224, 208, 0.64);
}

.hero-label::after {
  display: block;
  width: 84px;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, rgba(39, 224, 208, 0.5), transparent);
}

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

h1 {
  max-width: 640px;
  margin-bottom: 16px;
  font-size: clamp(4rem, 5.55vw, 5.75rem);
  line-height: 0.96;
  letter-spacing: 0;
  text-shadow: 0 18px 60px rgba(0, 0, 0, 0.64);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.1rem, 4vw, 4.2rem);
  line-height: 1;
  letter-spacing: 0;
}

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

.hero-text,
.section-lead {
  max-width: 600px;
  color: var(--soft);
  font-size: clamp(1rem, 1.55vw, 1.16rem);
  line-height: 1.58;
}

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

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  border-radius: 7px;
  padding: 0 28px;
  font-weight: 700;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

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

.button-primary {
  border: 1px solid rgba(39, 224, 208, 0.62);
  background:
    linear-gradient(135deg, rgba(39, 224, 208, 0.95), rgba(78, 231, 155, 0.84)),
    rgba(255, 255, 255, 0.08);
  color: #031010;
  box-shadow: 0 18px 58px rgba(39, 224, 208, 0.22);
}

.button-secondary {
  border: 1px solid rgba(39, 224, 208, 0.25);
  background: rgba(5, 14, 16, 0.48);
  color: var(--text);
  backdrop-filter: blur(16px);
}

.dashboard-showcase {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 1;
  overflow: visible;
  justify-self: auto;
  width: min(62vw, 980px);
  max-width: 100%;
  margin-top: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  pointer-events: none;
  transform: none;
}

.dashboard-showcase::before {
  content: none;
}

.dashboard-showcase::after {
  content: none;
}

.dashboard-image {
  display: block;
  width: 100%;
  height: auto;
  max-height: 560px;
  opacity: 0.98;
  object-fit: contain;
  object-position: center center;
  border: 0;
  border-radius: 0;
  box-shadow: 0 30px 110px rgba(39, 224, 208, 0.16);
}

@media (min-width: 981px) {
  .dashboard-showcase {
    right: clamp(18px, 2.8vw, 48px);
    bottom: 0;
    height: calc(100% - 8px);
    width: auto;
    max-width: none;
    transform: none;
  }

  .dashboard-image {
    width: auto;
    max-width: none;
    height: 100%;
    max-height: none;
    object-fit: contain;
    object-position: right bottom;
  }
}

.support-link,
.feature-card,
.ai-panel {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
}

.ops-list span,
.support-link span,
.ai-signal span {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.77rem;
}


.platform-section,
.co-driver-section,
.operators-section,
.support-section,
.final-cta-section {
  padding: 92px 0;
}

.platform-section {
  padding-top: 14px;
  padding-bottom: 72px;
}

.platform-section,
.support-section {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.section-heading {
  max-width: 820px;
  margin-right: auto;
  margin-bottom: 22px;
  margin-left: auto;
  text-align: center;
}

.section-heading .eyebrow {
  margin-bottom: 8px;
}

.section-heading h2 {
  margin-bottom: 8px;
  font-size: clamp(2rem, 2.5vw, 2.45rem);
}

.section-heading .section-lead {
  max-width: 700px;
  margin-right: auto;
  margin-bottom: 0;
  margin-left: auto;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.feature-card {
  min-height: 186px;
  padding: 18px;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.025));
}

.feature-card h3 {
  margin-bottom: 8px;
  font-size: 0.96rem;
  line-height: 1.25;
}

.feature-card p {
  margin-bottom: 0;
  font-size: 0.88rem;
}

.feature-card p,
.operators-card p,
.support-link strong,
.ai-signal p,
.site-footer p,
.placeholder-copy p {
  color: var(--muted);
  line-height: 1.58;
}

.feature-marker {
  display: block;
  width: 50px;
  height: 50px;
  margin-bottom: 14px;
  border: 1px solid rgba(39, 224, 208, 0.18);
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% 50%, rgba(39, 224, 208, 0.28), transparent 58%),
    rgba(39, 224, 208, 0.08);
  box-shadow: 0 0 26px rgba(39, 224, 208, 0.16);
}

.co-driver-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 48%, rgba(39, 224, 208, 0.12), transparent 26rem),
    radial-gradient(circle at 22% 42%, rgba(74, 141, 255, 0.14), transparent 24rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.025), transparent);
}

.co-driver-grid {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  align-items: center;
  gap: 56px;
}

.operators-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1fr);
  align-items: end;
  gap: 56px;
  width: 100%;
}

.ai-panel {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  padding: 30px;
  background:
    radial-gradient(circle at 50% 42%, rgba(39, 224, 208, 0.18), transparent 16rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.018));
  box-shadow:
    0 28px 80px rgba(0, 0, 0, 0.34),
    inset 0 0 0 1px rgba(39, 224, 208, 0.04);
}

.ai-orbit {
  position: absolute;
  inset: -12% -6% -8% -8%;
  z-index: 0;
  border: 0;
  border-radius: 12px;
  background:
    linear-gradient(90deg, rgba(4, 8, 10, 0.2), transparent 28%, transparent 68%, rgba(4, 8, 10, 0.54)),
    linear-gradient(180deg, rgba(4, 8, 10, 0.38), transparent 42%, rgba(4, 8, 10, 0.72)),
    url("images/co-driver-background.png") center center / cover no-repeat;
  filter: saturate(1.16) contrast(1.04);
  opacity: 0.58;
  mask-image:
    radial-gradient(ellipse at 54% 48%, rgba(0, 0, 0, 0.98) 0%, rgba(0, 0, 0, 0.9) 42%, rgba(0, 0, 0, 0.28) 72%, transparent 100%);
}

.ai-panel::before {
  position: absolute;
  inset: 8%;
  z-index: 1;
  content: "";
  background:
    radial-gradient(circle at 55% 48%, rgba(39, 224, 208, 0.22), transparent 14rem),
    radial-gradient(circle at 72% 28%, rgba(74, 141, 255, 0.18), transparent 12rem);
  filter: blur(18px);
  opacity: 0.72;
  pointer-events: none;
}

.ai-panel::after {
  position: absolute;
  inset: 0;
  z-index: 2;
  content: "";
  background:
    linear-gradient(90deg, rgba(5, 7, 8, 0.38), transparent 34%, rgba(5, 7, 8, 0.32)),
    linear-gradient(180deg, rgba(5, 7, 8, 0.22), transparent 44%, rgba(5, 7, 8, 0.48));
  pointer-events: none;
}

.ai-signal {
  position: absolute;
  right: 30px;
  bottom: 30px;
  left: 30px;
  z-index: 3;
  border-left: 2px solid var(--teal);
  border-top: 1px solid rgba(39, 224, 208, 0.16);
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 20px 22px;
  background:
    linear-gradient(135deg, rgba(12, 27, 31, 0.78), rgba(5, 10, 12, 0.82)),
    rgba(5, 10, 12, 0.72);
  box-shadow:
    0 22px 56px rgba(0, 0, 0, 0.42),
    0 0 34px rgba(39, 224, 208, 0.1);
  backdrop-filter: blur(16px);
}

.ai-signal strong {
  display: block;
  margin-bottom: 12px;
  font-size: 1.18rem;
}

.co-driver-cta {
  margin-top: 22px;
}

.co-driver-page {
  min-height: calc(100vh - 80px);
  padding: 96px 0;
  background:
    radial-gradient(circle at 78% 16%, rgba(39, 224, 208, 0.14), transparent 28rem),
    radial-gradient(circle at 16% 28%, rgba(74, 141, 255, 0.12), transparent 30rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.025), transparent 48%);
}

.co-driver-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(380px, 0.78fr);
  align-items: center;
  gap: 64px;
  margin-bottom: 86px;
}

.co-driver-hero-copy {
  max-width: 820px;
}

.co-driver-hero-copy h1 {
  max-width: 820px;
  margin-bottom: 22px;
  font-size: clamp(3.8rem, 6.2vw, 6.4rem);
  line-height: 0.98;
}

.co-driver-hero-copy p {
  max-width: 760px;
  color: var(--soft);
  font-size: clamp(1.08rem, 1.8vw, 1.28rem);
  line-height: 1.62;
}

.co-driver-hero-copy .button {
  margin-top: 22px;
}

.co-driver-hero-visual {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  border: 1px solid rgba(39, 224, 208, 0.18);
  border-radius: 14px;
  background:
    radial-gradient(circle at 50% 42%, rgba(39, 224, 208, 0.2), transparent 17rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.018));
  box-shadow:
    0 34px 90px rgba(0, 0, 0, 0.36),
    0 0 54px rgba(39, 224, 208, 0.1);
}

.co-driver-content {
  margin-top: 78px;
}

.co-driver-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.co-driver-card {
  min-height: 220px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 22px;
  background:
    linear-gradient(155deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.022)),
    rgba(14, 24, 28, 0.72);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
}

.co-driver-card span {
  display: block;
  width: 42px;
  height: 2px;
  margin-bottom: 20px;
  background: linear-gradient(90deg, var(--teal), var(--emerald), var(--blue));
  box-shadow: 0 0 18px rgba(39, 224, 208, 0.36);
}

.co-driver-card h3 {
  margin-bottom: 12px;
}

.co-driver-card p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.58;
}

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

.operational-read-grid article {
  border-left: 2px solid var(--teal);
  border-radius: 8px;
  padding: 22px 24px;
  background:
    linear-gradient(135deg, rgba(12, 27, 31, 0.78), rgba(5, 10, 12, 0.82)),
    rgba(5, 10, 12, 0.72);
  color: var(--soft);
  line-height: 1.55;
  box-shadow:
    0 22px 56px rgba(0, 0, 0, 0.3),
    0 0 34px rgba(39, 224, 208, 0.08);
}

.operator-ai-section {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1fr);
  align-items: center;
  gap: 56px;
  margin-top: 86px;
  border: 1px solid rgba(39, 224, 208, 0.15);
  border-radius: 14px;
  padding: clamp(30px, 4vw, 52px);
  background:
    radial-gradient(circle at 78% 34%, rgba(39, 224, 208, 0.12), transparent 20rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.02));
}

.operator-ai-section p {
  margin-bottom: 0;
  color: var(--soft);
  font-size: clamp(1rem, 1.6vw, 1.18rem);
  line-height: 1.72;
}

.co-driver-final-cta {
  margin-top: 86px;
  text-align: center;
}

.co-driver-final-cta h2 {
  max-width: 880px;
  margin-right: auto;
  margin-left: auto;
}

.operators-section {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  background:
    radial-gradient(circle at 50% 42%, rgba(39, 224, 208, 0.08), transparent 34rem),
    rgba(255, 255, 255, 0.02);
}

.operators-card {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  border: 1px solid rgba(141, 234, 229, 0.17);
  border-radius: 18px;
  padding: clamp(34px, 4.5vw, 58px);
  background:
    linear-gradient(180deg, rgba(6, 12, 14, 0.26), rgba(2, 7, 9, 0.88)),
    rgba(5, 10, 12, 0.8);
  box-shadow:
    0 34px 90px rgba(0, 0, 0, 0.36),
    inset 0 0 0 1px rgba(255, 255, 255, 0.025);
}

.operators-card::before {
  position: absolute;
  inset: clamp(18px, 2vw, 30px);
  z-index: 0;
  content: "";
  border-radius: 10px;
  background:
    linear-gradient(180deg, rgba(2, 7, 9, 0.08) 0%, rgba(2, 7, 9, 0.34) 46%, rgba(2, 7, 9, 0.9) 100%),
    linear-gradient(90deg, rgba(2, 7, 9, 0.1) 0%, transparent 44%, rgba(2, 7, 9, 0.2) 100%),
    url("images/for_operators_by_operators.png") center center / cover no-repeat;
  filter: saturate(0.96) contrast(1.06);
}

.operators-card::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background:
    radial-gradient(circle at 74% 28%, rgba(39, 224, 208, 0.13), transparent 28rem),
    linear-gradient(180deg, rgba(2, 7, 9, 0.1), rgba(2, 7, 9, 0.18) 44%, rgba(2, 7, 9, 0.72));
  pointer-events: none;
}

.operators-card .eyebrow {
  margin-bottom: 22px;
  color: var(--teal);
}

.operators-card h2 {
  max-width: 610px;
  margin-bottom: 0;
  font-size: clamp(3.4rem, 5.2vw, 5rem);
  line-height: 1.08;
}

.operators-card p:not(.eyebrow) {
  position: relative;
  margin-bottom: 0;
  padding-left: 44px;
  color: rgba(224, 235, 233, 0.72);
  font-size: clamp(1.1rem, 1.55vw, 1.45rem);
  line-height: 1.55;
}

.operators-card p:not(.eyebrow)::before {
  position: absolute;
  top: 0.2em;
  bottom: 0.2em;
  left: 0;
  width: 1px;
  content: "";
  background: linear-gradient(180deg, transparent, rgba(39, 224, 208, 0.72), transparent);
}

.operators-story-cta {
  position: relative;
  z-index: 2;
  margin-top: 28px;
}

.operator-story-page {
  min-height: calc(100vh - 80px);
  padding-bottom: 96px;
  background:
    radial-gradient(circle at 78% 18%, rgba(39, 224, 208, 0.12), transparent 30rem),
    radial-gradient(circle at 18% 28%, rgba(74, 141, 255, 0.1), transparent 30rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent 48%);
}

.operator-story-hero {
  position: relative;
  overflow: hidden;
  min-height: 680px;
  display: flex;
  align-items: flex-end;
  padding: 150px 0 78px;
  background:
    linear-gradient(180deg, rgba(2, 7, 9, 0.44), rgba(2, 7, 9, 0.86)),
    linear-gradient(90deg, rgba(2, 7, 9, 0.86), rgba(2, 7, 9, 0.34) 58%, rgba(2, 7, 9, 0.84)),
    url("images/for_operators_by_operators.png") center center / cover no-repeat;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.operator-story-hero::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    radial-gradient(circle at 78% 34%, rgba(39, 224, 208, 0.14), transparent 30rem),
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: auto, 86px 86px, 86px 86px;
  pointer-events: none;
}

.operator-story-hero-content {
  position: relative;
  z-index: 1;
}

.operator-story-hero h1 {
  max-width: 940px;
  margin-bottom: 22px;
  font-size: clamp(4rem, 7vw, 7rem);
  line-height: 0.96;
}

.operator-story-hero p:not(.eyebrow) {
  max-width: 780px;
  color: var(--soft);
  font-size: clamp(1.08rem, 1.8vw, 1.28rem);
  line-height: 1.62;
}

.operator-story-hero .button {
  margin-top: 24px;
}

.story-intro,
.story-split-card {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr);
  align-items: center;
  gap: 56px;
  margin-top: 86px;
}

.story-intro p,
.story-split-card p {
  margin-bottom: 0;
  color: var(--soft);
  font-size: clamp(1rem, 1.55vw, 1.18rem);
  line-height: 1.72;
}

.story-split-card p + p {
  margin-top: 18px;
}

.story-section {
  margin-top: 92px;
}

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

.story-card-grid article,
.operator-values-grid article {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background:
    linear-gradient(155deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.022)),
    rgba(14, 24, 28, 0.72);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
}

.story-card-grid article {
  min-height: 220px;
  padding: 22px;
}

.story-card-grid span {
  display: block;
  width: 42px;
  height: 2px;
  margin-bottom: 20px;
  background: linear-gradient(90deg, var(--teal), var(--emerald), var(--blue));
  box-shadow: 0 0 18px rgba(39, 224, 208, 0.36);
}

.story-card-grid h3 {
  margin-bottom: 12px;
}

.story-card-grid p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.58;
}

.story-split-card {
  border: 1px solid rgba(39, 224, 208, 0.15);
  border-radius: 14px;
  padding: clamp(30px, 4vw, 52px);
  background:
    radial-gradient(circle at 78% 34%, rgba(39, 224, 208, 0.12), transparent 20rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.02));
}

.story-visual-section {
  position: relative;
  overflow: hidden;
  width: min(1720px, calc(100% - 56px));
  margin: 92px auto 0;
  aspect-ratio: 1693 / 929;
  border: 1px solid rgba(39, 224, 208, 0.16);
  border-radius: 14px;
  background: #02090b;
  box-shadow:
    0 28px 90px rgba(0, 0, 0, 0.3),
    inset 0 0 0 1px rgba(255, 255, 255, 0.025);
}

.story-visual-section::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(180deg, rgba(2, 7, 9, 0) 76%, rgba(2, 7, 9, 0.24)),
    radial-gradient(circle at 50% 50%, transparent 68%, rgba(2, 7, 9, 0.14));
  pointer-events: none;
}

.story-visual-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
}

.story-road-card {
  background:
    radial-gradient(circle at 18% 34%, rgba(74, 141, 255, 0.12), transparent 20rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.02));
}

.operator-values-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 12px;
}

.operator-values-grid article {
  min-height: 112px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  color: var(--soft);
  font-weight: 800;
  text-align: center;
}

.story-final-cta {
  margin-top: 92px;
  text-align: center;
}

.story-final-cta h2 {
  max-width: 900px;
  margin-right: auto;
  margin-left: auto;
}

.about-page {
  min-height: calc(100vh - 80px);
  padding-bottom: 96px;
  background:
    radial-gradient(circle at 78% 18%, rgba(39, 224, 208, 0.12), transparent 30rem),
    radial-gradient(circle at 18% 28%, rgba(74, 141, 255, 0.1), transparent 30rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent 48%);
}

.about-hero {
  position: relative;
  overflow: hidden;
  min-height: 620px;
  display: flex;
  align-items: flex-end;
  padding: 148px 0 76px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(2, 7, 9, 0.38), rgba(2, 7, 9, 0.86)),
    linear-gradient(90deg, rgba(2, 7, 9, 0.9), rgba(2, 7, 9, 0.42) 60%, rgba(2, 7, 9, 0.84)),
    url("images/for_operators_by_operators.png") center center / cover no-repeat;
}

.about-hero::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    radial-gradient(circle at 76% 32%, rgba(39, 224, 208, 0.16), transparent 30rem),
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: auto, 86px 86px, 86px 86px;
  pointer-events: none;
}

.about-hero-content {
  position: relative;
  z-index: 1;
}

.about-hero h1 {
  max-width: 900px;
  margin-bottom: 22px;
  font-size: clamp(4rem, 7vw, 7rem);
  line-height: 0.96;
}

.about-hero p:not(.eyebrow) {
  max-width: 780px;
  color: var(--soft);
  font-size: clamp(1.08rem, 1.8vw, 1.28rem);
  line-height: 1.62;
}

.about-split,
.about-founder-card,
.about-vision-card {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 4rem);
  margin-top: 86px;
}

.about-copy-card,
.about-founder-card,
.about-mission-card,
.about-vision-card,
.about-card-grid article,
.about-final-cta {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background:
    linear-gradient(155deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.022)),
    rgba(14, 24, 28, 0.72);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
}

.about-copy-card,
.about-founder-card,
.about-mission-card,
.about-vision-card {
  padding: clamp(28px, 4vw, 52px);
}

.about-copy-card {
  background:
    radial-gradient(circle at 78% 34%, rgba(39, 224, 208, 0.12), transparent 20rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.02));
}

.about-copy-card p,
.about-founder-card p,
.about-mission-card p,
.about-vision-card p {
  margin-bottom: 0;
  color: var(--soft);
  font-size: clamp(1rem, 1.45vw, 1.15rem);
  line-height: 1.72;
}

.about-copy-card p + p,
.about-founder-card p + p {
  margin-top: 18px;
}

.about-section,
.about-mission-section,
.about-final-cta {
  margin-top: 92px;
}

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

.about-card-grid article {
  min-height: 226px;
  padding: 22px;
}

.about-card-grid span {
  display: block;
  width: 42px;
  height: 2px;
  margin-bottom: 20px;
  background: linear-gradient(90deg, var(--teal), var(--emerald), var(--blue));
  box-shadow: 0 0 18px rgba(39, 224, 208, 0.36);
}

.about-card-grid h3 {
  margin-bottom: 12px;
}

.about-card-grid p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.58;
}

.about-founder-card,
.about-vision-card {
  border-color: rgba(39, 224, 208, 0.15);
}

.about-mission-card {
  max-width: 1120px;
  margin: 0 auto;
  border-color: rgba(39, 224, 208, 0.22);
  background:
    radial-gradient(circle at 20% 20%, rgba(39, 224, 208, 0.14), transparent 20rem),
    radial-gradient(circle at 88% 50%, rgba(74, 141, 255, 0.12), transparent 22rem),
    linear-gradient(155deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.022)),
    rgba(12, 22, 26, 0.8);
  text-align: center;
}

.about-mission-card h2,
.about-mission-card p {
  max-width: 880px;
  margin-right: auto;
  margin-left: auto;
}

.about-final-cta {
  padding: clamp(30px, 5vw, 58px);
  text-align: center;
}

.about-final-cta h2 {
  max-width: 860px;
  margin-right: auto;
  margin-left: auto;
}

.about-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 26px;
}

.contact-page {
  min-height: calc(100vh - 80px);
  padding: 96px 0;
  background:
    radial-gradient(circle at 78% 18%, rgba(39, 224, 208, 0.13), transparent 30rem),
    radial-gradient(circle at 18% 28%, rgba(74, 141, 255, 0.11), transparent 30rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.025), transparent 48%);
}

.contact-hero {
  position: relative;
  overflow: hidden;
  margin-bottom: 54px;
  border: 1px solid rgba(39, 224, 208, 0.13);
  border-radius: 14px;
  padding: clamp(34px, 6vw, 72px);
  background:
    linear-gradient(90deg, rgba(5, 7, 8, 0.96) 0%, rgba(5, 7, 8, 0.84) 56%, rgba(5, 7, 8, 0.62) 100%),
    radial-gradient(circle at 78% 34%, rgba(39, 224, 208, 0.18), transparent 22rem),
    url("images/Help-Center-Hero-Main.png") center right / cover no-repeat;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.28);
}

.contact-hero-copy {
  max-width: 840px;
}

.contact-hero h1 {
  max-width: 760px;
  margin-bottom: 18px;
  font-size: clamp(4rem, 7vw, 7rem);
}

.contact-hero p:not(.eyebrow) {
  max-width: 720px;
  color: var(--soft);
  font-size: clamp(1.08rem, 1.8vw, 1.28rem);
  line-height: 1.62;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1fr);
  gap: clamp(22px, 4vw, 44px);
  align-items: start;
}

.contact-info-card,
.contact-form-card {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  background:
    linear-gradient(155deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.022)),
    rgba(14, 24, 28, 0.78);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
}

.contact-info-card {
  position: sticky;
  top: calc(var(--site-header-height) + 28px);
  padding: clamp(24px, 3vw, 34px);
}

.contact-info-card h2 {
  font-size: clamp(1.9rem, 3vw, 2.8rem);
}

.contact-info-card p {
  color: var(--soft);
  line-height: 1.66;
}

.contact-info-list {
  display: grid;
  gap: 14px;
  margin: 24px 0;
}

.contact-info-list p {
  margin: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 14px;
}

.contact-info-list span {
  display: block;
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-info-list a {
  color: var(--teal);
  font-weight: 800;
}

.contact-form-card {
  position: relative;
  overflow: hidden;
  padding: clamp(24px, 3vw, 34px);
}

.contact-form-card::before {
  position: absolute;
  inset: -1px;
  z-index: 0;
  content: "";
  background:
    radial-gradient(circle at 78% 0%, rgba(39, 224, 208, 0.15), transparent 16rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent 42%);
  pointer-events: none;
}

.contact-field-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 16px;
}

.form-optional {
  color: var(--muted);
  font-weight: 700;
}

.form-checkbox {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 4px 0 20px;
  color: var(--soft);
  line-height: 1.5;
}

.form-checkbox input {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  margin-top: 3px;
  accent-color: var(--teal);
}

.support-link {
  min-height: 154px;
  padding: 22px;
  background: var(--panel);
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.support-link:hover {
  transform: translateY(-2px);
  border-color: rgba(39, 224, 208, 0.36);
  background: var(--panel-strong);
}

.support-link span {
  color: var(--teal);
  font-weight: 800;
}

.final-cta-section {
  position: relative;
  overflow: hidden;
}

.final-cta-section::before {
  position: absolute;
  inset: 14% 8%;
  z-index: -1;
  content: "";
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% 50%, rgba(39, 224, 208, 0.16), transparent 32rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.015));
  filter: blur(1px);
}

.final-cta {
  max-width: 900px;
  text-align: center;
}

.final-cta .button {
  margin-top: 16px;
}

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 36px 0;
  background: rgba(0, 0, 0, 0.3);
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(180px, 0.7fr) auto minmax(280px, 1.4fr);
  align-items: start;
  gap: 24px;
}

.footer-logo {
  width: 126px;
}

.site-footer p {
  margin-bottom: 0;
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  color: var(--soft);
  font-size: 0.9rem;
}

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

.footer-legal {
  max-width: 760px;
  color: var(--muted);
  line-height: 1.58;
}

.hidden {
  display: none;
}

.demo-access-page {
  min-height: calc(100vh - 80px);
  padding: 96px 0;
  background:
    radial-gradient(circle at 76% 22%, rgba(39, 224, 208, 0.14), transparent 28rem),
    radial-gradient(circle at 20% 30%, rgba(74, 141, 255, 0.1), transparent 30rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.025), transparent 46%);
}

.demo-access-hero {
  max-width: 880px;
  margin-bottom: 38px;
}

.demo-access-hero h1 {
  margin-bottom: 18px;
}

.demo-access-hero p {
  color: var(--soft);
  font-size: clamp(1.08rem, 1.8vw, 1.25rem);
  line-height: 1.62;
}

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

.demo-access-card {
  min-height: 340px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border: 1px solid rgba(39, 224, 208, 0.16);
  border-radius: 14px;
  padding: 28px;
  background:
    radial-gradient(circle at 80% 0%, rgba(39, 224, 208, 0.14), transparent 16rem),
    linear-gradient(155deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025)),
    rgba(14, 24, 28, 0.72);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.3), 0 0 44px rgba(39, 224, 208, 0.08);
}

.demo-access-card span {
  display: block;
  width: 42px;
  height: 2px;
  margin-bottom: 22px;
  background: linear-gradient(90deg, var(--teal), var(--emerald), var(--blue));
  box-shadow: 0 0 18px rgba(39, 224, 208, 0.36);
}

.demo-access-card h2 {
  margin-bottom: 14px;
  font-size: clamp(1.6rem, 2.3vw, 2.2rem);
}

.demo-access-card p {
  color: var(--muted);
  line-height: 1.62;
}

.demo-access-card .button {
  margin-top: auto;
}

.demo-access-note {
  margin-top: 28px;
}

.demo-access-note p {
  max-width: 840px;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.58;
}

.operator-login-page {
  min-height: calc(100vh - 80px);
  padding: 96px 0;
  background:
    radial-gradient(circle at 76% 22%, rgba(39, 224, 208, 0.14), transparent 28rem),
    radial-gradient(circle at 20% 30%, rgba(74, 141, 255, 0.1), transparent 30rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.025), transparent 46%);
}

.operator-login-hero {
  max-width: 1080px;
  margin-bottom: 38px;
}

.operator-login-hero h1 {
  max-width: none;
  margin-bottom: 18px;
  font-size: clamp(3.75rem, 5.2vw, 5.75rem);
  line-height: 0.98;
  text-wrap: balance;
}

.operator-login-hero p,
.operator-login-note p {
  color: var(--soft);
  font-size: clamp(1.05rem, 1.75vw, 1.24rem);
  line-height: 1.62;
}

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

.operator-login-card {
  min-height: 310px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border: 1px solid rgba(39, 224, 208, 0.16);
  border-radius: 14px;
  padding: 28px;
  background:
    radial-gradient(circle at 80% 0%, rgba(39, 224, 208, 0.14), transparent 16rem),
    linear-gradient(155deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025)),
    rgba(14, 24, 28, 0.72);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.3), 0 0 44px rgba(39, 224, 208, 0.08);
}

.operator-login-card span {
  display: block;
  width: 42px;
  height: 2px;
  margin-bottom: 22px;
  background: linear-gradient(90deg, var(--teal), var(--emerald), var(--blue));
  box-shadow: 0 0 18px rgba(39, 224, 208, 0.36);
}

.operator-login-card h2 {
  margin-bottom: 14px;
  font-size: clamp(1.6rem, 2.3vw, 2.2rem);
}

.operator-login-card p {
  color: var(--muted);
  line-height: 1.62;
}

.operator-login-card .button {
  margin-top: auto;
}

.button-disabled {
  opacity: 0.62;
  cursor: not-allowed;
}

.button-disabled:hover {
  transform: none;
}

.operator-login-note {
  margin-top: 28px;
}

.operator-login-note p {
  max-width: 820px;
  color: var(--muted);
  font-size: 0.95rem;
}

.welcome-page {
  min-height: calc(100vh - 80px);
  padding: 96px 0;
  background:
    radial-gradient(circle at 74% 20%, rgba(39, 224, 208, 0.14), transparent 28rem),
    radial-gradient(circle at 20% 32%, rgba(74, 141, 255, 0.12), transparent 30rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.025), transparent 48%);
}

.welcome-hero {
  max-width: 1040px;
  margin-bottom: 76px;
}

.welcome-hero h1 {
  max-width: 980px;
  margin-bottom: 18px;
  font-size: clamp(4rem, 6.8vw, 7rem);
}

.welcome-hero p {
  max-width: 840px;
  color: var(--soft);
  font-size: clamp(1.04rem, 1.65vw, 1.22rem);
  line-height: 1.66;
}

.welcome-subheadline {
  margin-bottom: 18px;
  color: var(--text);
  font-size: clamp(1.2rem, 2vw, 1.55rem);
}

.welcome-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.welcome-section {
  margin-bottom: 76px;
}

.welcome-step-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.welcome-step-card,
.welcome-process-section,
.welcome-support-note {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background:
    linear-gradient(155deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
    rgba(14, 24, 28, 0.76);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
}

.welcome-step-card {
  min-height: 210px;
  padding: 22px;
}

.welcome-step-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
  border: 1px solid rgba(39, 224, 208, 0.22);
  border-radius: 8px;
  color: var(--teal);
  font-weight: 900;
  box-shadow: 0 0 24px rgba(39, 224, 208, 0.12);
}

.welcome-step-card h3 {
  margin-bottom: 10px;
}

.welcome-step-card p,
.welcome-process-list li,
.welcome-support-note p {
  color: var(--muted);
  line-height: 1.58;
}

.welcome-process-section {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
  padding: clamp(28px, 4vw, 46px);
}

.welcome-process-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding-left: 22px;
}

.welcome-process-list li {
  padding-left: 6px;
}

.welcome-support-note {
  margin-top: 28px;
  padding: 22px;
}

.welcome-support-note p {
  margin: 0;
}

.welcome-support-note a {
  color: var(--teal);
  font-weight: 800;
}

.policy-page {
  min-height: calc(100vh - 80px);
  padding: 96px 0;
  background:
    radial-gradient(circle at 74% 18%, rgba(39, 224, 208, 0.13), transparent 28rem),
    radial-gradient(circle at 20% 28%, rgba(74, 141, 255, 0.11), transparent 30rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.025), transparent 48%);
}

.policy-hero {
  max-width: 1040px;
  margin-bottom: 60px;
}

.policy-hero h1 {
  max-width: 980px;
  margin-bottom: 18px;
  font-size: clamp(4rem, 6.8vw, 7rem);
}

.policy-hero p {
  max-width: 880px;
  color: var(--soft);
  font-size: clamp(1.04rem, 1.65vw, 1.2rem);
  line-height: 1.66;
}

.policy-effective {
  margin-bottom: 18px;
  color: var(--teal);
  font-size: 0.88rem;
  font-weight: 900;
  text-transform: uppercase;
}

.policy-layout {
  display: grid;
  gap: 18px;
}

.policy-card {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: clamp(22px, 3vw, 34px);
  background:
    linear-gradient(155deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
    rgba(14, 24, 28, 0.76);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
}

.policy-highlight {
  border-color: rgba(39, 224, 208, 0.28);
  background:
    radial-gradient(circle at 8% 0%, rgba(39, 224, 208, 0.12), transparent 18rem),
    linear-gradient(155deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.022)),
    rgba(10, 20, 24, 0.86);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.24), 0 0 28px rgba(39, 224, 208, 0.08);
}

.policy-card h2 {
  margin-bottom: 14px;
  font-size: clamp(1.55rem, 2.6vw, 2.4rem);
}

.policy-card p,
.policy-card li {
  color: var(--soft);
  line-height: 1.68;
}

.policy-card p:last-child,
.policy-card ul:last-child {
  margin-bottom: 0;
}

.policy-card ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 22px;
}

.policy-card a {
  color: var(--teal);
  font-weight: 800;
}

.pricing-page {
  min-height: calc(100vh - 80px);
  padding: 96px 0;
  background:
    radial-gradient(circle at 78% 18%, rgba(39, 224, 208, 0.13), transparent 30rem),
    radial-gradient(circle at 18% 28%, rgba(74, 141, 255, 0.12), transparent 30rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.025), transparent 50%);
}

.pricing-hero {
  position: relative;
  isolation: isolate;
  max-width: 1050px;
  margin-bottom: 58px;
}

.pricing-hero::before {
  position: absolute;
  inset: -28px -42px;
  z-index: -1;
  content: "";
  border: 1px solid rgba(39, 224, 208, 0.08);
  border-radius: 14px;
  background:
    linear-gradient(90deg, rgba(5, 7, 8, 0.96) 0%, rgba(5, 7, 8, 0.82) 48%, rgba(5, 7, 8, 0.58) 100%),
    radial-gradient(circle at 72% 44%, rgba(39, 224, 208, 0.16), transparent 18rem),
    url("images/Pricing Plans/business_image-v1.jpg") center right / cover no-repeat;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.025), 0 24px 80px rgba(0, 0, 0, 0.18);
}

.pricing-hero h1 {
  max-width: 980px;
  margin-bottom: 18px;
  font-size: clamp(3.8rem, 6.2vw, 6.6rem);
}

.pricing-hero p {
  max-width: 840px;
  color: var(--soft);
  font-size: clamp(1.04rem, 1.6vw, 1.2rem);
  line-height: 1.66;
}

.pricing-subheadline {
  margin-bottom: 18px;
  color: var(--text);
  font-size: clamp(1.18rem, 2vw, 1.48rem);
}

.pricing-founding-strip {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(260px, 0.8fr);
  gap: clamp(18px, 3vw, 34px);
  align-items: center;
  margin-bottom: 24px;
  border: 1px solid rgba(39, 224, 208, 0.2);
  border-radius: 8px;
  padding: clamp(20px, 2.6vw, 28px);
  background:
    radial-gradient(circle at 10% 0%, rgba(39, 224, 208, 0.14), transparent 18rem),
    linear-gradient(135deg, rgba(39, 224, 208, 0.08), rgba(74, 141, 255, 0.035) 48%, rgba(255, 255, 255, 0.025)),
    rgba(8, 16, 19, 0.86);
  box-shadow:
    0 22px 70px rgba(0, 0, 0, 0.22),
    inset 0 0 0 1px rgba(255, 255, 255, 0.025),
    0 0 28px rgba(39, 224, 208, 0.06);
}

.pricing-founding-copy h2 {
  margin: 12px 0 10px;
  font-size: clamp(1.65rem, 3vw, 2.45rem);
}

.pricing-founding-copy p,
.pricing-founding-note {
  margin: 0;
  color: var(--soft);
  line-height: 1.62;
}

.pricing-founding-note {
  border-left: 1px solid rgba(39, 224, 208, 0.18);
  padding-left: clamp(16px, 2.4vw, 24px);
  color: var(--muted);
  font-size: 0.88rem;
}

.pricing-plan-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
}

.pricing-card {
  position: relative;
  min-height: 520px;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 22px;
  background:
    radial-gradient(circle at 82% 0%, rgba(39, 224, 208, 0.1), transparent 14rem),
    linear-gradient(155deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
    rgba(14, 24, 28, 0.76);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
}

.pricing-card-featured {
  border-color: rgba(39, 224, 208, 0.42);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.3), 0 0 30px rgba(39, 224, 208, 0.11);
}

.pricing-badge {
  display: inline-flex;
  align-self: flex-start;
  min-height: 28px;
  align-items: center;
  border: 1px solid rgba(39, 224, 208, 0.32);
  border-radius: 999px;
  padding: 0 11px;
  color: var(--teal);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.pricing-badge-blue {
  border-color: rgba(74, 141, 255, 0.34);
  color: #9ebcff;
}

.pricing-badge-muted {
  margin-top: 8px;
  border-color: rgba(255, 255, 255, 0.14);
  color: var(--soft);
  background: rgba(255, 255, 255, 0.035);
}

.pricing-card-header {
  margin-top: 10px;
}

.pricing-card-header h2 {
  margin-bottom: 10px;
  font-size: clamp(1.8rem, 2.8vw, 2.5rem);
}

.pricing-card-header p {
  min-height: 86px;
  color: var(--muted);
  line-height: 1.55;
}

.pricing-price {
  margin: 8px 0 18px;
  color: var(--text);
  font-size: clamp(2.6rem, 4vw, 3.6rem);
  font-weight: 900;
  line-height: 1;
}

.pricing-price span {
  color: var(--muted);
  font-size: 1rem;
  font-weight: 700;
}

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

.pricing-detail-list li {
  display: flex;
  min-height: 42px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--muted);
  font-size: 0.9rem;
}

.pricing-detail-list strong {
  color: var(--soft);
  text-align: right;
}

.pricing-card .button {
  width: 100%;
  margin-top: auto;
}

.pricing-compare-section,
.pricing-faq-section {
  margin-top: 92px;
}

.pricing-table-wrap {
  overflow-x: auto;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(8, 16, 19, 0.86);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
}

.pricing-compare-table {
  width: 100%;
  min-width: 1120px;
  border-collapse: collapse;
}

.pricing-compare-table th,
.pricing-compare-table td {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 16px 18px;
  color: var(--soft);
  line-height: 1.45;
  text-align: left;
  vertical-align: top;
}

.pricing-compare-table thead th {
  color: var(--text);
  font-size: 0.78rem;
  text-transform: uppercase;
  white-space: nowrap;
}

.pricing-compare-table tbody th {
  color: var(--teal);
}

.pricing-compare-table td {
  white-space: nowrap;
}

.pricing-compare-table tr:last-child th,
.pricing-compare-table tr:last-child td {
  border-bottom: 0;
}

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

.pricing-faq-grid article {
  min-height: 210px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 22px;
  background:
    radial-gradient(circle at 18% 0%, rgba(74, 141, 255, 0.1), transparent 13rem),
    rgba(14, 24, 28, 0.74);
}

.pricing-faq-grid h3 {
  margin-bottom: 10px;
}

.pricing-faq-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.58;
}

.placeholder-main {
  min-height: calc(100vh - 70px);
  padding: 110px 0;
}

.placeholder-copy {
  max-width: 760px;
}

.placeholder-copy h1 {
  font-size: clamp(3rem, 7vw, 5.8rem);
}

.resource-page {
  min-height: calc(100vh - 80px);
  padding: 5px 0 96px;
  background:
    radial-gradient(circle at 78% 20%, rgba(39, 224, 208, 0.12), transparent 28rem),
    radial-gradient(circle at 18% 28%, rgba(74, 141, 255, 0.1), transparent 26rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.025), transparent 46%);
}

.why-page {
  min-height: calc(100vh - 80px);
  padding-bottom: 20px;
  background:
    radial-gradient(circle at 80% 16%, rgba(39, 224, 208, 0.12), transparent 30rem),
    radial-gradient(circle at 18% 30%, rgba(74, 141, 255, 0.1), transparent 28rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent 52%);
}

.why-hero {
  position: relative;
  overflow: hidden;
  width: 100%;
  min-height: 520px;
  aspect-ratio: 1672 / 941;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: #02090b;
  box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.06);
}

.why-hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.why-hero::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background:
    linear-gradient(180deg, rgba(2, 7, 9, 0) 72%, rgba(2, 7, 9, 0.56) 100%),
    radial-gradient(circle at 50% 50%, transparent 62%, rgba(2, 7, 9, 0.16));
  pointer-events: none;
}

.why-hero-overlays {
  position: absolute;
  inset: 0;
  z-index: 3;
}

.why-hero-hotspot {
  position: absolute;
  top: 75.95%;
  height: 6.5%;
  border: 1px solid transparent;
  border-radius: 8px;
  background: transparent;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.why-hero-hotspot-primary {
  left: 3.82%;
  width: 14.38%;
}

.why-hero-hotspot-secondary {
  left: 19.38%;
  width: 9.93%;
}

.why-hero-hotspot:hover,
.why-hero-hotspot:focus-visible {
  border-color: rgba(39, 224, 208, 0.8);
  background: rgba(39, 224, 208, 0.06);
  box-shadow:
    0 0 0 3px rgba(39, 224, 208, 0.14),
    0 0 34px rgba(39, 224, 208, 0.32);
  outline: none;
}

.why-mobile-actions {
  display: none;
}

.why-command-panel,
.why-feature-card,
.why-detail-card,
.why-pricing-card,
.why-comparison-wrap,
.why-check-panel {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background:
    linear-gradient(155deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.022)),
    rgba(8, 16, 19, 0.8);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
}

.why-command-panel {
  position: relative;
  overflow: hidden;
  padding: clamp(24px, 3vw, 34px);
}

.why-command-panel::before {
  position: absolute;
  inset: -20% -10% auto 32%;
  height: 260px;
  content: "";
  background: radial-gradient(circle, rgba(39, 224, 208, 0.22), transparent 70%);
  pointer-events: none;
}

.why-panel-header,
.why-panel-note {
  position: relative;
  z-index: 1;
}

.why-panel-header span,
.why-panel-note span {
  display: block;
  margin-bottom: 8px;
  color: var(--teal);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.why-panel-header strong {
  display: block;
  margin-bottom: 24px;
  font-size: clamp(1.35rem, 2.6vw, 2rem);
  line-height: 1.1;
}

.why-signal-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 24px;
}

.why-signal-grid span {
  border: 1px solid rgba(39, 224, 208, 0.16);
  border-radius: 8px;
  padding: 12px;
  background: rgba(39, 224, 208, 0.06);
  color: var(--soft);
  font-weight: 800;
}

.why-panel-note {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 22px;
}

.why-panel-note p {
  margin: 0;
  color: var(--soft);
  line-height: 1.58;
}

.why-intro-card,
.why-pricing-card {
  display: grid;
  grid-template-columns: minmax(220px, 0.55fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 4rem);
  margin-top: 84px;
  padding: clamp(30px, 4vw, 52px);
}

.why-built-section {
  position: relative;
  overflow: hidden;
  width: 100%;
  margin-top: 84px;
  aspect-ratio: 1672 / 941;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: #02090b;
  box-shadow: inset 0 1px 0 rgba(39, 224, 208, 0.08), inset 0 -1px 0 rgba(39, 224, 208, 0.08);
}

.why-built-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
}

.why-modern-section {
  position: relative;
  overflow: hidden;
  width: 100%;
  margin-top: 84px;
  aspect-ratio: 3 / 2;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: #02090b;
  box-shadow: inset 0 1px 0 rgba(39, 224, 208, 0.08), inset 0 -1px 0 rgba(39, 224, 208, 0.08);
}

.why-modern-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
}

.why-maia-section {
  position: relative;
  overflow: hidden;
  width: 100%;
  margin-top: 84px;
  aspect-ratio: 3 / 2;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: #02090b;
  box-shadow: inset 0 1px 0 rgba(39, 224, 208, 0.08), inset 0 -1px 0 rgba(39, 224, 208, 0.08);
}

.why-maia-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
}

.why-visual-section {
  position: relative;
  overflow: hidden;
  width: min(1720px, calc(100% - 56px));
  margin: 84px auto 0;
  aspect-ratio: 1672 / 941;
  border: 1px solid rgba(39, 224, 208, 0.16);
  border-radius: 14px;
  background: #02090b;
  box-shadow:
    0 28px 90px rgba(0, 0, 0, 0.3),
    inset 0 0 0 1px rgba(255, 255, 255, 0.025);
}

.why-visual-section::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(180deg, rgba(2, 7, 9, 0) 76%, rgba(2, 7, 9, 0.24)),
    radial-gradient(circle at 50% 50%, transparent 68%, rgba(2, 7, 9, 0.14));
  pointer-events: none;
}

.why-visual-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
}

.why-intro-card h2,
.why-pricing-card h2 {
  margin-bottom: 14px;
}

.why-intro-card p:not(.eyebrow),
.why-pricing-card p {
  margin-bottom: 0;
  color: var(--soft);
  font-size: clamp(1rem, 1.45vw, 1.16rem);
  line-height: 1.72;
}

.why-pricing-copy {
  display: grid;
  justify-items: start;
  gap: 22px;
}

.why-section {
  margin-top: 92px;
}

.why-card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.why-feature-card {
  min-height: 230px;
  padding: 22px;
}

.why-feature-card span {
  display: block;
  width: 42px;
  height: 2px;
  margin-bottom: 20px;
  background: linear-gradient(90deg, var(--teal), var(--emerald), var(--blue));
  box-shadow: 0 0 18px rgba(39, 224, 208, 0.36);
}

.why-feature-card h3 {
  font-size: 1.02rem;
}

.why-feature-card p,
.why-detail-card p,
.why-split p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.62;
}

.why-band {
  margin-top: 92px;
  padding: 92px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  background:
    radial-gradient(circle at 78% 48%, rgba(39, 224, 208, 0.12), transparent 26rem),
    radial-gradient(circle at 22% 42%, rgba(74, 141, 255, 0.14), transparent 24rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.025), transparent);
}

.why-split,
.why-two-column {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 5rem);
}

.why-check-panel {
  padding: clamp(24px, 3.5vw, 36px);
  background:
    radial-gradient(circle at 80% 12%, rgba(39, 224, 208, 0.14), transparent 18rem),
    rgba(14, 24, 28, 0.78);
}

.why-check-panel ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.why-check-panel li {
  position: relative;
  padding-left: 20px;
  color: var(--soft);
  line-height: 1.45;
}

.why-check-panel li::before {
  position: absolute;
  top: 0.58em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  content: "";
  background: var(--teal);
  box-shadow: 0 0 14px rgba(39, 224, 208, 0.52);
}

.why-detail-card {
  min-height: 390px;
  padding: clamp(28px, 4vw, 46px);
  background:
    radial-gradient(circle at 82% 18%, rgba(39, 224, 208, 0.12), transparent 20rem),
    linear-gradient(155deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
    rgba(14, 24, 28, 0.72);
}

.why-detail-card-alt {
  background:
    radial-gradient(circle at 18% 18%, rgba(74, 141, 255, 0.13), transparent 20rem),
    linear-gradient(155deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
    rgba(14, 24, 28, 0.72);
}

.why-comparison-wrap {
  overflow-x: auto;
  background: rgba(8, 16, 19, 0.86);
}

.why-comparison-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
}

.why-comparison-table th,
.why-comparison-table td {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 18px 20px;
  color: var(--soft);
  line-height: 1.48;
  text-align: left;
  vertical-align: top;
}

.why-comparison-table thead th {
  color: var(--text);
  font-size: 0.83rem;
  text-transform: uppercase;
}

.why-comparison-table tbody th {
  width: 22%;
  color: var(--teal);
  font-weight: 800;
}

.why-comparison-table tbody td:nth-child(3) {
  color: var(--text);
  background: rgba(39, 224, 208, 0.045);
}

.why-comparison-table tr:last-child th,
.why-comparison-table tr:last-child td {
  border-bottom: 0;
}

.resource-hero {
  max-width: 780px;
  margin-bottom: 36px;
}

.resource-hero h1 {
  margin-bottom: 16px;
}

.resource-hero p {
  max-width: 680px;
  color: var(--soft);
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  line-height: 1.6;
}

.help-hero {
  position: relative;
  min-height: 720px;
  display: flex;
  align-items: flex-start;
  margin-bottom: 44px;
  padding-top: 22px;
  overflow: hidden;
  isolation: isolate;
  background-image:
    linear-gradient(90deg, rgba(3, 10, 12, 0.18) 0%, rgba(3, 10, 12, 0.1) 48%, rgba(3, 10, 12, 0.04) 100%),
    url("./images/irydeos-helpcenter-background-layer-v1.png");
  background-repeat: no-repeat;
  background-position:
    center,
    left -90px bottom -4px;
  background-size:
    cover,
    min(1120px, 80vw) auto;
}

.help-hero::before {
  position: absolute;
  inset: -80px 0 -40px 0;
  z-index: -1;
  content: "";
  background:
    radial-gradient(circle at 72% 24%, rgba(39, 224, 208, 0.18), transparent 34rem),
    radial-gradient(circle at 18% 70%, rgba(74, 141, 255, 0.14), transparent 30rem);
  pointer-events: none;
}

.help-hero::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  z-index: 2;
  height: 140px;
  content: "";
  background: linear-gradient(0deg, #030a0c 0%, rgba(3, 10, 12, 0.52) 30%, rgba(3, 10, 12, 0) 100%);
  pointer-events: none;
}

.help-hero__content {
  position: relative;
  z-index: 3;
  max-width: 620px;
  padding-top: 0;
}

.help-hero__content h1 {
  margin: 0 0 20px;
  font-size: clamp(4.4rem, 7.6vw, 7.8rem);
  line-height: 0.94;
}

.help-hero__intro {
  max-width: 590px;
  margin-bottom: 34px;
  color: var(--soft);
  font-size: clamp(1.05rem, 1.8vw, 1.34rem);
  line-height: 1.56;
}

.help-hero__features {
  display: grid;
  gap: 18px;
}

.help-hero__feature {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  align-items: center;
  gap: 16px;
}

.help-hero__feature-icon {
  width: 54px;
  height: 54px;
  border-radius: 12px;
  object-fit: contain;
  box-shadow: 0 0 24px rgba(39, 224, 208, 0.18);
}

.help-hero__feature h2 {
  margin-bottom: 4px;
  font-size: clamp(1.02rem, 1.4vw, 1.22rem);
  line-height: 1.25;
}

.help-hero__feature p {
  margin: 0;
  max-width: 520px;
  color: var(--soft);
  font-size: 0.98rem;
  line-height: 1.5;
}

.help-hero__visual {
  position: absolute;
  inset: 0 0 0 auto;
  z-index: 1;
  width: 64%;
  overflow: hidden;
  pointer-events: none;
}

.help-hero__visual::before {
  position: absolute;
  inset: 0;
  z-index: 2;
  content: "";
  background:
    linear-gradient(90deg, rgba(3, 10, 12, 0.86) 0%, rgba(3, 10, 12, 0.4) 16%, rgba(3, 10, 12, 0) 34%),
    linear-gradient(270deg, rgba(3, 10, 12, 0.86) 0%, rgba(3, 10, 12, 0) 22%),
    linear-gradient(0deg, rgba(3, 10, 12, 0.82) 0%, rgba(3, 10, 12, 0.42) 9%, rgba(3, 10, 12, 0) 24%),
    radial-gradient(circle at 52% 38%, rgba(39, 224, 208, 0.08), transparent 46%);
  pointer-events: none;
}

.help-hero__scene {
  position: absolute;
  right: -3%;
  bottom: 0;
  width: min(980px, 110%);
  max-width: none;
  height: auto;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 38px 90px rgba(0, 0, 0, 0.48));
}

.resource-card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 34px;
}

.resource-card {
  min-height: 168px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 22px;
  background:
    linear-gradient(155deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
    rgba(14, 24, 28, 0.72);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
}

a.resource-card {
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

a.resource-card:hover {
  transform: translateY(-2px);
  border-color: rgba(39, 224, 208, 0.36);
  background:
    linear-gradient(155deg, rgba(39, 224, 208, 0.11), rgba(255, 255, 255, 0.03)),
    rgba(18, 30, 35, 0.88);
  box-shadow: 0 26px 76px rgba(0, 0, 0, 0.3), 0 0 24px rgba(39, 224, 208, 0.1);
}

.resource-card span {
  display: block;
  width: 38px;
  height: 2px;
  margin-bottom: 20px;
  background: linear-gradient(90deg, var(--teal), var(--emerald));
  box-shadow: 0 0 18px rgba(39, 224, 208, 0.36);
}

.resource-card h2 {
  margin-bottom: 0;
  font-size: 1.05rem;
  line-height: 1.3;
}

.home-cta {
  display: inline-flex;
  color: var(--teal);
  font-weight: 800;
}

.help-article-page {
  padding-top: 86px;
}

.help-center-shell {
  width: min(1180px, calc(100% - 80px));
  margin-right: auto;
  margin-left: auto;
}

.article-shell {
  width: min(1120px, calc(100% - 80px));
  margin-right: auto;
  margin-left: auto;
}

.help-article-hero {
  max-width: 980px;
}

.co-driver-article-hero {
  max-width: none;
}

.co-driver-hero__copy {
  max-width: 100%;
}

.co-driver-hero__copy p {
  max-width: 1120px;
  line-height: 1.6;
}

.article-hero--with-visual {
  display: grid;
  max-width: none;
  min-height: 560px;
  grid-template-columns: minmax(360px, 0.85fr) minmax(520px, 1.15fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 5rem);
}

.article-hero__copy {
  position: relative;
  z-index: 2;
}

.article-hero--stacked {
  max-width: none;
  padding-bottom: clamp(2rem, 5vw, 4rem);
}

.article-hero--stacked .article-hero__copy {
  max-width: 100%;
}

.article-hero--stacked .article-hero__copy p {
  max-width: 1120px;
  line-height: 1.6;
}

.article-hero__image {
  width: 100%;
  margin: clamp(2rem, 4vw, 3.5rem) auto 0;
}

.article-hero__image img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid rgba(39, 224, 208, 0.28);
  border-radius: 24px;
  background: rgba(2, 12, 15, 0.55);
  box-shadow: 0 28px 90px rgba(39, 224, 208, 0.14), 0 30px 80px rgba(0, 0, 0, 0.3);
}

.article-hero__visual {
  position: relative;
  z-index: 1;
  width: 100%;
  align-self: center;
  justify-self: end;
}

.article-hero__visual img {
  display: block;
  width: min(760px, 100%);
  height: auto;
  margin-left: auto;
  border: 1px solid rgba(39, 224, 208, 0.28);
  border-radius: 24px;
  background: rgba(2, 12, 15, 0.55);
  box-shadow: 0 28px 90px rgba(39, 224, 208, 0.14), 0 30px 80px rgba(0, 0, 0, 0.3);
}

@media (max-width: 980px) {
  .article-hero--with-visual {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .article-hero__visual {
    justify-self: stretch;
  }

  .article-hero__visual img {
    width: 100%;
    margin: 0 auto;
    border-radius: 18px;
  }
}

@media (max-width: 768px) {
  .help-center-shell,
  .article-shell {
    width: calc(100% - 32px);
  }

  .article-hero__image img {
    border-radius: 18px;
  }
}

.help-article {
  max-width: 1120px;
}

.platform-update-shell {
  width: min(1180px, calc(100% - 80px));
  margin-inline: auto;
}

.platform-update-shell .resource-hero,
.platform-update-shell .help-article,
.platform-update-shell .help-article-actions {
  width: 100%;
  max-width: 1120px;
  margin-inline: auto;
}

.platform-update-shell .resource-hero {
  max-width: 1120px;
}

.platform-update-shell .resource-hero p {
  max-width: 780px;
}

.help-center-shell .help-article {
  width: 100%;
  max-width: none;
  margin-right: auto;
  margin-left: auto;
}

.article-image-section {
  margin: 2.5rem 0;
}

.co-driver-showcase {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}

.article-feature-image {
  display: block;
  width: 100%;
  max-width: 1200px;
  height: auto;
  margin: 0 auto;
  border: 1px solid rgba(37, 255, 230, 0.22);
  border-radius: 24px;
  background: rgba(4, 18, 22, 0.75);
  box-shadow: 0 24px 80px rgba(0, 255, 220, 0.12), 0 28px 70px rgba(0, 0, 0, 0.34);
}

.help-article-section {
  margin-bottom: 34px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: clamp(24px, 4vw, 36px);
  background:
    linear-gradient(155deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.02)),
    rgba(8, 16, 19, 0.78);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.2);
}

.help-article-section h2 {
  margin-bottom: 16px;
  font-size: clamp(1.6rem, 3vw, 2.45rem);
}

.help-article-section p,
.help-article-section li {
  color: var(--soft);
  line-height: 1.72;
}

.help-numbered-list,
.help-check-list {
  margin: 0;
  padding-left: 22px;
}

.help-numbered-list li,
.help-check-list li {
  padding-left: 6px;
  margin-bottom: 10px;
}

.help-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 22px;
}

.help-info-card {
  min-height: 178px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 22px;
  background:
    radial-gradient(circle at 20% 0%, rgba(39, 224, 208, 0.12), transparent 12rem),
    rgba(14, 24, 28, 0.74);
}

.help-info-card span {
  display: block;
  width: 34px;
  height: 2px;
  margin-bottom: 18px;
  background: linear-gradient(90deg, var(--teal), var(--emerald));
  box-shadow: 0 0 18px rgba(39, 224, 208, 0.32);
}

.help-info-card h3 {
  margin-bottom: 10px;
  font-size: 1rem;
}

.help-info-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.96rem;
}

.roadmap-section > p {
  max-width: 940px;
  margin-bottom: 14px;
}

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

.roadmap-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 26px;
}

.roadmap-card {
  min-height: 330px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: clamp(22px, 3vw, 30px);
  background:
    radial-gradient(circle at 82% 0%, rgba(39, 224, 208, 0.12), transparent 15rem),
    linear-gradient(155deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
    rgba(14, 24, 28, 0.74);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
}

.roadmap-card h3 {
  margin: 14px 0 18px;
  font-size: clamp(1.15rem, 2vw, 1.48rem);
}

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

.roadmap-card li {
  position: relative;
  padding-left: 18px;
  color: var(--soft);
  line-height: 1.48;
}

.roadmap-card li::before {
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  content: "";
  background: var(--teal);
  box-shadow: 0 0 14px rgba(39, 224, 208, 0.46);
}

.roadmap-status {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  border: 1px solid rgba(39, 224, 208, 0.22);
  border-radius: 999px;
  padding: 0 12px;
  color: var(--teal);
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
}

.roadmap-status-planned {
  border-color: rgba(74, 141, 255, 0.32);
  color: #9ebcff;
}

.roadmap-status-future {
  border-color: rgba(78, 231, 155, 0.3);
  color: var(--emerald);
}

.latest-overview p {
  max-width: 980px;
}

.latest-update-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.latest-update-card {
  min-height: 390px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: clamp(22px, 3vw, 30px);
  background:
    radial-gradient(circle at 82% 0%, rgba(39, 224, 208, 0.12), transparent 15rem),
    linear-gradient(155deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
    rgba(14, 24, 28, 0.74);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
}

.latest-update-card h3 {
  margin: 14px 0 18px;
  font-size: clamp(1.15rem, 2vw, 1.48rem);
}

.latest-update-card ul {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.latest-update-card li {
  display: grid;
  gap: 4px;
}

.latest-update-card strong {
  color: var(--text);
  line-height: 1.34;
}

.latest-update-card span:not(.roadmap-status) {
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.5;
}

.latest-forward-section > p {
  max-width: 860px;
}

.latest-forward-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 22px;
}

.latest-forward-grid article {
  min-height: 132px;
  border: 1px solid rgba(39, 224, 208, 0.14);
  border-radius: 8px;
  padding: 18px;
  background:
    radial-gradient(circle at 80% 0%, rgba(74, 141, 255, 0.12), transparent 10rem),
    rgba(14, 24, 28, 0.72);
}

.latest-forward-grid span {
  display: block;
  margin-bottom: 10px;
  color: var(--teal);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.latest-forward-grid strong {
  display: block;
  color: var(--soft);
  line-height: 1.42;
}

.help-check-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px 24px;
}

.help-next-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 0;
}

.help-article-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.feedback-form-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(360px, 560px);
  gap: 56px;
  align-items: start;
}

.feedback-form-copy {
  position: sticky;
  top: calc(var(--site-header-height) + 34px);
}

.feedback-form-copy .help-article-section {
  margin-top: 28px;
}

.feedback-form {
  width: 100%;
}

.early-access-page {
  min-height: calc(100vh - 80px);
  padding: 96px 0;
  background:
    radial-gradient(circle at 74% 24%, rgba(39, 224, 208, 0.14), transparent 26rem),
    radial-gradient(circle at 22% 34%, rgba(74, 141, 255, 0.11), transparent 30rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.025), transparent 46%);
}

.early-access-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 480px);
  align-items: center;
  gap: 64px;
}

.early-access-copy {
  max-width: 720px;
}

.early-access-copy h1 {
  margin-bottom: 18px;
}

.early-access-copy p {
  max-width: 680px;
  color: var(--soft);
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  line-height: 1.6;
}

.early-access-support {
  margin-top: 18px;
}

.early-access-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(39, 224, 208, 0.18);
  border-radius: 14px;
  padding: 30px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.026)),
    rgba(11, 19, 22, 0.84);
  box-shadow:
    0 34px 90px rgba(0, 0, 0, 0.36),
    0 0 54px rgba(39, 224, 208, 0.1);
  backdrop-filter: blur(18px);
}

.early-access-card::before {
  position: absolute;
  inset: -1px;
  z-index: 0;
  content: "";
  background:
    radial-gradient(circle at 78% 0%, rgba(39, 224, 208, 0.18), transparent 15rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 42%);
  pointer-events: none;
}

.form-field,
.form-submit,
.form-note,
.form-success {
  position: relative;
  z-index: 1;
}

.form-field {
  margin-bottom: 18px;
}

.form-field label {
  display: block;
  margin-bottom: 8px;
  color: var(--soft);
  font-size: 0.9rem;
  font-weight: 800;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 56px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  padding: 0 16px;
  background: rgba(3, 9, 11, 0.72);
  color: var(--text);
  font: inherit;
  font-size: 1rem;
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.form-field textarea {
  min-height: 132px;
  padding-top: 15px;
  resize: vertical;
}

.form-field select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--teal) 50%),
    linear-gradient(135deg, var(--teal) 50%, transparent 50%);
  background-position:
    calc(100% - 20px) 50%,
    calc(100% - 14px) 50%;
  background-size:
    6px 6px,
    6px 6px;
  background-repeat: no-repeat;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: rgba(212, 221, 220, 0.48);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: rgba(39, 224, 208, 0.64);
  background: rgba(5, 14, 16, 0.9);
  box-shadow: 0 0 0 3px rgba(39, 224, 208, 0.1);
}

.form-submit {
  width: 100%;
  margin-top: 4px;
  cursor: pointer;
}

.form-note {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.86rem;
  text-align: center;
}

.form-success {
  margin: 18px 0 0;
  border: 1px solid rgba(39, 224, 208, 0.26);
  border-radius: 8px;
  padding: 14px 16px;
  background: rgba(39, 224, 208, 0.08);
  color: #c8fff8;
  line-height: 1.5;
}

@media (max-width: 1120px) {
  .nav-shell {
    min-height: 70px;
    flex-wrap: wrap;
    gap: 14px;
    padding: 14px 0;
  }

  .nav-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    order: 4;
    flex-basis: 100%;
    align-items: flex-start;
    padding: 14px 0 2px;
    flex-direction: column;
    gap: 14px;
  }

  .nav-dropdown {
    width: 100%;
  }

  .nav-dropdown-toggle {
    width: 100%;
    justify-content: flex-start;
  }

  .nav-dropdown-menu {
    position: static;
    display: none;
    width: 100%;
    min-width: 0;
    margin-top: 10px;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .nav-dropdown-menu::before {
    display: none;
  }

  .nav-dropdown:hover .nav-dropdown-menu {
    display: none;
    transform: none;
  }

  .nav-dropdown.open .nav-dropdown-menu {
    display: block;
    transform: none;
  }

  .nav-links.is-open {
    display: flex;
  }

  .login-link {
    margin-left: 0;
  }

  .hero-grid,
  .co-driver-grid,
  .operators-grid,
  .why-hero-grid,
  .why-intro-card,
  .why-pricing-card,
  .why-split,
  .why-two-column,
  .welcome-process-section,
  .about-split,
  .about-founder-card,
  .about-vision-card,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .contact-info-card {
    position: static;
  }

  .hero-section {
    padding: 56px 0 48px;
    margin-top: 0;
    min-height: auto;
    flex-direction: column;
    align-items: stretch;
  }

  .hero-grid {
    gap: 34px;
    transform: none;
  }

  .dashboard-showcase {
    position: relative;
    right: auto;
    bottom: auto;
    z-index: 2;
    max-width: 100%;
    width: 100%;
    margin-top: 2rem;
    justify-self: stretch;
    transform: none;
  }

  .feature-grid,
  .support-grid,
  .why-card-grid,
  .pricing-plan-grid,
  .pricing-faq-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

  .co-driver-hero,
  .operator-ai-section,
  .story-intro,
  .story-split-card {
    grid-template-columns: 1fr;
  }

  .co-driver-card-grid,
  .story-card-grid,
  .about-card-grid,
  .help-card-grid,
  .roadmap-grid,
  .latest-update-grid,
  .latest-forward-grid,
  .help-check-grid,
  .help-next-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .early-access-layout,
  .feedback-form-layout {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .help-hero {
    min-height: auto;
    display: block;
    padding-top: 14px;
    padding-bottom: 2rem;
    gap: 38px;
    background-position:
      center,
      left -120px bottom 0;
    background-size:
      cover,
      min(940px, 130vw) auto;
  }

  .help-hero__content {
    max-width: 760px;
  }

  .help-hero__visual {
    position: relative;
    inset: auto;
    width: min(100%, 840px);
    height: auto;
    margin-top: 2rem;
    margin-right: 0;
    justify-self: start;
  }

  .help-hero__scene {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    max-width: 100%;
  }

  .feedback-form-copy {
    position: static;
  }

  .operators-card {
    min-height: 620px;
  }

  .operators-card p:not(.eyebrow) {
    padding-top: 28px;
    padding-left: 0;
  }

  .operators-card p:not(.eyebrow)::before {
    top: 0;
    right: 0;
    bottom: auto;
    width: 100%;
    height: 1px;
  }
}

@media (max-width: 640px) {
  .nav-shell,
  .section-inner {
    width: min(100% - 28px, 1180px);
  }

  .platform-update-shell {
    width: min(100% - 28px, 1180px);
  }

  .brand-logo {
    width: 166px;
    max-height: 48px;
  }

  .login-link {
    min-height: 38px;
    padding: 0 14px;
  }

  .co-driver-section,
  .operators-section,
  .support-section,
  .final-cta-section {
    padding: 68px 0;
  }

  .hero-section {
    padding: 48px 24px 42px;
  }

  .hero-section,
  .hero-grid,
  .hero-copy {
    width: 100%;
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .hero-section .section-inner {
    width: 100%;
    max-width: 100%;
  }

  .hero-copy h1 {
    max-width: 100%;
    font-size: clamp(2.75rem, 11vw, 4.75rem);
    line-height: 0.95;
    letter-spacing: -0.04em;
    overflow-wrap: normal;
    word-break: normal;
  }

  .hero-copy h1 span {
    max-width: 100%;
  }

  .hero-text {
    max-width: 100%;
    font-size: clamp(1.05rem, 5vw, 1.35rem);
    line-height: 1.45;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    width: 100%;
  }

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

  .dashboard-showcase {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    justify-self: stretch;
    padding: 0;
  }

  .dashboard-image {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
  }

  .platform-section {
    padding: 42px 0 68px;
  }

  h1 {
    font-size: clamp(2.65rem, 15vw, 4.2rem);
  }

  h2 {
    font-size: clamp(2rem, 10vw, 3.1rem);
  }

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

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

  .resource-page {
    padding: 5px 0 68px;
  }

  .why-hero {
    min-height: 0;
    aspect-ratio: auto;
    padding-bottom: 34px;
    overflow: visible;
    background: transparent;
  }

  .why-hero-image {
    position: relative;
    width: 100%;
    height: auto;
    object-fit: cover;
  }

  .why-hero-overlays {
    display: none;
  }

  .why-mobile-actions {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    width: min(100% - 28px, 420px);
    margin: 18px auto 0;
  }

  .why-built-section {
    aspect-ratio: auto;
  }

  .why-built-image {
    height: auto;
    object-fit: contain;
  }

  .why-modern-section {
    aspect-ratio: auto;
  }

  .why-modern-image {
    height: auto;
    object-fit: contain;
  }

  .why-maia-section {
    aspect-ratio: auto;
  }

  .why-maia-image {
    height: auto;
    object-fit: contain;
  }

  .why-visual-section {
    width: min(100% - 28px, 720px);
    aspect-ratio: auto;
  }

  .why-visual-image {
    height: auto;
    object-fit: contain;
  }

  .why-hero-grid {
    padding: 58px 0;
  }

  .why-command-panel {
    max-width: 680px;
  }

  .why-intro-card,
  .why-built-section,
  .why-modern-section,
  .why-maia-section,
  .why-visual-section,
  .why-pricing-card,
  .why-section,
  .why-band {
    margin-top: 68px;
  }

  .why-band {
    padding: 68px 0;
  }

  .help-hero {
    gap: 28px;
    padding-top: 10px;
    background-position:
      center,
      left -170px bottom 0;
    background-size:
      cover,
      820px auto;
  }

  .help-hero__content h1 {
    font-size: clamp(3.7rem, 17vw, 5.2rem);
  }

  .help-hero__feature {
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 14px;
  }

  .help-hero__feature-icon {
    width: 48px;
    height: 48px;
  }

  .article-image-section {
    margin: 2rem 0;
  }

  .article-feature-image {
    border-radius: 16px;
  }

  .story-visual-section {
    width: min(100% - 28px, 720px);
    margin-top: 68px;
    aspect-ratio: auto;
  }

  .story-visual-image {
    height: auto;
    object-fit: contain;
  }

  .co-driver-page {
    padding: 68px 0;
  }

  .operator-story-page {
    padding-bottom: 68px;
  }

  .about-page {
    padding-bottom: 68px;
  }

  .operator-story-hero {
    min-height: 620px;
    padding: 126px 0 58px;
  }

  .about-hero {
    min-height: 560px;
    padding: 118px 0 54px;
  }

  .about-hero h1 {
    font-size: clamp(3rem, 13vw, 4.4rem);
  }

  .about-split,
  .about-founder-card,
  .about-vision-card,
  .about-section,
  .about-mission-section,
  .about-final-cta {
    margin-top: 68px;
  }

  .about-card-grid {
    grid-template-columns: 1fr;
  }

  .about-actions,
  .about-actions .button,
  .contact-form-card .button {
    width: 100%;
  }

  .contact-page {
    padding: 68px 0;
  }

  .contact-hero {
    margin-bottom: 38px;
    padding: 28px;
  }

  .contact-hero h1 {
    font-size: clamp(3rem, 13vw, 4.4rem);
  }

  .contact-field-grid {
    grid-template-columns: 1fr;
  }

  .co-driver-hero {
    gap: 36px;
    margin-bottom: 62px;
  }

  .co-driver-hero-visual {
    min-height: 340px;
  }

  .early-access-page {
    padding: 68px 0;
  }

  .welcome-page {
    padding: 68px 0;
  }

  .policy-page {
    padding: 68px 0;
  }

  .policy-hero {
    margin-bottom: 44px;
  }

  .policy-hero h1 {
    font-size: clamp(3rem, 14vw, 4.3rem);
  }

  .pricing-page {
    padding: 68px 0;
  }

  .pricing-hero::before {
    inset: -18px -14px;
    background:
      linear-gradient(90deg, rgba(5, 7, 8, 0.96) 0%, rgba(5, 7, 8, 0.88) 62%, rgba(5, 7, 8, 0.72) 100%),
      radial-gradient(circle at 80% 32%, rgba(39, 224, 208, 0.12), transparent 14rem),
      url("images/Pricing Plans/business_image-v1.jpg") center right / cover no-repeat;
  }

  .pricing-hero {
    margin-bottom: 44px;
  }

  .pricing-hero h1 {
    max-width: 100%;
    font-size: clamp(2.45rem, 11.6vw, 3.6rem);
    overflow-wrap: normal;
    word-break: normal;
  }

  .pricing-founding-strip {
    grid-template-columns: 1fr;
    margin-bottom: 20px;
  }

  .pricing-founding-note {
    border-left: 0;
    border-top: 1px solid rgba(39, 224, 208, 0.18);
    padding-top: 16px;
    padding-left: 0;
  }

  .pricing-plan-grid,
  .pricing-faq-grid {
    grid-template-columns: 1fr;
  }

  .pricing-card-header p {
    min-height: 0;
  }

  .pricing-compare-section,
  .pricing-faq-section {
    margin-top: 68px;
  }

  .welcome-hero {
    margin-bottom: 56px;
  }

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

  .welcome-step-grid {
    grid-template-columns: 1fr;
  }

  .welcome-section {
    margin-bottom: 56px;
  }

  .early-access-card {
    padding: 22px;
  }

  .resource-card-grid {
    grid-template-columns: 1fr;
  }

  .co-driver-card-grid,
  .operational-read-grid,
  .story-card-grid,
  .operator-values-grid,
  .help-card-grid,
  .roadmap-grid,
  .latest-update-grid,
  .latest-forward-grid,
  .help-check-grid,
  .help-next-grid,
  .why-card-grid,
  .why-check-panel ul {
    grid-template-columns: 1fr;
  }

  .operator-story-hero h1 {
    font-size: clamp(3rem, 13vw, 4.4rem);
  }

  .operators-card {
    min-height: 560px;
    padding: 28px;
  }

  .operators-card::before {
    inset: 14px;
    background-position: center top;
  }

  .operators-card h2 {
    font-size: clamp(2.6rem, 12vw, 3.7rem);
  }

  .operators-card p:not(.eyebrow) {
    font-size: 1rem;
  }

  .ai-panel {
    min-height: 330px;
    padding: 20px;
  }

  .ai-orbit {
    inset: 28px;
  }

  .ai-signal {
    right: 20px;
    bottom: 20px;
    left: 20px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    align-items: flex-start;
  }

  .demo-access-grid {
    grid-template-columns: 1fr;
  }

  .operator-login-grid {
    grid-template-columns: 1fr;
  }
}
