/* ─── Design Tokens ─────────────────────────────────────── */
:root {
    --bg:           #fbfaf7;
    --bg-2:         #f4efe6;
    --surface:      #fbf7ef;
    --surface-2:    #f7f1e5;
    --surface-3:    #ede3d3;
    --border:       rgba(15,59,53,0.14);
    --border-hover: rgba(15,59,53,0.28);

    --ink:          #1e293b;
    --ink-2:        #475569;
    --ink-3:        #94a3b8;

    --indigo:       #0f3b35;
    --indigo-light: #2e7d6e;
    --indigo-dim:   rgba(15,59,53,0.08);
    --indigo-glow:  rgba(15,59,53,0.18);
    --cyan:         #2e7d6e;
    --cyan-dim:     rgba(46,125,110,0.08);
    --violet:       #1a5c52;
    --violet-dim:   rgba(26,92,82,0.08);

    --radius-xl:    28px;
    --radius-lg:    20px;
    --radius-md:    14px;
    --radius-sm:    10px;
    --wrap:         1160px;

    --shadow-card:  0 0 0 1px var(--border), 0 8px 32px rgba(15,59,53,0.08);
    --shadow-glow:  0 0 48px var(--indigo-glow);
}

/* ─── Reset & Base ───────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    margin: 0;
    background:
        linear-gradient(rgba(15,59,53,0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(15,59,53,0.045) 1px, transparent 1px),
        radial-gradient(circle at top left, rgba(15,59,53,0.08), transparent 28%),
        radial-gradient(circle at 90% 10%, rgba(210,178,112,0.10), transparent 24%),
        linear-gradient(180deg, #fbfaf7 0%, #f4efe6 100%);
    background-size: 40px 40px, 40px 40px, auto, auto, auto;
    color: var(--ink);
    font-family: 'Plus Jakarta Sans', 'Inter', ui-sans-serif, system-ui, -apple-system, sans-serif;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
p { margin: 0; }
h1, h2, h3, h4 { margin: 0; line-height: 1.1; letter-spacing: -0.03em; }

.wrap {
    width: min(var(--wrap), calc(100% - 2.5rem));
    margin-inline: auto;
}

/* ─── Skip Link ──────────────────────────────────────────── */
.skip-link {
    position: absolute; left: 1rem; top: 1rem;
    transform: translateY(-200%);
    background: var(--indigo); color: #fff;
    padding: .6rem 1rem; border-radius: 999px;
    z-index: 9999; font-size: .85rem; font-weight: 600;
    transition: transform 200ms;
}
.skip-link:focus { transform: translateY(0); }

/* ─── Navigation ─────────────────────────────────────────── */
.site-header {
    position: sticky; top: 0; z-index: 50;
    background: rgba(250,245,236,0.95);
    backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid var(--border);
}

.site-header__inner {
    min-height: 68px;
    display: flex; align-items: center;
    justify-content: space-between; gap: 2rem;
}

.brand { display: inline-flex; align-items: center; gap: .9rem; flex-shrink: 0; }

.brand__logo {
    width: 160px; height: auto;
    filter: brightness(1.1) drop-shadow(0 0 12px rgba(15,59,53,0.2));
}

.brand__text { display: grid; gap: .1rem; }

.brand__kicker {
    font-size: .65rem; font-weight: 700;
    letter-spacing: .2em; text-transform: uppercase;
    color: var(--ink-3);
}

.brand__title { font-size: .88rem; font-weight: 700; color: var(--ink-2); }

.nav { display: flex; align-items: center; gap: 1.5rem; font-size: .9rem; color: var(--ink-3); }

.nav a { position: relative; padding-block: .25rem; transition: color 150ms; }

.nav a::after {
    content: ;
    position: absolute; left: 0; bottom: -2px;
    width: 100%; height: 1px;
    background: linear-gradient(90deg, var(--indigo), var(--cyan));
    transform: scaleX(0); transform-origin: left;
    transition: transform 200ms ease;
}

.nav a:hover { color: var(--ink); }
.nav a:hover::after, .nav a.is-active::after { transform: scaleX(1); }
.nav a.is-active { color: var(--ink); }

.header-actions { display: flex; align-items: center; gap: .75rem; }

/* ─── Buttons ────────────────────────────────────────────── */
.button {
    display: inline-flex; align-items: center;
    justify-content: center; gap: .5rem;
    min-height: 42px; padding: .6rem 1.25rem;
    border-radius: 999px; border: 1px solid transparent;
    font-size: .88rem; font-weight: 600;
    cursor: pointer; white-space: nowrap;
    transition: transform 150ms ease, opacity 150ms ease,
                box-shadow 150ms ease, background 150ms ease;
}

.button:hover { transform: translateY(-1px); }

.button--primary {
    background: linear-gradient(135deg, #0f3b35 0%, #0a2e2a 100%);
    color: #fff;
    box-shadow: 0 4px 20px rgba(15,59,53,0.28), 0 0 0 1px rgba(15,59,53,0.3);
}
.button--primary:hover { box-shadow: 0 8px 28px rgba(15,59,53,0.4), 0 0 0 1px rgba(15,59,53,0.45); }

.button--ghost {
    background: #fbf7ef;
    border-color: var(--border-hover);
    color: var(--ink-2);
    box-shadow: 0 1px 4px rgba(15,59,53,0.06);
}
.button--ghost:hover { background: #f4ede0; color: var(--ink); }

.button--outline {
    background: transparent;
    border-color: var(--border-hover);
    color: var(--ink-2);
}
.button--outline:hover { border-color: var(--indigo); color: var(--indigo-light); }

/* ─── Mobile menu ────────────────────────────────────────── */
.menu-toggle {
    display: none;
    width: 40px; height: 40px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-hover);
    background: var(--surface);
    color: var(--ink-2); cursor: pointer;
    align-items: center; justify-content: center;
}
.menu-toggle svg { width: 18px; height: 18px; }

.mobile-nav { display: none; border-top: 1px solid var(--border); background: rgba(250,245,236,0.98); }
.mobile-nav.is-open { display: block; }
.mobile-nav__inner { padding: 1rem 0 1.5rem; display: grid; gap: .6rem; }
.mobile-nav__inner a { color: var(--ink-2); font-size: .95rem; padding-block: .3rem; display: block; }

/* ─── Reveal Animations ──────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 600ms ease, transform 600ms ease; }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal--delay-1 { transition-delay: 80ms; }
.reveal--delay-2 { transition-delay: 160ms; }
.reveal--delay-3 { transition-delay: 240ms; }
.reveal--delay-4 { transition-delay: 320ms; }

/* ─── Hero ───────────────────────────────────────────────── */
.hero { position: relative; overflow: hidden; padding: 5rem 0 6rem; }

.hero__blob {
    position: absolute; border-radius: 50%;
    pointer-events: none; filter: blur(100px);
    animation: blob-drift 8s ease-in-out infinite alternate;
}
.hero__blob--1 { width: 600px; height: 600px; top: -200px; left: -100px; background: radial-gradient(circle, rgba(15,59,53,.12), transparent 70%); }
.hero__blob--2 { width: 500px; height: 500px; top: -100px; right: -150px; background: radial-gradient(circle, rgba(46,125,110,.1), transparent 70%); animation-delay: -4s; }
.hero__blob--3 { width: 350px; height: 350px; bottom: -80px; left: 35%; background: radial-gradient(circle, rgba(26,92,82,.08), transparent 70%); animation-delay: -2s; }

@keyframes blob-drift {
    0%   { transform: translate(0, 0) scale(1); }
    100% { transform: translate(30px, 20px) scale(1.05); }
}

.hero::after {
    content: ;
    position: absolute; inset: 0;
    background: linear-gradient(rgba(15,59,53,0.03) 1px, transparent 1px),
                linear-gradient(90deg, rgba(15,59,53,0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    mask-image: linear-gradient(180deg, rgba(0,0,0,0.6) 0%, transparent 85%);
    pointer-events: none;
}

.hero__inner {
    position: relative; z-index: 1;
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 3rem; align-items: center;
}

/* ─── Hero badge ─────────────────────────────────────────── */
.hero-badge {
    display: inline-flex; align-items: center; gap: .55rem;
    padding: .38rem .85rem;
    background: rgba(15,59,53,0.07); border: 1px solid rgba(15,59,53,0.2);
    border-radius: 999px;
    font-size: .72rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
    color: #0f3b35; margin-bottom: 1.75rem;
}

.hero-badge__dot {
    width: .45rem; height: .45rem; border-radius: 50%;
    background: var(--indigo); box-shadow: 0 0 8px var(--indigo);
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; box-shadow: 0 0 8px var(--indigo); }
    50%       { opacity: .7; box-shadow: 0 0 16px var(--indigo), 0 0 24px var(--indigo-glow); }
}

/* ─── Hero Headline ──────────────────────────────────────── */
.hero h1 {
    font-size: clamp(2.6rem, 5vw, 4.2rem);
    line-height: .97; font-weight: 800;
    letter-spacing: -0.04em; margin-bottom: 1.5rem;
}

.gradient-text {
    background: linear-gradient(135deg, #0f3b35 0%, #2e7d6e 55%, #1a5c52 100%);
    -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}

.hero__sub { font-size: 1.05rem; line-height: 1.8; color: var(--ink-2); max-width: 52ch; margin-bottom: 2rem; }

/* ─── CTA row ────────────────────────────────────────────── */
.cta-row { display: flex; flex-wrap: wrap; gap: .85rem; margin-bottom: 2.5rem; }

/* ─── Hero Chips ─────────────────────────────────────────── */
.hero-chips { display: flex; flex-wrap: wrap; gap: .65rem; }

.hero-chip {
    display: inline-flex; align-items: center; gap: .45rem;
    padding: .42rem .85rem; background: var(--surface);
    border: 1px solid var(--border); border-radius: 999px;
    font-size: .8rem; color: var(--ink-3);
}
.hero-chip strong { color: var(--ink-2); }

/* ─── Hero Panel ─────────────────────────────────────────── */
.hero-panel {
    background: var(--surface); border: 1px solid var(--border);
    border-radius: var(--radius-xl); overflow: hidden;
    box-shadow: 0 4px 24px rgba(15,59,53,0.1), 0 0 0 1px var(--border);
}

.hero-panel__header {
    padding: .85rem 1.2rem; border-bottom: 1px solid var(--border);
    display: flex; align-items: center; gap: .75rem;
}

.hp-dots { display: flex; gap: .4rem; }
.hp-dot { width: 10px; height: 10px; border-radius: 50%; }
.hp-dot:nth-child(1) { background: #ff5f57; }
.hp-dot:nth-child(2) { background: #febc2e; }
.hp-dot:nth-child(3) { background: #28c840; }
.hp-title { font-size: .75rem; font-weight: 600; color: var(--ink-3); margin-left: .5rem; }

.hero-panel__body { padding: 1.5rem; display: grid; gap: 1rem; }

.hp-stat-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: .75rem; }

.hp-stat {
    background: var(--surface-2); border: 1px solid var(--border);
    border-radius: var(--radius-md); padding: 1rem; display: grid; gap: .3rem;
}

.hp-stat__num { font-size: 1.5rem; font-weight: 800; letter-spacing: -0.04em; line-height: 1; }
.hp-stat__num--indigo { color: #0f3b35; }
.hp-stat__num--cyan   { color: #2e7d6e; }
.hp-stat__num--violet { color: #1a5c52; }
.hp-stat__label { font-size: .72rem; color: var(--ink-3); font-weight: 500; }

.hp-deal-list { display: grid; gap: .55rem; }

.hp-deal {
    display: flex; align-items: center; justify-content: space-between;
    gap: .75rem; padding: .7rem 1rem;
    background: var(--surface-2); border: 1px solid var(--border);
    border-radius: var(--radius-sm); font-size: .82rem;
}

.hp-deal__info { display: flex; align-items: center; gap: .7rem; min-width: 0; }
.hp-deal__dot { width: .55rem; height: .55rem; border-radius: 50%; flex-shrink: 0; }
.hp-deal__text { min-width: 0; }
.hp-deal__name { color: var(--ink-2); font-weight: 600; font-size: .84rem; }
.hp-deal__stage { font-size: .7rem; color: var(--ink-3); margin-top: .1rem; }
.hp-deal__right { display: flex; align-items: center; gap: .5rem; }
.hp-deal__val { font-size: .8rem; font-weight: 700; color: var(--ink); white-space: nowrap; }

.hp-badge {
    display: inline-flex; align-items: center; gap: .35rem;
    padding: .25rem .6rem; border-radius: 999px;
    font-size: .68rem; font-weight: 700;
}
.hp-badge--green { background: rgba(22,163,74,.1); color: #16a34a; }
.hp-badge--blue  { background: rgba(15,59,53,.1); color: #0f3b35; }
.hp-badge--amber { background: rgba(217,119,6,.08); color: #b45309; }

/* ─── Section base ───────────────────────────────────────── */
.section { padding: 5rem 0; }
.section--sm { padding: 3rem 0; }

.section-label {
    display: inline-flex; align-items: center; gap: .55rem;
    font-size: .7rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase;
    color: #0f3b35; margin-bottom: 1rem;
}
.section-label::before {
    content: ""; width: 1.5rem; height: 1px;
    background: linear-gradient(90deg, #0f3b35, transparent);
}

.section-title {
    font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 800;
    letter-spacing: -0.04em; line-height: 1.05; max-width: 20ch; margin-bottom: .75rem;
}

.section-sub { color: var(--ink-2); font-size: 1rem; line-height: 1.8; max-width: 58ch; margin-bottom: 3rem; }

/* ─── Bento Grid ─────────────────────────────────────────── */
.bento { display: grid; grid-template-columns: repeat(12, 1fr); gap: 1rem; }

.bento-card {
    background: var(--surface); border: 1px solid var(--border);
    border-radius: var(--radius-xl); padding: 1.75rem;
    overflow: hidden; position: relative;
    box-shadow: 0 1px 3px rgba(15,59,53,0.06);
    transition: border-color 200ms, transform 200ms, box-shadow 200ms;
}

.bento-card:hover { border-color: var(--border-hover); transform: translateY(-2px); box-shadow: 0 12px 40px rgba(15,59,53,0.12); }

.bento-card--wide   { grid-column: span 7; }
.bento-card--mid    { grid-column: span 5; }
.bento-card--third  { grid-column: span 4; }
.bento-card--half   { grid-column: span 6; }
.bento-card--full   { grid-column: span 12; }

.bento-card__icon {
    width: 2.75rem; height: 2.75rem; border-radius: var(--radius-sm);
    display: flex; align-items: center; justify-content: center; margin-bottom: 1rem;
}
.bento-card__icon--indigo { background: var(--indigo-dim); color: var(--indigo-light); }
.bento-card__icon--cyan   { background: var(--cyan-dim);   color: var(--cyan); }
.bento-card__icon--violet { background: var(--violet-dim); color: var(--violet); }
.bento-card__icon svg { width: 1.3rem; height: 1.3rem; }

.bento-card__label { font-size: .68rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--ink-3); margin-bottom: .5rem; }
.bento-card h3 { font-size: 1.2rem; font-weight: 700; color: var(--ink); margin-bottom: .6rem; }
.bento-card p { font-size: .9rem; color: var(--ink-2); line-height: 1.75; }

.bento-number { font-size: clamp(3rem, 6vw, 5.5rem); font-weight: 800; letter-spacing: -0.05em; line-height: 1; margin-bottom: .5rem; }
.bento-number--indigo { color: var(--indigo); }
.bento-number--cyan   { color: var(--cyan); }

/* ─── Applications Grid ──────────────────────────────────── */
.apps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.apps-grid--two { grid-template-columns: repeat(2, 1fr); }

.app-card {
    background: var(--surface); border: 1px solid var(--border);
    border-radius: var(--radius-xl); padding: 1.75rem;
    display: grid; gap: 1rem;
    box-shadow: 0 1px 3px rgba(15,59,53,0.06);
    transition: border-color 200ms, transform 200ms, box-shadow 200ms;
    position: relative; overflow: hidden;
}

.app-card::before {
    content: ; position: absolute; top: -1px; left: 0; right: 0; height: 1px;
    background: linear-gradient(90deg, transparent, var(--indigo), transparent);
    opacity: 0; transition: opacity 300ms;
}

.app-card:hover { border-color: var(--border-hover); transform: translateY(-3px); box-shadow: 0 12px 40px rgba(15,59,53,0.14); }
.app-card:hover::before { opacity: 1; }

.app-card--featured { background: linear-gradient(145deg, #e8f0ec 0%, #d8e8e3 100%); border-color: rgba(15,59,53,0.22); }
.app-card--dashboard { background: linear-gradient(145deg, #eef5f2 0%, #ddeee9 100%); border-color: rgba(46,125,110,0.18); }
.app-card--workflow  { background: linear-gradient(145deg, #edf4f1 0%, #ddeee9 100%); border-color: rgba(26,92,82,0.15); }

.app-card__icon {
    width: 3rem; height: 3rem; border-radius: var(--radius-md);
    display: flex; align-items: center; justify-content: center;
    border: 1px solid var(--border-hover);
}
.app-card__icon--indigo { background: var(--indigo-dim); color: var(--indigo-light); }
.app-card__icon--cyan   { background: var(--cyan-dim);   color: var(--cyan); }
.app-card__icon--violet { background: var(--violet-dim); color: var(--violet); }
.app-card__icon svg { width: 1.4rem; height: 1.4rem; }

.app-card__eyebrow { font-size: .65rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--ink-3); margin-bottom: .3rem; }
.app-card h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: .5rem; }
.app-card p { font-size: .9rem; color: var(--ink-2); line-height: 1.7; }

.pill-row { display: flex; flex-wrap: wrap; gap: .45rem; }

.pill {
    display: inline-flex; align-items: center; padding: .3rem .7rem;
    background: var(--surface-3); border: 1px solid var(--border);
    border-radius: 999px; font-size: .72rem; font-weight: 600; color: var(--ink-3);
}

/* ─── Process Steps ──────────────────────────────────────── */
.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }

.process-step {
    background: var(--surface); border: 1px solid var(--border);
    border-radius: var(--radius-xl); padding: 1.75rem;
    box-shadow: 0 1px 3px rgba(15,59,53,0.06);
    transition: border-color 200ms, box-shadow 200ms;
}
.process-step:hover { border-color: var(--border-hover); box-shadow: 0 8px 30px rgba(15,59,53,0.12); }

.process-step__num {
    width: 2.4rem; height: 2.4rem; border-radius: 999px;
    background: var(--indigo-dim); border: 1px solid rgba(15,59,53,.25);
    color: var(--indigo-light); font-size: .78rem; font-weight: 800;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 1.25rem; letter-spacing: .05em;
}

.process-step h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: .6rem; }
.process-step p  { font-size: .9rem; color: var(--ink-2); line-height: 1.75; }

/* ─── CTA Section ────────────────────────────────────────── */
.cta-section {
    position: relative; overflow: hidden;
    background: linear-gradient(135deg, #f4ede0 0%, #fbfaf7 100%); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}

.cta-section__glow {
    position: absolute; inset: 0;
    background: radial-gradient(circle at 20% 50%, rgba(15,59,53,.07), transparent 55%), radial-gradient(circle at 80% 50%, rgba(210,178,112,.08), transparent 55%);
    pointer-events: none;
}

.cta-section__inner {
    position: relative; z-index: 1; padding: 5rem 0;
    display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center;
}

.cta-section h2 { font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 800; letter-spacing: -0.04em; line-height: 1.05; margin-bottom: 1rem; }
.cta-section p   { color: var(--ink-2); font-size: 1rem; line-height: 1.8; margin-bottom: 2rem; }

.contact-info { display: grid; gap: .85rem; }

.contact-item {
    display: flex; align-items: center; gap: 1rem; padding: 1rem 1.2rem;
    background: #fbf7ef; border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: 0 1px 4px rgba(15,59,53,0.06);
    transition: border-color 200ms, box-shadow 200ms;
}
.contact-item:hover { border-color: var(--border-hover); box-shadow: 0 4px 16px rgba(15,59,53,0.1); }

.contact-item__icon {
    width: 2.5rem; height: 2.5rem; flex-shrink: 0; border-radius: var(--radius-sm);
    background: var(--indigo-dim); color: var(--indigo-light);
    display: flex; align-items: center; justify-content: center;
}
.contact-item__icon svg { width: 1.1rem; height: 1.1rem; }
.contact-item__label { font-size: .68rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; color: var(--ink-3); margin-bottom: .2rem; }
.contact-item__val   { font-size: .92rem; color: var(--ink); font-weight: 600; }

/* ─── Stats Row ──────────────────────────────────────────── */
.stats-row {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 1px; border: 1px solid var(--border); border-radius: var(--radius-lg);
    overflow: hidden; background: var(--border); margin-top: 4rem;
    box-shadow: 0 1px 4px rgba(15,59,53,0.06);
}

.stat-item { background: var(--surface); padding: 2rem 1.5rem; transition: background 200ms; }
.stat-item:hover { background: var(--surface-2); }

.stat-item__num {
    font-size: 2rem; font-weight: 800; letter-spacing: -0.04em; margin-bottom: .3rem;
    background: linear-gradient(135deg, #0f3b35, #2e7d6e);
    -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}

.stat-item__label { font-size: .82rem; color: var(--ink-3); }

/* ─── Feature list ───────────────────────────────────────── */
.feature-list { display: grid; gap: .75rem; margin-top: 1rem; }

.feature-item { display: flex; align-items: flex-start; gap: .75rem; font-size: .9rem; color: var(--ink-2); line-height: 1.6; }

.feature-item::before {
    content: ; width: .5rem; height: .5rem; border-radius: 50%;
    background: var(--indigo); box-shadow: 0 0 6px rgba(15,59,53,0.3);
    flex-shrink: 0; margin-top: .42rem;
}

/* ─── Detail grid ────────────────────────────────────────── */
.detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.detail-card {
    background: var(--surface); border: 1px solid var(--border);
    border-radius: var(--radius-xl); padding: 2rem;
    box-shadow: 0 1px 3px rgba(15,59,53,0.06);
}

.detail-card--featured { background: linear-gradient(145deg, #e8f0ec 0%, #fbf7ef 60%); border-color: rgba(15,59,53,.2); }
.detail-card p { color: var(--ink-2); line-height: 1.8; font-size: .95rem; margin-top: .75rem; }
.detail-card h3 { font-size: 1.3rem; font-weight: 700; }

/* ─── Footer ─────────────────────────────────────────────── */
.footer { padding: 2.5rem 0; border-top: 1px solid var(--border); }

.footer__inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.footer__copy { font-size: .82rem; color: var(--ink-3); }
.footer__links { display: flex; gap: 1.25rem; font-size: .82rem; color: var(--ink-3); }
.footer__links a:hover { color: var(--ink); }

/* ─── Responsive ─────────────────────────────────────────── */
@media (max-width: 1000px) {
    .hero__inner { grid-template-columns: 1fr; }
    .hero-panel { display: none; }
    .bento-card--wide, .bento-card--mid, .bento-card--third, .bento-card--half { grid-column: span 12; }
    .apps-grid, .apps-grid--two { grid-template-columns: 1fr; }
    .process-grid { grid-template-columns: 1fr; }
    .cta-section__inner { grid-template-columns: 1fr; }
    .stats-row { grid-template-columns: repeat(2, 1fr); }
    .detail-grid { grid-template-columns: 1fr; }
}

@media (max-width: 860px) {
    .nav { display: none; }
    .header-actions { display: none; }
    .menu-toggle { display: flex; }
}

@media (max-width: 640px) {
    .hero { padding: 3.5rem 0 4rem; }
    .stats-row { grid-template-columns: 1fr 1fr; }
    .brand__text { display: none; }
    .footer__inner { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
}
