:root {
  --bg: #fffaf7;
  --surface: rgba(255, 255, 255, 0.88);
  --surface-strong: #ffffff;
  --text: #101828;
  --muted: #667085;
  --line: rgba(16, 24, 40, 0.08);
  --line-strong: rgba(16, 24, 40, 0.14);
  --primary: #ff6b6b;
  --primary-dark: #ef4444;
  --accent: #f97316;
  --success: #10b981;
  --secondary: #111827;
  --dark: #0f172a;
  --dark-soft: #172033;
  --shadow: 0 24px 80px rgba(15, 23, 42, 0.10);
  --shadow-soft: 0 18px 44px rgba(15, 23, 42, 0.08);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(255, 107, 107, 0.18), transparent 24%),
    radial-gradient(circle at 85% 10%, rgba(249, 115, 22, 0.18), transparent 18%),
    linear-gradient(180deg, #fff8f3 0%, #ffffff 48%, #fff9f1 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,0.35), transparent 70%);
}

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.06;
  background-image:
    radial-gradient(circle at 20% 30%, #000 0.8px, transparent 0.9px),
    radial-gradient(circle at 80% 60%, #000 0.8px, transparent 0.9px),
    radial-gradient(circle at 50% 80%, #000 0.8px, transparent 0.9px);
  background-size: 28px 28px;
}

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

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

.container {
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(18px);
  background: rgba(255, 250, 247, 0.76);
  border-bottom: 1px solid rgba(16, 24, 40, 0.06);
}

.topbar-inner {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand-logo,
.footer-logo {
  width: 56px;
  height: 56px;
  object-fit: contain;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 12px 28px rgba(255, 107, 107, 0.16);
}

.brand-text,
.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-text {
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
}

.brand-text strong {
  font-size: 1rem;
}

.brand-text small,
.float-card small,
.spotlight-grid small,
.screen-status small,
.launch-chip small,
.preview-head span,
.form-note,
.footer p,
.interest-copy p,
.hero-text,
.section-heading p,
.feature-card p,
.showcase-copy p,
.showcase-card p,
.stat-card span,
.audience-card li,
.launch-panel span {
  color: var(--muted);
  line-height: 1.7;
}

.nav {
  display: inline-flex;
  gap: 24px;
  color: #475467;
  font-weight: 700;
}

.nav a:hover {
  color: var(--primary-dark);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 800;
  border: 0;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

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

.button-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  box-shadow: 0 18px 36px rgba(255, 107, 107, 0.28);
}

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

.desktop-only {
  display: inline-flex;
}

.hero {
  padding: 72px 0 40px;
}

.hero-grid,
.showcase-grid,
.interest-grid {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 44px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--primary-dark);
  background: rgba(255, 107, 107, 0.10);
}

.hero-copy h1,
.section-heading h2,
.showcase-copy h2,
.interest-copy h2,
.launch-copy h2 {
  margin: 18px 0 14px;
  line-height: 1.06;
  letter-spacing: -0.04em;
}

.hero-copy h1 {
  font-size: clamp(2.7rem, 5vw, 5rem);
}

.section-heading h2,
.showcase-copy h2,
.interest-copy h2,
.launch-copy h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.hero-points,
.hero-actions,
.launch-inline,
.interest-bullets,
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-points {
  margin: 28px 0 30px;
}

.hero-points span,
.launch-chip,
.interest-bullets div {
  padding: 12px 16px;
  border-radius: 999px;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(16, 24, 40, 0.08);
  box-shadow: var(--shadow-soft);
}

.launch-inline {
  margin-top: 30px;
}

.launch-chip {
  min-width: 176px;
}

.launch-chip strong,
.launch-panel strong,
.stat-card strong,
.feature-card h3,
.audience-card h3,
.showcase-card strong,
.preview-head strong,
.float-card strong,
.spotlight-grid strong {
  display: block;
}

.launch-chip-highlight {
  background: linear-gradient(135deg, rgba(255, 107, 107, 0.12), rgba(249, 115, 22, 0.12));
}

.hero-visual {
  position: relative;
  display: grid;
  gap: 20px;
  align-items: start;
  min-height: auto;
}

.visual-glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(22px);
}

.glow-one {
  width: 260px;
  height: 260px;
  right: 24px;
  top: 40px;
  background: rgba(255, 107, 107, 0.20);
}

.glow-two {
  width: 180px;
  height: 180px;
  left: 40px;
  bottom: 60px;
  background: rgba(249, 115, 22, 0.20);
}

.glass-card,
.premium-card,
.stat-card,
.feature-card,
.audience-card,
.launch-card,
.lead-card,
.preview-card,
.showcase-card {
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.glass-card {
  backdrop-filter: blur(20px);
}

.hero-spotlight {
  position: relative;
  z-index: 2;
  width: min(100%, 360px);
  padding: 22px;
  border-radius: 24px;
  justify-self: end;
}

.spotlight-badge {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  margin-bottom: 14px;
  font-weight: 800;
  color: var(--primary-dark);
  background: rgba(255, 107, 107, 0.10);
}

.spotlight-grid {
  display: grid;
  gap: 12px;
}

.spotlight-grid div {
  padding: 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(16, 24, 40, 0.08);
}

.device-stage {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(180px, 230px) minmax(320px, 470px);
  grid-template-areas:
    "left phone"
    "left right";
  justify-content: end;
  align-items: start;
  gap: 18px;
}

.device-card {
  position: relative;
  grid-area: phone;
  width: min(100%, 470px);
  margin-left: 0;
  padding: 16px;
  border-radius: 38px;
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(255, 246, 242, 0.98));
  border: 1px solid rgba(255,255,255,0.72);
  box-shadow: 0 34px 90px rgba(15, 23, 42, 0.16);
}

.device-topbar {
  display: flex;
  gap: 8px;
  padding: 6px 2px 14px;
}

.device-topbar span {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: rgba(16, 24, 40, 0.15);
}

.device-screen {
  padding: 14px;
  border-radius: 26px;
  background: #fff;
}

.map-card {
  position: relative;
  height: 230px;
  border-radius: 24px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(16, 185, 129, 0.10), rgba(59, 130, 246, 0.10)),
    linear-gradient(0deg, rgba(255,255,255,0.72), rgba(255,255,255,0.72)),
    repeating-linear-gradient(0deg, transparent, transparent 38px, rgba(148, 163, 184, 0.16) 38px, rgba(148, 163, 184, 0.16) 42px),
    repeating-linear-gradient(90deg, transparent, transparent 44px, rgba(148, 163, 184, 0.16) 44px, rgba(148, 163, 184, 0.16) 48px);
}

.map-pin,
.map-route {
  position: absolute;
}

.map-pin {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  border: 4px solid #fff;
  box-shadow: 0 0 0 7px rgba(255, 255, 255, 0.22);
}

.pin-red {
  top: 44px;
  left: 40px;
  background: var(--primary);
}

.pin-green {
  right: 44px;
  bottom: 48px;
  background: var(--success);
}

.map-route {
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
}

.route-primary {
  top: 90px;
  left: 54px;
  width: 160px;
  transform: rotate(18deg);
}

.route-secondary {
  bottom: 78px;
  right: 62px;
  width: 180px;
  transform: rotate(-24deg);
}

.screen-status {
  margin: 18px 0 16px;
  padding: 16px 18px;
  border-radius: 20px;
  background: #fff7ed;
}

.message-stack {
  display: grid;
  gap: 12px;
}

.bubble {
  max-width: 84%;
  padding: 14px 16px;
  border-radius: 18px;
  font-weight: 700;
}

.bubble-light {
  background: #f3f4f6;
}

.bubble-accent {
  margin-left: auto;
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--accent));
}

.float-card {
  position: relative;
  z-index: 2;
  max-width: none;
  padding: 20px;
  border-radius: 24px;
}

.float-left {
  grid-area: left;
  align-self: start;
}

.float-right {
  grid-area: right;
  align-self: end;
  justify-self: end;
  width: min(100%, 240px);
}

.float-kicker,
.audience-label {
  display: inline-flex;
  margin-bottom: 10px;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--primary-dark);
}

.image-card {
  padding: 16px;
  background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(255,247,242,0.96));
}

.image-card img {
  width: min(100%, 190px);
  margin: 0 auto;
}

.stats {
  padding: 14px 0 12px;
}

.stats-grid,
.feature-grid,
.audience-grid,
.preview-grid {
  display: grid;
  gap: 20px;
}

.stats-grid {
  grid-template-columns: repeat(3, 1fr);
}

.stat-card,
.feature-card,
.audience-card,
.lead-card,
.preview-card {
  padding: 28px;
  border-radius: var(--radius-lg);
}

.section {
  padding: 88px 0;
}

.section-heading {
  max-width: 800px;
  margin-bottom: 40px;
}

.section-heading.centered {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.premium-grid,
.audience-grid {
  grid-template-columns: repeat(3, 1fr);
}

.feature-icon {
  width: 54px;
  height: 54px;
  margin-bottom: 16px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--accent));
}

.audience {
  background: linear-gradient(180deg, rgba(255,255,255,0.18), rgba(255, 242, 236, 0.56));
}

.audience-card ul {
  margin: 0;
  padding-left: 18px;
}

.audience-card li + li {
  margin-top: 10px;
}

.customer {
  border-top: 5px solid var(--primary);
}

.store {
  border-top: 5px solid #8b5cf6;
}

.driver {
  border-top: 5px solid var(--success);
}

.preview-grid {
  grid-template-columns: repeat(3, 1fr);
}

.preview-card {
  padding: 18px;
}

.preview-head {
  margin-bottom: 16px;
}

.preview-screen {
  min-height: 320px;
  padding: 16px;
  border-radius: 24px;
  background: linear-gradient(180deg, #ffffff, #fff7f3);
  border: 1px solid rgba(16,24,40,0.08);
}

.screenshot-layout {
  overflow: hidden;
}

.screenshot-layout img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.screenshot-layout-client {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(110px, 0.85fr);
  gap: 14px;
  align-items: stretch;
}

.screenshot-main,
.screenshot-thumb,
.screenshot-desktop,
.driver-shot {
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(16, 24, 40, 0.08);
  background: #fff;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.08);
}

.screenshot-main {
  min-height: 340px;
}

.screenshot-side {
  display: grid;
  gap: 14px;
}

.screenshot-thumb {
  min-height: 163px;
}

.screenshot-layout-store {
  display: block;
}

.screenshot-desktop {
  min-height: 338px;
}

.screenshot-desktop img {
  object-fit: contain;
  background: #fff;
}

.screenshot-layout-driver {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 140px;
  grid-template-areas:
    "main top"
    "main bottom";
  gap: 14px;
  align-items: stretch;
}

.driver-shot-main {
  grid-area: main;
  min-height: 338px;
}

.driver-shot-top {
  grid-area: top;
  min-height: 162px;
}

.driver-shot-bottom {
  grid-area: bottom;
  min-height: 162px;
}

.dark-section {
  color: #f8fafc;
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-soft) 100%);
}

.dark-section .eyebrow {
  color: #fff4f0;
  background: rgba(255, 255, 255, 0.10);
}

.dark-section .showcase-copy p,
.dark-section .check-list div {
  color: rgba(248, 250, 252, 0.86);
}

.check-list {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.check-list div,
.interest-bullets div {
  display: flex;
  align-items: center;
  gap: 10px;
}

.check-list span,
.interest-bullets span {
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
}

.showcase-stack {
  display: grid;
  gap: 16px;
}

.showcase-card {
  padding: 24px;
  border-radius: var(--radius-lg);
}

.premium-dark {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.10);
}

.launch-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 36px;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, #fff7ed 0%, #ffffff 100%);
}

.launch-panels {
  display: grid;
  gap: 14px;
  min-width: 280px;
}

.launch-panel {
  padding: 18px 20px;
  border-radius: 20px;
  background: var(--surface-strong);
  border: 1px solid var(--line);
}

.interest-section {
  padding-top: 34px;
}

.interest-bullets {
  margin-top: 24px;
}

.lead-form {
  display: grid;
  gap: 18px;
}

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

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

.lead-form label {
  display: grid;
  gap: 8px;
  font-weight: 700;
}

.lead-form span {
  font-size: 0.95rem;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.9);
  color: var(--text);
  font: inherit;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  border-color: rgba(255, 107, 107, 0.55);
  box-shadow: 0 0 0 4px rgba(255, 107, 107, 0.12);
}

.form-button {
  width: 100%;
}

.form-feedback {
  min-height: 24px;
  margin: 0;
  font-weight: 700;
}

.form-feedback.success {
  color: #047857;
}

.form-feedback.error {
  color: #b42318;
}

.footer {
  padding: 30px 0 54px;
}

.footer-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 22px;
  padding-top: 22px;
  border-top: 1px solid rgba(16, 24, 40, 0.08);
}

.footer-links {
  color: #475467;
  font-weight: 700;
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1100px) {
  .hero-grid,
  .showcase-grid,
  .interest-grid,
  .launch-card {
    grid-template-columns: 1fr;
  }

  .stats-grid,
  .premium-grid,
  .audience-grid,
  .preview-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .device-stage {
    grid-template-columns: 1fr;
    grid-template-areas:
      "phone"
      "left"
      "right";
    justify-content: stretch;
  }

  .hero-spotlight {
    width: 100%;
    justify-self: stretch;
  }

  .device-card,
  .float-right {
    width: 100%;
  }
}

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

  .section,
  .hero {
    padding: 68px 0 34px;
  }

  .stats-grid,
  .premium-grid,
  .audience-grid,
  .preview-grid,
  .field-grid {
    grid-template-columns: 1fr;
  }

  .screenshot-layout-client,
  .screenshot-layout-driver {
    grid-template-columns: 1fr;
    grid-template-areas:
      "main"
      "top"
      "bottom";
  }

  .screenshot-main,
  .driver-shot-main {
    min-height: 280px;
  }

  .screenshot-thumb,
  .driver-shot-top,
  .driver-shot-bottom {
    min-height: 220px;
  }

  .hero-copy h1 {
    font-size: 2.45rem;
  }

  .device-stage {
    margin-top: 0;
  }

  .launch-panels {
    min-width: 0;
  }

  .footer-inner,
  .footer-brand {
    flex-direction: column;
    align-items: flex-start;
  }
}
