/* Ronjac marketing site. Design tokens carried over from the previous build so
   the rebuild is visually continuous: ink #081023, accent #2575F0, Hanken Grotesk. */

/* ---------- fonts ---------- */
@font-face { font-family: 'Hanken Grotesk'; font-style: normal; font-weight: 400 800; font-display: swap;
  src: url("font-a6b899.woff2") format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; }
@font-face { font-family: 'Hanken Grotesk'; font-style: normal; font-weight: 400 800; font-display: swap;
  src: url("font-a3a091.woff2") format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; }

/* ---------- tokens ---------- */
:root {
  --ink: #081023;
  --ink-panel: #0a1326;
  --text: #101729;
  --muted: #5b6577;
  --muted-dark: #aeb9d4;
  --dim: #6b7691;
  --foot: #8b94a8;
  --accent: #2575F0;
  --accent-hover: #1a62da;
  --accent-soft: #7fb0ff;
  --bg: #f5f7fb;
  --line: #e6ebf4;
  --wrap: 1160px;
}

/* ---------- base ---------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0; background: var(--bg); color: var(--text);
  font-family: 'Hanken Grotesk', 'Helvetica Neue', Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}
/* height:auto is load-bearing — the width/height attributes on each <img> are
   there to reserve layout space, but without this they win over width:100% and
   the screenshots render vertically stretched. */
img { max-width: 100%; height: auto; }
a { color: inherit; }
.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 28px; }
/* the nav is sticky, so anchor targets must clear it or they land underneath */
[id] { scroll-margin-top: 86px; }
.eyebrow {
  margin: 0; font-size: 13px; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--accent);
}
.on-dark .eyebrow, .eyebrow.light { color: var(--accent-soft); }
h1, h2, h3 { letter-spacing: -0.02em; font-weight: 800; }
h1 { font-size: clamp(40px, 5.2vw, 66px); line-height: 1.04; letter-spacing: -0.03em; margin: 20px 0 0; }
h2 { font-size: clamp(30px, 3.6vw, 44px); line-height: 1.1; margin: 16px 0 0; }
h3 { font-size: 20px; line-height: 1.3; margin: 0 0 10px; }
p { line-height: 1.65; }
.lede { font-size: 18px; line-height: 1.6; color: var(--muted); }
.on-dark .lede { color: var(--muted-dark); }
section { padding: 100px 0; }

/* ---------- buttons ---------- */
.btn {
  display: inline-block; border-radius: 999px; text-decoration: none;
  font-weight: 700; font-size: 16px; padding: 15px 30px; border: none; cursor: pointer;
  transition: background .15s ease, border-color .15s ease, color .15s ease;
}
.btn-primary { background: var(--accent); color: #fff; box-shadow: 0 12px 28px -10px rgba(37,117,240,.7); }
.btn-primary:hover { background: var(--accent-hover); }
.btn-ghost { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,.28); }
.btn-ghost:hover { border-color: #fff; background: rgba(255,255,255,.06); }
.btn-sm { font-size: 14.5px; padding: 10px 22px; }

/* ---------- nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 50; background: rgba(8,16,35,.9);
  backdrop-filter: blur(12px); border-bottom: 1px solid rgba(255,255,255,.07);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 66px; }
.nav a.brand { display: flex; align-items: center; text-decoration: none; }
.nav a.brand img { height: 24px; display: block; }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a {
  color: var(--muted-dark); font-size: 15px; font-weight: 500; text-decoration: none;
}
.nav-links a:hover { color: #fff; }
.nav-links a.current { color: #fff; font-weight: 600; }
.nav-links a.login {
  color: #fff; font-weight: 600; border: 1px solid rgba(255,255,255,.28);
  padding: 9px 20px; border-radius: 999px;
}
.nav-links a.login:hover { border-color: #fff; background: rgba(255,255,255,.06); }
.nav-toggle { display: none; background: none; border: 0; color: #fff; font-size: 22px; cursor: pointer; padding: 6px; }

/* ---------- hero ---------- */
.hero { background: var(--ink); color: #fff; overflow: hidden; padding: 88px 0 0; }
/* Copy is centred because the product shot below runs the full width — a
   left-aligned column would leave the right half of the hero empty. */
.hero-copy { text-align: center; }
.hero h1 { color: #fff; max-width: 15ch; margin-left: auto; margin-right: auto; }
.hero .lede { max-width: 620px; margin: 26px auto 0; }
.hero-cta { margin-top: 36px; display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }
.trust {
  margin: 48px 0 0; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.1);
  font-size: 13.5px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--dim);
}
.hero-shot { margin-top: 72px; position: relative; }
.hero-shot::before {
  content: ''; position: absolute; left: 50%; top: -60px; transform: translateX(-50%);
  width: 680px; height: 380px; background: radial-gradient(circle, rgba(37,117,240,.38), transparent 65%);
  filter: blur(30px); pointer-events: none;
}

/* Browser chrome around a portal screenshot — signals "this is the web app". */
.browser {
  position: relative; border-radius: 14px 14px 0 0; overflow: hidden;
  border: 1px solid rgba(255,255,255,.14); border-bottom: none;
  box-shadow: 0 -30px 90px -40px rgba(37,117,240,.5);
  background: #1b2439;
}
.browser-bar { display: flex; align-items: center; gap: 7px; padding: 11px 14px; background: #1b2439; }
.browser-bar i { width: 11px; height: 11px; border-radius: 50%; background: #3a4560; display: block; }
.browser-bar span {
  margin-left: 12px; font-size: 12px; color: #8b94a8; font-style: normal;
  background: #131b2e; padding: 4px 14px; border-radius: 6px;
}
.browser img { display: block; width: 100%; }
.shot-plain { border-radius: 14px; overflow: hidden; border: 1px solid var(--line); background: #fff; }
.shot-plain img { display: block; width: 100%; }
.on-dark .shot-plain { border-color: rgba(255,255,255,.14); }

/* ---------- networks strip ---------- */
.networks { background: #fff; padding: 44px 0; border-bottom: 1px solid var(--line); }
.networks p { margin: 0 0 20px; text-align: center; font-size: 13px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--dim); }
.networks ul { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; justify-content: center; gap: 14px 40px; }
.networks li { font-size: 19px; font-weight: 700; color: #9aa5bb; letter-spacing: -.01em; }

/* ---------- generic section head ---------- */
.head { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: end; margin-bottom: 60px; }
.head h2 { margin: 0; }
.head p { margin: 0; font-size: 17px; color: var(--muted); }
.head-center { max-width: 640px; margin: 0 auto 60px; text-align: center; }
.head-center h2 { margin-top: 16px; }

/* ---------- problem cards ---------- */
.problems { background: #fff; }
.problem-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.problem { border-top: 2px solid var(--ink); padding-top: 20px; }
.problem h3 { font-size: 18px; margin-bottom: 8px; }
.problem p { margin: 0; font-size: 14.5px; color: var(--muted); }
.problem-note { margin: 44px 0 0; font-size: 19px; font-weight: 700; text-align: center; }

/* ---------- alternating feature rows ----------
   Copy one side, screenshot the other. The shot sits in a ~600px column, which
   is deliberate: it reads as the product without the fine detail in the tables
   being legible. */
.feature { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 56px; align-items: center; }
.feature + .feature { margin-top: 88px; }
.feature.flip .feature-copy { order: 2; }
.feature h2 { font-size: clamp(26px, 2.8vw, 34px); margin: 14px 0 0; }
.feature p.lede { font-size: 17px; margin: 16px 0 0; }
.feature ul { list-style: none; margin: 26px 0 0; padding: 0; display: flex; flex-direction: column; gap: 14px; }
.feature li { display: flex; gap: 11px; align-items: flex-start; font-size: 15px; line-height: 1.55; }
.feature li::before {
  content: '✓'; flex: 0 0 auto; width: 19px; height: 19px; margin-top: 2px; border-radius: 50%;
  background: rgba(37,117,240,.13); color: var(--accent); font-size: 11px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
}
.on-dark .feature li::before { background: rgba(127,176,255,.16); color: var(--accent-soft); }

/* ---------- feature grid (6 up) ---------- */
.grid-6 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 44px 36px; }
.grid-6 > div { border-top: 2px solid var(--ink); padding-top: 22px; }
.grid-6 .num { margin: 0; font-size: 13px; font-weight: 700; letter-spacing: .1em; color: var(--accent); }
.grid-6 h3 { margin: 12px 0 10px; }
.grid-6 p { margin: 0; font-size: 15px; color: var(--muted); }

/* ---------- dark sections ---------- */
.on-dark { background: var(--ink); color: #fff; }
.on-dark h2, .on-dark h3 { color: #fff; }
.on-dark .grid-6 > div { border-top-color: rgba(255,255,255,.25); }
.on-dark .grid-6 p, .on-dark .head p { color: var(--muted-dark); }

/* ---------- driver app ---------- */
.phones { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.phone-frame {
  background: var(--ink-panel); border: 1px solid rgba(255,255,255,.12);
  border-radius: 32px; padding: 9px; box-shadow: 0 30px 60px -30px rgba(0,0,0,.7);
}
.phone-frame img { display: block; width: 100%; border-radius: 24px; aspect-ratio: 1080/1920; object-fit: cover; object-position: top; }
.phones h3 { font-size: 17px; margin: 20px 0 8px; }
.phones p { margin: 0; font-size: 14.5px; color: var(--muted-dark); }

/* ---------- steps ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 36px; }
.step-n {
  width: 44px; height: 44px; border-radius: 12px; background: var(--ink); color: #fff;
  display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 18px; margin-bottom: 18px;
}
.steps h3 { font-size: 18px; }
.steps p { margin: 0; font-size: 14.5px; color: var(--muted); }

/* ---------- CTA ---------- */
.cta { background: radial-gradient(120% 140% at 80% 0%, #16295a, #081023 70%); color: #fff; text-align: center; }
.cta h2 { max-width: 680px; margin: 0 auto; color: #fff; font-size: clamp(30px, 3.8vw, 46px); }
.cta p { max-width: 560px; margin: 20px auto 36px; font-size: 17px; color: var(--muted-dark); }

/* ---------- footer ---------- */
footer {
  background: var(--ink); color: var(--foot);
  border-top: 1px solid rgba(255,255,255,.07); padding: 56px 0 42px;
}
.foot-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 32px; flex-wrap: wrap; }
.foot-top img { height: 22px; display: block; margin-bottom: 14px; }
.foot-top p { margin: 0; max-width: 320px; font-size: 14px; color: var(--muted-dark); }
footer nav { display: flex; gap: 28px; font-size: 14px; flex-wrap: wrap; }
footer nav a { color: var(--muted-dark); text-decoration: none; }
footer nav a:hover { color: #fff; }
.legal {
  margin: 36px 0 0; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.07);
  font-size: 12.5px; line-height: 1.7; color: var(--foot);
}
.legal a { color: var(--muted-dark); text-decoration: none; }

/* ---------- pricing ---------- */
.page-head { background: var(--ink); color: #fff; text-align: center; padding: 80px 28px 88px; }
.page-head h1 { max-width: 720px; margin: 18px auto 0; color: #fff; font-size: clamp(36px, 4.6vw, 56px); }
.page-head p { max-width: 560px; margin: 20px auto 0; font-size: 17px; color: var(--muted-dark); }
.price-cards {
  max-width: var(--wrap); margin: -48px auto 0; padding: 0 28px 100px;
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 24px; align-items: stretch;
}
.card-light {
  background: #fff; border: 1px solid var(--line); border-radius: 20px; padding: 40px 38px;
  box-shadow: 0 24px 60px -30px rgba(8,16,35,.35);
}
.card-dark {
  background: var(--ink); color: #fff; border: 1px solid rgba(255,255,255,.14); border-radius: 20px;
  padding: 40px 38px; display: flex; flex-direction: column; box-shadow: 0 24px 60px -30px rgba(8,16,35,.5);
}
.card-light h2, .card-dark h2 { font-size: 22px; margin: 0; }
.card-dark h2 { color: #fff; }
.incl { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 28px; margin-top: 26px; list-style: none; padding: 0; }
.incl li { display: flex; gap: 10px; align-items: flex-start; font-size: 14.5px; line-height: 1.5; }
.incl li::before {
  content: '✓'; flex: 0 0 auto; width: 18px; height: 18px; margin-top: 2px; border-radius: 50%;
  background: rgba(37,117,240,.14); color: var(--accent); font-size: 11px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
}
.factors { list-style: none; margin: 22px 0 0; padding: 0; display: flex; flex-direction: column; gap: 14px; flex: 1; }
.factors li { display: flex; gap: 12px; align-items: flex-start; font-size: 15px; line-height: 1.55; color: #dbe3f2; }
.factors li::before { content: ''; flex: 0 0 auto; width: 6px; height: 6px; margin-top: 8px; border-radius: 50%; background: var(--accent); }
.faq { background: #fff; padding: 90px 0; }
.faq .wrap { max-width: 820px; }
.faq h2 { margin: 0 0 40px; font-size: clamp(26px, 3vw, 36px); }
.faq-item { border-top: 1px solid var(--line); padding: 24px 0; }
.faq-item h3 { font-size: 17px; font-weight: 700; margin: 0 0 8px; }
.faq-item p { margin: 0; font-size: 15px; color: var(--muted); }

/* ---------- contact ---------- */
.contact-grid {
  display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 72px; align-items: start;
  padding: 80px 28px 100px; max-width: var(--wrap); margin: 0 auto;
}
.contact-meta { margin-top: 44px; padding-top: 28px; border-top: 1px solid rgba(255,255,255,.1); display: flex; flex-direction: column; gap: 18px; }
.contact-meta .label { margin: 0 0 4px; font-size: 12.5px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--dim); }
.contact-meta a { color: #fff; font-size: 16px; font-weight: 600; text-decoration: none; }
.contact-meta p { margin: 0; color: var(--muted-dark); font-size: 15px; }
.form-card { background: #fff; border-radius: 20px; padding: 38px; box-shadow: 0 30px 80px -30px rgba(0,0,0,.6); }
.field { display: flex; flex-direction: column; gap: 6px; }
.field label { font-size: 13.5px; font-weight: 700; color: #33405b; }
.field input, .field select, .field textarea {
  border: 1px solid #d7dfee; border-radius: 10px; padding: 12px 14px; font-size: 15px;
  outline: none; background: #f9fafd; color: var(--text); font-family: inherit; width: 100%;
}
.field textarea { resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--accent); background: #fff; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-stack { display: flex; flex-direction: column; gap: 18px; }
.form-note { margin: 0; font-size: 12.5px; color: var(--foot); text-align: center; }
.form-done { text-align: center; padding: 40px 10px; }
.form-done .tick {
  width: 56px; height: 56px; margin: 0 auto 20px; border-radius: 50%;
  background: rgba(37,117,240,.12); color: var(--accent);
  display: flex; align-items: center; justify-content: center; font-size: 26px; font-weight: 800;
}

/* ---------- responsive ---------- */
@media (max-width: 900px) {
  section { padding: 72px 0; }
  .nav-toggle { display: block; }
  .nav-links {
    display: none; position: absolute; top: 66px; left: 0; right: 0; flex-direction: column;
    align-items: stretch; gap: 0; background: var(--ink); border-bottom: 1px solid rgba(255,255,255,.1); padding: 8px 0;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 13px 28px; }
  .nav-links a.login, .nav-links a.btn { margin: 8px 28px; text-align: center; }
  .head, .problem-grid, .grid-6, .phones, .steps, .feature, .price-cards, .contact-grid, .incl, .form-row {
    grid-template-columns: 1fr;
  }
  .head { gap: 16px; margin-bottom: 44px; }
  .feature { gap: 28px; }
  .feature + .feature { margin-top: 64px; }
  .feature.flip .feature-copy { order: 0; }
  .price-cards { margin-top: 0; padding-top: 40px; }
  .contact-grid { gap: 40px; }
  .hero { padding-top: 60px; }
  .hero-shot { margin-top: 48px; }
  .problem-grid, .grid-6, .phones, .steps { gap: 32px; }
  /* These are wide admin tables. Squeezed to 334px they are unreadable, so let
     them keep a usable width and pan inside their own container instead. */
  .shot-plain { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .shot-plain img { min-width: 720px; }
}

/* ---------- homepage trio ---------- */
.trio { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.trio a {
  display: flex; flex-direction: column; background: #fff; border: 1px solid var(--line);
  border-radius: 18px; padding: 32px 30px 28px; text-decoration: none; color: inherit;
  transition: border-color .15s ease, transform .15s ease, box-shadow .15s ease;
}
.trio a:hover {
  border-color: #c9d7f2; transform: translateY(-3px);
  box-shadow: 0 20px 40px -26px rgba(8,16,35,.45);
}
.trio h3 { margin: 14px 0 10px; font-size: 21px; }
/* :not(.eyebrow) matters — otherwise the eyebrow paragraph also picks up the
   muted colour and flex:1, which pushes each card's heading to a different
   height depending on how long its body copy is. */
.trio p:not(.eyebrow) { margin: 0 0 22px; font-size: 15px; color: var(--muted); flex: 1; }
.trio .go { font-size: 14.5px; font-weight: 700; color: var(--accent); }
@media (max-width: 900px) { .trio { grid-template-columns: 1fr; } }

/* ---------- legal prose (privacy notice) ---------- */
.prose { max-width: 760px; margin: 0 auto; padding: 72px 28px 90px; }
.prose h2 { font-size: 22px; margin: 44px 0 12px; }
.prose h2:first-of-type { margin-top: 0; }
.prose h3 { font-size: 17px; margin: 26px 0 8px; }
.prose p, .prose li { font-size: 15.5px; line-height: 1.7; color: #33405b; }
.prose p { margin: 0 0 14px; }
.prose ul { margin: 0 0 16px; padding-left: 22px; }
.prose li { margin-bottom: 8px; }
.prose a { color: var(--accent); }
.prose .updated { font-size: 14px; color: var(--muted); margin-bottom: 8px; }
.prose table { border-collapse: collapse; width: 100%; margin: 0 0 18px; font-size: 14.5px; }
.prose th, .prose td {
  text-align: left; vertical-align: top; padding: 11px 14px;
  border: 1px solid var(--line); line-height: 1.55;
}
.prose th { background: #f5f7fb; font-weight: 700; }
.prose .callout {
  background: #fff; border: 1px solid var(--line); border-left: 3px solid var(--accent);
  border-radius: 10px; padding: 18px 22px; margin: 0 0 20px;
}
.prose .callout p:last-child { margin-bottom: 0; }
@media (max-width: 700px) {
  .prose { padding: 48px 24px 64px; }
  .prose table, .prose thead, .prose tbody, .prose tr, .prose th, .prose td { display: block; }
  .prose thead { display: none; }
  .prose tr { margin-bottom: 14px; border: 1px solid var(--line); border-radius: 10px; overflow: hidden; }
  .prose td { border: 0; border-bottom: 1px solid var(--line); }
  .prose td:last-child { border-bottom: 0; }
}
