:root {
  --ink: #111820;
  --muted: #5f6470;
  --line: #dcd8cf;
  --paper: #f7f3ea;
  --surface: #ffffff;
  --taxi: #f5b700;
  --orange: #f25a1d;
  --taxi-dark: #9c6b00;
  --teal: #0b7774;
  --green: #268a52;
  --blue: #315a85;
  --shadow: 0 24px 70px rgba(18, 18, 18, 0.18);
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

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

body {
  max-width: 100%;
  overflow-x: hidden;
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

button,
input,
textarea,
select {
  font: inherit;
  min-width: 0;
  max-width: 100%;
}

img,
svg,
canvas,
video {
  max-width: 100%;
}

.site-header {
  position: fixed;
  z-index: 30;
  top: 16px;
  left: 50%;
  width: min(1120px, calc(100% - 32px));
  min-height: 58px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 10px 12px 10px 16px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 8px;
  background: rgba(18, 18, 18, 0.72);
  color: #ffffff;
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 150px;
  max-width: 100%;
  font-weight: 800;
}

.brand > span:last-child {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  overflow: hidden;
  border-radius: 9px;
  background: var(--taxi);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.22);
  flex: 0 0 auto;
}

.brand-mark img {
  display: block;
  width: 100%;
  height: 100%;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex: 1;
}

.main-nav a,
.header-cta {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border-radius: 7px;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 700;
  font-size: 0.86rem;
}

.main-nav a:hover {
  background: rgba(255, 255, 255, 0.11);
}

.header-cta {
  background: var(--taxi);
  color: var(--ink);
}

.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.1);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: #ffffff;
}

.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #111111;
}

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

.hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10, 10, 10, 0.88) 0%, rgba(10, 10, 10, 0.65) 38%, rgba(10, 10, 10, 0.12) 70%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 120px 0 70px;
  color: #ffffff;
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--taxi);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 720px;
  margin: 0;
  font-size: 4.8rem;
  line-height: 0.95;
}

.hero-copy {
  max-width: 620px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.3rem;
}

.page-version-badge {
  display: inline-flex;
  width: fit-content;
  margin: 6px 0 0;
  padding: 0.28rem 0.62rem;
  border: 1px solid rgba(245, 183, 0, 0.44);
  border-radius: 999px;
  background: rgba(255, 246, 215, 0.96);
  color: #6d4e00;
  font-size: 0.74rem;
  font-weight: 950;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border-radius: 8px;
  font-weight: 900;
}

.button-primary {
  background: var(--taxi);
  color: var(--ink);
}

.button-secondary {
  border: 1px solid rgba(255, 255, 255, 0.58);
  color: #ffffff;
}

.proof-strip {
  position: relative;
  z-index: 2;
  width: min(1120px, calc(100% - 40px));
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin: -44px auto 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
  box-shadow: var(--shadow);
}

.proof-strip div {
  min-height: 88px;
  padding: 18px 20px;
  background: var(--surface);
}

.proof-strip strong,
.proof-strip span {
  display: block;
}

.proof-strip strong {
  font-size: 1.35rem;
}

.proof-strip span {
  margin-top: 3px;
  color: var(--muted);
}

.section {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 88px 0;
}

.intro {
  padding-top: 96px;
}

.split-copy,
.section-heading,
.update-panel,
.pitch {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: 44px;
  align-items: start;
}

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

h2 {
  margin-bottom: 0;
  font-size: 2.45rem;
  line-height: 1.06;
}

h3 {
  font-size: 1.55rem;
  line-height: 1.14;
}

.split-copy p,
.section-heading p,
.stage-copy p,
.pitch-copy p,
.update-panel p,
.pitch-grid p {
  color: var(--muted);
  font-size: 1rem;
}

.blueprint {
  padding-top: 34px;
}

.blueprint-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 34px;
}

.blueprint-grid article,
.flow-rail div,
.download-grid article,
.global-grid article,
.partner-grid article,
.brand-grid article,
.partner-contact,
.language-demo,
.install-note {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.blueprint-grid article {
  min-height: 230px;
  padding: 22px;
}

.blueprint-grid span,
.flow-rail span {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.blueprint-grid h3 {
  margin: 12px 0 10px;
  font-size: 1.25rem;
}

.blueprint-grid p,
.flow-rail p,
.download-grid p,
.global-grid p,
.brand-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.download-hub {
  padding-top: 34px;
}

.brand-ecosystem {
  padding-top: 78px;
}

.download-grid,
.global-grid,
.partner-grid,
.brand-grid {
  display: grid;
  gap: 14px;
  margin-top: 34px;
}

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

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

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

.download-grid article,
.global-grid article,
.partner-grid article,
.brand-grid article {
  min-width: 0;
  min-height: 230px;
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 22px;
}

.download-grid span,
.global-grid span,
.partner-grid span,
.brand-grid span,
.partner-contact span,
.language-demo span {
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.download-grid h3,
.global-grid h3,
.partner-grid h3,
.brand-grid h3 {
  margin: 0;
  font-size: 1.18rem;
  overflow-wrap: anywhere;
}

.download-grid .button {
  margin-top: auto;
  min-height: 44px;
}

.download-grid .button + .button {
  margin-top: 0;
}

.install-note {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-top: 14px;
  padding: 16px 18px;
  background: #fff9e6;
}

.install-note span {
  color: var(--muted);
}

.production-handoff {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 220px;
  gap: 18px;
  align-items: center;
  margin-top: 14px;
  padding: 18px;
  border: 1px solid rgba(11, 118, 116, 0.28);
  border-radius: 8px;
  background: #f4f8fb;
}

.production-handoff span,
.production-handoff strong,
.production-handoff p {
  display: block;
}

.production-handoff span {
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.production-handoff strong {
  margin-top: 4px;
  font-size: 1.1rem;
}

.production-handoff p {
  margin: 6px 0 0;
  color: var(--muted);
}

.global-ready {
  padding-top: 34px;
}

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

.partner-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.partner-contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  margin-top: 14px;
  padding: 20px;
  background: #f8fbf8;
}

.partner-contact strong,
.partner-contact p {
  display: block;
}

.partner-contact strong {
  margin-top: 4px;
  font-size: 1.18rem;
}

.partner-contact p {
  margin: 6px 0 0;
  color: var(--muted);
}

.partner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.language-demo {
  display: grid;
  grid-template-columns: 220px 260px minmax(0, 1fr);
  gap: 14px;
  align-items: end;
  margin-top: 14px;
  padding: 18px;
}

.language-demo label {
  display: grid;
  gap: 6px;
}

.language-demo select {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 12px;
  background: #fbfaf6;
  color: var(--ink);
  font-weight: 850;
}

.global-preview-copy {
  display: grid;
  gap: 8px;
}

.language-demo strong {
  min-height: 44px;
  display: flex;
  align-items: center;
  line-height: 1.25;
}

.trip-flow {
  padding-top: 34px;
}

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

.flow-rail div {
  min-height: 168px;
  padding: 18px;
}

.flow-rail strong {
  display: block;
  margin: 10px 0 8px;
  line-height: 1.15;
}

.role-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  min-height: 44px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.role-tab {
  border: 0;
  border-right: 1px solid var(--line);
  background: transparent;
  color: var(--muted);
  font-weight: 900;
  cursor: pointer;
}

.role-tab:last-child {
  border-right: 0;
}

.role-tab.is-active {
  background: var(--ink);
  color: #ffffff;
}

.app-stage {
  display: none;
  grid-template-columns: 430px minmax(0, 1fr);
  gap: 56px;
  align-items: center;
  margin-top: 42px;
}

.app-stage.is-active {
  display: grid;
}

.phone-shell,
.dashboard-shell {
  border: 1px solid rgba(18, 18, 18, 0.12);
  background: #161616;
  box-shadow: var(--shadow);
}

.phone-shell {
  width: min(100%, 380px);
  min-height: 690px;
  margin: 0 auto;
  padding: 18px;
  border-radius: 32px;
}

.phone-top {
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #ffffff;
  font-weight: 800;
}

.map-panel {
  position: relative;
  height: 300px;
  overflow: hidden;
  border-radius: 8px;
  background:
    linear-gradient(90deg, transparent 23%, rgba(255, 255, 255, 0.09) 23% 25%, transparent 25% 62%, rgba(255, 255, 255, 0.08) 62% 64%, transparent 64%),
    linear-gradient(0deg, transparent 34%, rgba(255, 255, 255, 0.08) 34% 36%, transparent 36% 68%, rgba(255, 255, 255, 0.08) 68% 70%, transparent 70%),
    #23323a;
}

.route-line {
  position: absolute;
  top: 88px;
  left: 84px;
  width: 170px;
  height: 115px;
  border-left: 5px solid var(--taxi);
  border-bottom: 5px solid var(--taxi);
  border-radius: 0 0 0 18px;
}

.pin,
.cab-dot {
  position: absolute;
  display: block;
  border-radius: 999px;
}

.pin {
  width: 18px;
  height: 18px;
  border: 4px solid #ffffff;
}

.pickup {
  top: 78px;
  left: 75px;
  background: var(--green);
}

.dropoff {
  top: 194px;
  left: 244px;
  background: var(--taxi);
}

.cab-dot {
  top: 160px;
  left: 136px;
  width: 28px;
  height: 28px;
  border: 5px solid #ffffff;
  background: var(--taxi);
}

.booking-sheet {
  margin-top: -22px;
  padding: 20px;
  border-radius: 8px;
  background: #ffffff;
}

.service-dock,
.ride-options,
.bottom-app-nav {
  display: grid;
  gap: 8px;
}

.service-dock {
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 16px;
}

.service-dock span {
  min-height: 42px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: #f3eee2;
  color: #252525;
  font-size: 0.78rem;
  font-weight: 900;
}

.screen-label {
  margin-bottom: 16px;
  font-size: 1.32rem;
  font-weight: 900;
}

.field-row,
.fare-row,
.mini-list div,
.ops-table div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.field-row {
  padding: 14px 0;
  border-top: 1px solid var(--line);
}

.field-row span,
.fare-row span,
.mini-list span,
.ops-table span,
.metric-grid span,
.driver-status span,
.request-card span {
  color: var(--muted);
  font-size: 0.82rem;
}

.fare-row {
  align-items: center;
  margin-top: 12px;
}

.ride-options {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 12px;
}

.ride-options button {
  min-height: 58px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  color: var(--muted);
  font-weight: 800;
  cursor: pointer;
}

.ride-options button.is-selected {
  border-color: var(--ink);
  background: #fff7df;
  color: var(--ink);
}

.ride-options strong {
  color: var(--ink);
}

.fare-row button,
.request-actions button {
  min-height: 40px;
  border: 0;
  border-radius: 7px;
  background: var(--ink);
  color: #ffffff;
  font-weight: 900;
}

.fare-row button {
  min-width: 112px;
}

.bottom-app-nav {
  grid-template-columns: repeat(4, 1fr);
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

.bottom-app-nav span {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 900;
  text-align: center;
}

.stage-copy .eyebrow {
  color: var(--teal);
}

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

.value-list li {
  position: relative;
  padding-left: 26px;
  color: #2a2d33;
  font-weight: 700;
}

.value-list li::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--taxi);
}

.driver-shell {
  background: #182620;
}

.driver-status {
  display: grid;
  place-items: center;
  height: 172px;
  margin-bottom: 16px;
  border-radius: 8px;
  background: #f2fbf6;
}

.driver-status strong {
  font-size: 3rem;
  line-height: 1;
}

.request-card,
.mini-list {
  border-radius: 8px;
  background: #ffffff;
}

.request-card {
  padding: 18px;
}

.request-card strong {
  display: block;
  margin: 4px 0;
  font-size: 1.6rem;
}

.request-card p {
  margin-bottom: 18px;
  color: var(--muted);
}

.request-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.request-actions button:first-child {
  background: var(--green);
}

.request-actions button:last-child {
  background: #ece7dc;
  color: var(--ink);
}

.mini-list {
  display: grid;
  gap: 1px;
  margin-top: 16px;
  overflow: hidden;
  background: var(--line);
}

.mini-list div {
  padding: 14px;
  background: #ffffff;
}

.dashboard-shell {
  display: grid;
  grid-template-columns: 92px 1fr;
  width: min(100%, 520px);
  min-height: 430px;
  overflow: hidden;
  border-radius: 8px;
}

.dashboard-shell aside {
  display: grid;
  align-content: start;
  gap: 18px;
  padding: 18px 14px;
  background: #181818;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.84rem;
  font-weight: 800;
}

.dashboard-shell aside strong {
  color: #ffffff;
  font-size: 1.2rem;
}

.dashboard-main {
  padding: 18px;
  background: #f8f8f4;
}

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

.metric-grid div,
.ops-table div {
  border-radius: 8px;
  background: #ffffff;
  padding: 14px;
}

.metric-grid strong {
  display: block;
  margin-top: 4px;
  font-size: 1.45rem;
}

.ops-map {
  position: relative;
  height: 190px;
  margin: 14px 0;
  overflow: hidden;
  border-radius: 8px;
  background:
    linear-gradient(90deg, transparent 30%, rgba(18, 18, 18, 0.08) 30% 32%, transparent 32% 68%, rgba(18, 18, 18, 0.08) 68% 70%, transparent 70%),
    linear-gradient(0deg, transparent 22%, rgba(18, 18, 18, 0.08) 22% 24%, transparent 24% 74%, rgba(18, 18, 18, 0.08) 74% 76%, transparent 76%),
    #d7e4df;
}

.heat {
  position: absolute;
  display: block;
  border-radius: 999px;
  background: rgba(245, 183, 0, 0.72);
}

.heat.one {
  width: 62px;
  height: 62px;
  top: 30px;
  left: 60px;
}

.heat.two {
  width: 92px;
  height: 92px;
  top: 66px;
  right: 58px;
  background: rgba(38, 138, 82, 0.45);
}

.heat.three {
  width: 44px;
  height: 44px;
  bottom: 24px;
  left: 188px;
  background: rgba(49, 90, 133, 0.45);
}

.dispatch-route {
  position: absolute;
  top: 88px;
  left: 88px;
  width: 220px;
  height: 44px;
  border-top: 5px solid var(--ink);
  border-right: 5px solid var(--ink);
  border-radius: 0 12px 0 0;
}

.ops-table {
  display: grid;
  gap: 8px;
}

.ops-table strong {
  color: var(--teal);
}

.menu-system {
  border-top: 1px solid var(--line);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.menu-card,
.pitch-grid article,
.status-board div {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.menu-card {
  overflow: hidden;
}

.menu-card-head {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 64px;
  padding: 0 18px;
  border-bottom: 1px solid var(--line);
}

.menu-card h3 {
  margin: 0;
  font-size: 1.25rem;
}

.role-dot {
  width: 12px;
  height: 12px;
  border-radius: 999px;
}

.rider-dot {
  background: var(--taxi);
}

.driver-dot {
  background: var(--green);
}

.ops-dot {
  background: var(--blue);
}

.menu-card ul {
  display: grid;
  gap: 1px;
  margin: 0;
  padding: 0;
  background: var(--line);
  list-style: none;
}

.menu-card li {
  min-height: 82px;
  padding: 15px 18px;
  background: #ffffff;
}

.menu-card strong,
.menu-card span {
  display: block;
}

.menu-card span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.92rem;
}

.update-panel {
  align-items: center;
  padding: 58px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #191919;
  color: #ffffff;
}

.update-panel .section-kicker,
.update-panel p {
  color: rgba(255, 255, 255, 0.76);
}

.status-board {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.status-board div {
  padding: 16px;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
}

.status-board span,
.status-board strong {
  display: block;
}

.status-board span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.84rem;
}

.status-board strong {
  margin-top: 4px;
  color: var(--taxi);
}

.pitch {
  padding-bottom: 96px;
}

.pitch-grid {
  display: grid;
  gap: 14px;
}

.pitch-grid article {
  padding: 22px;
}

.pitch-grid span {
  color: var(--teal);
  font-weight: 900;
}

.pitch-grid h3 {
  margin: 8px 0;
  font-size: 1.25rem;
}

.closing-line {
  grid-column: 1 / -1;
  padding: 24px;
  border-left: 6px solid var(--taxi);
  border-radius: 8px;
  background: #ffffff;
}

.closing-line p {
  margin: 0;
  font-size: 1.3rem;
}

.company-footer {
  width: min(1120px, calc(100% - 40px));
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  align-items: center;
  justify-content: center;
  margin: 0 auto 34px;
  padding: 18px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  text-align: center;
}

.company-footer strong {
  color: var(--ink);
}

.company-footer a {
  color: var(--teal);
  font-weight: 900;
  text-decoration: none;
}

.admin-footer-tab {
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #ffffff;
  color: var(--ink);
  font-weight: 900;
}


@media (max-width: 920px) {
  .site-header {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .nav-toggle {
    display: block;
    margin-left: auto;
  }

  .main-nav,
  .header-cta {
    display: none;
  }

  .main-nav.is-open {
    display: grid;
    grid-template-columns: 1fr;
    flex-basis: 100%;
    width: 100%;
  }

  .header-cta.is-open {
    display: inline-flex;
  }

  .hero h1 {
    font-size: 3.4rem;
  }

  .hero-copy {
    font-size: 1.12rem;
  }

  .proof-strip,
  .split-copy,
  .section-heading,
  .app-stage,
  .update-panel,
  .pitch {
    grid-template-columns: 1fr;
  }

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

  .blueprint-grid,
  .flow-rail,
  .download-grid,
  .global-grid,
  .partner-grid,
  .brand-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .app-stage {
    gap: 34px;
  }
}

@media (max-width: 640px) {
  .site-header {
    top: 10px;
    width: calc(100% - 20px);
    gap: 10px;
    padding: 10px;
  }

  .brand {
    flex: 1 1 auto;
    min-width: 0;
  }

  .hero {
    min-height: 86vh;
  }

  .hero-shade {
    background: rgba(10, 10, 10, 0.7);
  }

  .hero-content,
  .section,
  .proof-strip {
    width: calc(100% - 20px);
  }

  .hero h1 {
    font-size: 2.35rem;
    overflow-wrap: anywhere;
  }

  .hero-actions {
    width: 100%;
  }

  .hero-actions .button {
    width: 100%;
    min-height: 48px;
  }

  h2 {
    font-size: 1.72rem;
    overflow-wrap: anywhere;
  }

  h3 {
    font-size: 1.16rem;
    overflow-wrap: anywhere;
  }

  .proof-strip {
    grid-template-columns: 1fr;
    margin-top: 0;
    border-radius: 0 0 8px 8px;
  }

  .section {
    padding: 66px 0;
  }

  .role-tabs {
    grid-template-columns: 1fr;
  }

  .blueprint-grid,
  .flow-rail,
  .download-grid,
  .global-grid,
  .partner-grid,
  .brand-grid,
  .partner-contact,
  .language-demo,
  .production-handoff {
    grid-template-columns: 1fr;
  }

  .partner-actions {
    justify-content: stretch;
  }

  .partner-actions .button {
    width: 100%;
  }

  .install-note {
    align-items: flex-start;
    flex-direction: column;
  }

  .role-tab {
    min-height: 42px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .role-tab:last-child {
    border-bottom: 0;
  }

  .phone-shell {
    min-height: 620px;
    border-radius: 24px;
  }

  .dashboard-shell {
    grid-template-columns: 1fr;
  }

  .dashboard-shell aside {
    grid-template-columns: repeat(5, 1fr);
    align-items: center;
    overflow-x: auto;
  }

  .metric-grid,
  .status-board {
    grid-template-columns: 1fr;
  }

  .update-panel {
    padding: 28px;
  }
}

/* Simple landing page styles */
.hero-img { width: 100%; max-height: 400px; object-fit: cover; }
.hero-content { text-align: center; padding: 2rem; }
.hero-content h1 { font-size: 2.5rem; margin-bottom: 0.5rem; }
.tagline { font-size: 1.2rem; color: #666; margin-bottom: 1.5rem; }
.hero-actions { display: flex; gap: 1rem; justify-content: center; }
.btn { padding: 12px 24px; border-radius: 8px; text-decoration: none; font-weight: 600; }
.btn.primary { background: #f5b700; color: #000; }
.btn.secondary { background: #333; color: #fff; }
.trust-strip { display: flex; justify-content: space-around; padding: 2rem; background: #f8f8f8; }
.trust-strip div { text-align: center; }
.trust-strip strong { display: block; font-size: 1rem; }
.trust-strip span { font-size: 0.8rem; color: #666; }
.services, .how, .ai-support, .download { padding: 3rem 2rem; max-width: 1000px; margin: 0 auto; }
.services h2, .how h2, .ai-support h2, .download h2 { text-align: center; margin-bottom: 2rem; }
.service-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }
.service-card { background: #f8f8f8; padding: 1.5rem; border-radius: 12px; text-align: center; border: 2px solid #111820; }
.service-card .icon { font-size: 2rem; margin-bottom: 0.5rem; }
.steps { display: flex; justify-content: space-around; text-align: center; }
.step { padding: 1.5rem; border-radius: 12px; border: 2px solid #111820; }
.step span { display: inline-block; width: 40px; height: 40px; background: #f5b700; color: #000; border-radius: 50%; line-height: 40px; font-weight: 700; margin-bottom: 0.5rem; }
.ai-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 1rem; }
.ai-card { background: #f0f8ff; padding: 1.5rem; border-radius: 12px; text-align: center; border: 2px solid #111820; }
.download-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.download-card { background: #f8f8f8; padding: 1.5rem; border-radius: 12px; border: 2px solid #000; text-align: center; text-decoration: none; color: inherit; display: flex; flex-direction: column; align-items: center; min-height: 220px; }
.download-card:hover { background: #f0f0f0; }
.download-card .icon { font-size: 2.5rem; margin-bottom: 0.75rem; }
.download-card h3 { font-size: 1rem; margin: 0 0 0.5rem; }
.download-card p { font-size: 0.85rem; color: #555; margin: 0 0 auto; flex: 1; }
.install-btn { display: inline-block; margin-top: auto; padding: 10px 20px; background: #f5b700; color: #000; border-radius: 6px; font-weight: 600; font-size: 0.9rem; }
.cta { text-align: center; padding: 3rem; background: #f5b700; color: #000; }
.cta h2 { margin-bottom: 0.5rem; }
.cta .big { font-size: 1.1rem; padding: 16px 32px; }
footer { text-align: center; padding: 2rem; background: #111; color: #999; }
footer a { color: #f5b700; text-decoration: none; }
