/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    /* ── Core palette — unified with cloud dashboard & station kiosk ── */
    --bg: oklch(0.13 0.005 260);
    --bg-surface: oklch(0.16 0.005 260);
    --bg-card: oklch(0.18 0.005 260);
    --bg-card-hover: oklch(0.22 0.005 260);
    --border: oklch(0.25 0.005 260);
    --border-light: oklch(0.28 0.005 260);
    --text: oklch(0.95 0 0);
    --text-secondary: oklch(0.70 0 0);
    --text-muted: oklch(0.556 0 0);
    /* ── Brand blue — matches cloud/station primary ── */
    --blue: oklch(0.65 0.19 255);
    --blue-light: oklch(0.72 0.15 255);
    --blue-dark: oklch(0.55 0.23 255);
    /* ── Accent colours ── */
    --purple: oklch(0.55 0.22 310);
    --cyan: oklch(0.65 0.17 200);
    --green: oklch(0.65 0.20 155);
    --orange: oklch(0.75 0.18 80);
    --pink: oklch(0.65 0.22 350);
    --red: oklch(0.60 0.22 25);
    /* ── Solid brand (no gradients) ── */
    /* ── Geometry & motion ── */
    --radius: 10px;
    --radius-sm: 6px;
    --radius-lg: 16px;
    --shadow: 0 4px 24px oklch(0 0 0 / 0.3);
    --shadow-lg: 0 8px 48px oklch(0 0 0 / 0.4);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3, h4 { line-height: 1.2; font-weight: 700; }
h2 { font-size: clamp(1.75rem, 4vw, 2.75rem); }
a { color: inherit; text-decoration: none; }

/* ===== ANIMATIONS ===== */
.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

@keyframes scan {
    0%, 100% { transform: translateY(0); opacity: 0.6; }
    50% { transform: translateY(100%); opacity: 1; }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

@keyframes beam {
    0% { opacity: 0.2; height: 0; }
    50% { opacity: 0.6; height: 120px; }
    100% { opacity: 0.2; height: 0; }
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.938rem;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-sm { padding: 8px 16px; font-size: 0.875rem; }
.btn-lg { padding: 16px 32px; font-size: 1rem; }

.btn-primary {
    background: var(--blue);
    color: white;
    box-shadow: 0 4px 16px oklch(0.65 0.19 255 / 0.3);
}
.btn-primary:hover {
    box-shadow: 0 6px 24px oklch(0.65 0.19 255 / 0.5);
    transform: translateY(-1px);
}

.btn-outline {
    background: transparent;
    color: var(--text);
    border: 1px solid var(--border-light);
}
.btn-outline:hover {
    border-color: var(--blue);
    color: var(--blue-light);
    background: oklch(0.65 0.19 255 / 0.05);
}

.btn-ghost {
    background: transparent;
    color: var(--text-secondary);
}
.btn-ghost:hover { color: var(--text); }

.btn-white {
    background: white;
    color: var(--bg);
}
.btn-white:hover {
    background: #f1f5f9;
    transform: translateY(-1px);
}

.btn-ghost-white {
    background: transparent;
    color: rgba(255,255,255,0.8);
    border: 1px solid rgba(255,255,255,0.2);
}
.btn-ghost-white:hover {
    color: white;
    border-color: rgba(255,255,255,0.4);
}

.btn-block { width: 100%; justify-content: center; }

/* ===== NAVIGATION ===== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 16px 0;
    transition: var(--transition);
    background: transparent;
}

.nav.scrolled {
    background: oklch(0.13 0.005 260 / 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    padding: 12px 0;
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.025em;
    text-decoration: none;
}
.logo-img { height: 32px; width: auto; flex-shrink: 0; }

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}
.nav-links a:not(.btn) {
    font-size: 0.938rem;
    color: var(--text-secondary);
    transition: var(--transition);
    font-weight: 500;
}
.nav-links a:not(.btn):hover { color: var(--text); }

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}
.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text);
    transition: var(--transition);
    border-radius: 2px;
}

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 100vh;
    padding: 140px 0 60px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(oklch(0.65 0.19 255 / 0.03) 1px, transparent 1px),
        linear-gradient(90deg, oklch(0.65 0.19 255 / 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    opacity: 0.5;
}

.hero-glow {
    position: absolute;
    top: -20%;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 600px;
    background: oklch(0.65 0.19 255 / 0.06);
    border-radius: 50%;
    filter: blur(120px);
}

.hero-content {
    position: relative;
    text-align: center;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    border-radius: 100px;
    background: oklch(0.65 0.19 255 / 0.1);
    border: 1px solid oklch(0.65 0.19 255 / 0.2);
    font-size: 0.875rem;
    color: var(--blue-light);
    margin-bottom: 24px;
    font-weight: 500;
}

.badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--green);
    animation: pulse 2s infinite;
}

.hero-title {
    font-size: clamp(2.5rem, 7vw, 4.5rem);
    font-weight: 900;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
    color: var(--text);
}

.hero-subtitle {
    font-size: clamp(1.05rem, 2vw, 1.25rem);
    color: var(--text-secondary);
    max-width: 640px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.hero-metrics {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.metric { text-align: center; }
.metric-value {
    display: block;
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--blue);
}
.metric-label {
    font-size: 0.875rem;
    color: var(--text-muted);
}
.metric-divider {
    width: 1px;
    height: 40px;
    background: var(--border);
}

/* Hero Visual / Station Mockup */
.hero-visual {
    margin-top: 60px;
    display: flex;
    justify-content: center;
    padding: 0 24px;
}

.station-mockup { max-width: 600px; width: 100%; }

.station-screen {
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg), 0 0 80px oklch(0.65 0.19 255 / 0.08);
}

.screen-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 20px;
    background: rgba(255,255,255,0.03);
    border-bottom: 1px solid var(--border);
    font-size: 0.875rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.screen-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}
.screen-dot.green {
    background: var(--green);
    box-shadow: 0 0 8px oklch(0.65 0.20 155 / 0.4);
}

.screen-body { padding: 24px; }

.scan-area {
    position: relative;
    background: oklch(0.65 0.19 255 / 0.03);
    border: 1px dashed oklch(0.65 0.19 255 / 0.2);
    border-radius: var(--radius);
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    overflow: hidden;
}

.scan-lines {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--blue);
    animation: scan 3s ease-in-out infinite;
}

.scan-box { position: relative; z-index: 1; }
.scan-icon { width: 80px; height: 80px; }

.screen-result {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.result-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 14px;
    background: rgba(255,255,255,0.02);
    border-radius: var(--radius-sm);
}

.result-row.highlight {
    background: oklch(0.65 0.20 155 / 0.08);
    border: 1px solid oklch(0.65 0.20 155 / 0.2);
}

.result-label {
    font-size: 0.875rem;
    color: var(--text-muted);
    font-weight: 500;
}
.result-value {
    font-size: 0.938rem;
    font-weight: 600;
    font-variant-numeric: tabular-nums;
}
.result-row.highlight .result-value { color: var(--green); }

/* ===== TRUST BAR ===== */
.trust-bar {
    padding: 48px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.trust-label {
    text-align: center;
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 500;
}
.trust-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
}
.carrier-logo { color: var(--text-muted); transition: var(--transition); }
.carrier-logo:hover { color: var(--text-secondary); }
.carrier-svg { width: 120px; height: 40px; }

/* ===== SECTION COMMON ===== */
.section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 64px;
}
.section-tag {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--blue);
    margin-bottom: 12px;
}
.section-desc {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-top: 16px;
}

/* ===== PROBLEM ===== */
.problem { padding: 100px 0; }
.pain-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.pain-card {
    padding: 32px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: var(--transition);
}
.pain-card:hover {
    border-color: var(--border-light);
    transform: translateY(-2px);
}
.pain-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: oklch(0.60 0.22 25 / 0.1);
    border-radius: var(--radius-sm);
    margin-bottom: 20px;
    color: var(--red);
}
.pain-icon svg { width: 24px; height: 24px; }
.pain-card h3 {
    font-size: 1.15rem;
    margin-bottom: 10px;
}
.pain-card p {
    color: var(--text-secondary);
    font-size: 0.938rem;
    line-height: 1.6;
}

/* ===== FEATURES ===== */
.features {
    padding: 100px 0;
    background: var(--bg-surface);
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.feature-card {
    padding: 32px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: var(--transition);
}
.feature-card:hover {
    border-color: var(--border-light);
    transform: translateY(-2px);
}

.feature-card-large {
    grid-column: span 2;
}

.feature-icon-wrap {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    margin-bottom: 20px;
}
.feature-icon-wrap svg { width: 24px; height: 24px; }

.feature-icon-wrap.blue { background: oklch(0.65 0.19 255 / 0.1); color: var(--blue); }
.feature-icon-wrap.purple { background: oklch(0.55 0.22 310 / 0.1); color: var(--purple); }
.feature-icon-wrap.green { background: oklch(0.65 0.20 155 / 0.1); color: var(--green); }
.feature-icon-wrap.orange { background: oklch(0.75 0.18 80 / 0.1); color: var(--orange); }
.feature-icon-wrap.cyan { background: oklch(0.65 0.17 200 / 0.1); color: var(--cyan); }
.feature-icon-wrap.pink { background: oklch(0.65 0.22 350 / 0.1); color: var(--pink); }

.feature-card h3 { font-size: 1.15rem; margin-bottom: 10px; }
.feature-card p { color: var(--text-secondary); font-size: 0.938rem; line-height: 1.6; }

.feature-detail {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.detail-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.875rem;
    color: var(--text-secondary);
}
.detail-check { color: var(--green); font-weight: 700; }

/* ===== HOW IT WORKS ===== */
.how-it-works { padding: 100px 0; }

.steps {
    max-width: 720px;
    margin: 0 auto;
}

.step {
    display: flex;
    gap: 32px;
    align-items: center;
}

.step-number {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--blue);
    border-radius: 50%;
    font-size: 1.25rem;
    font-weight: 800;
    color: white;
}

.step-content { flex: 1; }
.step-content h3 { font-size: 1.25rem; margin-bottom: 8px; }
.step-content p { color: var(--text-secondary); font-size: 0.938rem; }

.step-visual { flex-shrink: 0; }
.step-icon-box {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    color: var(--blue-light);
}
.step-icon-box svg { width: 48px; height: 48px; }

.step-connector {
    display: flex;
    justify-content: center;
    padding: 8px 0;
    margin-left: 26px;
}
.step-connector svg { width: 24px; height: 40px; }

.how-cta {
    text-align: center;
    margin-top: 60px;
}
.how-cta p {
    color: var(--text-secondary);
    margin-bottom: 24px;
    font-size: 1.05rem;
}

/* ===== SPECS ===== */
.specs {
    padding: 100px 0;
    background: var(--bg-surface);
}
.specs-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
.specs-info h2 { margin-bottom: 16px; }
.specs-info > p {
    color: var(--text-secondary);
    margin-bottom: 40px;
    font-size: 1.05rem;
}
.specs-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.spec-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}
.spec-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: oklch(0.65 0.19 255 / 0.1);
    border-radius: var(--radius-sm);
    color: var(--blue);
}
.spec-icon svg { width: 22px; height: 22px; }
.spec-item strong { display: block; font-size: 0.938rem; margin-bottom: 2px; }
.spec-item span { font-size: 0.875rem; color: var(--text-muted); }

/* Station 3D Visual */
.station-3d {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.station-base {
    position: relative;
    width: 300px;
    height: 320px;
}
.station-platform {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 220px;
    height: 180px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
}
.platform-grid-visual {
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(oklch(0.65 0.19 255 / 0.05) 1px, transparent 1px),
        linear-gradient(90deg, oklch(0.65 0.19 255 / 0.05) 1px, transparent 1px);
    background-size: 20px 20px;
    /* subtle measurement grid — functional, not decorative */
}
.station-arm {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    height: 160px;
    background: var(--border-light);
    border-radius: 4px;
}
.station-camera {
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 48px;
    height: 32px;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
}
.camera-lens {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--blue);
    box-shadow: 0 0 12px oklch(0.65 0.19 255 / 0.4);
}
.camera-beam {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 0;
    background: oklch(0.65 0.19 255 / 0.08);
    clip-path: polygon(40% 0, 60% 0, 100% 100%, 0 100%);
    animation: beam 3s ease-in-out infinite;
}
.station-parcel {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) rotateX(5deg) rotateY(-15deg);
    width: 100px;
    height: 70px;
    perspective: 400px;
    animation: float 4s ease-in-out infinite;
}
.parcel-face {
    position: absolute;
    border: 1px solid oklch(0.65 0.19 255 / 0.3);
}
.parcel-face.front {
    width: 100px;
    height: 70px;
    background: oklch(0.65 0.19 255 / 0.08);
    border-radius: 4px;
}
.parcel-face.top {
    width: 100px;
    height: 30px;
    bottom: 70px;
    background: oklch(0.65 0.19 255 / 0.04);
    border-radius: 4px 4px 0 0;
    transform: skewX(-10deg);
    transform-origin: bottom left;
}
.parcel-face.side {
    width: 30px;
    height: 70px;
    right: -28px;
    background: oklch(0.65 0.19 255 / 0.04);
    border-radius: 0 4px 4px 0;
    transform: skewY(-10deg);
    transform-origin: top left;
}

.station-price-tag {
    margin-top: 24px;
    text-align: center;
    padding: 16px 32px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
}
.price-amount {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--blue);
}
.price-label {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* ===== PRICING ===== */
.pricing { padding: 100px 0; }

.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 48px;
}
.toggle-label {
    font-size: 0.938rem;
    color: var(--text-muted);
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}
.toggle-label.active { color: var(--text); }
.toggle-save {
    display: inline-block;
    padding: 2px 8px;
    background: oklch(0.65 0.20 155 / 0.1);
    color: var(--green);
    font-size: 0.75rem;
    border-radius: 4px;
    font-weight: 600;
}

.toggle-switch {
    position: relative;
    width: 48px;
    height: 26px;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 13px;
    cursor: pointer;
    transition: var(--transition);
}
.toggle-switch.active {
    background: oklch(0.65 0.19 255 / 0.2);
    border-color: var(--blue);
}
.toggle-knob {
    position: absolute;
    top: 3px;
    left: 3px;
    width: 18px;
    height: 18px;
    background: var(--text);
    border-radius: 50%;
    transition: var(--transition);
}
.toggle-switch.active .toggle-knob {
    left: 25px;
    background: var(--blue);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: stretch;
}
.pricing-card {
    display: flex;
    flex-direction: column;
}
.pricing-card .pricing-features {
    flex: 1;
}
.pricing-card .btn-block {
    margin-top: auto;
}

.pricing-card {
    position: relative;
    padding: 36px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: var(--transition);
}
.pricing-card:hover {
    transform: translateY(-4px);
    border-color: var(--border-light);
}
.pricing-card.popular {
    border-color: var(--blue);
    box-shadow: 0 0 40px oklch(0.65 0.19 255 / 0.12);
}
.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 4px 16px;
    background: var(--blue);
    color: white;
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 100px;
    white-space: nowrap;
}

.pricing-header { margin-bottom: 24px; }
.pricing-header h3 { font-size: 1.25rem; margin-bottom: 6px; }
.pricing-header p { color: var(--text-muted); font-size: 0.875rem; }

.pricing-price {
    display: flex;
    align-items: baseline;
    gap: 2px;
    margin-bottom: 32px;
}
.pricing-price .price-currency { font-size: 1.25rem; font-weight: 700; color: var(--text-secondary); }
.pricing-price .price-amount { font-size: 3rem; font-weight: 800; line-height: 1; }
.pricing-price .price-period { font-size: 0.875rem; color: var(--text-muted); margin-left: 4px; }

.pricing-features {
    list-style: none;
    margin-bottom: 32px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.pricing-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.938rem;
    color: var(--text-secondary);
}
.pricing-features .check {
    color: var(--green);
    font-weight: 700;
    font-size: 1rem;
}
.pricing-features .highlight-feature { color: var(--blue); }
.pricing-features .x {
    color: var(--text-muted);
    font-size: 1rem;
}
.pricing-features .disabled { color: var(--text-muted); opacity: 0.5; }

.pricing-hardware {
    margin-top: 40px;
}
.hardware-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 32px 40px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    gap: 40px;
}
.hardware-info h3 { font-size: 1.15rem; margin-bottom: 8px; }
.hardware-info p { color: var(--text-secondary); font-size: 0.938rem; max-width: 560px; }
.hardware-price { text-align: right; flex-shrink: 0; }
.hw-price {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--blue);
}
.hw-label { font-size: 0.875rem; color: var(--text-muted); }

/* ===== INTEGRATIONS ===== */
.integrations {
    padding: 100px 0;
    background: var(--bg-surface);
}
.integration-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}
.integration-card {
    padding: 32px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: var(--transition);
}
.integration-card:hover {
    border-color: var(--border-light);
    transform: translateY(-2px);
}
.integ-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: oklch(0.65 0.17 200 / 0.1);
    color: var(--cyan);
    border-radius: var(--radius-sm);
    margin-bottom: 20px;
}
.integ-icon svg { width: 24px; height: 24px; }
.integration-card h3 { font-size: 1.15rem; margin-bottom: 8px; }
.integration-card p { color: var(--text-secondary); font-size: 0.938rem; line-height: 1.6; }

/* API Preview */
.api-preview {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}
.code-window {
    background: #0d1117;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
}
.code-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: rgba(255,255,255,0.03);
    border-bottom: 1px solid var(--border);
}
.code-dots { display: flex; gap: 6px; }
.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}
.dot.red { background: #ff5f57; }
.dot.yellow { background: #febc2e; }
.dot.green { background: #28c840; }
.code-title { font-size: 0.8rem; color: var(--text-muted); font-weight: 500; }
.code-body {
    padding: 20px;
    overflow-x: auto;
}
.code-body code {
    font-family: 'SF Mono', 'Fira Code', 'Cascadia Code', monospace;
    font-size: 0.8rem;
    line-height: 1.7;
    color: #c9d1d9;
}
.code-tag {
    color: var(--green);
    font-weight: 600;
}

/* ===== REMOTE ===== */
.remote { padding: 100px 0; }
.remote-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
.remote-info h2 { margin-bottom: 16px; }
.remote-info > p {
    color: var(--text-secondary);
    margin-bottom: 40px;
    font-size: 1.05rem;
}
.remote-features { display: flex; flex-direction: column; gap: 24px; }
.remote-feature { display: flex; gap: 16px; }
.rf-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: oklch(0.55 0.22 310 / 0.1);
    color: var(--purple);
    border-radius: var(--radius-sm);
}
.rf-icon svg { width: 20px; height: 20px; }
.remote-feature strong { display: block; font-size: 0.938rem; margin-bottom: 4px; }
.remote-feature p { font-size: 0.875rem; color: var(--text-secondary); margin: 0; }

/* Dashboard Mockup */
.dashboard-mockup {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.dash-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    border-bottom: 1px solid var(--border);
}
.dash-title { font-weight: 600; font-size: 0.938rem; }
.dash-live {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    color: var(--green);
    font-weight: 500;
}
.live-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--green);
    animation: pulse 2s infinite;
}

.dash-stations { padding: 12px; display: flex; flex-direction: column; gap: 8px; }
.dash-station {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    background: rgba(255,255,255,0.02);
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
}
.ds-status {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}
.dash-station.online .ds-status { background: var(--green); }
.dash-station.offline .ds-status { background: var(--text-muted); }
.ds-name { flex: 1; font-weight: 500; }
.ds-version { color: var(--text-muted); font-size: 0.8rem; font-family: monospace; }
.ds-badge {
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    background: oklch(0.65 0.20 155 / 0.1);
    color: var(--green);
}
.ds-badge.update { background: oklch(0.75 0.18 80 / 0.1); color: var(--orange); }
.ds-badge.offline-badge { background: oklch(0.556 0 0 / 0.1); color: var(--text-muted); }

.dash-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--border);
    border-top: 1px solid var(--border);
}
.dash-stat {
    padding: 16px;
    background: var(--bg-card);
    text-align: center;
}
.stat-value { display: block; font-size: 1.25rem; font-weight: 700; }
.stat-label { font-size: 0.75rem; color: var(--text-muted); }

/* ===== SAVINGS ===== */
.savings { padding: 100px 0; background: var(--bg-surface); }
.savings-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    padding: 48px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
}
.savings-info h2 { margin-bottom: 16px; }
.savings-info > p {
    color: var(--text-secondary);
    margin-bottom: 32px;
    font-size: 0.95rem;
}
.savings-example {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.savings-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.938rem;
}
.savings-row.total {
    border-bottom: none;
    padding-top: 16px;
    font-weight: 700;
    font-size: 1.05rem;
}
.savings-val { font-weight: 600; font-variant-numeric: tabular-nums; }
.savings-val.old { color: var(--text-muted); text-decoration: line-through; }
.savings-val.new { color: var(--blue-light); }
.savings-val.save { color: var(--green); font-size: 1.25rem; }

.savings-chart {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.bar-group {
    display: flex;
    gap: 32px;
    align-items: flex-end;
    height: 240px;
    margin-bottom: 16px;
}
.bar {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    width: 80px;
}
.bar-fill {
    width: 100%;
    border-radius: var(--radius-sm) var(--radius-sm) 0 0;
    transition: height 1s ease;
}
.bar.competitor .bar-fill {
    background: var(--red);
}
.bar.dims-it .bar-fill {
    background: var(--blue);
}
.bar-label { font-size: 0.8rem; color: var(--text-secondary); font-weight: 500; }
.bar-value { font-size: 0.875rem; font-weight: 700; order: -1; }
.chart-label { font-size: 0.8rem; color: var(--text-muted); }

/* ===== CTA ===== */
.cta {
    padding: 120px 0;
    background: var(--blue);
    position: relative;
    overflow: hidden;
}
.cta-content {
    position: relative;
    text-align: center;
}
.cta-content h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 16px;
}
.cta-content p {
    font-size: 1.1rem;
    opacity: 0.85;
    margin-bottom: 40px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}
.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== FOOTER ===== */
.footer {
    padding: 64px 0 32px;
    border-top: 1px solid var(--border);
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}
.footer-brand p {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-top: 16px;
    max-width: 280px;
    line-height: 1.6;
}
.footer-col { display: flex; flex-direction: column; gap: 12px; }
.footer-col h4 {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-secondary);
    margin-bottom: 4px;
}
.footer-col a {
    font-size: 0.875rem;
    color: var(--text-muted);
    transition: var(--transition);
}
.footer-col a:hover { color: var(--text); }
.footer-bottom {
    padding-top: 32px;
    border-top: 1px solid var(--border);
    text-align: center;
}
.footer-bottom p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .feature-card-large { grid-column: span 2; }
    .specs-layout { grid-template-columns: 1fr; gap: 48px; }
    .specs-visual { order: -1; }
    .remote-layout { grid-template-columns: 1fr; gap: 48px; }
    .savings-card { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .nav-links.open {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--bg);
        z-index: 99;
        justify-content: center;
        align-items: center;
        gap: 24px;
        padding: 24px;
    }
    .nav-links.open a:not(.btn) { font-size: 1.25rem; }
    .nav-toggle { display: flex; z-index: 101; }

    .hero { padding: 120px 0 40px; }
    .hero-metrics { gap: 24px; }
    .metric-divider { display: none; }

    .pain-grid { grid-template-columns: 1fr; }
    .features-grid { grid-template-columns: 1fr; }
    .feature-card-large { grid-column: span 1; }
    .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
    .integration-grid { grid-template-columns: 1fr; }
    .api-preview { grid-template-columns: 1fr; }

    .step { flex-direction: column; text-align: center; gap: 16px; }
    .step-connector { margin-left: 0; }

    .hardware-card { flex-direction: column; text-align: center; padding: 24px; }
    .hardware-price { text-align: center; }

    .footer-grid { grid-template-columns: 1fr 1fr; }
    .footer-brand { grid-column: span 2; }

    .savings-card { padding: 24px; }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .hero-title { font-size: 2.2rem; }
    .pricing-card { padding: 24px; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-brand { grid-column: span 1; }
}

/* ===== LEGAL / CONTENT PAGES ===== */
.legal-content {
    padding: 120px 0 80px;
    min-height: 60vh;
}
.legal-content h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 8px;
}
.legal-updated {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 48px;
}
.legal-content h2 {
    font-size: 1.35rem;
    margin-top: 40px;
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--border);
}
.legal-content h3 {
    font-size: 1.1rem;
    margin-top: 24px;
    margin-bottom: 12px;
    color: var(--text-secondary);
}
.legal-content p {
    color: var(--text-secondary);
    margin-bottom: 16px;
    max-width: 800px;
    line-height: 1.75;
}
.legal-content ul {
    list-style: none;
    margin-bottom: 16px;
    max-width: 800px;
}
.legal-content ul li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
    color: var(--text-secondary);
    line-height: 1.7;
}
.legal-content ul li::before {
    content: "\2022";
    position: absolute;
    left: 0;
    color: var(--blue);
}
.legal-content a {
    color: var(--blue-light);
    text-decoration: underline;
    text-underline-offset: 3px;
}
.legal-content a:hover {
    color: var(--blue);
}
.legal-content strong {
    color: var(--text);
}

/* ===== CONTACT PAGE ===== */
.contact-content {
    padding: 120px 0 80px;
    min-height: 60vh;
}
.contact-content h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 8px;
}
.contact-subtitle {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 48px;
    max-width: 600px;
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.form-group label {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-secondary);
}
.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text);
    font-family: inherit;
    font-size: 0.95rem;
    transition: border-color var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--blue);
}
.form-group textarea {
    resize: vertical;
    min-height: 120px;
}
.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' viewBox='0 0 12 12'%3E%3Cpath d='M3 5l3 3 3-3' stroke='%23999' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
}
.form-group select option {
    background: var(--bg-card);
    color: var(--text);
}
.form-submit {
    margin-top: 8px;
}
.form-submit .btn {
    width: 100%;
    justify-content: center;
}
.contact-info {
    padding: 32px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
}
.contact-info h3 {
    font-size: 1.15rem;
    margin-bottom: 20px;
}
.contact-info-item {
    margin-bottom: 24px;
}
.contact-info-item h4 {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
    margin-bottom: 8px;
}
.contact-info-item p,
.contact-info-item a {
    color: var(--text-secondary);
    line-height: 1.7;
}
.contact-info-item a {
    color: var(--blue-light);
    text-decoration: underline;
    text-underline-offset: 3px;
}
.contact-info-item a:hover {
    color: var(--blue);
}
.form-success {
    display: none;
    padding: 16px 20px;
    background: oklch(0.25 0.08 155);
    border: 1px solid var(--green);
    border-radius: var(--radius-sm);
    color: var(--green);
    font-weight: 500;
}
.form-success.visible {
    display: block;
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
}
