/* ==========================================================================
   ExtensionFeedback — calm modern light
   No decoration. No section markers. Generous whitespace. One accent.
   ========================================================================== */

:root {
    --bg:           #fafaf7;
    --surface:      #ffffff;
    --surface-2:    #f3f2ee;

    --ink:          #15171c;
    --ink-soft:     #4b5563;
    --ink-quiet:    #8b8e96;

    --line:         #e6e4dd;
    --line-strong:  #d6d3ca;

    --accent:       #0f6b4f;
    --accent-soft:  #d8ebe1;
    --accent-deep:  #0a4d39;

    --danger:       #b9342a;
    --danger-soft:  #f5dad6;
    --good:         #2f6a3a;
    --warn:         #95580c;

    --sans:         'Funnel Sans', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
    --mono:         'JetBrains Mono', ui-monospace, SFMono-Regular, Consolas, monospace;

    --r-sm:         6px;
    --r-md:         10px;
    --r-lg:         16px;
    --shadow-sm:    0 1px 2px rgba(20,22,28,.04);
    --shadow:       0 2px 6px rgba(20,22,28,.06), 0 12px 32px -16px rgba(20,22,28,.1);
    --measure:      66ch;
    --gutter:       clamp(20px, 4vw, 56px);
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; }

body {
    background: var(--bg);
    color: var(--ink);
    font-family: var(--sans);
    font-size: 16px;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

::selection { background: var(--accent); color: #fff; }

/* Typography */
h1, h2, h3, h4 {
    font-family: var(--sans);
    font-weight: 600;
    color: var(--ink);
    letter-spacing: -0.02em;
    line-height: 1.15;
    margin: 0 0 0.5em;
    text-wrap: balance;
}
h1 { font-size: clamp(34px, 4vw, 52px); letter-spacing: -0.028em; line-height: 1.05; font-weight: 600; }
h2 { font-size: clamp(24px, 2.4vw, 32px); letter-spacing: -0.022em; }
h3 { font-size: 20px; }
h4 { font-size: 16px; font-weight: 600; }

p { margin: 0 0 1em; max-width: var(--measure); color: var(--ink); }
p.lede, .lede { font-size: 18px; line-height: 1.55; color: var(--ink-soft); max-width: 60ch; }
.muted { color: var(--ink-soft); }
.tiny { font-size: 13px; }

a {
    color: var(--accent);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: color .15s, border-color .15s;
}
a:hover { color: var(--accent-deep); border-bottom-color: currentColor; }

code, kbd, samp, pre { font-family: var(--mono); }
code {
    font-size: 0.88em;
    background: var(--surface-2);
    border: 1px solid var(--line);
    border-radius: 4px;
    padding: 1px 6px;
    color: var(--ink);
}
pre {
    background: #0f1218;
    color: #e7e9ee;
    font-size: 13px;
    line-height: 1.65;
    padding: 20px 24px;
    border-radius: var(--r-md);
    overflow-x: auto;
    margin: 16px 0 20px;
}
pre code { background: transparent; border: 0; padding: 0; color: inherit; font-size: 13px; }

ul, ol { padding-left: 1.4em; margin: 0 0 1em; max-width: var(--measure); }
li { margin: 0.3em 0; }

/* Header */
.site-header {
    background: var(--bg);
    border-bottom: 1px solid var(--line);
    padding: 16px var(--gutter);
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: saturate(180%) blur(8px);
    -webkit-backdrop-filter: saturate(180%) blur(8px);
}
.site-header .row {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}
.site-header .brand {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 17px;
    color: var(--ink);
    border: 0;
    letter-spacing: -0.012em;
}
.site-header .brand:hover { color: var(--ink); border: 0; }
.site-header .brand .dot {
    display: inline-block;
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--accent);
}
.site-header nav {
    display: flex;
    align-items: center;
    gap: 24px;
    font-size: 14px;
}
.site-header nav a {
    color: var(--ink-soft);
    border: 0;
}
.site-header nav a:hover { color: var(--ink); border: 0; }
.site-header nav .cta {
    background: var(--ink);
    color: #fff;
    padding: 8px 14px;
    border-radius: var(--r-sm);
    font-weight: 500;
    font-size: 14px;
}
.site-header nav .cta:hover { background: var(--accent); color: #fff; }
.site-header nav .pipe { color: var(--line-strong); }

/* Inline logout form so the button sits flush with sibling nav links */
.site-header nav .logout-form { display: inline; margin: 0; padding: 0; }
.site-header nav button.cta {
    font-family: var(--sans);
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
    padding: 8px 14px;
    border: 0;
    cursor: pointer;
    box-shadow: none;
    display: inline-block;
}
.site-header nav button.cta:active { transform: none; }

/* Footer logout button — looks like the other footer links */
.site-footer .logout-form-foot { display: inline; margin: 0; padding: 0; }
.site-footer .logout-form-foot button {
    background: transparent;
    color: var(--ink-soft);
    border: 0;
    padding: 0;
    font: inherit;
    cursor: pointer;
    box-shadow: none;
}
.site-footer .logout-form-foot button:hover { color: var(--accent); }

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: clamp(28px, 5vw, 72px) var(--gutter);
    flex: 1;
}
.container.narrow { max-width: 760px; }

/* Section spacing */
.section { padding: clamp(36px, 6vw, 80px) 0; }
.section + .section { border-top: 1px solid var(--line); }

.eyebrow {
    display: inline-block;
    font-family: var(--mono);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.02em;
    color: var(--accent);
    margin-bottom: 14px;
    text-transform: none;
}

/* Hero */
.hero {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
    gap: clamp(28px, 5vw, 80px);
    align-items: center;
    padding: clamp(40px, 7vw, 96px) 0 clamp(36px, 6vw, 72px);
}
.hero h1 {
    font-size: clamp(38px, 5.4vw, 64px);
    font-weight: 600;
    letter-spacing: -0.03em;
    line-height: 1.04;
    margin: 0 0 20px;
}
.hero .lede { font-size: 19px; max-width: 56ch; margin-bottom: 28px; }
.hero .actions { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 11px 18px;
    border-radius: var(--r-sm);
    font-family: var(--sans);
    font-size: 15px;
    font-weight: 500;
    line-height: 1;
    border: 1px solid transparent;
    cursor: pointer;
    text-decoration: none;
    transition: background .15s, color .15s, border-color .15s, box-shadow .15s, transform .08s;
    background: var(--ink);
    color: #fff;
    box-shadow: var(--shadow-sm);
}
.btn:hover { background: var(--accent); color: #fff; border-color: transparent; }
.btn:active { transform: translateY(1px); }
.btn-ghost {
    background: transparent;
    color: var(--ink);
    border-color: var(--line-strong);
}
.btn-ghost:hover { background: var(--surface-2); color: var(--ink); border-color: var(--ink-soft); }
.btn-link {
    background: transparent;
    color: var(--accent);
    padding: 11px 4px;
    box-shadow: none;
}
.btn-link:hover { background: transparent; color: var(--accent-deep); }
.btn-danger { background: var(--danger); }
.btn-danger:hover { background: #8e251c; color: #fff; }

button { font: inherit; }
button[type=submit] {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 18px;
    border-radius: var(--r-sm);
    background: var(--ink);
    color: #fff;
    border: 0;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: background .15s;
}
button[type=submit]:hover { background: var(--accent); }
button:focus-visible, .btn:focus-visible, a:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 3px;
}

/* Visual: tabbed install/uninstall showcase (hero right) */
.showcase {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.tabset {
    position: relative;
    display: flex;
    flex-direction: column;
}
/* Hide the radios off-screen but keep them focusable */
.tabset > input[type=radio] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
    width: 1px; height: 1px;
}

.tabset-bar {
    display: flex;
    background: var(--surface-2);
    border-bottom: 1px solid var(--line);
}
.tabset-tab {
    flex: 1;
    padding: 14px 16px;
    text-align: center;
    cursor: pointer;
    font-family: var(--sans);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.01em;
    color: var(--ink-soft);
    border-bottom: 2px solid transparent;
    margin-bottom: -1px;
    user-select: none;
    transition: color .15s, background .15s, border-color .15s;
}
.tabset-tab:hover { color: var(--ink); background: var(--surface); }

/* Active states (sibling-selector trick on the radios) */
.tabset > #ht-install:checked  ~ .tabset-bar label[for="ht-install"],
.tabset > #ht-uninstall:checked ~ .tabset-bar label[for="ht-uninstall"] {
    color: var(--ink);
    background: var(--surface);
    border-bottom-color: var(--accent);
}

/* Keyboard focus ring on the active label when the input is focused */
.tabset > #ht-install:focus-visible  ~ .tabset-bar label[for="ht-install"],
.tabset > #ht-uninstall:focus-visible ~ .tabset-bar label[for="ht-uninstall"] {
    outline: 2px solid var(--accent);
    outline-offset: -3px;
}

.tabset-panels { padding: 22px; }
.tabset-panel  { display: none; }
.tabset > #ht-install:checked  ~ .tabset-panels .tabset-panel[data-for="install"],
.tabset > #ht-uninstall:checked ~ .tabset-panels .tabset-panel[data-for="uninstall"] {
    display: block;
    animation: fadeUp .35s cubic-bezier(.2,.6,.2,1) both;
}

/* Mini preview sitting inside the showcase */
.mini-preview {
    background: var(--bg);
    border: 1px solid var(--line);
    border-radius: var(--r-md);
    overflow: hidden;
    margin-bottom: 18px;
}
.mini-preview .url-bar {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--surface-2);
    border: 0;
    border-bottom: 1px solid var(--line);
    border-radius: 0;
    padding: 8px 12px;
    font-family: var(--mono);
    font-size: 11px;
    color: var(--ink-soft);
    margin: 0;
}
.mini-preview .url-bar .dots i {
    width: 8px; height: 8px; border-radius: 50%;
    background: #d3d0c5;
}
.mini-preview .mini-body { padding: 18px 18px 16px; }
.mini-preview .logo {
    width: 32px; height: 32px;
    border-radius: 10px;
    background: var(--accent);
    margin-bottom: 10px;
}
.mini-preview.mini-uninstall .logo { background: var(--danger); }
.mini-preview h4 { font-size: 18px; margin: 0 0 4px; letter-spacing: -0.01em; }
.mini-preview p  { font-size: 13px; color: var(--ink-soft); margin: 0 0 12px; }
.mini-preview .chips { display: flex; flex-wrap: wrap; gap: 6px; margin: 0; }
.mini-preview .chip {
    border: 1px solid var(--line);
    background: var(--surface);
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 12px;
    color: var(--ink-soft);
}
.mini-preview .chip.active {
    background: var(--accent-soft);
    border-color: var(--accent);
    color: var(--accent-deep);
    font-weight: 500;
}
.mini-preview.mini-uninstall .chip.active {
    background: #f3e0dc;
    border-color: var(--danger);
    color: #7c1f17;
}

/* List rendered below the mini-preview inside the active tab */
.showcase-list-head {
    font-family: var(--mono);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--ink-soft);
    margin-bottom: 10px;
}
.showcase-list ul { list-style: none; padding: 0; margin: 0; }
.showcase-list li {
    font-size: 13.5px;
    line-height: 1.5;
    color: var(--ink);
    padding: 9px 0;
    border-top: 1px solid var(--line);
}
.showcase-list li:first-child { border-top: 0; padding-top: 0; }
.showcase-list .fixlist li strong {
    display: inline-block;
    font-family: var(--mono);
    font-weight: 500;
    font-size: 12px;
    letter-spacing: 0.01em;
    background: #f3e8e6;
    color: #7c1f17;
    padding: 2px 8px;
    border-radius: 4px;
    margin-right: 4px;
}
/* "Opt-in" / "On by default" tag at the top of the showcase lists */
.showcase-list .opt-tag {
    background: var(--accent-soft);
    color: var(--accent-deep);
}
/* Cards & content blocks */
.card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--r-md);
    padding: clamp(20px, 3vw, 32px);
    margin-bottom: 16px;
}
.card h2:first-child, .card h3:first-child { margin-top: 0; }

/* Steps */
.steps {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}
.step {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--r-md);
    padding: 24px;
}
.step .num {
    display: inline-flex;
    align-items: center; justify-content: center;
    width: 28px; height: 28px;
    border-radius: 999px;
    background: var(--accent-soft);
    color: var(--accent-deep);
    font-family: var(--mono);
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 14px;
}
.step h3 { font-size: 18px; margin: 0 0 8px; }
.step p { font-size: 14.5px; color: var(--ink-soft); margin-bottom: 0; }
.step pre { font-size: 12px; padding: 14px 16px; margin-top: 14px; }

/* Features grid */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 16px;
    margin-top: 8px;
}
.feature {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--r-md);
    padding: 22px;
}
.feature .icon {
    width: 32px; height: 32px;
    border-radius: 8px;
    background: var(--accent-soft);
    color: var(--accent-deep);
    display: inline-flex;
    align-items: center; justify-content: center;
    font-family: var(--mono);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 14px;
}
.feature h3 { font-size: 16px; margin: 0 0 6px; }
.feature p { font-size: 14px; color: var(--ink-soft); margin: 0; }

/* Two-column compare */
.compare {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.compare .col {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--r-md);
    padding: 24px;
}
.compare h3 { font-size: 14px; font-weight: 600; margin: 0 0 12px; color: var(--ink-soft); text-transform: uppercase; letter-spacing: 0.06em; }
.compare ul { list-style: none; padding: 0; }
.compare li {
    padding: 8px 0 8px 22px;
    position: relative;
    font-size: 14.5px;
    color: var(--ink);
    border-top: 1px solid var(--line);
}
.compare li:first-child { border: 0; }
.compare li::before {
    content: '';
    position: absolute;
    left: 0; top: 14px;
    width: 12px; height: 12px;
    border-radius: 50%;
}
.compare .yes li::before { background: var(--accent-soft); border: 2px solid var(--accent); top: 12px; }
.compare .no  li::before { background: var(--danger-soft); border: 2px solid var(--danger); top: 12px; }

/* FAQ */
.faq details {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--r-md);
    margin-bottom: 8px;
    transition: border-color .15s, background .15s;
}
.faq details[open] { border-color: var(--line-strong); }
.faq summary {
    list-style: none;
    cursor: pointer;
    padding: 18px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    font-size: 16px;
    font-weight: 500;
    color: var(--ink);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
    content: '+';
    font-family: var(--mono);
    color: var(--accent);
    font-size: 22px;
    line-height: 1;
    transition: transform .2s;
}
.faq details[open] summary::after { content: '−'; }
.faq summary:hover { color: var(--accent); }
.faq .answer { padding: 0 22px 22px; color: var(--ink-soft); max-width: 64ch; }
.faq .answer p { font-size: 15px; line-height: 1.6; color: var(--ink-soft); }

/* Definition list (privacy schema) */
.def-grid {
    display: grid;
    grid-template-columns: minmax(180px, 220px) 1fr;
    gap: 0 32px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--r-md);
    overflow: hidden;
}
.def-grid dt, .def-grid dd { padding: 14px 18px; margin: 0; border-top: 1px solid var(--line); }
.def-grid dt:first-of-type, .def-grid dt:first-of-type + dd { border-top: 0; }
.def-grid dt {
    font-family: var(--mono);
    font-size: 13px;
    color: var(--accent-deep);
    background: var(--surface-2);
    align-self: stretch;
}
.def-grid dd { color: var(--ink); font-size: 14.5px; line-height: 1.55; }

/* Forms */
form .card { margin-bottom: 12px; }
label {
    display: block;
    margin: 16px 0 6px;
    font-size: 13px;
    font-weight: 500;
    color: var(--ink);
}
input[type=text], input[type=email], input[type=password],
input[type=url], input[type=number], textarea, select {
    width: 100%;
    padding: 11px 14px;
    background: var(--surface);
    color: var(--ink);
    border: 1px solid var(--line-strong);
    border-radius: var(--r-sm);
    font-family: var(--sans);
    font-size: 15px;
    transition: border-color .15s, box-shadow .15s;
}
input:focus, textarea:focus, select:focus {
    outline: 0;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-soft);
}
textarea { font-family: var(--mono); font-size: 13px; line-height: 1.55; min-height: 120px; }
input[type=color] { padding: 2px; height: 42px; }
input[type=checkbox], input[type=radio] { width: auto; }
input::placeholder, textarea::placeholder { color: var(--ink-quiet); }

/* Flash */
.flash {
    padding: 12px 16px;
    margin: 12px 0;
    border-radius: var(--r-sm);
    font-size: 14px;
    background: var(--surface-2);
    border: 1px solid var(--line-strong);
    color: var(--ink);
}
.flash.error { background: var(--danger-soft); border-color: #e6b6b0; color: #7c1f17; }
.flash.ok    { background: var(--accent-soft); border-color: #b6d8c5; color: var(--accent-deep); }
.flash.warn  { background: #fbe9c7; border-color: #e9c98c; color: #6b3a0c; }

.hp { position: absolute; left: -9999px; }

/* Credential boxes (signup credentials view) */
.credential-box {
    display: flex; align-items: center; gap: 10px;
    background: #0f1218;
    color: #fff;
    padding: 12px 16px;
    margin-top: 6px;
    font-family: var(--mono); font-size: 14px;
    word-break: break-all;
    border-radius: var(--r-sm);
}
.credential-box span { flex: 1; user-select: all; }
.credential-box button {
    flex: none;
    padding: 6px 12px;
    font-size: 11.5px;
    background: rgba(255,255,255,.12);
    color: #fff;
    border: 0;
    border-radius: 4px;
    cursor: pointer;
    transition: background .12s;
}
.credential-box button:hover { background: var(--accent); }

/* Tabs */
.tabs {
    display: flex;
    gap: 4px;
    border-bottom: 1px solid var(--line);
    margin-bottom: 0;
}
.tabs a {
    padding: 12px 18px;
    font-size: 14px;
    font-weight: 500;
    color: var(--ink-soft);
    border-bottom: 2px solid transparent;
    margin-bottom: -1px;
}
.tabs a:hover { color: var(--ink); border: 0; border-bottom: 2px solid transparent; }
.tabs a.active {
    color: var(--accent);
    border-bottom-color: var(--accent);
}

/* SDK fetchbox (download box on landing + sdk page) */
.sdk-box {
    background: #0f1218;
    color: #d8dde6;
    padding: 24px 28px;
    border-radius: var(--r-md);
    font-family: var(--mono);
    font-size: 13.5px;
    line-height: 1.7;
    margin: 16px 0;
    overflow-x: auto;
}
.sdk-box .label {
    display: block;
    color: #82c2a4;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 6px;
}
.sdk-box a { color: #82c2a4; border: 0; }
.sdk-box a:hover { color: #fff; border: 0; }
.sdk-box + .sdk-box { margin-top: -10px; }

/* CTA banner */
.cta-banner {
    background: var(--ink);
    color: #fff;
    border-radius: var(--r-lg);
    padding: clamp(28px, 5vw, 56px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}
.cta-banner h2 { color: #fff; max-width: 28ch; margin: 0; }
.cta-banner .actions { display: flex; gap: 12px; flex-wrap: wrap; }
.cta-banner .btn { background: #fff; color: var(--ink); }
.cta-banner .btn:hover { background: var(--accent); color: #fff; }
.cta-banner .btn-ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.3); }
.cta-banner .btn-ghost:hover { background: rgba(255,255,255,.08); border-color: #fff; }

/* Footer */
.site-footer {
    background: var(--bg);
    border-top: 1px solid var(--line);
    padding: 48px var(--gutter) 24px;
    margin-top: auto;
    font-size: 14px;
    color: var(--ink-soft);
}
.site-footer .row {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 32px;
}
.site-footer h4 {
    font-size: 13px;
    font-weight: 600;
    margin: 0 0 12px;
    color: var(--ink);
}
.site-footer .brand-block .brand {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--ink);
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 8px;
}
.site-footer .brand-block .brand .dot {
    display: inline-block;
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--accent);
}
.site-footer .brand-block p { font-size: 13.5px; max-width: 36ch; color: var(--ink-soft); margin: 0; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin: 6px 0; }
.site-footer a { color: var(--ink-soft); border: 0; }
.site-footer a:hover { color: var(--accent); border: 0; }
.site-footer .meta-bar {
    max-width: 1200px;
    margin: 32px auto 0;
    border-top: 1px solid var(--line);
    padding-top: 18px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 12.5px;
    color: var(--ink-quiet);
}
.site-footer .built-with { color: var(--accent); }

/* Subtle entrance animation (hero only) */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: none; }
}
.reveal > * { opacity: 0; animation: fadeUp .5s cubic-bezier(.2,.6,.2,1) forwards; }
.reveal > *:nth-child(1) { animation-delay: .04s; }
.reveal > *:nth-child(2) { animation-delay: .12s; }
.reveal > *:nth-child(3) { animation-delay: .20s; }
.reveal > *:nth-child(4) { animation-delay: .28s; }
@media (prefers-reduced-motion: reduce) {
    .reveal > * { animation: none; opacity: 1; }
    *, *::before, *::after { transition: none !important; }
}

/* Responsive */
@media (max-width: 880px) {
    .hero { grid-template-columns: 1fr; }
    .showcase { max-width: 520px; }
    .steps { grid-template-columns: 1fr; }
    .compare { grid-template-columns: 1fr; }
    .def-grid { grid-template-columns: 1fr; }
    .def-grid dd { padding-top: 0; }
    .site-footer .row { grid-template-columns: 1fr 1fr; }
    .site-header nav { gap: 12px; }
    .site-header nav .pipe { display: none; }
    .cta-banner { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 520px) {
    .site-footer .row { grid-template-columns: 1fr; }
    .site-header nav a:not(.cta) { display: none; }
}
