/* Redline Couriers — site styles
   Monochrome, high-contrast, heavy type. Red is an accent only. */

:root {
  --red: #e10600;
  --red-dark: #b30500;
  --red-tint: #fff1f0;

  --black: #000000;
  --ink: #000000;
  --ink-2: #131313;
  --ink-3: #1f1f1f;
  --body: #3a3a3a;
  --muted: #6e6e6e;
  --line: #e4e4e4;
  --line-2: #cfcfcf;
  --bg: #ffffff;
  --bg-alt: #f6f6f6;
  --white: #ffffff;

  --wrap: 1180px;
  --radius: 8px;
  --radius-lg: 12px;
  --shadow: 0 1px 2px rgba(0, 0, 0, .05), 0 8px 28px rgba(0, 0, 0, .07);
  --shadow-lg: 0 24px 60px rgba(0, 0, 0, .16);

  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

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

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

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

h1, h2, h3 { color: var(--ink); line-height: 1.08; margin: 0 0 .5em; letter-spacing: -.035em; }
h1 { font-size: clamp(2.5rem, 6.4vw, 4.4rem); font-weight: 800; }
h2 { font-size: clamp(1.9rem, 4vw, 2.9rem); font-weight: 800; }
h3 { font-size: 1.2rem; font-weight: 700; letter-spacing: -.02em; }
p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }

a { color: var(--ink); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--red); }

img, svg { max-width: 100%; height: auto; }

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

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }
.wrap-narrow { max-width: 760px; }

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

.skip-link { position: absolute; left: -9999px; top: 0; z-index: 100;
  background: var(--white); color: var(--ink); padding: 12px 18px; font-weight: 700; }
.skip-link:focus { left: 12px; top: 12px; }

/* ---------- buttons ---------- */

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5em;
  font: inherit; font-size: 1rem; font-weight: 600; line-height: 1.2;
  padding: 15px 26px; border: 2px solid transparent; border-radius: var(--radius);
  cursor: pointer; text-decoration: none; white-space: nowrap;
  transition: background-color .15s ease, color .15s ease, border-color .15s ease, transform .1s ease;
}
.btn:active { transform: scale(.985); }

/* Primary is black, the way Uber does it. Red is saved for accents. */
.btn-primary { background: var(--black); color: var(--white); border-color: var(--black); }
.btn-primary:hover { background: #2b2b2b; border-color: #2b2b2b; color: var(--white); }

.btn-ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: var(--white); }

/* On dark panels the ghost button flips. */
.section-dark .btn-ghost, .cta .btn-ghost, .hero-dark .btn-ghost {
  color: var(--white); border-color: rgba(255,255,255,.5);
}
.section-dark .btn-ghost:hover, .cta .btn-ghost:hover, .hero-dark .btn-ghost:hover {
  background: var(--white); color: var(--ink); border-color: var(--white);
}

.btn-red { background: var(--red); color: var(--white); border-color: var(--red); }
.btn-red:hover { background: var(--red-dark); border-color: var(--red-dark); color: var(--white); }

.btn-sm { padding: 10px 18px; font-size: .94rem; }
.btn-block { width: 100%; }
.btn[disabled] { opacity: .55; cursor: progress; }

/* ---------- header ---------- */

.site-header {
  position: sticky; top: 0; z-index: 50;
  background: var(--black);
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.header-inner { display: flex; align-items: center; gap: 16px; min-height: 72px; }

.brand { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; margin-right: auto; }
.brand-mark { width: 32px; height: 32px; flex: none; }
.brand-text {
  font-size: 1.28rem; font-weight: 800; letter-spacing: -.04em; color: var(--white);
}
.brand-thin { font-weight: 400; color: rgba(255,255,255,.6); margin-left: .3em; }

.primary-nav ul { display: flex; align-items: center; gap: 2px; list-style: none; margin: 0; padding: 0; }
.primary-nav a {
  display: block; padding: 10px 14px; border-radius: var(--radius);
  color: rgba(255,255,255,.88); font-size: .96rem; font-weight: 500; text-decoration: none;
}
.primary-nav a:hover { color: var(--white); background: rgba(255,255,255,.12); }
.primary-nav .nav-phone { color: var(--white); font-weight: 600; }
.primary-nav .btn {
  background: var(--white); color: var(--black); border-color: var(--white); margin-left: 8px;
}
.primary-nav .btn:hover { background: var(--red); border-color: var(--red); color: var(--white); }

.nav-toggle {
  display: none; width: 44px; height: 40px; padding: 0;
  background: transparent; border: 1px solid rgba(255,255,255,.3); border-radius: var(--radius);
  cursor: pointer;
}
.nav-toggle-bars, .nav-toggle-bars::before, .nav-toggle-bars::after {
  display: block; width: 20px; height: 2px; background: var(--white);
  margin: 0 auto; position: relative; transition: transform .18s ease, opacity .18s ease;
}
.nav-toggle-bars::before, .nav-toggle-bars::after { content: ""; position: absolute; left: 0; }
.nav-toggle-bars::before { top: -6px; }
.nav-toggle-bars::after { top: 6px; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bars { background: transparent; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bars::before { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bars::after { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 900px) {
  .nav-toggle { display: block; }
  .primary-nav {
    position: absolute; left: 0; right: 0; top: 100%;
    background: var(--black); border-bottom: 1px solid rgba(255,255,255,.12);
    max-height: 0; overflow: hidden; transition: max-height .22s ease;
  }
  .primary-nav.is-open { max-height: 26rem; overflow-y: auto; }
  .primary-nav ul { flex-direction: column; align-items: stretch; gap: 2px; padding: 12px 24px 20px; }
  .primary-nav a { padding: 13px 12px; font-size: 1.04rem; }
  .primary-nav .btn { margin: 8px 0 0; justify-content: center; }
  .header-inner { position: relative; }
}

/* ---------- hero ---------- */

.hero { background: var(--white); padding: clamp(40px, 6vw, 76px) 0 clamp(48px, 7vw, 88px); }
.hero-inner {
  display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
.hero h1 { color: var(--ink); max-width: 15ch; }
.hero .lede { font-size: clamp(1.05rem, 1.5vw, 1.22rem); max-width: 46ch; color: var(--body); }

.eyebrow {
  display: inline-flex; align-items: center; gap: .6em;
  text-transform: uppercase; letter-spacing: .12em; font-size: .74rem; font-weight: 800;
  color: var(--red); margin: 0 0 1.1em;
}
.eyebrow::before {
  content: ""; width: 26px; height: 3px; background: var(--red); border-radius: 2px;
}
.hero .eyebrow { color: var(--red); }

.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 30px 0 28px; }

.hero-points { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.hero-points li { position: relative; padding-left: 30px; font-size: .98rem; color: var(--body); }
.hero-points li::before {
  content: ""; position: absolute; left: 0; top: .48em;
  width: 14px; height: 8px; border-left: 2.5px solid var(--red); border-bottom: 2.5px solid var(--red);
  transform: rotate(-45deg);
}

/* the booking-style panel */
.hero-card {
  background: var(--bg-alt); color: var(--body);
  border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: clamp(24px, 3vw, 32px);
}
.hero-card-title { font-size: 1.5rem; margin-bottom: .2em; letter-spacing: -.03em; }
.hero-card-sub { color: var(--muted); font-size: .94rem; margin-bottom: 20px; }
.mini-quote { display: grid; gap: 14px; }
.mini-note { font-size: .82rem; color: var(--muted); margin: 0; text-align: center; }

@media (max-width: 940px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero h1 { max-width: none; }
}

/* ---------- form fields ---------- */

.field { display: grid; gap: 7px; }
.field label { font-size: .88rem; font-weight: 600; color: var(--ink); }
.req { color: var(--red); }

input[type="text"], input[type="email"], input[type="tel"], input[type="password"],
select, textarea {
  font: inherit; font-size: 1rem; color: var(--ink);
  width: 100%; padding: 14px 15px;
  background: var(--white);
  border: 1px solid var(--line-2); border-radius: var(--radius);
  transition: border-color .15s ease, box-shadow .15s ease;
}
textarea { resize: vertical; min-height: 100px; }
input:hover, select:hover, textarea:hover { border-color: #9a9a9a; }
input:focus, select:focus, textarea:focus {
  outline: none; border-color: var(--black); box-shadow: 0 0 0 3px rgba(0,0,0,.12);
}
::placeholder { color: #9b9b9b; }
input[aria-invalid="true"], textarea[aria-invalid="true"] {
  border-color: var(--red); background: var(--red-tint);
}

.field-check { grid-template-columns: auto 1fr; align-items: start; gap: 11px; }
.field-check input { width: 18px; height: 18px; margin-top: 3px; accent-color: var(--black); }
.field-check label { font-weight: 400; font-size: .92rem; color: var(--body); }

.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* ---------- stat strip ---------- */

.strip { background: var(--black); color: var(--white); }
.strip-inner { display: grid; grid-template-columns: repeat(4, 1fr); gap: 4px; padding: 26px 24px; }
.strip-item { text-align: center; padding: 6px 8px; }
.strip-item strong {
  display: block; font-size: 1.5rem; font-weight: 800; color: var(--white); letter-spacing: -.03em;
}
.strip-item span { display: block; font-size: .82rem; color: rgba(255,255,255,.6); margin-top: 2px; }
@media (max-width: 660px) { .strip-inner { grid-template-columns: repeat(2, 1fr); row-gap: 20px; } }

/* ---------- sections ---------- */

.section { padding: clamp(56px, 8vw, 100px) 0; }
.section-alt { background: var(--bg-alt); }
.section-dark { background: var(--black); color: rgba(255,255,255,.76); }
.section-dark h2, .section-dark h3 { color: var(--white); }
.section-dark .section-sub { color: rgba(255,255,255,.62); }

.section-head { max-width: 60ch; margin-bottom: clamp(32px, 4vw, 52px); }
.section-sub { color: var(--muted); font-size: 1.06rem; }

.grid { display: grid; gap: 20px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 940px) { .grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .grid-3 { grid-template-columns: 1fr; } }

.card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 28px 26px; transition: border-color .15s ease, transform .15s ease, box-shadow .15s ease;
}
.card:hover { border-color: var(--ink); transform: translateY(-2px); box-shadow: var(--shadow); }
.card h3 { margin-bottom: .45em; }
.card p { color: var(--body); font-size: .97rem; margin: 0; }
.card-dark { background: var(--ink-2); border-color: rgba(255,255,255,.14); }
.card-dark:hover { border-color: var(--red); transform: translateY(-2px); box-shadow: none; }
.card-dark p { color: rgba(255,255,255,.7); }

/* fleet */
.fleet { margin-top: clamp(36px, 5vw, 56px); }
.fleet-title {
  font-size: .78rem; text-transform: uppercase; letter-spacing: .12em; color: var(--muted);
  font-weight: 800;
}
.fleet-list {
  list-style: none; margin: 0; padding: 22px 0 0;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
  border-top: 2px solid var(--ink);
}
.fleet-list li { display: grid; gap: 3px; }
.fleet-list strong { color: var(--ink); font-size: 1.02rem; }
.fleet-list span { font-size: .9rem; color: var(--muted); }
@media (max-width: 860px) { .fleet-list { grid-template-columns: repeat(2, 1fr); } }

/* coverage chips */
.chips { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 10px; }
.chips li {
  background: var(--white); border: 1px solid var(--line-2); border-radius: 999px;
  padding: 9px 18px; font-size: .93rem; font-weight: 500; color: var(--ink);
}
.coverage-note { margin-top: 26px; color: var(--muted); max-width: 68ch; }

/* steps */
.steps {
  list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px;
}
.steps li { position: relative; padding-top: 24px; border-top: 2px solid var(--line); }
.steps li:first-child { border-top-color: var(--red); }
.step-num {
  display: block; font-size: .78rem; font-weight: 800; letter-spacing: .12em;
  color: var(--red); margin-bottom: 10px;
}
.steps h3 { margin-bottom: .4em; }
.steps p { color: var(--body); font-size: .96rem; }
@media (max-width: 940px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 580px) { .steps { grid-template-columns: 1fr; gap: 22px; } }

/* ---------- quote ---------- */

.quote-wrap {
  display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(32px, 5vw, 64px);
  align-items: start;
}
.quote-contact { list-style: none; margin: 28px 0 0; padding: 0; display: grid; gap: 16px; }
.quote-contact li { display: grid; gap: 3px; font-size: 1rem; }
.quote-contact span {
  font-size: .72rem; text-transform: uppercase; letter-spacing: .12em;
  font-weight: 800; color: var(--muted);
}
.quote-contact a { font-weight: 700; }

.quote-form {
  display: grid; gap: 18px; position: relative;
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: clamp(24px, 3vw, 34px); box-shadow: var(--shadow);
}
.quote-form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 640px) { .quote-form .row { grid-template-columns: 1fr; } }
@media (max-width: 940px) { .quote-wrap { grid-template-columns: 1fr; } }

.form-status { margin: 0; font-size: .95rem; font-weight: 600; }
.form-status.is-error { color: var(--red-dark); }
.form-status.is-ok { color: #0a7a3d; }
.form-note { font-size: .9rem; color: var(--muted); margin: 0; }

.form-done { text-align: center; padding: 20px 0; }
.form-done h3 { font-size: 1.5rem; }
.form-done p { color: var(--body); }

/* ---------- faq ---------- */

.faq { display: grid; gap: 0; max-width: 860px; border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); padding: 0; }
.faq summary {
  cursor: pointer; padding: 22px 0; font-weight: 700; font-size: 1.06rem; color: var(--ink);
  list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 16px;
  letter-spacing: -.01em;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; flex: none; width: 11px; height: 11px;
  border-right: 2.5px solid var(--red); border-bottom: 2.5px solid var(--red);
  transform: rotate(45deg) translateY(-3px); transition: transform .18s ease;
}
.faq details[open] summary::after { transform: rotate(-135deg) translateY(-3px); }
.faq details p { padding: 0 0 22px; margin: 0; color: var(--body); font-size: .99rem; max-width: 70ch; }

/* ---------- cta ---------- */

.cta { background: var(--black); color: var(--white); padding: clamp(44px, 6vw, 72px) 0; }
.cta-inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 28px; }
.cta h2 { color: var(--white); margin-bottom: .25em; }
.cta p { color: rgba(255,255,255,.72); }
.cta-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.cta .btn-primary { background: var(--red); color: var(--white); border-color: var(--red); }
.cta .btn-primary:hover { background: var(--white); color: var(--black); border-color: var(--white); }

/* ---------- footer ---------- */

.site-footer { background: var(--black); color: rgba(255,255,255,.66); padding: clamp(48px, 6vw, 72px) 0 0; }
.footer-inner { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 36px; padding-bottom: 40px; }
.site-footer h2 {
  font-size: .74rem; text-transform: uppercase; letter-spacing: .14em;
  color: rgba(255,255,255,.45); margin-bottom: 1.4em; font-weight: 800;
}
.site-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; font-size: .95rem; }
.site-footer a { color: rgba(255,255,255,.8); text-decoration: none; }
.site-footer a:hover { color: var(--white); }
.footer-brand p { font-size: .95rem; max-width: 32ch; margin-top: 14px; }
.footer-brand .abn { color: rgba(255,255,255,.4); font-size: .85rem; }
.footer-base {
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px;
  border-top: 1px solid rgba(255,255,255,.12); padding-top: 22px; padding-bottom: 28px;
  font-size: .87rem; color: rgba(255,255,255,.45);
}
.footer-base p { margin: 0; }
@media (max-width: 780px) { .footer-inner { grid-template-columns: 1fr; gap: 30px; } }

/* ---------- simple pages ---------- */

.page { padding: clamp(48px, 7vw, 84px) 0; }
.page-body { max-width: 72ch; }
.page-body h2 { font-size: 1.4rem; margin-top: 2em; }
.page-body ul { padding-left: 1.2em; }
.page-body li { margin-bottom: .5em; }
.page-body .updated { color: var(--muted); font-size: .9rem; }

.error-page { text-align: center; padding: clamp(64px, 12vw, 150px) 0; }
.error-page .code {
  font-size: clamp(3.5rem, 13vw, 7rem); font-weight: 800; color: var(--red);
  line-height: 1; letter-spacing: -.05em;
}

/* Red on black is too dim to read; lift the accent on dark panels. */
.section-dark .eyebrow, .cta .eyebrow { color: #ff5a52; }
.section-dark .eyebrow::before, .cta .eyebrow::before { background: #ff5a52; }

/* ============ preview banner ============ */

.preview-bar {
  background: var(--red); color: var(--white);
  padding: 11px 24px; font-size: .9rem; line-height: 1.45; text-align: center;
}
.preview-bar b, .preview-bar strong { font-weight: 800; }

/* ============ fleet lede (added with the 700cc copy) ============ */

.fleet-lede { color: var(--body); max-width: 66ch; margin: 14px 0 0; font-size: .99rem; }
.fleet + .fleet, .fleet-lede + .fleet-list { margin-top: 22px; }

/* ============ login ============ */

.auth {
  display: grid; grid-template-columns: minmax(0, 460px) minmax(0, 1fr);
  gap: clamp(32px, 6vw, 80px); align-items: start;
  max-width: var(--wrap); margin: 0 auto; padding: clamp(40px, 6vw, 76px) 24px;
}
.auth-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: clamp(26px, 4vw, 40px); box-shadow: var(--shadow);
}
.auth-title { font-size: clamp(1.9rem, 3.4vw, 2.5rem); margin-bottom: .3em; }
.auth-sub { color: var(--muted); font-size: 1rem; margin-bottom: 26px; }
.auth-form { display: grid; gap: 18px; }
.auth-divider {
  display: flex; align-items: center; gap: 14px; margin: 26px 0 20px;
  color: var(--muted); font-size: .85rem;
}
.auth-divider::before, .auth-divider::after {
  content: ""; flex: 1; height: 1px; background: var(--line);
}
.auth-alt { display: grid; gap: 10px; }
.auth-foot { margin-top: 26px; font-size: .93rem; color: var(--muted); }

.auth-aside { padding-top: 12px; }
.auth-aside h2 { font-size: clamp(1.4rem, 2.4vw, 1.9rem); margin-bottom: 1em; }
.auth-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 20px; }
.auth-list li {
  display: grid; gap: 3px; padding-left: 22px; position: relative;
}
.auth-list li::before {
  content: ""; position: absolute; left: 0; top: .55em;
  width: 9px; height: 9px; background: var(--red); border-radius: 2px;
}
.auth-list strong { color: var(--ink); font-size: 1.03rem; }
.auth-list span { color: var(--muted); font-size: .95rem; }
.auth-aside-note { margin-top: 28px; font-weight: 700; }

@media (max-width: 900px) {
  .auth { grid-template-columns: 1fr; }
  .auth-aside { padding-top: 0; }
}

/* ============ notice bar ============ */

.notice-bar {
  background: var(--ink); color: rgba(255,255,255,.9);
  padding: 11px 24px; font-size: .9rem; line-height: 1.45; text-align: center;
}
.notice-bar a { color: var(--white); font-weight: 700; }
.notice-bar a:hover { color: #ff5a52; }
.notice-dot {
  display: inline-block; width: 8px; height: 8px; border-radius: 50%;
  background: var(--red); margin-right: 8px; vertical-align: middle;
  animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: .35; } }

/* ---- app hero ---- */

.app-hero {
  background: linear-gradient(180deg, var(--bg-alt) 0%, var(--white) 100%);
  padding: clamp(40px, 6vw, 76px) 0 clamp(48px, 7vw, 88px);
  overflow: hidden;
}
.app-hero-inner {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(32px, 5vw, 64px);
  align-items: center;
}
.app-hero h1 { max-width: 12ch; }
.app-hero .lede { font-size: clamp(1.05rem, 1.5vw, 1.2rem); max-width: 46ch; color: var(--body); }

.phone-stack { position: relative; display: flex; justify-content: center; padding: 20px 0; }
.phone-lead { position: relative; z-index: 2; }
.phone-back {
  position: absolute; left: 50%; top: 0; z-index: 1;
  transform: translateX(-88%) rotate(-7deg) scale(.9);
  transform-origin: bottom center; opacity: .96;
}
@media (max-width: 1080px) { .phone-back { display: none; } }
@media (max-width: 940px) {
  .app-hero-inner { grid-template-columns: 1fr; }
  .app-hero h1 { max-width: none; }
}

/* ---- alternating feature rows ---- */

.feat {
  display: grid; grid-template-columns: 1fr minmax(0, 300px); gap: clamp(28px, 5vw, 72px);
  align-items: center; padding: clamp(32px, 5vw, 56px) 0;
  border-top: 1px solid var(--line);
}
.feat:first-of-type { border-top: 0; padding-top: 0; }
.feat-flip .feat-copy { order: 2; }
.feat-flip .feat-phone { order: 1; }
.feat-copy { max-width: 52ch; }
.feat-num {
  display: block; font-size: .78rem; font-weight: 800; letter-spacing: .14em;
  color: var(--red); margin-bottom: 12px;
}
.feat-copy h3 { font-size: clamp(1.4rem, 2.6vw, 2rem); letter-spacing: -.03em; margin-bottom: .5em; }
.feat-copy p { color: var(--body); font-size: 1.02rem; }
.feat-phone { display: flex; justify-content: center; }
@media (max-width: 860px) {
  .feat, .feat-flip { grid-template-columns: 1fr; }
  .feat-flip .feat-copy, .feat-flip .feat-phone { order: 0; }
}

/* ---- home page app teaser ---- */

.app-teaser { background: var(--bg-alt); }
.app-teaser-inner {
  display: grid; grid-template-columns: 1.05fr minmax(0, 320px);
  gap: clamp(32px, 5vw, 72px); align-items: center;
}
.app-teaser-copy { max-width: 54ch; }
.app-teaser-copy .hero-points { margin: 24px 0 0; }
.app-teaser-phone { display: flex; justify-content: center; }
@media (max-width: 900px) { .app-teaser-inner { grid-template-columns: 1fr; } }

.opt { font-weight: 400; color: var(--muted); }

/* Feature-row phones are decorative; a shorter screen keeps the copy from
   floating in a tall column of whitespace. */
.feat .phone { width: 250px; }
.feat .phone-screen { min-height: 440px; }
.feat .ps-map { min-height: 210px; }
.feat .ps-map-tall { min-height: 300px; }

/* ============ iPhone render ============ */

.phone { width: 274px; max-width: 100%; perspective: 1400px; }
.phone-frame {
  position: relative;
  background: linear-gradient(150deg, #4a4a4e 0%, #1b1b1e 22%, #0a0a0c 50%, #2c2c30 78%, #101013 100%);
  border-radius: 46px; padding: 11px;
  box-shadow:
    0 0 0 1px rgba(255,255,255,.10) inset,
    0 34px 70px rgba(0,0,0,.30),
    0 10px 22px rgba(0,0,0,.20);
}
/* side buttons */
.phone-frame::before, .phone-frame::after {
  content: ""; position: absolute; width: 3px; border-radius: 3px;
  background: linear-gradient(180deg, #3a3a3e, #17171a);
}
.phone-frame::before { left: -3px; top: 118px; height: 34px;
  box-shadow: 0 -46px 0 #2b2b2f, 0 -84px 0 #2b2b2f; }
.phone-frame::after { right: -3px; top: 140px; height: 62px; }

.phone-screen {
  position: relative; background: var(--white); border-radius: 36px; overflow: hidden;
  min-height: 552px; display: flex; flex-direction: column;
}
/* dynamic island */
.phone-screen::before {
  content: ""; position: absolute; top: 9px; left: 50%; transform: translateX(-50%);
  width: 82px; height: 25px; background: #000; border-radius: 14px; z-index: 6;
}
.phone-glare {
  position: absolute; inset: 11px; border-radius: 36px; pointer-events: none; z-index: 7;
  background: linear-gradient(128deg, rgba(255,255,255,.16) 0%, rgba(255,255,255,.05) 26%,
              rgba(255,255,255,0) 46%);
}

/* status bar */
.ps-status {
  position: relative; z-index: 5; flex: none;
  display: flex; align-items: center; justify-content: space-between;
  padding: 13px 22px 4px; font-size: .74rem; font-weight: 700; color: var(--ink);
}
.ps-time { letter-spacing: -.01em; padding-left: 4px; }
.ps-sys { display: inline-flex; align-items: center; gap: 5px; }
.ps-ico { height: 10px; width: auto; fill: currentColor; color: var(--ink); }
.ps-status.on-dark, .ps-status.on-dark .ps-ico { color: #fff; }

.ps-home {
  flex: none; width: 116px; height: 5px; border-radius: 3px;
  background: rgba(0,0,0,.28); margin: 6px auto 8px; z-index: 5; position: relative;
}
.ps-home.on-dark { background: rgba(255,255,255,.5); }

/* ---- screen furniture ---- */

.ps-body { flex: 1; display: flex; flex-direction: column; min-height: 0; }
.ps-head {
  padding: 12px 18px 10px; font-size: 1.12rem; font-weight: 800;
  color: var(--ink); letter-spacing: -.025em;
}
.ps-head-row { display: flex; align-items: center; gap: 9px; font-size: .95rem; padding-top: 8px; }
.ps-label {
  padding: 10px 18px 6px; font-size: .64rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: .1em; color: var(--muted);
}
.ps-field {
  display: flex; align-items: center; gap: 10px;
  margin: 0 14px 8px; padding: 12px 13px; font-size: .84rem; color: var(--ink);
  background: var(--bg-alt); border-radius: 10px;
}
.ps-tier {
  display: flex; align-items: baseline; gap: 8px; flex-wrap: wrap;
  margin: 0 14px 7px; padding: 11px 13px; border-radius: 10px; border: 1px solid var(--line);
}
.ps-tier.is-on { border: 2px solid var(--ink); padding: 10px 12px; }
.ps-tier b { font-size: .85rem; color: var(--ink); }
.ps-tier i { font-style: normal; font-size: .74rem; color: var(--muted); }
.ps-tier em {
  font-style: normal; margin-left: auto; font-size: .6rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: .06em;
  background: var(--red); color: #fff; padding: 3px 7px; border-radius: 4px;
}
.ps-cta {
  margin: auto 14px 6px; padding: 13px; text-align: center;
  background: var(--ink); color: var(--white); border-radius: 12px;
  font-size: .86rem; font-weight: 700;
}
.ps-cta-red { background: var(--red); }

.ps-map { flex: 1; min-height: 210px; position: relative; }
.ps-map svg { display: block; width: 100%; height: 100%; }

.ps-sheet {
  background: var(--white); border-radius: 20px 20px 0 0; padding: 15px 16px 6px;
  margin-top: -20px; position: relative; z-index: 4;
  box-shadow: 0 -10px 26px rgba(0,0,0,.10);
}
.ps-grab {
  width: 34px; height: 4px; border-radius: 2px; background: var(--line-2);
  margin: -6px auto 12px;
}
.ps-eta { margin-bottom: 12px; }
.ps-eta strong { display: block; font-size: 1.02rem; color: var(--ink); letter-spacing: -.02em; }
.ps-eta span { font-size: .76rem; color: var(--muted); }

.ps-rider { display: flex; align-items: center; gap: 10px; margin-bottom: 11px; }
.ps-avatar {
  width: 34px; height: 34px; border-radius: 50%; flex: none;
  background: var(--ink); color: var(--white);
  display: grid; place-items: center; font-size: .7rem; font-weight: 800;
}
.ps-avatar-sm { width: 26px; height: 26px; font-size: .6rem; }
.ps-rider-meta { display: grid; gap: 1px; flex: 1; }
.ps-rider-meta b { font-size: .83rem; color: var(--ink); }
.ps-rider-meta i { font-style: normal; font-size: .7rem; color: var(--muted); }
.ps-chip {
  font-size: .68rem; font-weight: 700; color: var(--ink);
  background: var(--bg-alt); padding: 4px 8px; border-radius: 999px;
}
.ps-btns { display: flex; gap: 8px; }
.ps-btn { flex: 1; text-align: center; padding: 10px; border-radius: 10px; font-size: .78rem; font-weight: 700; }
.ps-btn-light { background: var(--bg-alt); color: var(--ink); }
.ps-btn-dark { background: var(--ink); color: var(--white); }
.ps-btn-red { background: var(--red); color: var(--white); }

.ps-track { display: grid; gap: 9px; padding-bottom: 4px; }
.ps-track span { position: relative; padding-left: 20px; font-size: .78rem; color: var(--muted); }
.ps-track span::before {
  content: ""; position: absolute; left: 0; top: .35em;
  width: 9px; height: 9px; border-radius: 50%; border: 2px solid var(--line-2);
}
.ps-track .is-done { color: var(--ink); }
.ps-track .is-done::before { background: var(--ink); border-color: var(--ink); }
.ps-track .is-now { color: var(--red); font-weight: 700; }
.ps-track .is-now::before { background: var(--red); border-color: var(--red); }

.ps-chat { flex: 1; display: grid; gap: 8px; padding: 10px 14px; align-content: start; background: var(--bg-alt); }
.ps-msg { max-width: 84%; padding: 9px 12px; border-radius: 14px; font-size: .76rem; line-height: 1.4; }
.ps-them { background: var(--white); border: 1px solid var(--line); border-bottom-left-radius: 5px; }
.ps-me { background: var(--ink); color: var(--white); justify-self: end; border-bottom-right-radius: 5px; }
.ps-dots { display: flex; gap: 4px; width: max-content; }
.ps-dots i { width: 6px; height: 6px; border-radius: 50%; background: var(--muted); animation: blink 1.3s infinite; }
.ps-dots i:nth-child(2) { animation-delay: .2s; }
.ps-dots i:nth-child(3) { animation-delay: .4s; }
@keyframes blink { 0%, 60%, 100% { opacity: .3; } 30% { opacity: 1; } }
.ps-chatbar {
  margin: 10px 14px 6px; padding: 11px 14px; border-radius: 999px;
  background: var(--bg-alt); color: var(--muted); font-size: .76rem;
}

/* ---- rider-app screens ---- */

.ps-dark { background: #0d0d0f; }
.ps-dark .ps-head, .ps-dark .ps-eta strong { color: #fff; }

.ps-offer { flex: 1; display: flex; flex-direction: column; background: #0d0d0f; padding-top: 6px; }
.ps-offer-top { text-align: center; padding: 10px 16px 4px; }
.ps-offer-top b {
  display: block; font-size: 2.1rem; font-weight: 800; color: #fff; letter-spacing: -.04em;
}
.ps-offer-top span { font-size: .74rem; color: rgba(255,255,255,.6); }
.ps-ring {
  width: 52px; height: 52px; margin: 8px auto 4px; border-radius: 50%;
  border: 3px solid rgba(255,255,255,.18); border-top-color: var(--red);
  display: grid; place-items: center; color: #fff; font-weight: 800; font-size: .85rem;
  animation: spin 3s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.ps-legs { margin: 10px 14px 0; display: grid; gap: 8px; }
.ps-leg {
  display: flex; gap: 10px; align-items: flex-start;
  background: rgba(255,255,255,.06); border-radius: 12px; padding: 11px 12px;
}
.ps-leg b { font-size: .8rem; color: #fff; display: block; }
.ps-leg i { font-style: normal; font-size: .7rem; color: rgba(255,255,255,.55); }
.ps-leg .dot { margin-top: 5px; }
.dot-pick { background: #fff; }
.dot-drop { background: var(--red); }
.ps-offer-btns { margin: auto 14px 6px; display: grid; gap: 8px; }

.ps-earn { flex: 1; padding: 6px 16px 0; }
.ps-earn-big {
  font-size: 2.3rem; font-weight: 800; color: var(--ink); letter-spacing: -.04em; line-height: 1.1;
}
.ps-earn-sub { font-size: .74rem; color: var(--muted); margin-bottom: 14px; }
.ps-bars { display: flex; align-items: flex-end; gap: 7px; height: 92px; margin-bottom: 6px; }
.ps-bars i { flex: 1; background: var(--line); border-radius: 4px 4px 0 0; }
.ps-bars i.on { background: var(--red); }
.ps-days { display: flex; gap: 7px; font-size: .58rem; color: var(--muted); margin-bottom: 14px; }
.ps-days span { flex: 1; text-align: center; }
.ps-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.ps-stat { background: var(--bg-alt); border-radius: 12px; padding: 11px 12px; }
.ps-stat b { display: block; font-size: 1.05rem; color: var(--ink); letter-spacing: -.02em; }
.ps-stat span { font-size: .66rem; color: var(--muted); }

.ps-nav-top {
  background: var(--red); color: #fff; padding: 12px 16px 14px; display: flex; gap: 12px; align-items: center;
}
.ps-nav-arrow { font-size: 1.6rem; line-height: 1; }
.ps-nav-top b { display: block; font-size: 1.05rem; letter-spacing: -.02em; }
.ps-nav-top span { font-size: .72rem; opacity: .85; }

/* ---- rider recruitment page ---- */

.drive-hero {
  background: linear-gradient(180deg, #0b0b0d 0%, #17171a 100%);
  color: rgba(255,255,255,.82);
  padding: clamp(40px, 6vw, 80px) 0 clamp(48px, 7vw, 92px);
  overflow: hidden;
}
.drive-hero h1 { color: var(--white); max-width: 14ch; }
.drive-hero .lede { font-size: clamp(1.05rem, 1.5vw, 1.2rem); max-width: 48ch; color: rgba(255,255,255,.76); }
.drive-hero .eyebrow { color: #ff5a52; }
.drive-hero .eyebrow::before { background: #ff5a52; }
.drive-hero .hero-points li { color: rgba(255,255,255,.8); }
.drive-hero .btn-ghost { color: var(--white); border-color: rgba(255,255,255,.5); }
.drive-hero .btn-ghost:hover { background: var(--white); color: var(--ink); border-color: var(--white); }
.drive-hero-inner {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(32px, 5vw, 64px);
  align-items: center;
}
.drive-hero-phones { position: relative; display: flex; justify-content: center; padding: 16px 0; }
.drive-hero-phones .phone-lead { position: relative; z-index: 2; }
.drive-hero-phones .phone-back {
  position: absolute; left: 50%; top: 10px; z-index: 1;
  transform: translateX(-86%) rotate(-7deg) scale(.9); transform-origin: bottom center;
}
@media (max-width: 1080px) { .drive-hero-phones .phone-back { display: none; } }
@media (max-width: 940px) {
  .drive-hero-inner { grid-template-columns: 1fr; }
  .drive-hero h1 { max-width: none; }
}

/* three app screenshots side by side */
.app-shots {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 3vw, 40px);
}
.app-shots figure { margin: 0; display: grid; justify-items: center; gap: 22px; }
.app-shots figcaption { text-align: center; max-width: 34ch; color: var(--body); font-size: .95rem; }
.app-shots figcaption strong {
  display: block; color: var(--ink); font-size: 1.08rem; font-weight: 700;
  letter-spacing: -.02em; margin-bottom: .35em;
}
.shots-note { margin-top: 32px; font-size: .84rem; color: var(--muted); text-align: center; }
@media (max-width: 900px) {
  .app-shots { grid-template-columns: 1fr; gap: 40px; }
}

/* requirements */
.req-list {
  list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 0 clamp(24px, 4vw, 56px);
}
.req-list li {
  display: grid; gap: 4px; padding: 20px 0 20px 34px;
  border-bottom: 1px solid var(--line); position: relative;
}
.req-list li::before {
  content: ""; position: absolute; left: 0; top: 25px;
  width: 15px; height: 9px; border-left: 3px solid var(--red); border-bottom: 3px solid var(--red);
  transform: rotate(-45deg);
}
.req-list strong { color: var(--ink); font-size: 1.05rem; }
.req-list span { color: var(--body); font-size: .95rem; }
@media (max-width: 780px) { .req-list { grid-template-columns: 1fr; } }

.section-dark .steps li { border-top-color: rgba(255,255,255,.18); }
.section-dark .steps li:first-child { border-top-color: var(--red); }
.section-dark .steps p { color: rgba(255,255,255,.7); }
.section-dark .step-num { color: #ff5a52; }

/* home page rider band */
.rider-band { background: var(--black); color: rgba(255,255,255,.75); padding: clamp(40px, 5vw, 64px) 0; }
.rider-band-inner {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 28px;
}
.rider-band h2 { color: var(--white); font-size: clamp(1.5rem, 3vw, 2.2rem); margin-bottom: .3em; }
.rider-band p { color: rgba(255,255,255,.7); max-width: 52ch; }
.rider-band .eyebrow { color: #ff5a52; }
.rider-band .eyebrow::before { background: #ff5a52; }
.rider-band .btn-ghost { color: var(--white); border-color: rgba(255,255,255,.5); }
.rider-band .btn-ghost:hover { background: var(--white); color: var(--ink); border-color: var(--white); }

/* A dark app screen needs dark device chrome behind the status bar and
   home indicator, or white bands frame the content. */
.phone-screen.is-dark { background: #0d0d0f; }
