/* =====================================================================
   Delivery Genius Holdings LLC — marketing site
   One stylesheet, no framework, no build step. Upload and it works.

   Light corporate: white ground, near-black text (not grey — grey body copy is the
   single most common way a light site ends up looking unfinished), one accent that
   carries the two verticals: cyan for ice, blue for water.
   ===================================================================== */

:root {
  --ink:        #0b1220;   /* body text — near-black, deliberately not #555 */
  --ink-2:      #37485f;   /* secondary text, still passes contrast on white */
  --ink-3:      #61748c;   /* captions and eyebrows only */
  --line:       #e3e9f0;
  --line-2:     #cfd9e5;
  --bg:         #ffffff;
  --bg-2:       #f6f9fc;
  --bg-3:       #eef4fa;
  --accent:     #0a6ed1;   /* water blue — links, buttons */
  --accent-ink: #085bb0;
  --ice:        #06a6c4;   /* ice cyan — the second vertical */
  --radius:     14px;
  --wrap:       1120px;
  --shadow:     0 1px 2px rgba(11,18,32,.06), 0 8px 24px -12px rgba(11,18,32,.18);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font: 16px/1.65 -apple-system, BlinkMacSystemFont, "Segoe UI", Inter, Roboto, "Helvetica Neue", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; height: auto; }

a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-ink); text-decoration: underline; }

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 22px; }

/* ── header ─────────────────────────────────────────────────────────── */

.site-head {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.head-in { display: flex; align-items: center; gap: 22px; height: 68px; }

.brand { display: inline-flex; align-items: center; gap: 10px; color: var(--ink); font-weight: 700; letter-spacing: -.01em; }
.brand:hover { text-decoration: none; color: var(--ink); }
.brand svg { width: 30px; height: 30px; flex: none; }
.brand b { font-size: 16.5px; font-weight: 750; }
.brand span { display: block; font-size: 10.5px; font-weight: 600; letter-spacing: .09em; text-transform: uppercase; color: var(--ink-3); margin-top: -3px; }

.nav { margin-left: auto; display: flex; align-items: center; gap: 4px; }
.nav a {
  color: var(--ink-2); font-size: 14.5px; font-weight: 600;
  padding: 9px 13px; border-radius: 9px;
}
.nav a:hover { background: var(--bg-3); color: var(--ink); text-decoration: none; }
.nav a.on { color: var(--accent); background: var(--bg-3); }
.nav .btn { margin-left: 8px; }
/* `.nav a` (0,1,1) outranks `.btn` (0,1,0), so the nav's Contact button was inheriting the dark nav
   link colour and rendering near-invisible on its own blue. State the button's colours here, where
   they win. */
.nav a.btn, .nav a.btn:hover { color: #fff; }
.nav a.btn:hover { background: var(--accent-ink); text-decoration: none; }

.nav-toggle {
  display: none; margin-left: auto; background: var(--bg-2); border: 1px solid var(--line-2);
  border-radius: 9px; padding: 8px 12px; font: inherit; font-size: 14px; font-weight: 650;
  color: var(--ink); cursor: pointer;
}

/* ── buttons ────────────────────────────────────────────────────────── */

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  background: var(--accent); color: #fff; border: 1px solid var(--accent);
  border-radius: 10px; padding: 11px 20px; font-size: 15px; font-weight: 650;
  cursor: pointer; transition: background .15s, transform .15s;
}
.btn:hover { background: var(--accent-ink); border-color: var(--accent-ink); color: #fff; text-decoration: none; }
.btn:active { transform: translateY(1px); }
.btn.ghost { background: #fff; color: var(--ink); border-color: var(--line-2); }
.btn.ghost:hover { background: var(--bg-2); color: var(--ink); border-color: var(--ink-3); }
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }

/* ── type ───────────────────────────────────────────────────────────── */

h1, h2, h3 { letter-spacing: -.022em; line-height: 1.16; margin: 0 0 14px; font-weight: 750; }
h1 { font-size: clamp(32px, 5.2vw, 52px); }
h2 { font-size: clamp(25px, 3.4vw, 34px); }
h3 { font-size: 18px; line-height: 1.35; }
p  { margin: 0 0 16px; }
.lede { font-size: clamp(17px, 2.1vw, 20px); line-height: 1.6; color: var(--ink-2); max-width: 62ch; }
.eyebrow {
  display: inline-block; font-size: 11.5px; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 14px;
}
.muted { color: var(--ink-2); }
.small { font-size: 14px; }

/* ── status note — the site says plainly where the company is ───────── */

.status {
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--bg-3); border: 1px solid var(--line-2);
  border-radius: 999px; padding: 7px 15px 7px 12px;
  font-size: 13.5px; font-weight: 600; color: var(--ink-2); margin-bottom: 26px;
}
.status .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--ice); flex: none;
  box-shadow: 0 0 0 3px rgba(6,166,196,.18); }

/* ── sections ───────────────────────────────────────────────────────── */

section { padding: 74px 0; }
section.tight { padding: 52px 0; }
section.alt { background: var(--bg-2); border-block: 1px solid var(--line); }

.hero { padding: 84px 0 70px; }
.hero .lede { margin-bottom: 0; }

.section-head { max-width: 64ch; margin-bottom: 40px; }

/* ── grids and cards ────────────────────────────────────────────────── */

.grid { display: grid; gap: 20px; }
.grid.two   { grid-template-columns: repeat(2, 1fr); }
.grid.three { grid-template-columns: repeat(3, 1fr); }
.grid.four  { grid-template-columns: repeat(4, 1fr); }

.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 24px 22px; box-shadow: var(--shadow);
}
.card h3 { margin-bottom: 8px; }
.card p:last-child { margin-bottom: 0; }
.card .ic {
  width: 38px; height: 38px; border-radius: 10px; display: grid; place-items: center;
  background: var(--bg-3); color: var(--accent); margin-bottom: 15px;
}
.card .ic svg { width: 20px; height: 20px; stroke: currentColor; fill: none; stroke-width: 1.8; }
.card.ice .ic { color: var(--ice); background: rgba(6,166,196,.1); }

/* a numbered step, for "how the day runs" */
.step { display: flex; gap: 16px; align-items: flex-start; }
.step .n {
  flex: none; width: 30px; height: 30px; border-radius: 50%; display: grid; place-items: center;
  background: var(--ink); color: #fff; font-size: 13.5px; font-weight: 700;
}
.step h3 { margin-bottom: 5px; }

/* feature rows: text beside a panel */
.split { display: grid; grid-template-columns: 1.05fr .95fr; gap: 54px; align-items: center; }
.split + .split { margin-top: 70px; }
.split.flip .split-text { order: 2; }

.panel {
  background: linear-gradient(180deg, #0d1724, #0a1220);
  border: 1px solid #1d2b3d; border-radius: var(--radius); padding: 20px;
  box-shadow: 0 18px 44px -22px rgba(11,18,32,.5);
  color: #cfe0f2; font: 12.5px/1.6 ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}
.panel .ph { display: flex; align-items: center; gap: 8px; color: #7f95ad; font-size: 11px;
  letter-spacing: .1em; text-transform: uppercase; margin-bottom: 14px; }
.panel .ph::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--ice); }
.panel .row { display: flex; justify-content: space-between; gap: 14px; padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,.07); }
.panel .row:last-child { border-bottom: 0; }
.panel .row b { color: #fff; font-weight: 600; }
.panel .row .v { color: var(--ice); font-variant-numeric: tabular-nums; }
.panel .row .v.warn { color: #ffc46b; }

/* plain list with ticks */
.ticks { list-style: none; margin: 0; padding: 0; }
.ticks li { position: relative; padding: 7px 0 7px 28px; color: var(--ink-2); }
.ticks li::before {
  content: ""; position: absolute; left: 4px; top: 15px; width: 11px; height: 6px;
  border-left: 2px solid var(--accent); border-bottom: 2px solid var(--accent);
  transform: rotate(-45deg);
}
.ticks strong { color: var(--ink); font-weight: 650; }

/* ── contact blocks ─────────────────────────────────────────────────── */

.contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.contact-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; }
.contact-card .k { font-size: 11.5px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-3); margin-bottom: 8px; }
.contact-card .v { font-size: 17px; font-weight: 650; color: var(--ink); }
.contact-card address { font-style: normal; font-size: 16px; line-height: 1.6; color: var(--ink); }

/* ── cta band ───────────────────────────────────────────────────────── */

.cta {
  background: linear-gradient(135deg, #0a1220, #102a44);
  color: #fff; border-radius: 18px; padding: 48px 44px; text-align: center;
}
.cta h2 { color: #fff; }
.cta p { color: #bdd2e6; max-width: 56ch; margin-inline: auto; }
.cta .btn { background: #fff; color: #0a1220; border-color: #fff; }
.cta .btn:hover { background: #e8f1fa; color: #0a1220; border-color: #e8f1fa; }
.cta .btn-row { justify-content: center; }

/* ── footer ─────────────────────────────────────────────────────────── */

.site-foot { border-top: 1px solid var(--line); background: var(--bg-2); padding: 46px 0 34px; margin-top: 10px; }
.foot-in { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 34px; }
.foot-in h4 { font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-3); margin: 0 0 12px; }
.foot-in a { color: var(--ink-2); font-size: 14.5px; display: block; padding: 4px 0; }
.foot-in a:hover { color: var(--accent); }
.foot-legal {
  border-top: 1px solid var(--line-2); margin-top: 34px; padding-top: 20px;
  display: flex; flex-wrap: wrap; gap: 10px 20px; justify-content: space-between;
  font-size: 13.5px; color: var(--ink-3);
}

/* ── responsive ─────────────────────────────────────────────────────── */

@media (max-width: 900px) {
  .grid.four  { grid-template-columns: repeat(2, 1fr); }
  .grid.three { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr; gap: 30px; }
  .split.flip .split-text { order: 0; }
  .contact-grid { grid-template-columns: 1fr; }
  .foot-in { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  /* Headline breaks are typeset for a wide screen; on a phone they land mid-thought. */
  br.lg { display: none; }
  .head-in { height: 60px; }
  .nav {
    display: none; position: absolute; left: 0; right: 0; top: 60px;
    flex-direction: column; align-items: stretch; gap: 2px;
    background: #fff; border-bottom: 1px solid var(--line); padding: 10px 16px 16px;
    box-shadow: var(--shadow);
  }
  .nav.open { display: flex; }
  .nav a { padding: 12px 12px; font-size: 15.5px; }
  .nav .btn { margin: 8px 0 0; }
  .nav-toggle { display: block; }
  section { padding: 54px 0; }
  .hero { padding: 54px 0 46px; }
  .grid.two, .grid.three, .grid.four { grid-template-columns: 1fr; }
  .cta { padding: 34px 22px; }
  .foot-in { grid-template-columns: 1fr; gap: 24px; }
}

/* ── unfilled details ────────────────────────────────────────────────
   Address, phone and email are not invented. They sit in the markup as visible
   tokens with a loud background, so a placeholder can never be mistaken for a
   real number by whoever uploads the site. Replacing them removes the styling
   with them — see README.md for the exact strings. */
.todo {
  background: #fff3cd; border: 1px dashed #d9a441; border-radius: 6px;
  padding: 1px 7px; color: #7a5300; font-weight: 650; font-size: .92em;
  white-space: nowrap;
}

/* ── leadership ──────────────────────────────────────────────────────
   Initials rather than a stock photograph: a placeholder face on an About page is
   worse than no face at all. Swap in a real portrait when there is one. */
.card.person { text-align: left; }
.card.person .avatar {
  width: 54px; height: 54px; border-radius: 50%; display: grid; place-items: center;
  background: linear-gradient(135deg, var(--accent), var(--ice));
  color: #fff; font-size: 18px; font-weight: 700; letter-spacing: .02em; margin-bottom: 16px;
}
.card.person h3 { margin-bottom: 2px; }
.card.person .role { color: var(--ink-2); font-weight: 600; font-size: 14.5px; margin: 0; }
.card.person .bio { color: var(--ink-2); font-size: 14.5px; margin: 10px 0 0; }
