:root {
  --navy: #062b50;
  --navy-deep: #031d37;
  --blue: #0878ff;
  --blue-bright: #09a5f8;
  --cyan: #18c9ee;
  --green: #00cfa5;
  --green-soft: #c9fff0;
  --pearl: #f6faff;
  --white: #ffffff;
  --text: #0a2c4c;
  --muted: #62788e;
  --line: #dce9f3;
  --shadow: 0 24px 70px rgba(11, 59, 102, 0.13);
  --shadow-soft: 0 12px 35px rgba(11, 59, 102, 0.09);
  --radius: 26px;
  --container: min(1180px, calc(100% - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body {
  margin: 0;
  color: var(--text);
  background: var(--white);
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

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

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 999;
  padding: 12px 16px;
  border-radius: 10px;
  color: var(--white);
  background: var(--navy);
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 16px;
}

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

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  width: 100%;
  border-bottom: 1px solid transparent;
  transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.site-header.scrolled {
  border-color: rgba(11, 63, 107, 0.08);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 8px 35px rgba(8, 48, 83, 0.06);
  backdrop-filter: blur(18px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 23px;
  font-weight: 700;
  letter-spacing: -0.9px;
}

.brand img {
  width: 43px;
  height: 43px;
  border-radius: 13px;
}

.brand strong {
  color: var(--navy);
}

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

.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  color: #46637c;
  font-size: 14px;
  font-weight: 700;
}

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

.main-nav > a:not(.nav-cta)::after {
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 0;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--blue), var(--green));
  content: "";
  transition: width 0.2s ease;
}

.main-nav > a:hover::after,
.main-nav > a:focus-visible::after {
  width: 100%;
}

.nav-cta {
  padding: 11px 18px;
  border-radius: 999px;
  color: var(--white);
  background: var(--navy);
  box-shadow: 0 9px 22px rgba(6, 43, 80, 0.18);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 13px 25px rgba(6, 43, 80, 0.22);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 0;
  border-radius: 12px;
  background: #edf6ff;
}

.menu-toggle span {
  display: block;
  width: 23px;
  height: 2px;
  margin: 5px 0;
  border-radius: 2px;
  background: var(--navy);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.hero {
  position: relative;
  min-height: 840px;
  overflow: hidden;
  padding: 148px 0 90px;
  background:
    radial-gradient(circle at 91% 12%, rgba(14, 202, 184, 0.15), transparent 27%),
    radial-gradient(circle at 4% 50%, rgba(0, 132, 255, 0.11), transparent 24%),
    linear-gradient(180deg, #f8fcff 0%, #fff 100%);
}

.hero::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 120px;
  background-image: linear-gradient(rgba(8, 120, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(8, 120, 255, 0.04) 1px, transparent 1px);
  background-size: 34px 34px;
  content: "";
  mask-image: linear-gradient(to top, black, transparent);
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  opacity: 0.55;
}

.hero-orb-one {
  top: 115px;
  right: 8%;
  width: 90px;
  height: 90px;
  border: 1px solid rgba(0, 207, 165, 0.28);
}

.hero-orb-two {
  right: 42%;
  bottom: 80px;
  width: 30px;
  height: 30px;
  background: rgba(9, 165, 248, 0.13);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  align-items: center;
  gap: 70px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 13px;
  border: 1px solid rgba(7, 119, 255, 0.12);
  border-radius: 999px;
  color: #2a638c;
  background: rgba(255, 255, 255, 0.75);
  box-shadow: 0 6px 24px rgba(18, 86, 142, 0.06);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.15px;
}

.pulse-dot {
  position: relative;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(0, 207, 165, 0.12);
}

.hero h1 {
  max-width: 630px;
  margin: 24px 0;
  color: var(--navy-deep);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(48px, 5.6vw, 75px);
  line-height: 1.03;
  letter-spacing: -4px;
}

.hero h1 span {
  display: block;
  color: transparent;
  background: linear-gradient(105deg, var(--blue) 5%, var(--cyan) 54%, var(--green));
  background-clip: text;
  -webkit-background-clip: text;
}

.hero-lead {
  max-width: 600px;
  margin: 0 0 30px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

.hero-lead strong {
  color: var(--navy);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 22px;
  border: 0;
  border-radius: 14px;
  font-size: 14px;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button svg {
  width: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.button-primary {
  color: var(--white);
  background: linear-gradient(105deg, var(--blue), #0798fb);
  box-shadow: 0 16px 32px rgba(8, 120, 255, 0.25);
}

.button-primary:hover,
.button-white:hover {
  transform: translateY(-3px);
}

.button-primary:hover {
  box-shadow: 0 20px 38px rgba(8, 120, 255, 0.31);
}

.button-ghost {
  border: 1px solid var(--line);
  color: var(--navy);
  background: rgba(255, 255, 255, 0.72);
}

.button-ghost:hover {
  border-color: #bbd6e9;
  background: var(--white);
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 31px;
  color: #57728a;
  font-size: 12px;
  font-weight: 700;
}

.hero-proof span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.hero-proof svg {
  width: 17px;
  height: 17px;
  padding: 3px;
  border-radius: 50%;
  fill: none;
  stroke: var(--green);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 3;
  background: rgba(0, 207, 165, 0.1);
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  min-height: 620px;
}

.phone-shell {
  position: relative;
  z-index: 2;
  width: 330px;
  height: 674px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 50px;
  background: #061f38;
  box-shadow:
    0 38px 90px rgba(3, 34, 65, 0.28),
    inset 0 0 0 2px rgba(255, 255, 255, 0.09);
  transform: rotate(2.3deg);
}

.phone-shell::before {
  position: absolute;
  top: 120px;
  right: -4px;
  width: 4px;
  height: 80px;
  border-radius: 0 4px 4px 0;
  background: #17405f;
  content: "";
}

.phone-top {
  position: absolute;
  z-index: 4;
  top: 17px;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0 27px;
  color: var(--navy);
  font-size: 9px;
  font-weight: 800;
}

.phone-island {
  position: absolute;
  top: -2px;
  left: 50%;
  width: 92px;
  height: 24px;
  border-radius: 20px;
  background: #061f38;
  transform: translateX(-50%);
}

.phone-status {
  letter-spacing: 1px;
}

.phone-app {
  height: 100%;
  overflow: hidden;
  padding: 45px 18px 20px;
  border-radius: 41px;
  background:
    radial-gradient(circle at 70% 0%, rgba(0, 207, 165, 0.12), transparent 34%),
    #f8fcff;
}

.app-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 24px;
}

.app-brand {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.app-brand img {
  width: 29px;
  height: 29px;
  border-radius: 9px;
}

.app-brand strong {
  color: var(--navy);
}

.app-brand span {
  color: var(--blue-bright);
}

.app-header button {
  width: 31px;
  height: 31px;
  border: 0;
  border-radius: 50%;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--green));
  font-size: 9px;
  font-weight: 800;
}

.assistant-intro {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 5px 0 22px;
}

.assistant-intro img,
.typing-row img {
  width: 43px;
  height: 43px;
  border-radius: 50%;
  box-shadow: 0 5px 16px rgba(0, 111, 221, 0.18);
}

.assistant-intro p {
  margin: 0;
  color: var(--navy);
  font-size: 13px;
  font-weight: 800;
}

.assistant-intro span {
  color: #7690a7;
  font-size: 10px;
}

.chat-bubble {
  margin-left: 38px;
  padding: 13px 15px;
  border-radius: 16px 16px 4px 16px;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), #059de9);
  box-shadow: 0 9px 20px rgba(0, 113, 238, 0.17);
  font-size: 10px;
  line-height: 1.55;
}

.typing-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 17px 0;
}

.typing-row img {
  width: 30px;
  height: 30px;
}

.typing-dots {
  display: flex;
  gap: 3px;
  padding: 10px 12px;
  border-radius: 4px 14px 14px 14px;
  background: var(--white);
  box-shadow: 0 7px 18px rgba(10, 56, 91, 0.09);
}

.typing-dots i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #94aec2;
  animation: typing 1.2s ease-in-out infinite;
}

.typing-dots i:nth-child(2) {
  animation-delay: 0.2s;
}

.typing-dots i:nth-child(3) {
  animation-delay: 0.4s;
}

.mini-trip {
  padding: 16px;
  border: 1px solid #dfecf4;
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 13px 28px rgba(8, 56, 93, 0.09);
}

.mini-trip-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 15px;
}

.mini-trip-head strong {
  color: var(--navy);
  font-size: 17px;
}

.match-pill {
  padding: 5px 8px;
  border-radius: 999px;
  color: #008d72;
  background: rgba(0, 207, 165, 0.11);
  font-size: 8px;
  font-weight: 800;
}

.route-line {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  min-height: 42px;
  font-size: 10px;
}

.route-line:first-of-type::after {
  position: absolute;
  top: 12px;
  left: 4px;
  width: 1px;
  height: 32px;
  background: #bcd0df;
  content: "";
}

.route-dot {
  position: relative;
  z-index: 1;
  width: 9px;
  height: 9px;
  margin-top: 4px;
  border: 2px solid var(--blue);
  border-radius: 50%;
  background: var(--white);
}

.route-line-end .route-dot {
  border-color: var(--green);
  background: var(--green);
}

.route-line strong,
.route-line small {
  display: block;
}

.route-line small {
  color: #8195a6;
  font-size: 8px;
}

.driver-line {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 11px;
  padding-top: 12px;
  border-top: 1px solid #e6eef4;
}

.driver-avatar {
  display: grid;
  width: 29px;
  height: 29px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: #193c59;
  font-size: 8px;
  font-weight: 800;
}

.driver-line div {
  flex: 1;
}

.driver-line strong,
.driver-line small {
  display: block;
  font-size: 8px;
}

.driver-line small {
  color: #8297aa;
}

.seats {
  color: #648198;
  font-size: 8px;
}

.float-card {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 13px 16px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(10px);
}

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

.float-card strong {
  color: var(--navy);
  font-size: 15px;
}

.float-card small {
  color: #7a91a5;
  font-size: 9px;
}

.float-icon {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 12px;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  font-size: 18px;
  font-weight: 800;
}

.float-fee {
  top: 105px;
  left: -3px;
  animation: float 4s ease-in-out infinite;
}

.float-green {
  right: -10px;
  bottom: 103px;
  animation: float 4.6s ease-in-out 0.6s infinite;
}

.leaf-icon {
  background: linear-gradient(135deg, #04b98e, var(--green));
}

.trust-strip {
  position: relative;
  z-index: 4;
  border-top: 1px solid #ecf2f7;
  border-bottom: 1px solid #ecf2f7;
  background: var(--white);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.trust-grid div {
  position: relative;
  padding: 25px;
  text-align: center;
}

.trust-grid div:not(:last-child)::after {
  position: absolute;
  top: 28px;
  right: 0;
  width: 1px;
  height: 38px;
  background: var(--line);
  content: "";
}

.trust-grid strong {
  display: block;
  color: var(--navy);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 24px;
  letter-spacing: -1px;
}

.trust-grid span {
  color: #7990a3;
  font-size: 11px;
  font-weight: 700;
}

.section {
  padding: 110px 0;
}

.section-heading {
  max-width: 740px;
  margin: 0 auto 54px;
  text-align: center;
}

.section-tag {
  display: inline-block;
  margin-bottom: 13px;
  color: var(--blue);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.7px;
  text-transform: uppercase;
}

.section-heading h2,
.demo-copy h2,
.fee-copy h2,
.safety-copy h2,
.app-copy h2,
.faq-heading h2,
.waitlist-copy h2 {
  margin: 0 0 18px;
  color: var(--navy-deep);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(35px, 4vw, 52px);
  line-height: 1.12;
  letter-spacing: -2.4px;
}

.section-heading p,
.demo-copy > p,
.fee-copy > p,
.safety-copy > p,
.app-copy > p,
.faq-heading p,
.waitlist-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.concept {
  background: #fff;
}

.concept-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.concept-card {
  position: relative;
  min-height: 315px;
  overflow: hidden;
  padding: 32px;
  border: 1px solid #e3edf4;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 7px 30px rgba(18, 65, 100, 0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.concept-card:hover {
  border-color: #c9e4f5;
  box-shadow: var(--shadow-soft);
  transform: translateY(-6px);
}

.concept-card.featured {
  color: var(--white);
  border-color: transparent;
  background:
    radial-gradient(circle at 100% 0%, rgba(0, 221, 181, 0.35), transparent 37%),
    linear-gradient(145deg, #0678fb, #055da9);
  box-shadow: 0 25px 55px rgba(5, 104, 205, 0.25);
}

.card-number {
  position: absolute;
  top: 21px;
  right: 25px;
  color: #dbe7f0;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 26px;
  font-weight: 800;
}

.featured .card-number {
  color: rgba(255, 255, 255, 0.22);
}

.feature-icon {
  display: grid;
  width: 54px;
  height: 54px;
  margin-bottom: 28px;
  place-items: center;
  border-radius: 17px;
}

.feature-icon svg {
  width: 25px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.icon-message {
  color: var(--blue);
  background: #eaf4ff;
}

.icon-spark {
  color: var(--white);
  background: rgba(255, 255, 255, 0.15);
}

.icon-route {
  color: #00aa88;
  background: #e4fbf5;
}

.concept-card h3 {
  margin: 0 0 12px;
  color: var(--navy);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 20px;
  letter-spacing: -0.5px;
}

.concept-card.featured h3 {
  color: var(--white);
}

.concept-card p {
  margin: 0;
  color: #70879a;
  font-size: 14px;
  line-height: 1.75;
}

.concept-card.featured p {
  color: rgba(255, 255, 255, 0.78);
}

.demo-section {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 5% 90%, rgba(0, 207, 165, 0.25), transparent 30%),
    radial-gradient(circle at 95% 10%, rgba(8, 120, 255, 0.25), transparent 36%),
    var(--navy-deep);
}

.demo-section::before {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px);
  background-size: 24px 24px;
  content: "";
  mask-image: linear-gradient(90deg, black, transparent 45%);
}

.assistant-section {
  padding: 105px 0 120px;
}

.assistant-heading {
  position: relative;
  max-width: 780px;
  margin: 0 auto 38px;
  text-align: center;
}

.assistant-heading h2 {
  margin: 0 0 16px;
  color: var(--white);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(35px, 4vw, 52px);
  line-height: 1.12;
  letter-spacing: -2.4px;
}

.assistant-heading p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 16px;
}

.mode-switch {
  position: relative;
  z-index: 2;
  display: grid;
  width: min(600px, 100%);
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin: 0 auto 25px;
  padding: 7px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 19px;
  background: rgba(255, 255, 255, 0.06);
}

.mode-tab {
  display: flex;
  align-items: center;
  gap: 11px;
  min-height: 65px;
  padding: 10px 16px;
  border: 0;
  border-radius: 14px;
  color: rgba(255, 255, 255, 0.66);
  background: transparent;
  text-align: left;
  transition: color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.mode-tab.active {
  color: var(--navy);
  background: var(--white);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
}

.mode-tab strong,
.mode-tab small {
  display: block;
}

.mode-tab strong {
  font-size: 13px;
}

.mode-tab small {
  margin-top: 1px;
  opacity: 0.7;
  font-size: 9px;
}

.mode-icon {
  display: grid;
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
}

.mode-tab.active .mode-icon {
  color: var(--blue);
  background: #e9f4ff;
}

.mode-tab[data-mode="driver"].active .mode-icon {
  color: #009b7d;
  background: #e3f9f3;
}

.mode-icon svg {
  width: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.assistant-mode-panel {
  position: relative;
  z-index: 1;
  animation: message-in 0.28s ease both;
}

[hidden] {
  display: none !important;
}

.assistant-layout {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.045);
  box-shadow: 0 34px 80px rgba(0, 0, 0, 0.25);
}

.assistant-side {
  display: flex;
  min-height: 540px;
  flex-direction: column;
  justify-content: center;
  padding: 48px;
}

.assistant-kicker {
  margin-bottom: 13px;
  color: #55ebcf;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.assistant-side h3 {
  margin: 0 0 15px;
  color: var(--white);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 32px;
  line-height: 1.18;
  letter-spacing: -1.5px;
}

.assistant-side > p {
  margin: 0;
  color: rgba(255, 255, 255, 0.63);
  font-size: 13px;
  line-height: 1.75;
}

.assistant-side .prompt-list {
  margin-top: 28px;
}

.assistant-layout .ai-demo {
  min-height: 540px;
  border: 0;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0;
  box-shadow: none;
}

.assistant-layout .demo-messages {
  height: 400px;
}

.driver-benefits {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.driver-benefits span {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 700;
}

.driver-benefits i {
  display: grid;
  width: 25px;
  height: 25px;
  place-items: center;
  border: 1px solid rgba(87, 241, 210, 0.23);
  border-radius: 8px;
  color: #62efd3;
  background: rgba(0, 207, 165, 0.09);
  font-size: 9px;
  font-style: normal;
}

.driver-console {
  min-height: 540px;
  padding: 32px;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text);
  background: #f8fbfe;
}

.driver-console-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 22px;
  padding-bottom: 18px;
  border-bottom: 1px solid #dfeaf2;
}

.console-label {
  display: block;
  margin-bottom: 2px;
  color: #8095a7;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.driver-console-head strong {
  color: var(--navy);
  font-size: 14px;
}

.text-button {
  padding: 7px 10px;
  border: 0;
  color: #647e92;
  background: transparent;
  font-size: 10px;
  font-weight: 800;
}

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

.auth-view {
  max-width: 480px;
  margin: 30px auto 0;
  padding: 25px;
  border: 1px solid #dfeaf2;
  border-radius: 20px;
  background: var(--white);
  box-shadow: 0 12px 35px rgba(8, 55, 90, 0.07);
}

.auth-switch {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5px;
  margin-bottom: 20px;
  padding: 5px;
  border-radius: 11px;
  background: #eef5f9;
}

.auth-switch button {
  padding: 9px;
  border: 0;
  border-radius: 8px;
  color: #6c8497;
  background: transparent;
  font-size: 10px;
  font-weight: 800;
}

.auth-switch button.active {
  color: var(--navy);
  background: var(--white);
  box-shadow: 0 4px 12px rgba(14, 61, 98, 0.08);
}

.account-form,
.publish-form {
  display: grid;
  gap: 15px;
}

.account-form label > span,
.publish-form label > span {
  display: block;
  margin-bottom: 6px;
  color: #516d83;
  font-size: 10px;
  font-weight: 800;
}

.account-form input,
.publish-form input,
.publish-form textarea {
  width: 100%;
  padding: 12px 13px;
  border: 1px solid #d8e6ef;
  border-radius: 11px;
  outline: none;
  color: var(--navy);
  background: var(--white);
  font-size: 12px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.account-form input:focus,
.publish-form input:focus,
.publish-form textarea:focus {
  border-color: #69b8fa;
  box-shadow: 0 0 0 3px rgba(8, 120, 255, 0.08);
}

.account-form .button,
.publish-form > .button {
  width: 100%;
}

.account-form > small {
  color: #8599aa;
  font-size: 9px;
  text-align: center;
}

.publish-form {
  max-width: 680px;
  margin: 0 auto;
}

.publish-form .form-row {
  gap: 13px;
}

.form-row-three {
  grid-template-columns: 1.5fr 0.65fr 0.85fr;
}

.publish-form textarea {
  resize: vertical;
}

.price-input {
  position: relative;
}

.price-input input {
  padding-right: 34px;
}

.price-input > span {
  position: absolute;
  top: 50%;
  right: 13px;
  color: #688195;
  font-size: 12px;
  font-weight: 800;
  transform: translateY(-50%);
}

.publish-summary {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px;
  border: 1px solid #d7eee8;
  border-radius: 12px;
  background: #effaf7;
}

.publish-summary p {
  margin: 0;
  color: #5c7b71;
  font-size: 10px;
  line-height: 1.55;
}

.console-status {
  min-height: 19px;
  margin: 0;
  color: #667f93;
  font-size: 10px;
  text-align: center;
}

.console-status.success {
  color: #00846a;
}

.console-status.error {
  color: #c43f4f;
}

.demo-grid {
  position: relative;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 80px;
}

.light-tag {
  color: #5df3d5;
}

.demo-copy h2,
.app-copy h2,
.waitlist-copy h2 {
  color: var(--white);
}

.demo-copy > p,
.app-copy > p,
.waitlist-copy p {
  color: rgba(255, 255, 255, 0.7);
}

.prompt-list {
  display: grid;
  gap: 10px;
  margin-top: 30px;
}

.prompt-list button {
  padding: 13px 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  color: rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.05);
  text-align: left;
  font-size: 12px;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.prompt-list button:hover {
  border-color: rgba(74, 239, 211, 0.38);
  background: rgba(255, 255, 255, 0.09);
  transform: translateX(4px);
}

.ai-demo {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 28px;
  background: #f7fbff;
  box-shadow: 0 35px 80px rgba(0, 0, 0, 0.27);
}

.demo-window-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 17px 20px;
  border-bottom: 1px solid #dfebf4;
  color: var(--text);
  background: var(--white);
}

.demo-agent {
  display: flex;
  align-items: center;
  gap: 10px;
}

.demo-agent img {
  width: 38px;
  height: 38px;
  border-radius: 50%;
}

.demo-agent strong,
.demo-agent span {
  display: block;
}

.demo-agent strong {
  font-size: 12px;
}

.demo-agent span {
  color: #758da2;
  font-size: 9px;
}

.demo-agent i {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
}

.secure-label {
  color: #7890a4;
  font-size: 9px;
  font-weight: 700;
}

.database-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #71899d;
  font-size: 9px;
  font-weight: 800;
}

.database-status i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #94aabd;
}

.database-status.is-loading i {
  background: #f5ae2f;
  animation: status-pulse 1.1s ease-in-out infinite;
}

.database-status.is-connected {
  color: #00866d;
}

.database-status.is-connected i {
  background: var(--green);
}

.database-status.is-error {
  color: #bf3d4b;
}

.database-status.is-error i {
  background: #e05260;
}

.demo-messages {
  display: flex;
  flex-direction: column;
  gap: 12px;
  height: 300px;
  overflow-y: auto;
  padding: 24px;
  color: var(--text);
  background:
    radial-gradient(circle at 20% 10%, rgba(9, 165, 248, 0.06), transparent 34%),
    #f8fbfe;
}

.demo-message {
  max-width: 84%;
  padding: 12px 15px;
  border-radius: 15px;
  font-size: 12px;
  line-height: 1.6;
  animation: message-in 0.3s ease both;
}

.ai-message {
  align-self: flex-start;
  border: 1px solid #e2ebf2;
  border-radius: 4px 15px 15px 15px;
  background: var(--white);
  box-shadow: 0 6px 18px rgba(9, 50, 83, 0.06);
}

.user-message {
  align-self: flex-end;
  border-radius: 15px 15px 4px 15px;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), #079cd9);
}

.analysis-message {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #607b91;
}

.analysis-message::before {
  width: 15px;
  height: 15px;
  border: 2px solid #bbd0df;
  border-top-color: var(--blue);
  border-radius: 50%;
  content: "";
  animation: spin 0.8s linear infinite;
}

.demo-result {
  width: 100%;
  max-width: 100%;
  border: 1px solid #cee4f1;
  background: var(--white);
  box-shadow: 0 9px 25px rgba(8, 58, 95, 0.08);
}

.demo-result strong {
  color: var(--navy);
}

.result-top {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 5px;
}

.result-top span {
  color: #008c70;
  font-size: 10px;
  font-weight: 800;
}

.result-meta {
  color: #6f879b;
  font-size: 10px;
}

.result-route {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 9px;
  margin: 9px 0;
}

.result-route span {
  color: #92a6b6;
  font-size: 12px;
}

.result-route div:last-child {
  text-align: right;
}

.result-route small,
.result-route strong {
  display: block;
}

.result-route small {
  color: #8498a9;
  font-size: 8px;
}

.result-route strong {
  font-size: 11px;
}

.result-details {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 8px;
}

.result-details span {
  padding: 4px 7px;
  border-radius: 999px;
  color: #5f788e;
  background: #eff6fa;
  font-size: 8px;
  font-weight: 700;
}

.demo-form {
  display: flex;
  gap: 10px;
  padding: 14px 16px 9px;
  border-top: 1px solid #dfebf4;
  background: var(--white);
}

.demo-form input {
  min-width: 0;
  flex: 1;
  padding: 12px 14px;
  border: 1px solid #dce8f1;
  border-radius: 12px;
  outline: none;
  color: var(--navy);
  background: #f8fbfd;
  font-size: 12px;
}

.demo-form input:focus {
  border-color: #79bfff;
  box-shadow: 0 0 0 3px rgba(8, 120, 255, 0.09);
}

.demo-form button {
  display: grid;
  width: 43px;
  height: 43px;
  border: 0;
  place-items: center;
  border-radius: 12px;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--green));
}

.demo-form button svg {
  width: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.demo-note {
  margin: 0;
  padding: 0 16px 12px;
  color: #98aaba;
  background: var(--white);
  font-size: 8px;
  text-align: center;
}

.services {
  background: #f8fbfe;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.service-card {
  padding: 39px;
  border: 1px solid #e0ebf3;
  border-radius: 30px;
  background: var(--white);
  box-shadow: 0 15px 45px rgba(14, 61, 98, 0.07);
}

.service-card.driver-card {
  background:
    radial-gradient(circle at 100% 0%, rgba(0, 207, 165, 0.11), transparent 33%),
    var(--white);
}

.service-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.service-label {
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--blue);
  background: #eaf4ff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.driver-card .service-label {
  color: #008a6e;
  background: #e3faf4;
}

.service-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 15px;
  color: var(--blue);
  background: #edf6ff;
}

.driver-card .service-icon {
  color: #00a983;
  background: #e5fbf5;
}

.service-icon svg {
  width: 25px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.service-card h3 {
  max-width: 420px;
  margin: 30px 0 14px;
  color: var(--navy);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 27px;
  line-height: 1.2;
  letter-spacing: -1.1px;
}

.service-card p {
  margin: 0 0 23px;
  color: var(--muted);
  font-size: 14px;
}

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

.service-card li {
  position: relative;
  padding-left: 23px;
  color: #547086;
  font-size: 13px;
  font-weight: 600;
}

.service-card li::before {
  position: absolute;
  top: 4px;
  left: 0;
  display: grid;
  width: 15px;
  height: 15px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--blue);
  content: "✓";
  font-size: 8px;
  font-weight: 900;
}

.driver-card li::before {
  background: var(--green);
}

.service-card > a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
}

.driver-card > a {
  color: #00987a;
}

.service-card > a span {
  transition: transform 0.2s ease;
}

.service-card > a:hover span {
  transform: translateX(4px);
}

.fee-section {
  overflow: hidden;
}

.fee-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 90px;
}

.fee-visual {
  position: relative;
  display: grid;
  min-height: 450px;
  place-items: center;
}

.fee-circle {
  position: relative;
  z-index: 3;
  display: flex;
  width: 295px;
  height: 295px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 12px solid var(--white);
  border-radius: 50%;
  color: var(--white);
  background:
    radial-gradient(circle at 70% 22%, rgba(255, 255, 255, 0.25), transparent 27%),
    linear-gradient(145deg, var(--blue), #069bd8 55%, var(--green));
  box-shadow: 0 30px 65px rgba(7, 125, 223, 0.27);
}

.fee-circle span,
.fee-circle small {
  font-weight: 700;
}

.fee-circle span {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1.4px;
}

.fee-circle strong {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 88px;
  line-height: 1;
  letter-spacing: -7px;
}

.fee-circle small {
  font-size: 16px;
}

.fee-ring {
  position: absolute;
  border: 1px solid rgba(8, 120, 255, 0.12);
  border-radius: 50%;
}

.fee-ring-one {
  width: 380px;
  height: 380px;
}

.fee-ring-two {
  width: 470px;
  height: 470px;
  border-style: dashed;
  animation: rotate 35s linear infinite;
}

.fee-ring-two::after {
  position: absolute;
  top: 24px;
  left: 80px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 8px rgba(0, 207, 165, 0.12);
  content: "";
}

.comparison {
  margin-top: 30px;
  padding: 20px 23px;
  border: 1px solid #e0ebf3;
  border-radius: 20px;
  background: #f8fbfd;
}

.comparison div {
  display: flex;
  justify-content: space-between;
  padding: 7px 0;
  color: #71879a;
  font-size: 13px;
}

.comparison div strong {
  color: var(--navy);
}

.comparison .green-text {
  color: #00a47f;
}

.comparison .comparison-total {
  margin-top: 8px;
  padding-top: 15px;
  border-top: 1px solid #dce7ef;
  color: var(--navy);
  font-weight: 800;
}

.safety {
  background: #f6faff;
}

.safety-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 90px;
}

.safety-list {
  display: grid;
  gap: 20px;
  margin-top: 35px;
}

.safety-list > div {
  display: flex;
  align-items: flex-start;
  gap: 13px;
}

.check-icon {
  display: grid;
  width: 27px;
  height: 27px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 9px;
  color: #00997a;
  background: #dff8f2;
  font-size: 13px;
  font-weight: 900;
}

.safety-list strong,
.safety-list small {
  display: block;
}

.safety-list strong {
  color: var(--navy);
  font-size: 14px;
}

.safety-list small {
  margin-top: 2px;
  color: #72899b;
  font-size: 12px;
}

.safety-panel {
  position: relative;
  overflow: hidden;
  padding: 52px 40px;
  border-radius: 31px;
  color: var(--white);
  background:
    radial-gradient(circle at 80% 10%, rgba(0, 207, 165, 0.35), transparent 34%),
    linear-gradient(145deg, #07365f, #03233e);
  box-shadow: 0 28px 65px rgba(3, 39, 71, 0.24);
  text-align: center;
}

.safety-panel::after {
  position: absolute;
  right: -60px;
  bottom: -90px;
  width: 230px;
  height: 230px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  content: "";
}

.shield-mark {
  display: grid;
  width: 74px;
  height: 74px;
  margin: 0 auto 24px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 24px;
  color: #56eed0;
  background: rgba(255, 255, 255, 0.08);
}

.shield-mark svg {
  width: 38px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.safety-panel h3 {
  margin: 0 0 10px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 26px;
}

.safety-panel p {
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.65);
  font-size: 13px;
}

.safety-badges {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 7px;
  margin-top: 30px;
}

.safety-badges span {
  padding: 8px 4px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.05);
  font-size: 9px;
  font-weight: 700;
}

.app-section {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 75% 50%, rgba(0, 222, 180, 0.3), transparent 35%),
    linear-gradient(115deg, #0473ec, #0560bf);
}

.app-grid {
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  align-items: center;
  gap: 60px;
}

.app-features {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 27px 0 32px;
}

.app-features span {
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  font-size: 11px;
  font-weight: 700;
}

.button-white {
  color: var(--navy);
  background: var(--white);
  box-shadow: 0 14px 32px rgba(1, 46, 100, 0.17);
}

.app-icon-stage {
  position: relative;
  display: grid;
  min-height: 390px;
  place-items: center;
}

.app-icon-stage img {
  position: relative;
  z-index: 3;
  width: 210px;
  height: 210px;
  border: 10px solid rgba(255, 255, 255, 0.28);
  border-radius: 54px;
  box-shadow: 0 32px 65px rgba(0, 39, 96, 0.26);
  transform: rotate(-5deg);
}

.orbit {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
}

.orbit-one {
  width: 320px;
  height: 320px;
  animation: rotate 17s linear infinite;
}

.orbit-two {
  width: 410px;
  height: 410px;
  border-style: dashed;
  animation: rotate 28s linear infinite reverse;
}

.orbit span {
  position: absolute;
  top: 14%;
  left: 11%;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #70f8dc;
  box-shadow: 0 0 0 8px rgba(112, 248, 220, 0.14);
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 90px;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 0;
  color: var(--navy);
  font-size: 14px;
  font-weight: 800;
  list-style: none;
  cursor: pointer;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary span {
  display: grid;
  width: 27px;
  height: 27px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 9px;
  color: var(--blue);
  background: #eaf4ff;
  font-size: 17px;
  transition: transform 0.2s ease;
}

.faq-list details[open] summary span {
  transform: rotate(45deg);
}

.faq-list details p {
  max-width: 620px;
  margin: -7px 0 22px;
  color: #71879a;
  font-size: 13px;
  line-height: 1.75;
}

.waitlist-section {
  padding: 30px 0 90px;
}

.waitlist-card {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 70px;
  padding: 55px;
  border-radius: 32px;
  color: var(--white);
  background:
    radial-gradient(circle at 0% 100%, rgba(0, 207, 165, 0.34), transparent 29%),
    radial-gradient(circle at 100% 0%, rgba(8, 120, 255, 0.32), transparent 31%),
    var(--navy-deep);
  box-shadow: 0 30px 70px rgba(4, 40, 72, 0.2);
}

.waitlist-form {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.07);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.waitlist-form label > span,
.waitlist-form legend {
  display: block;
  margin-bottom: 6px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 10px;
  font-weight: 700;
}

.waitlist-form input[type="text"],
.waitlist-form input[type="email"] {
  width: 100%;
  padding: 12px 13px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 11px;
  outline: none;
  color: var(--white);
  background: rgba(255, 255, 255, 0.09);
  font-size: 12px;
}

.waitlist-form input::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.waitlist-form input:focus {
  border-color: #55e8cd;
  box-shadow: 0 0 0 3px rgba(85, 232, 205, 0.1);
}

.waitlist-form fieldset {
  display: flex;
  gap: 8px;
  margin: 17px 0 19px;
  padding: 0;
  border: 0;
}

.waitlist-form fieldset label {
  position: relative;
}

.waitlist-form input[type="radio"] {
  position: absolute;
  opacity: 0;
}

.waitlist-form fieldset label span {
  margin: 0;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.waitlist-form input[type="radio"]:checked + span {
  border-color: #5ff0d5;
  color: var(--white);
  background: rgba(55, 223, 192, 0.17);
}

.waitlist-form .button {
  width: 100%;
}

.form-status {
  min-height: 20px;
  margin: 10px 0 0;
  color: #75f5dc;
  font-size: 11px;
  text-align: center;
}

.waitlist-form > small {
  display: block;
  color: rgba(255, 255, 255, 0.43);
  font-size: 8px;
  text-align: center;
}

.launch-card {
  align-items: center;
}

.launch-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.launch-secondary {
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  background: rgba(255, 255, 255, 0.07);
}

.launch-secondary:hover {
  border-color: rgba(255, 255, 255, 0.36);
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-3px);
}

.site-footer {
  padding: 70px 0 24px;
  background: #f7fafc;
}

.footer-main {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 80px;
  padding-bottom: 45px;
}

.footer-brand p {
  max-width: 320px;
  margin: 16px 0 0;
  color: #74899b;
  font-size: 13px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

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

.footer-links strong {
  margin-bottom: 5px;
  color: var(--navy);
  font-size: 12px;
}

.footer-links a,
.footer-links span {
  color: #758a9d;
  font-size: 11px;
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 20px;
  border-top: 1px solid #dee8ef;
  color: #8aa0b1;
  font-size: 10px;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-delay {
  transition-delay: 0.14s;
}

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

@keyframes typing {
  0%,
  60%,
  100% {
    transform: translateY(0);
  }
  30% {
    transform: translateY(-4px);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes rotate {
  to {
    transform: rotate(360deg);
  }
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes message-in {
  from {
    opacity: 0;
    transform: translateY(7px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes status-pulse {
  50% {
    opacity: 0.35;
    transform: scale(0.78);
  }
}

@media (max-width: 1020px) {
  .hero {
    min-height: auto;
  }

  .hero-grid {
    gap: 25px;
  }

  .hero h1 {
    letter-spacing: -3px;
  }

  .hero-visual {
    transform: scale(0.88);
  }

  .float-fee {
    left: -28px;
  }

  .float-green {
    right: -35px;
  }

  .demo-grid,
  .fee-grid,
  .safety-grid {
    gap: 50px;
  }

  .waitlist-card {
    gap: 35px;
    padding: 42px;
  }
}

@media (max-width: 820px) {
  :root {
    --container: min(100% - 32px, 680px);
  }

  .menu-toggle {
    display: block;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .main-nav {
    position: fixed;
    top: 75px;
    right: 16px;
    left: 16px;
    display: grid;
    gap: 0;
    padding: 15px;
    border: 1px solid #e0ebf3;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.97);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .main-nav.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .main-nav a {
    padding: 12px 13px;
  }

  .main-nav > a:not(.nav-cta)::after {
    display: none;
  }

  .nav-cta {
    margin-top: 7px;
    text-align: center;
  }

  .hero {
    padding-top: 125px;
  }

  .hero-grid,
  .demo-grid,
  .fee-grid,
  .safety-grid,
  .app-grid,
  .faq-grid,
  .waitlist-card,
  .footer-main {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    text-align: center;
  }

  .hero h1,
  .hero-lead {
    margin-inline: auto;
  }

  .hero-actions,
  .hero-proof {
    justify-content: center;
  }

  .hero-visual {
    margin: -25px auto -35px;
    transform: scale(0.82);
  }

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

  .concept-card {
    min-height: 260px;
  }

  .demo-copy {
    text-align: center;
  }

  .assistant-layout {
    grid-template-columns: 1fr;
  }

  .assistant-side {
    min-height: auto;
    padding: 38px;
    text-align: center;
  }

  .assistant-side .prompt-list,
  .driver-benefits {
    width: min(100%, 520px);
    margin-inline: auto;
  }

  .assistant-layout .ai-demo,
  .driver-console {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-left: 0;
  }

  .driver-console {
    border-top-color: #dfeaf2;
  }

  .prompt-list {
    max-width: 520px;
    margin-inline: auto;
  }

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

  .fee-visual {
    order: 2;
    min-height: 390px;
  }

  .fee-copy {
    text-align: center;
  }

  .fee-copy .comparison {
    text-align: left;
  }

  .safety-grid,
  .app-grid {
    gap: 55px;
  }

  .app-copy {
    text-align: center;
  }

  .app-features {
    justify-content: center;
  }

  .faq-grid {
    gap: 35px;
  }

  .faq-heading {
    text-align: center;
  }

  .waitlist-card {
    text-align: center;
  }

  .launch-actions {
    width: min(100%, 520px);
    margin: 0 auto;
  }

  .waitlist-form {
    text-align: left;
  }
}

@media (max-width: 580px) {
  :root {
    --container: calc(100% - 28px);
  }

  .nav-wrap {
    min-height: 72px;
  }

  .brand {
    font-size: 20px;
  }

  .brand img {
    width: 38px;
    height: 38px;
  }

  .hero {
    padding: 110px 0 55px;
  }

  .eyebrow {
    max-width: 95%;
    line-height: 1.35;
  }

  .hero h1 {
    margin: 20px 0;
    font-size: 47px;
    letter-spacing: -2.8px;
  }

  .hero-lead {
    font-size: 16px;
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .hero-proof {
    gap: 10px 15px;
  }

  .hero-visual {
    height: 560px;
    min-height: 560px;
    margin: -28px auto -60px;
    transform: scale(0.72);
  }

  .float-fee {
    left: -50px;
  }

  .float-green {
    right: -50px;
  }

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

  .trust-grid div:nth-child(2)::after {
    display: none;
  }

  .trust-grid div {
    padding: 19px 10px;
  }

  .trust-grid div:not(:last-child)::after {
    top: 20px;
  }

  .section {
    padding: 80px 0;
  }

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

  .section-heading h2,
  .demo-copy h2,
  .fee-copy h2,
  .safety-copy h2,
  .app-copy h2,
  .faq-heading h2,
  .waitlist-copy h2 {
    font-size: 35px;
    letter-spacing: -1.8px;
  }

  .section-heading p,
  .demo-copy > p,
  .fee-copy > p,
  .safety-copy > p,
  .app-copy > p,
  .faq-heading p,
  .waitlist-copy p {
    font-size: 15px;
  }

  .concept-card,
  .service-card {
    padding: 27px;
  }

  .demo-grid {
    gap: 45px;
  }

  .assistant-section {
    padding: 80px 0;
  }

  .assistant-heading {
    margin-bottom: 28px;
  }

  .assistant-heading h2 {
    font-size: 35px;
    letter-spacing: -1.8px;
  }

  .assistant-heading p {
    font-size: 14px;
  }

  .mode-switch {
    gap: 5px;
    padding: 5px;
  }

  .mode-tab {
    min-height: 58px;
    padding: 8px 10px;
  }

  .mode-icon {
    width: 32px;
    height: 32px;
  }

  .mode-tab small {
    display: none;
  }

  .assistant-layout {
    border-radius: 23px;
  }

  .assistant-side {
    padding: 32px 20px;
  }

  .assistant-side h3 {
    font-size: 27px;
  }

  .assistant-layout .demo-messages {
    height: 340px;
  }

  .driver-console {
    min-height: auto;
    padding: 22px 15px;
  }

  .auth-view {
    padding: 18px;
  }

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

  .form-row-three label:first-child {
    grid-column: 1 / -1;
  }

  .secure-label,
  .database-status {
    display: none;
  }

  .demo-messages {
    height: 310px;
    padding: 18px;
  }

  .demo-form {
    padding-inline: 12px;
  }

  .service-card h3 {
    font-size: 24px;
  }

  .fee-circle {
    width: 245px;
    height: 245px;
  }

  .fee-circle strong {
    font-size: 72px;
  }

  .fee-ring-one {
    width: 310px;
    height: 310px;
  }

  .fee-ring-two {
    width: 370px;
    height: 370px;
  }

  .safety-panel {
    padding: 42px 24px;
  }

  .safety-badges {
    grid-template-columns: repeat(2, 1fr);
  }

  .app-icon-stage {
    min-height: 320px;
    transform: scale(0.82);
  }

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

  .waitlist-section {
    padding-bottom: 65px;
  }

  .waitlist-card {
    gap: 30px;
    padding: 31px 20px;
    border-radius: 25px;
  }

  .launch-actions {
    grid-template-columns: 1fr;
  }

  .waitlist-form {
    padding: 18px;
  }

  .waitlist-form fieldset {
    flex-wrap: wrap;
  }

  .footer-main {
    gap: 42px;
  }

  .footer-links {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 30px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 5px;
  }
}

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

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
