/* =======================================================
   DOLME TECH — styles
   Palette: dark grey + blue, professional tech feel
   ======================================================= */

:root {
    /* Base greys */
    --bg-0: #0b1017;
    --bg-1: #10161f;
    --bg-2: #151c28;
    --bg-3: #1b2330;
    --border: #233043;
    --border-strong: #2d3d55;

    /* Text */
    --text: #e6ecf5;
    --text-muted: #9aa7bb;
    --text-dim: #6b7a91;

    /* Brand blues */
    --blue-50:  #e8f1ff;
    --blue-200: #9cc4ff;
    --blue-400: #4f8ff7;
    --blue-500: #2b78ef;
    --blue-600: #1f66d6;
    --blue-700: #1854b5;
    --blue-glow: rgba(47, 125, 237, 0.35);

    /* Accent */
    --accent: #5fd5ff;

    /* Radii / shadow */
    --r-sm: 8px;
    --r-md: 14px;
    --r-lg: 22px;
    --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.35);
    --shadow-lg: 0 30px 80px rgba(0, 0, 0, 0.45);

    /* Type */
    --font-sans: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
    --font-display: 'Space Grotesk', 'Inter', system-ui, sans-serif;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }

/* ================= Tab system =================
   Sections tagged with [data-tab-section] are hidden by default; the
   active tab is shown via .is-active. Nav clicks swap tabs instantly —
   no smooth-scroll, no scroll at all. */
[data-tab-section] { display: none; }
[data-tab-section].is-active { display: block; }
.nav__links a.is-active { color: #fff; }
.nav__links a.is-active::after { transform: scaleX(1); }

body {
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text);
    background: var(--bg-0);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; margin: 0; padding: 0; }

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

/* ================= Typography ================= */
h1, h2, h3, h4, h5 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin: 0 0 0.6em;
    color: #f5f8fd;
}
h1 { font-size: clamp(2.25rem, 4.2vw, 3.75rem); }
h2 { font-size: clamp(1.75rem, 3vw, 2.6rem); }
h3 { font-size: clamp(1.3rem, 1.8vw, 1.7rem); }
h4 { font-size: 1.1rem; }

p { margin: 0 0 1em; color: var(--text-muted); }

.eyebrow {
    display: inline-block;
    font-size: 0.8rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--blue-200);
    font-weight: 600;
    margin-bottom: 16px;
    padding: 6px 14px;
    background: rgba(47, 125, 237, 0.08);
    border: 1px solid rgba(47, 125, 237, 0.25);
    border-radius: 999px;
}

.gradient-text {
    background: linear-gradient(135deg, var(--blue-400) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* ================= Buttons ================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 22px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: transform .15s ease, background .2s ease, box-shadow .2s ease, border-color .2s ease;
    white-space: nowrap;
    border: 1px solid transparent;
}
.btn--lg { padding: 15px 28px; font-size: 1rem; }
.btn--block { width: 100%; }
.btn--primary {
    background: linear-gradient(135deg, var(--blue-500), var(--blue-700));
    color: #fff;
    box-shadow: 0 10px 30px -10px var(--blue-glow), inset 0 1px 0 rgba(255,255,255,0.15);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 18px 40px -12px var(--blue-glow); }
.btn--ghost {
    color: var(--text);
    border-color: var(--border-strong);
    background: rgba(255,255,255,0.02);
}
.btn--ghost:hover { border-color: var(--blue-400); color: #fff; background: rgba(47,125,237,0.08); }

/* ================= Nav ================= */
.nav {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(11, 16, 23, 0.75);
    backdrop-filter: saturate(140%) blur(14px);
    -webkit-backdrop-filter: saturate(140%) blur(14px);
    border-bottom: 1px solid transparent;
    transition: border-color .2s ease, background .2s ease;
}
.nav.is-scrolled { border-bottom-color: var(--border); }
.nav__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    height: 72px;
}
.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-display);
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.01em;
}
.brand__mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    flex-shrink: 0;
}
.brand__mark svg { width: 100%; height: 100%; }
.brand__name {
    display: flex;
    flex-direction: column;
    line-height: 1;
    gap: 3px;
}
.brand__primary {
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: #fff;
}
.brand__sub {
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.32em;
    color: var(--blue-400);
}
/* Legacy class — kept for safety if any collateral page still uses it */
.brand__accent { color: var(--blue-400); }
.nav__links {
    display: flex;
    gap: 30px;
    font-size: 0.95rem;
    font-weight: 500;
}
.nav__links a {
    color: var(--text-muted);
    transition: color .15s ease;
    position: relative;
}
.nav__links a:hover { color: #fff; }
.nav__links a::after {
    content: "";
    position: absolute;
    left: 0; right: 0; bottom: -6px;
    height: 2px;
    background: var(--blue-400);
    transform: scaleX(0);
    transition: transform .2s ease;
    transform-origin: left;
}
.nav__links a:hover::after { transform: scaleX(1); }
.nav__cta { display: inline-flex; }
.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 32px;
    padding: 6px 4px;
}
.nav__toggle span {
    display: block;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: transform .2s ease, opacity .2s ease;
}

/* ================= Hero ================= */
.hero {
    position: relative;
    padding: 80px 0 100px;
    overflow: hidden;
}
.hero__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}
.hero__grid {
    position: absolute;
    inset: -10% -10%;
    background-image:
        linear-gradient(rgba(47,125,237,0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(47,125,237,0.08) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: radial-gradient(ellipse at 50% 30%, #000 40%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse at 50% 30%, #000 40%, transparent 75%);
}
.hero__glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.55;
}
.hero__glow--1 {
    width: 520px; height: 520px;
    top: -120px; left: -120px;
    background: radial-gradient(circle, var(--blue-500) 0%, transparent 70%);
}
.hero__glow--2 {
    width: 420px; height: 420px;
    bottom: -140px; right: -100px;
    background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
    opacity: 0.25;
}
.hero__inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 60px;
    align-items: center;
}
.hero__title { margin-bottom: 20px; }
.hero__lead { font-size: 1.12rem; max-width: 560px; margin-bottom: 32px; }
.hero__cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 48px; }
.hero__stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    padding-top: 28px;
    border-top: 1px solid var(--border);
    max-width: 560px;
}
.hero__stats li { display: flex; flex-direction: column; }
.hero__stats strong {
    font-family: var(--font-display);
    font-size: 1.7rem;
    color: #fff;
    font-weight: 700;
}
.hero__stats span { font-size: 0.78rem; color: var(--text-dim); text-transform: uppercase; letter-spacing: 0.08em; }

/* Hero art */
.hero__art {
    position: relative;
    height: 520px;
}
.device {
    position: absolute;
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid var(--border-strong);
    box-shadow: var(--shadow-lg);
    background: var(--bg-2);
}
.device img { width: 100%; height: 100%; object-fit: cover; }
.device--tablet {
    width: 100%;
    max-width: 540px;
    height: 480px;
    left: 50%; top: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}
.device__pulse {
    position: absolute;
    inset: 0;
    border-radius: inherit;
    box-shadow: 0 0 0 0 var(--blue-glow);
    animation: pulse 2.6s ease-out infinite;
    pointer-events: none;
}
@keyframes pulse {
    0%   { box-shadow: 0 0 0 0 rgba(47,125,237,0.5); }
    70%  { box-shadow: 0 0 0 28px rgba(47,125,237,0); }
    100% { box-shadow: 0 0 0 0 rgba(47,125,237,0); }
}
.badge {
    position: absolute;
    bottom: 20px; right: 30px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    background: var(--bg-2);
    border: 1px solid var(--border-strong);
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 600;
    z-index: 3;
    box-shadow: var(--shadow-md);
}
.badge .dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: #4ade80;
    box-shadow: 0 0 0 3px rgba(74,222,128,0.25);
    animation: blink 1.6s ease-in-out infinite;
}
@keyframes blink {
    50% { opacity: 0.4; }
}

/* ================= Trust strip ================= */
.trust {
    padding: 40px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: var(--bg-1);
}
.trust__label {
    text-align: center;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--text-dim);
    margin-bottom: 20px;
}
.trust__items {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px 32px;
    font-family: var(--font-display);
    font-weight: 600;
    color: var(--text-muted);
    font-size: 1rem;
    letter-spacing: 0.02em;
}
.trust__items li {
    padding: 6px 16px;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: var(--bg-2);
}

/* ================= Sections ================= */
.section { padding: 110px 0; }
.section--dark { background: var(--bg-1); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.section__head { max-width: 760px; margin-bottom: 60px; }
.section__head--center { margin-left: auto; margin-right: auto; text-align: center; }
.section__lead { font-size: 1.08rem; color: var(--text-muted); }

.grid { display: grid; gap: 24px; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }

/* ================= Cards ================= */
.card {
    padding: 32px;
    background: linear-gradient(180deg, var(--bg-2) 0%, var(--bg-1) 100%);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
    position: relative;
    overflow: hidden;
}
.card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(135deg, transparent 40%, rgba(47,125,237,0.35) 100%);
    -webkit-mask: linear-gradient(#000, #000) content-box, linear-gradient(#000, #000);
    -webkit-mask-composite: xor;
            mask-composite: exclude;
    opacity: 0;
    transition: opacity .2s ease;
    pointer-events: none;
}
.card:hover {
    transform: translateY(-4px);
    border-color: var(--border-strong);
    box-shadow: var(--shadow-md);
}
.card:hover::before { opacity: 1; }
.card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px; height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(47,125,237,0.18), rgba(95,213,255,0.12));
    color: var(--blue-400);
    margin-bottom: 20px;
    border: 1px solid rgba(47,125,237,0.3);
}
.card h3 { font-size: 1.2rem; margin-bottom: 10px; }
.card p { margin: 0; font-size: 0.95rem; }

/* ================= App rows ================= */
.app-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
    padding: 60px 0;
    border-top: 1px solid var(--border);
}
.app-row:first-of-type { border-top: none; padding-top: 20px; }
.app-row--reverse .app-row__media { order: 2; }

.app-row__media {
    position: relative;
    border-radius: var(--r-lg);
    overflow: hidden;
    border: 1px solid var(--border-strong);
    box-shadow: var(--shadow-lg);
    aspect-ratio: 4 / 3;
}
.app-row__media img { width: 100%; height: 100%; object-fit: cover; }
.app-row__media::after {
    content: "";
    position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(11,16,23,0.65) 100%);
}
.app-row__tag {
    position: absolute;
    top: 20px; left: 20px;
    padding: 7px 14px;
    background: rgba(11,16,23,0.75);
    backdrop-filter: blur(8px);
    border: 1px solid var(--border-strong);
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--blue-200);
    z-index: 2;
}
.app-row__tag--soon {
    color: #fcd34d;
    border-color: rgba(252, 211, 77, 0.4);
    background: rgba(11, 16, 23, 0.85);
}

/* ================= Coming-next divider + kiosk row ================= */
.coming-next {
    margin: 70px 0 30px;
    text-align: center;
    position: relative;
}
.coming-next::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0; right: 0;
    height: 1px;
    background: var(--border);
    z-index: 0;
}
.coming-next__label {
    position: relative;
    z-index: 1;
    display: inline-block;
    padding: 6px 18px;
    background: var(--bg-1);
    border: 1px solid var(--border-strong);
    border-radius: 999px;
    font-family: var(--font-display);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #fcd34d;
}

.app-row--coming-soon { opacity: 0.96; }
.app-row--coming-soon .app-row__copy h3 { color: #f5f8fd; }
.app-row__media--poster {
    background:
        radial-gradient(ellipse at 30% 30%, rgba(95,213,255,0.18) 0%, transparent 60%),
        radial-gradient(ellipse at 70% 70%, rgba(47,125,237,0.28) 0%, transparent 65%),
        linear-gradient(135deg, #0b1017 0%, #151c28 60%, #1f2a3d 100%);
}
.app-row__media--poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: drop-shadow(0 12px 30px rgba(0, 0, 0, 0.45));
}
.app-row__media--poster::after { display: none; }
.badge--soon {
    color: #fcd34d;
}
.badge--soon .dot {
    background: #fcd34d;
    box-shadow: 0 0 0 3px rgba(252, 211, 77, 0.25);
}

.app-number {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
    background: linear-gradient(135deg, var(--blue-400), var(--accent));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 10px;
}
.app-row h3 { font-size: 2rem; margin-bottom: 12px; }
.app-row__lead { font-size: 1.05rem; margin-bottom: 22px; color: var(--text); }

.feature-list li {
    position: relative;
    padding: 10px 0 10px 32px;
    color: var(--text-muted);
    border-bottom: 1px solid var(--border);
    font-size: 0.96rem;
}
.feature-list li:last-child { border-bottom: none; }
.feature-list li::before {
    content: "";
    position: absolute;
    left: 0; top: 18px;
    width: 18px; height: 10px;
    border-left: 2px solid var(--blue-400);
    border-bottom: 2px solid var(--blue-400);
    transform: rotate(-45deg);
}

/* ================= Store badges (Play / App Store) ================= */
.store-badges {
    display: flex;
    gap: 12px;
    margin-top: 28px;
    flex-wrap: wrap;
}
.store-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 10px 18px;
    background: #000;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 10px;
    color: #fff;
    text-decoration: none;
    transition: transform .15s ease, border-color .2s ease, background .2s ease;
    min-width: 170px;
}
.store-badge:hover {
    transform: translateY(-2px);
    border-color: var(--blue-400);
    background: #0a0f18;
}
.store-badge__icon {
    width: 26px;
    height: 26px;
    flex-shrink: 0;
}
.store-badge__text {
    display: flex;
    flex-direction: column;
    line-height: 1;
    gap: 3px;
}
.store-badge__small {
    font-size: 9px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    opacity: 0.78;
}
.store-badge__big {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 17px;
    font-weight: 600;
    letter-spacing: -0.01em;
}

/* ================= Why us / split ================= */
.split {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 60px;
    align-items: center;
}
.split__media {
    border-radius: var(--r-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
    aspect-ratio: 4 / 5;
}
.split__media img { width: 100%; height: 100%; object-fit: cover; }
.split__media svg { width: 100%; height: 100%; display: block; }
.kpi-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 28px;
}
.kpi {
    padding: 20px;
    background: var(--bg-2);
    border: 1px solid var(--border);
    border-radius: var(--r-md);
}
.kpi strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 6px;
}
.kpi span { font-size: 0.85rem; color: var(--text-dim); line-height: 1.45; }
.split__copy p { margin-bottom: 16px; }

/* ================= Differentiator tiles (Why us section) ================= */
/* Six-card grid that replaced the stopwatch+tablet SVG illustration.
   Sits in the left column of the .split layout — same visual rhythm as the
   .kpi cards on the right column so the section reads as one composition. */
.diff-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    align-content: start;
}
.diff-tile {
    padding: 18px;
    background: var(--bg-2);
    border: 1px solid var(--border);
    border-radius: var(--r-md);
    transition: transform 0.15s ease, border-color 0.15s ease;
}
.diff-tile:hover {
    transform: translateY(-2px);
    border-color: rgba(95, 213, 255, 0.4);
}
.diff-tile__icon {
    display: inline-block;
    font-size: 1.4rem;
    line-height: 1;
    margin-bottom: 10px;
}
.diff-tile__title {
    font-size: 0.95rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 6px;
    letter-spacing: 0.01em;
}
.diff-tile__body {
    font-size: 0.82rem;
    color: var(--text-dim);
    line-height: 1.45;
    margin: 0;
}

/* ================= Story (About / Our story) ================= */
.story {
    max-width: 720px;
    margin: 0 auto;
}
.story__divider {
    display: block;
    width: 64px;
    height: 2px;
    margin: 0 auto 36px;
    background: linear-gradient(90deg, var(--blue-400), var(--accent));
    border-radius: 2px;
}
.story p {
    font-family: var(--font-sans);
    font-size: 1.06rem;
    line-height: 1.75;
    color: var(--text);
    margin: 0 0 22px;
}
.story p.story__lead {
    font-size: 1.22rem;
    line-height: 1.55;
    color: #fff;
    font-weight: 500;
    margin-bottom: 32px;
}
.story p.story__signoff {
    margin-top: 36px;
    font-style: italic;
    font-size: 1.1rem;
    color: #fff;
    border-left: 3px solid var(--blue-400);
    padding-left: 20px;
}

/* ================= Quote ================= */
.quote-section { padding: 80px 0; }
.big-quote {
    max-width: 860px;
    margin: 0 auto;
    text-align: center;
    padding: 50px 40px;
    background: linear-gradient(135deg, var(--bg-2), var(--bg-1));
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    position: relative;
}
.big-quote__mark {
    width: 36px; height: 36px;
    color: var(--blue-400);
    opacity: 0.7;
    margin-bottom: 16px;
}
.big-quote blockquote {
    font-family: var(--font-display);
    font-size: clamp(1.2rem, 2.1vw, 1.6rem);
    font-weight: 500;
    line-height: 1.45;
    color: #fff;
    margin: 0 0 24px;
    letter-spacing: -0.01em;
}
.big-quote figcaption {
    color: var(--text-dim);
    font-size: 0.92rem;
    letter-spacing: 0.05em;
}

/* ================= CTA ================= */
.section--cta {
    background:
        radial-gradient(ellipse at 15% 20%, rgba(47,125,237,0.18) 0%, transparent 55%),
        radial-gradient(ellipse at 85% 80%, rgba(95,213,255,0.1) 0%, transparent 55%),
        var(--bg-1);
    border-top: 1px solid var(--border);
}
.cta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}
.cta-grid__copy h2 { margin-bottom: 18px; }
.cta-grid__copy p { font-size: 1.05rem; margin-bottom: 30px; }

.contact-list { display: flex; flex-direction: column; gap: 16px; }
.contact-list li {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: var(--bg-2);
    border: 1px solid var(--border);
    border-radius: var(--r-md);
}
.contact-list__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px; height: 40px;
    border-radius: 10px;
    background: rgba(47,125,237,0.15);
    color: var(--blue-400);
    font-size: 1.1rem;
}
.contact-list strong {
    display: block;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-dim);
    margin-bottom: 2px;
    font-weight: 600;
}
.contact-list a, .contact-list span { color: #fff; font-weight: 500; }
.contact-list a:hover { color: var(--blue-400); }

/* Form */
.cta-form {
    background: var(--bg-2);
    padding: 36px;
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    box-shadow: var(--shadow-md);
}
.field { margin-bottom: 18px; }
.field label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 8px;
    letter-spacing: 0.02em;
}
.field input, .field select, .field textarea {
    width: 100%;
    padding: 13px 16px;
    background: var(--bg-0);
    border: 1px solid var(--border-strong);
    border-radius: var(--r-sm);
    color: var(--text);
    font-family: inherit;
    font-size: 0.95rem;
    transition: border-color .15s ease, box-shadow .15s ease;
}
.field textarea { resize: vertical; min-height: 90px; }
.field input:focus, .field select:focus, .field textarea:focus {
    outline: none;
    border-color: var(--blue-400);
    box-shadow: 0 0 0 3px rgba(47,125,237,0.2);
}
.form-note {
    font-size: 0.82rem;
    color: var(--text-dim);
    text-align: center;
    margin: 14px 0 0;
}

/* ================= Footer ================= */
.footer {
    background: var(--bg-0);
    border-top: 1px solid var(--border);
    padding: 70px 0 30px;
}
.footer__inner {
    display: grid;
    grid-template-columns: 1.2fr 2fr;
    gap: 60px;
    padding-bottom: 50px;
    border-bottom: 1px solid var(--border);
}
.footer__brand p {
    margin-top: 16px;
    max-width: 340px;
    font-size: 0.93rem;
}
.footer__cols {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}
.footer__cols h5 {
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--text);
    margin-bottom: 18px;
}
.footer__cols a {
    display: block;
    padding: 5px 0;
    color: var(--text-muted);
    font-size: 0.93rem;
    transition: color .15s ease;
}
.footer__cols a:hover { color: var(--blue-400); }
.footer__base {
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: var(--text-dim);
    flex-wrap: wrap;
    gap: 12px;
}
.footer__base p { margin: 0; }

/* ================= Responsive ================= */
@media (max-width: 960px) {
    .hero__inner { grid-template-columns: 1fr; }
    .hero__art { height: 440px; order: -1; }
    .split, .cta-grid, .app-row, .app-row--reverse,
    .footer__inner { grid-template-columns: 1fr; gap: 40px; }
    .app-row--reverse .app-row__media { order: 0; }
    .grid--3 { grid-template-columns: 1fr 1fr; }
    .footer__cols { grid-template-columns: repeat(3, 1fr); }

    .nav__links, .nav__cta { display: none; }
    .nav__toggle { display: flex; }

    .nav.is-open .nav__links {
        display: flex;
        position: absolute;
        top: 72px; left: 0; right: 0;
        flex-direction: column;
        gap: 0;
        padding: 12px 24px 24px;
        background: var(--bg-1);
        border-bottom: 1px solid var(--border);
    }
    .nav.is-open .nav__links a { padding: 14px 0; border-bottom: 1px solid var(--border); }
}

@media (max-width: 640px) {
    .section { padding: 80px 0; }
    .hero { padding: 50px 0 70px; }
    .hero__stats { grid-template-columns: 1fr 1fr; gap: 20px; }
    .grid--3 { grid-template-columns: 1fr; }
    .footer__cols { grid-template-columns: 1fr 1fr; gap: 28px; }
    .kpi-row { grid-template-columns: 1fr; }
    .diff-grid { grid-template-columns: 1fr; }
    .cta-form { padding: 24px; }
    .big-quote { padding: 32px 24px; }
    .device--phone { width: 180px; height: 340px; right: 10px; }
    .device--tablet { width: 280px; height: 210px; }
}

/* ================= Reveal on scroll ================= */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .7s ease, transform .7s ease;
}
.reveal.is-visible {
    opacity: 1;
    transform: none;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
    html { scroll-behavior: auto; }
}
