/* ==========================================================================
   EV Platform — Landing Page Styles
   Design: Charge My EV (light theme) · Fonts: Archivo + IBM Plex Mono
   ========================================================================== */

:root {
    --ink: #101315;
    --ink-2: #2A3033;
    --muted: #5B6570;
    --muted-2: #77808A;
    --muted-3: #98A0A8;
    --green: #0FA45C;
    --green-dark: #0B7F47;
    --green-soft: #E8F6EE;
    --line: #E7E9E5;
    --line-2: #EFF1EE;
    --line-3: #DFE2DE;
    --soft-bg: #FAFBF9;
    --radius-sm: 10px;
    --radius: 14px;
    --radius-lg: 20px;
    --mono: 'IBM Plex Mono', ui-monospace, SFMono-Regular, Menlo, monospace;
    --shadow-card: 0 14px 32px -18px rgba(16,19,21,0.28);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    margin: 0;
    background: #ffffff;
    color: var(--ink);
    font-family: 'Archivo', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
    text-wrap: pretty;
    overflow-x: hidden;
    line-height: 1.5;
}

a { color: var(--green-dark); text-decoration: none; }
a:hover { color: var(--green); }

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

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Keyframes ---------------------------------------------------------------- */
@keyframes cme-pulse {
    0%   { box-shadow: 0 0 0 0 rgba(15,164,92,0.45); }
    70%  { box-shadow: 0 0 0 9px rgba(15,164,92,0); }
    100% { box-shadow: 0 0 0 0 rgba(15,164,92,0); }
}

/* Reveal animation --------------------------------------------------------- */
.reveal-init {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity .72s cubic-bezier(.16,.84,.24,1), transform .72s cubic-bezier(.16,.84,.24,1);
}
.reveal-init.is-visible { opacity: 1; transform: none; }

/* Buttons ------------------------------------------------------------------ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 12px;
    padding: 12px 20px;
    min-height: 44px;
    cursor: pointer;
    border: 1px solid transparent;
    transition: background 160ms ease, transform 160ms ease, border-color 160ms ease, color 160ms ease;
    white-space: nowrap;
}
.btn-lg { min-height: 52px; padding: 0 26px; font-size: 16px; }

.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { background: var(--green); color: #fff; transform: translateY(-1px); }

.btn-green { background: var(--green); color: #fff; box-shadow: 0 8px 22px -12px rgba(15,164,92,0.7); }
.btn-green:hover { background: var(--green-dark); color: #fff; transform: translateY(-1px); }

.btn-outline { background: #fff; color: var(--ink); border-color: var(--line-3); }
.btn-outline:hover { border-color: var(--ink); background: #F7F8F6; color: var(--ink); }

.btn-ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,0.28); }
.btn-ghost:hover { background: rgba(255,255,255,0.08); border-color: #fff; color: #fff; }

.link-plain { font-size: 14.5px; font-weight: 500; color: var(--ink); padding: 10px 4px; }
.link-plain:hover { color: var(--green); }

.pulse-dot {
    width: 9px; height: 9px; border-radius: 50%;
    background: var(--green); display: block; flex: none;
    animation: cme-pulse 2.4s ease-out infinite;
}
.dot { width: 10px; height: 10px; border-radius: 50%; display: block; flex: none; }
.dot-green { background: var(--green); }
.dot-grey { background: #6B7480; }

/* Header / Nav ------------------------------------------------------------- */
.site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 50;
    background: #ffffff;
    border-bottom: 1px solid transparent;
    transition: background 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}
.site-header.scrolled,
.site-header.menu-open {
    background: rgba(255,255,255,0.86);
    backdrop-filter: saturate(180%) blur(14px);
    -webkit-backdrop-filter: saturate(180%) blur(14px);
    border-bottom: 1px solid var(--line);
}
.site-header.scrolled { box-shadow: 0 10px 30px -24px rgba(16,19,21,0.5); }

.header-inner {
    height: 74px;
    display: flex;
    align-items: center;
    gap: 32px;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 11px;
    color: var(--ink);
    flex: none;
}
.brand:hover { color: var(--ink); }
.brand-logo-img { width: 34px; height: 34px; object-fit: contain; border-radius: 9px; }
.brand-name { font-size: 17px; font-weight: 700; letter-spacing: -0.025em; }
.brand-name.on-dark { color: #fff; }

.nav-links {
    display: flex;
    align-items: center;
    gap: 26px;
    flex: 1;
}
.nav-link {
    font-size: 14.5px;
    font-weight: 500;
    color: var(--muted);
    padding: 6px 0;
    white-space: nowrap;
}
.nav-link:hover { color: var(--ink); }
.nav-link.is-active { color: var(--ink); }

.nav-actions {
    display: flex;
    align-items: center;
    gap: 18px;
    flex: none;
}

.nav-burger {
    display: none;
    margin-left: auto;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    gap: 4.5px;
    width: 44px; height: 44px;
    border: 1px solid var(--line);
    border-radius: 11px;
    background: #fff;
    cursor: pointer;
    padding: 0 12px;
}
.nav-burger span {
    height: 1.5px; background: var(--ink); display: block;
}
.nav-burger span:nth-child(1) { width: 18px; }
.nav-burger span:nth-child(2) { width: 18px; }
.nav-burger span:nth-child(3) { width: 13px; }

.mobile-menu {
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transition: max-height 320ms cubic-bezier(.22,.61,.36,1), opacity 220ms ease;
    background: rgba(255,255,255,0.96);
    backdrop-filter: saturate(180%) blur(14px);
    -webkit-backdrop-filter: saturate(180%) blur(14px);
    border-top: 1px solid transparent;
}
.mobile-menu.open {
    max-height: 520px;
    opacity: 1;
    border-top: 1px solid var(--line-2);
}
.mobile-menu a {
    display: block;
    padding: 14px 24px;
    font-size: 16px;
    font-weight: 600;
    color: var(--ink);
    border-bottom: 1px solid var(--line-2);
}
.mobile-menu-actions {
    display: flex;
    gap: 10px;
    padding: 16px 24px 22px;
}
.mobile-menu-actions .btn { flex: 1; }

/* Sections ----------------------------------------------------------------- */
.section { padding: clamp(56px, 7vw, 96px) 0; }
.section-tight { padding: clamp(48px, 6vw, 80px) 0; }
.section-soft { background: var(--soft-bg); border-top: 1px solid var(--line-2); }
.section-dark { background: var(--ink); color: #fff; }

.eyebrow {
    font-family: var(--mono);
    font-size: 11.5px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--green-dark);
}
.eyebrow-light { color: #5ECB92; }

.section-head { max-width: 620px; }
.section-title {
    margin: 14px 0 0;
    font-size: clamp(30px, 3.6vw, 44px);
    line-height: 1.08;
    letter-spacing: -0.03em;
    font-weight: 700;
}
.section-title.on-dark { color: #fff; }
.section-subtitle {
    margin: 16px 0 0;
    font-size: 17px;
    line-height: 1.6;
    color: var(--muted);
    max-width: 52ch;
}
.section-subtitle.on-dark-muted { color: #A8B0B6; }

.section-head-split {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
}
.section-note {
    margin: 0;
    font-size: 15.5px;
    line-height: 1.6;
    color: var(--muted);
    max-width: 34ch;
}

/* Hero --------------------------------------------------------------------- */
.hero { padding: calc(74px + clamp(36px, 5vw, 72px)) 0 clamp(24px, 3vw, 40px); }
.hero-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: clamp(32px, 4vw, 64px);
    align-items: center;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 7px 13px 7px 10px;
    border: 1px solid var(--line-3);
    border-radius: 999px;
    margin-bottom: 26px;
}
.badge-dot {
    width: 7px; height: 7px; border-radius: 50%;
    background: var(--green); display: block;
    animation: cme-pulse 2.4s ease-out infinite;
}
.badge-text {
    font-family: var(--mono);
    font-size: 11.5px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #3C444A;
}

.hero-title {
    margin: 0;
    font-size: clamp(38px, 5.2vw, 66px);
    line-height: 1.03;
    letter-spacing: -0.035em;
    font-weight: 700;
}
.hero-lead {
    margin: 22px 0 0;
    font-size: clamp(17px, 1.5vw, 20px);
    line-height: 1.5;
    color: var(--ink-2);
    max-width: 38ch;
    font-weight: 500;
}
.hero-desc {
    margin: 14px 0 0;
    font-size: 16px;
    line-height: 1.62;
    color: var(--muted);
    max-width: 50ch;
}
.hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 34px;
}
.hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 26px;
    margin-top: 38px;
    padding-top: 26px;
    border-top: 1px solid var(--line-2);
}
.stat-value { font-size: 22px; font-weight: 700; letter-spacing: -0.02em; }
.stat-label {
    font-family: var(--mono);
    font-size: 11.5px;
    color: var(--muted-2);
    letter-spacing: 0.04em;
    margin-top: 3px;
    text-transform: uppercase;
}

/* Hero visual -------------------------------------------------------------- */
.hero-visual { position: relative; min-width: 0; }
.hero-image {
    position: relative;
    width: 100%;
    aspect-ratio: 4/5;
    max-height: 620px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: linear-gradient(150deg, #F2F4F1 0%, #E4EFE8 100%);
    border: 1px solid var(--line);
    display: flex;
    align-items: center;
    justify-content: center;
}
.ico-bolt {
    width: 74px; height: 74px;
    display: block;
    background: var(--green);
    opacity: 0.28;
    -webkit-mask: no-repeat center / contain;
    mask: no-repeat center / contain;
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M13 2 3 14h7l-1 8 10-12h-7z'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M13 2 3 14h7l-1 8 10-12h-7z'/%3E%3C/svg%3E");
}

.float-card {
    position: absolute;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 13px;
    padding: 12px 15px;
    box-shadow: var(--shadow-card);
}
.float-card-top {
    top: 22px; left: -14px;
    display: flex; align-items: center; gap: 11px;
}
.float-card-title { font-size: 13.5px; font-weight: 600; letter-spacing: -0.01em; }
.float-card-sub { font-family: var(--mono); font-size: 11px; color: var(--muted-2); margin-top: 2px; }
.float-card-dark {
    bottom: 26px; right: -10px;
    background: var(--ink);
    color: #fff;
    box-shadow: 0 16px 34px -18px rgba(16,19,21,0.5);
}
.float-card-eyebrow { font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.08em; color: #8A949B; text-transform: uppercase; }
.float-card-power { display: flex; align-items: baseline; gap: 6px; margin-top: 5px; }
.float-card-power span { font-size: 24px; font-weight: 700; letter-spacing: -0.02em; }
.float-card-power small { font-size: 13px; color: #B9C0C4; font-weight: 500; }

/* Quad grid (features / steps / stats) ------------------------------------- */
.quad-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

/* Feature card grid */
.card-grid {
    margin-top: 44px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;
    overflow: hidden;
}
.feature-cell {
    background: #fff;
    padding: 30px 26px 32px;
    box-shadow: 1px 0 0 var(--line), 0 1px 0 var(--line);
    transition: background 180ms ease;
}
.feature-cell:hover { background: #F4F7F4; }
.feature-cell h3 { margin: 20px 0 0; font-size: 18px; font-weight: 600; letter-spacing: -0.015em; }
.feature-cell p { margin: 9px 0 0; font-size: 14.5px; line-height: 1.6; color: var(--muted); }

.feature-ico {
    width: 38px; height: 38px;
    border-radius: 10px;
    background: var(--green-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2.5px;
}
.ico-pin { width: 11px; height: 11px; border-radius: 50% 50% 50% 0; background: var(--green); transform: rotate(-45deg); display: block; }
.ico-ring { width: 12px; height: 12px; border-radius: 50%; border: 3px solid var(--green); display: block; }
.ico-bars { display: inline-flex; align-items: flex-end; gap: 2.5px; }
.ico-bars i { width: 3px; background: var(--green); display: block; }
.ico-bars i:nth-child(1) { height: 8px; }
.ico-bars i:nth-child(2) { height: 13px; }
.ico-bars i:nth-child(3) { height: 10px; }
.ico-card { width: 14px; height: 10px; border-radius: 2px; border: 2px solid var(--green); display: block; }

/* Steps grid */
.steps-grid { margin-top: 48px; gap: 0 26px; }
.step-cell {
    padding: 26px 0 30px;
    border-top: 2px solid var(--line);
}
.step-cell.is-active { border-top-color: var(--ink); }
.step-num { font-family: var(--mono); font-size: 12px; color: var(--muted-3); letter-spacing: 0.08em; }
.step-cell.is-active .step-num { color: var(--green); }
.step-cell h3 { margin: 14px 0 0; font-size: 19px; font-weight: 600; letter-spacing: -0.015em; }
.step-cell p { margin: 9px 0 0; font-size: 14.5px; line-height: 1.6; color: var(--muted); max-width: 30ch; }

/* Stats grid */
.stats-grid {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;
    overflow: hidden;
}
.stat-cell {
    background: #fff;
    padding: 30px 26px;
    box-shadow: 1px 0 0 var(--line), 0 1px 0 var(--line);
}
.stat-cell-value { font-size: clamp(30px, 3vw, 38px); font-weight: 700; letter-spacing: -0.03em; }
.stat-cell-value.green { color: var(--green-dark); }
.stat-cell-label { font-family: var(--mono); font-size: 11.5px; color: var(--muted-2); letter-spacing: 0.05em; margin-top: 8px; text-transform: uppercase; }

/* Find a charger (dark) ---------------------------------------------------- */
.find-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: clamp(28px, 4vw, 56px);
    align-items: center;
}
.station-list {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.station {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 18px;
    border-radius: 14px;
    background: #191D20;
    border: 1px solid #272C30;
    transition: border-color 180ms ease, transform 180ms ease;
}
.station.is-available:hover { border-color: var(--green); transform: translateY(-1px); }
.station.is-busy { background: #141719; border-color: #222629; }
.station-main { flex: 1; min-width: 0; }
.station-name { font-size: 15.5px; font-weight: 600; letter-spacing: -0.01em; }
.station-name.muted { color: #C6CCD0; }
.station-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 7px; }
.tag {
    font-family: var(--mono);
    font-size: 10.5px;
    letter-spacing: 0.05em;
    color: #A8B0B6;
    border: 1px solid #2E3438;
    border-radius: 5px;
    padding: 3px 7px;
    text-transform: uppercase;
}
.tag-green { color: var(--green); border-color: rgba(15,164,92,0.4); }
.station-dist { font-family: var(--mono); font-size: 12.5px; color: #C6CCD0; flex: none; }
.station-dist.muted { color: #8A949B; }
.find-cta { margin-top: 28px; }

/* Map visual */
.map-visual {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid #272C30;
    background: #15181A;
    aspect-ratio: 1/1;
    max-height: 560px;
    min-width: 0;
}
.map-grid-lines {
    position: absolute; inset: 0;
    background-image:
        linear-gradient(#1E2225 1px, transparent 1px),
        linear-gradient(90deg, #1E2225 1px, transparent 1px);
    background-size: 44px 44px;
}
.map-road { position: absolute; background: #22272A; }
.map-road-h { left: 0; right: 0; height: 12px; }
.map-road-v { top: 0; bottom: 0; width: 12px; }
.map-block { position: absolute; border-radius: 8px; background: #191D20; border: 1px solid #23282B; }
.map-pin {
    position: absolute;
    width: 14px; height: 14px;
    border-radius: 50%;
    background: var(--green);
    border: 3px solid var(--ink);
}
.map-pin-active { width: 16px; height: 16px; animation: cme-pulse 2.6s ease-out infinite; }
.map-pin-idle { width: 12px; height: 12px; background: #6B7480; }
.map-tooltip {
    position: absolute;
    background: #fff;
    color: var(--ink);
    border-radius: 10px;
    padding: 9px 12px;
    box-shadow: 0 12px 26px -14px rgba(0,0,0,0.6);
}
.map-tooltip-title { font-size: 12.5px; font-weight: 600; letter-spacing: -0.01em; }
.map-tooltip-sub { font-family: var(--mono); font-size: 10.5px; color: var(--green-dark); margin-top: 2px; }
.map-footer {
    position: absolute;
    left: 16px; right: 16px; bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 14px;
    border-radius: 12px;
    background: rgba(16,19,21,0.82);
    border: 1px solid #272C30;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    font-family: var(--mono);
    font-size: 10.5px;
    letter-spacing: 0.06em;
    color: #8A949B;
    text-transform: uppercase;
}
.map-footer-count { color: var(--green); }

/* For businesses ----------------------------------------------------------- */
.business-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: clamp(28px, 4vw, 60px);
    align-items: center;
}
.business-visual { position: relative; min-width: 0; order: 2; }
.business-image {
    width: 100%;
    aspect-ratio: 5/4;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: linear-gradient(150deg, #F2F4F1 0%, #E4EFE8 100%);
    border: 1px solid var(--line);
    display: flex;
    align-items: center;
    justify-content: center;
}
.business-stats {
    position: absolute;
    bottom: -18px; left: 22px; right: 22px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 15px 18px;
    box-shadow: 0 18px 40px -22px rgba(16,19,21,0.3);
    display: flex;
    flex-wrap: wrap;
    gap: 22px;
}
.business-stats .stat-value { font-size: 19px; }
.business-stats .stat-label { font-size: 10.5px; }
.business-copy { order: 1; }
.segment-list {
    display: flex;
    flex-direction: column;
    margin-top: 30px;
    border-top: 1px solid var(--line-2);
}
.segment {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 15px 4px;
    border-bottom: 1px solid var(--line-2);
    font-size: 15.5px;
    font-weight: 600;
    letter-spacing: -0.01em;
}
.segment .diamond { width: 6px; height: 6px; background: var(--green); transform: rotate(45deg); flex: none; display: block; }
.business-copy .btn { margin-top: 30px; }

/* Console / management platform ------------------------------------------- */
.console {
    margin-top: 44px;
    border: 1px solid #E4E7E3;
    border-radius: 18px;
    background: #fff;
    overflow: hidden;
    box-shadow: 0 30px 60px -40px rgba(16,19,21,0.28);
}
.console-bar {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 18px;
    border-bottom: 1px solid var(--line-2);
    background: #FCFDFC;
}
.console-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--line-3); display: block; }
.console-title { font-family: var(--mono); font-size: 11px; color: var(--muted-2); margin-left: 10px; letter-spacing: 0.04em; text-transform: uppercase; }
.console-live { margin-left: auto; display: flex; align-items: center; gap: 7px; font-family: var(--mono); font-size: 11px; color: var(--green-dark); text-transform: uppercase; }
.console-live .pulse-dot { width: 7px; height: 7px; }
.console-body {
    padding: 22px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 18px;
}
.console-col { display: flex; flex-direction: column; gap: 14px; min-width: 0; }
.kpi-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 12px;
}
.kpi { border: 1px solid #EAEDE9; border-radius: 12px; padding: 14px; }
.kpi-green { background: #F3FAF6; border-color: #CFE9DB; }
.kpi-label { font-family: var(--mono); font-size: 10.5px; color: var(--muted-2); letter-spacing: 0.05em; text-transform: uppercase; }
.kpi-green .kpi-label { color: var(--green-dark); }
.kpi-value { font-size: 24px; font-weight: 700; letter-spacing: -0.02em; margin-top: 6px; }
.kpi-value.sm { font-size: 20px; }
.kpi-green .kpi-value { color: var(--green-dark); }

.panel { border: 1px solid #EAEDE9; border-radius: 12px; padding: 16px 16px 12px; }
.panel-head { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; }
.panel-eyebrow { font-family: var(--mono); font-size: 10.5px; color: var(--muted-2); letter-spacing: 0.05em; text-transform: uppercase; }
.panel-value { font-size: 22px; font-weight: 700; letter-spacing: -0.02em; margin-top: 5px; }
.panel-delta { font-family: var(--mono); font-size: 11px; color: var(--green-dark); }
.bars { display: flex; align-items: flex-end; gap: 6px; height: 74px; margin-top: 14px; }
.bars span { flex: 1; background: #E7EBE7; border-radius: 3px; }
.bars .bar-hi { background: var(--green); }
.bars .bar-mid { background: #B7E3CB; }

.log-panel { padding: 0; overflow: hidden; }
.panel-head-flat {
    display: flex; align-items: center; justify-content: space-between;
    padding: 11px 14px; border-bottom: 1px solid var(--line-2);
}
.panel-code { font-family: var(--mono); font-size: 10.5px; color: var(--muted-3); }
.log { font-family: var(--mono); font-size: 11.5px; color: #3C444A; padding: 10px 14px; display: flex; flex-direction: column; gap: 7px; }
.log > div { display: flex; gap: 10px; }
.log-time { color: var(--muted-3); }
.log-time.on { color: var(--green-dark); }

.platform-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 28px;
    margin-top: 44px;
}
.platform-features h3 { margin: 0; font-size: 16.5px; font-weight: 600; letter-spacing: -0.015em; }
.platform-features p { margin: 8px 0 0; font-size: 14.5px; line-height: 1.6; color: var(--muted); }

/* Mobile app --------------------------------------------------------------- */
.app-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: clamp(28px, 4vw, 56px);
    align-items: center;
}
.app-buttons { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.store-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 56px;
    padding: 0 22px;
    border-radius: 12px;
    transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}
.store-btn-dark { background: var(--ink); color: #fff; }
.store-btn-dark:hover { background: var(--green); color: #fff; transform: translateY(-1px); }
.store-btn-light { border: 1px solid var(--line-3); background: #fff; color: var(--ink); }
.store-btn-light:hover { border-color: var(--ink); color: var(--ink); transform: translateY(-1px); }
.store-ico { width: 20px; height: 20px; border-radius: 5px; background: #fff; opacity: 0.9; display: block; flex: none; }
.store-ico.green { background: var(--green); opacity: 1; }
.store-btn span:last-child { display: flex; flex-direction: column; line-height: 1.15; }
.store-btn small { font-family: var(--mono); font-size: 9.5px; letter-spacing: 0.09em; opacity: 0.7; text-transform: uppercase; }
.store-btn-light small { color: var(--muted-2); opacity: 1; }
.store-btn strong { font-size: 15px; font-weight: 600; }
.app-note { font-family: var(--mono); font-size: 11px; color: var(--muted-3); margin-top: 14px; letter-spacing: 0.03em; text-transform: uppercase; }

/* Phone mock */
.phone-wrap { display: flex; justify-content: center; min-width: 0; }
.phone {
    width: min(300px, 84vw);
    aspect-ratio: 9/19;
    border-radius: 40px;
    background: var(--ink);
    padding: 11px;
    box-shadow: 0 40px 70px -40px rgba(16,19,21,0.55);
    flex: none;
}
.phone-screen {
    width: 100%; height: 100%;
    border-radius: 31px;
    background: #fff;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.phone-status {
    display: flex; align-items: center; justify-content: space-between;
    padding: 13px 18px 6px;
    font-family: var(--mono); font-size: 10.5px; color: var(--muted-2);
}
.phone-content { padding: 8px 16px 0; }
.phone-heading { font-size: 16px; font-weight: 700; letter-spacing: -0.02em; }
.phone-session {
    display: flex; align-items: center; gap: 14px;
    margin-top: 14px; padding: 14px;
    border-radius: 14px; border: 1px solid #EAEDE9;
}
.ring-gauge {
    width: 62px; height: 62px; border-radius: 50%;
    background: conic-gradient(var(--green) 0turn 0.68turn, #EDF0EC 0.68turn 1turn);
    display: flex; align-items: center; justify-content: center; flex: none;
}
.ring-inner {
    width: 46px; height: 46px; border-radius: 50%;
    background: #fff;
    display: flex; align-items: center; justify-content: center;
    font-size: 14px; font-weight: 700; letter-spacing: -0.02em;
}
.phone-session-name { font-size: 13.5px; font-weight: 600; letter-spacing: -0.01em; }
.phone-session-sub { font-family: var(--mono); font-size: 10.5px; color: var(--muted-2); margin-top: 4px; }
.phone-session-sub.on { color: var(--green-dark); }
.phone-eyebrow { font-family: var(--mono); font-size: 10px; letter-spacing: 0.08em; color: var(--muted-3); margin-top: 18px; text-transform: uppercase; }
.phone-list { display: flex; flex-direction: column; gap: 8px; margin-top: 10px; }
.phone-row {
    display: flex; align-items: center; gap: 10px;
    padding: 11px 12px; border-radius: 12px; border: 1px solid #EAEDE9;
}
.phone-row .dot { width: 8px; height: 8px; }
.phone-row-main { flex: 1; min-width: 0; }
.phone-row-name { font-size: 12.5px; font-weight: 600; }
.phone-row-sub { font-family: var(--mono); font-size: 10px; color: var(--muted-2); margin-top: 2px; }
.phone-row-dist { font-family: var(--mono); font-size: 10.5px; color: var(--muted-2); }
.phone-cta {
    margin-top: auto;
    margin: auto 16px 16px;
    height: 48px;
    border-radius: 12px;
    background: var(--green);
    color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-size: 14.5px; font-weight: 600;
}

/* Why us ------------------------------------------------------------------- */
.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: clamp(28px, 4vw, 64px);
}
.why-list { display: flex; flex-direction: column; }
.why-item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 20px;
    padding: 22px 0;
    border-top: 1px solid var(--line);
}
.why-item:last-child { border-bottom: 1px solid var(--line); }
.why-num { font-family: var(--mono); font-size: 11.5px; color: var(--green); padding-top: 4px; }
.why-item h3 { margin: 0; font-size: 18px; font-weight: 600; letter-spacing: -0.015em; }
.why-item p { margin: 7px 0 0; font-size: 15px; line-height: 1.6; color: var(--muted); }

/* Testimonial -------------------------------------------------------------- */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: clamp(28px, 4vw, 56px);
    align-items: center;
}
.testimonial { margin: 0; }
.testimonial p {
    margin: 0;
    font-size: clamp(20px, 2.2vw, 27px);
    line-height: 1.38;
    letter-spacing: -0.02em;
    font-weight: 500;
    color: var(--ink);
    max-width: 34ch;
}
.testimonial footer { display: flex; align-items: center; gap: 14px; margin-top: 26px; }
.avatar {
    width: 44px; height: 44px; border-radius: 50%;
    background: #EDF0EC; border: 1px solid #E0E4DF; flex: none;
    display: flex; align-items: center; justify-content: center;
    font-size: 13px; font-weight: 600; letter-spacing: 0.02em; color: var(--muted-2);
}
.t-name { font-size: 14.5px; font-weight: 600; letter-spacing: -0.01em; }
.t-role { font-size: 13.5px; color: var(--muted-2); margin-top: 2px; }
.logos-label { font-family: var(--mono); font-size: 11px; letter-spacing: 0.09em; color: var(--muted-3); text-transform: uppercase; }
.logos-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; margin-top: 16px; }
.logo-box {
    height: 58px; border: 1px solid var(--line); border-radius: 11px; background: #fff;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--mono); font-size: 10.5px; color: #B0B8BE; letter-spacing: 0.06em;
}

/* CTA ---------------------------------------------------------------------- */
.cta-section { padding: clamp(24px, 3vw, 40px) 0; }
.cta-card {
    position: relative;
    border-radius: 22px;
    overflow: hidden;
    background: var(--ink);
    color: #fff;
    background-image: radial-gradient(circle at 100% 0%, rgba(15,164,92,0.28) 0%, rgba(16,19,21,0) 55%);
}
.cta-content {
    position: relative;
    padding: clamp(44px, 6vw, 84px) clamp(24px, 4vw, 64px);
    max-width: 720px;
}
.cta-content h2 {
    margin: 0;
    font-size: clamp(28px, 3.6vw, 46px);
    line-height: 1.08;
    letter-spacing: -0.03em;
    font-weight: 700;
    color: #fff;
}
.cta-content p { margin: 16px 0 0; font-size: 17px; line-height: 1.6; color: #C6CCD0; max-width: 46ch; }
.cta-buttons { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }

/* Footer ------------------------------------------------------------------- */
.site-footer {
    background: var(--ink);
    color: #fff;
    margin-top: clamp(24px, 3vw, 40px);
}
.site-footer .container { padding-top: clamp(48px, 5vw, 72px); padding-bottom: 28px; }
.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
    gap: 36px;
}
.footer-brand { max-width: 34ch; }
.footer-logo { width: 32px; height: 32px; }
.footer-brand p { margin: 16px 0 0; font-size: 14.5px; line-height: 1.6; color: #A8B0B6; }
.social { display: flex; gap: 9px; margin-top: 20px; }
.social a {
    width: 36px; height: 36px; border-radius: 9px;
    border: 1px solid #2A2F33;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--mono); font-size: 11px; color: #A8B0B6;
    transition: border-color 160ms ease, color 160ms ease;
}
.social a:hover { border-color: var(--green); color: #fff; }
.footer-col-title { font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.1em; color: var(--muted-2); text-transform: uppercase; }
.footer-col a { display: block; font-size: 14.5px; color: #C6CCD0; margin-top: 11px; }
.footer-col a:first-of-type { margin-top: 16px; }
.footer-col a:hover { color: #fff; }
.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: space-between;
    align-items: center;
    margin-top: 40px;
    padding-top: 22px;
    border-top: 1px solid #22272A;
    font-family: var(--mono);
    font-size: 11.5px;
    color: var(--muted-2);
}
.footer-status { display: flex; align-items: center; gap: 8px; color: #A8B0B6; }
.footer-status .pulse-dot { width: 7px; height: 7px; }

/* ==========================================================================
   Secondary content pages (About, Contact, Careers, Help, FAQs, Legal)
   ========================================================================== */
.page-main { padding-top: 74px; }
.page-hero {
    padding: clamp(48px, 6vw, 84px) 0 clamp(16px, 2vw, 28px);
    background: var(--soft-bg);
    border-bottom: 1px solid var(--line-2);
}
.page-hero-title {
    margin: 14px 0 0;
    font-size: clamp(32px, 4.4vw, 52px);
    line-height: 1.05;
    letter-spacing: -0.035em;
    font-weight: 700;
}
.page-hero-subtitle {
    margin: 16px 0 0;
    font-size: clamp(16px, 1.5vw, 19px);
    line-height: 1.55;
    color: var(--muted);
    max-width: 60ch;
}
.page-content { padding: clamp(40px, 5vw, 72px) 0 clamp(56px, 7vw, 96px); }

/* Prose / legal */
.prose { max-width: 74ch; }
.prose p { font-size: 16px; line-height: 1.7; color: var(--ink-2); margin: 0 0 16px; }
.prose.legal h2 {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin: 34px 0 10px;
}
.legal-note {
    margin-top: 28px;
    font-family: var(--mono);
    font-size: 12px;
    color: var(--muted-3);
    border-top: 1px solid var(--line-2);
    padding-top: 16px;
}

/* Info card grid (About, Help) */
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 16px;
}
.info-card {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    padding: 24px 22px;
    transition: border-color 180ms ease, transform 180ms ease;
}
.info-card:hover { border-color: var(--green); transform: translateY(-1px); }
.info-card-num { font-family: var(--mono); font-size: 12px; color: var(--green); margin-bottom: 12px; }
.info-card h3 { margin: 0; font-size: 17px; font-weight: 600; letter-spacing: -0.015em; }
.info-card p { margin: 8px 0 0; font-size: 14.5px; line-height: 1.6; color: var(--muted); }

/* Stats band on pages */
.page-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;
    overflow: hidden;
}
.page-stats .stat-cell { box-shadow: 1px 0 0 var(--line), 0 1px 0 var(--line); }

/* Inline page CTA banner */
.page-cta {
    margin-top: 48px;
    padding: clamp(26px, 3vw, 40px);
    border-radius: 18px;
    background: var(--ink);
    color: #fff;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    background-image: radial-gradient(circle at 100% 0%, rgba(15,164,92,0.28) 0%, rgba(16,19,21,0) 60%);
}
.page-cta h2 { margin: 0; font-size: clamp(20px, 2.4vw, 28px); letter-spacing: -0.02em; font-weight: 700; color: #fff; }
.page-cta p { margin: 8px 0 0; font-size: 15px; color: #C6CCD0; }
.page-cta-actions { display: flex; flex-wrap: wrap; gap: 12px; }

/* FAQ accordion */
.faq { max-width: 820px; display: flex; flex-direction: column; gap: 10px; }
.faq-item {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    padding: 4px 18px;
}
.faq-item summary {
    cursor: pointer;
    list-style: none;
    padding: 16px 0;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: -0.01em;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: "+";
    font-family: var(--mono);
    color: var(--green);
    font-size: 18px;
    flex: none;
}
.faq-item[open] summary::after { content: "–"; }
.faq-item p { margin: 0 0 16px; font-size: 15px; line-height: 1.6; color: var(--muted); }

/* Contact */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: clamp(24px, 3vw, 44px);
    align-items: start;
}
.contact-cards { display: flex; flex-direction: column; gap: 12px; }
.contact-card {
    display: block;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    padding: 18px 20px;
    color: var(--ink);
    transition: border-color 180ms ease, transform 180ms ease;
}
.contact-card:not(.is-static):hover { border-color: var(--green); transform: translateY(-1px); color: var(--ink); }
.contact-card-label { font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted-2); }
.contact-card-value { font-size: 16px; font-weight: 600; margin-top: 5px; letter-spacing: -0.01em; }

.contact-form {
    border: 1px solid var(--line);
    border-radius: 18px;
    background: #fff;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.contact-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.contact-form label {
    display: flex;
    flex-direction: column;
    gap: 7px;
    font-size: 13.5px;
    font-weight: 600;
    color: var(--ink-2);
}
.contact-form input,
.contact-form textarea {
    font: inherit;
    font-weight: 400;
    padding: 12px 14px;
    border: 1px solid var(--line-3);
    border-radius: 10px;
    background: #fff;
    color: var(--ink);
    outline: none;
    transition: border-color 160ms ease, box-shadow 160ms ease;
}
.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--green);
    box-shadow: 0 0 0 3px rgba(15,164,92,0.12);
}
.contact-form textarea { resize: vertical; }
.form-note { margin: 0; font-family: var(--mono); font-size: 11px; color: var(--muted-3); letter-spacing: 0.03em; }

/* Careers */
.job-list { display: flex; flex-direction: column; gap: 12px; }
.job {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 22px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    transition: border-color 180ms ease, transform 180ms ease;
}
.job:hover { border-color: var(--green); transform: translateY(-1px); }
.job-title { font-size: 17px; font-weight: 600; letter-spacing: -0.015em; }
.job-meta { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 8px; }
.tag-light {
    font-family: var(--mono);
    font-size: 10.5px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--muted-2);
    border: 1px solid var(--line);
    border-radius: 5px;
    padding: 3px 8px;
}

/* ==========================================================================
   Responsive
   ========================================================================== */

/* Tablet / small laptop — collapse primary nav into the burger menu -------- */
@media (max-width: 1060px) {
    .nav-links, .nav-actions { display: none; }
    .nav-burger { display: flex; }
    .header-inner { gap: 16px; }

    /* Stack the two-column hero earlier and keep the visual from getting huge */
    .hero-grid { grid-template-columns: 1fr; }
    .hero-visual { max-width: 520px; margin: 0 auto; width: 100%; }
    .hero-image { aspect-ratio: 16/11; max-height: 460px; }
}

/* Tablet portrait ---------------------------------------------------------- */
@media (min-width: 621px) and (max-width: 1080px) {
    .quad-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Large phone / small tablet ---------------------------------------------- */
@media (max-width: 720px) {
    .container { padding: 0 20px; }
    .header-inner { padding: 0 20px; }

    /* Single-column stacked sections */
    .find-grid,
    .business-grid,
    .app-grid,
    .why-grid,
    .testimonial-grid,
    .contact-grid { grid-template-columns: 1fr; }

    /* Show the find-a-charger map after the station list on small screens */
    .find-grid .map-visual { order: 2; }
    .map-visual { aspect-ratio: 4/3; }

    /* Reorder the businesses section so copy leads on mobile */
    .business-visual { order: 2; margin-bottom: 34px; }
    .business-copy { order: 1; }
    .business-stats { position: static; margin-top: 16px; left: auto; right: auto; bottom: auto; }
}

/* Phone -------------------------------------------------------------------- */
@media (max-width: 620px) {
    .container { padding: 0 16px; }
    .header-inner { padding: 0 16px; height: 64px; }
    .hero { padding-top: calc(64px + clamp(28px, 8vw, 48px)); }
    .page-main { padding-top: 64px; }

    .quad-grid { grid-template-columns: 1fr; }
    .steps-grid { gap: 0; }

    /* Full-width, easy-to-tap primary actions */
    .hero-ctas,
    .cta-buttons,
    .app-buttons,
    .page-cta-actions { flex-direction: column; align-items: stretch; }
    .hero-ctas .btn,
    .cta-buttons .btn,
    .app-buttons .store-btn,
    .page-cta-actions .btn { width: 100%; }

    /* Keep the floating hero cards inside the viewport */
    .float-card-top { left: 8px; top: 12px; }
    .float-card-dark { right: 8px; bottom: 12px; }

    /* Tighter stat spacing so values don't crowd */
    .hero-stats { gap: 20px; }
    .business-stats { gap: 16px; }

    /* Operator console reads as a single stacked column */
    .console-body { grid-template-columns: 1fr; padding: 16px; }
    .kpi-row { grid-template-columns: 1fr 1fr; }

    .contact-form .form-row { grid-template-columns: 1fr; }
    .contact-form { padding: 20px; }
    .page-cta { flex-direction: column; align-items: flex-start; }
    .page-cta-actions { width: 100%; }
    .job { flex-direction: column; align-items: flex-start; }

    /* Legal/prose readability */
    .prose p { font-size: 15.5px; }
}

/* Small phone -------------------------------------------------------------- */
@media (max-width: 400px) {
    .container { padding: 0 14px; }
    .header-inner { padding: 0 14px; }
    .brand-name { font-size: 16px; }
    .hero-title { font-size: clamp(30px, 8.6vw, 38px); }
    .kpi-row { grid-template-columns: 1fr; }
    .logos-grid { grid-template-columns: 1fr; }

    /* Floating cards can overwhelm a tiny screen — hide the secondary one */
    .float-card-dark { display: none; }
}

/* Accessibility ------------------------------------------------------------ */
@media (prefers-reduced-motion: reduce) {
    * { animation: none !important; }
    html { scroll-behavior: auto; }
    .reveal-init { opacity: 1; transform: none; transition: none; }
}

