/* =========================================================
   TECOMA LABS — styles.css
   Apple-grade design with retro arcade soul.
   ========================================================= */

:root {
    --bg:           #050505;
    --bg-soft:      #0c0c0c;
    --bg-card:      #0f0f10;
    --line:         rgba(255, 255, 255, 0.08);
    --line-strong:  rgba(255, 255, 255, 0.18);
    --fg:           #ffffff;
    --fg-dim:       rgba(255, 255, 255, 0.62);
    --fg-mute:      rgba(255, 255, 255, 0.38);

    --accent:       #00ff85;
    --accent-2:     #19f0a8;
    --accent-glow:  rgba(0, 255, 133, 0.35);
    --accent-soft:  rgba(0, 255, 133, 0.10);

    --radius:       18px;
    --radius-lg:    28px;

    --font-display: "Space Grotesk", -apple-system, BlinkMacSystemFont, "SF Pro Display", system-ui, sans-serif;
    --font-body:    "Space Grotesk", -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
    --font-mono:    "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
    --font-arcade:  "Press Start 2P", monospace;

    --ease:         cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset ---------- */
* { box-sizing: border-box; margin: 0; padding: 0; }

html {
    scroll-behavior: smooth;
    background: var(--bg);
    color-scheme: dark;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    color: var(--fg);
    background: var(--bg);
    line-height: 1.5;
    overflow-x: hidden;
    font-feature-settings: "ss01", "ss02";
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button, input { font: inherit; color: inherit; }

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

/* ---------- Retro CRT overlays ---------- */
.scanlines {
    position: fixed; inset: 0;
    pointer-events: none;
    z-index: 200;
    background-image: repeating-linear-gradient(
        to bottom,
        rgba(255, 255, 255, 0.025) 0px,
        rgba(255, 255, 255, 0.025) 1px,
        transparent 1px,
        transparent 3px
    );
    mix-blend-mode: overlay;
    opacity: 0.5;
}
.vignette {
    position: fixed; inset: 0;
    pointer-events: none; z-index: 199;
    background:
        radial-gradient(ellipse at center, transparent 50%, rgba(0,0,0,0.55) 100%);
}

/* ---------- Containers / Sections ---------- */
.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 32px;
}
.section {
    padding: clamp(80px, 14vw, 180px) 0;
    position: relative;
}

/* ---------- Typography ---------- */
.eyebrow,
.kicker {
    font-family: var(--font-mono);
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--accent);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 24px;
}
.kicker {
    padding: 6px 14px;
    border: 1px solid var(--accent-soft);
    border-radius: 999px;
    background: var(--accent-soft);
}

.display {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(2.4rem, 6vw, 5.2rem);
    line-height: 1.02;
    letter-spacing: -0.035em;
    color: var(--fg);
    margin-bottom: 32px;
}
.display.giant {
    font-size: clamp(3.2rem, 9vw, 7rem);
    line-height: 0.96;
}

.hl {
    color: var(--accent);
    position: relative;
    display: inline-block;
    text-shadow:
        0 0 32px var(--accent-glow),
        0 0 80px var(--accent-glow);
}
.hl::after {
    content: "";
    position: absolute;
    left: 0; right: 0; bottom: -0.08em;
    height: 0.06em;
    background: var(--accent);
    box-shadow: 0 0 20px var(--accent-glow);
    transform-origin: left;
    animation: line 1.4s var(--ease) 0.6s both;
}
@keyframes line { from { transform: scaleX(0); } to { transform: scaleX(1); } }

.lead {
    font-size: clamp(1.05rem, 1.6vw, 1.35rem);
    line-height: 1.55;
    color: var(--fg-dim);
    max-width: 60ch;
    font-weight: 400;
}
.lead.center { margin: 0 auto; text-align: center; }

.micro {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.12em;
    color: var(--fg-mute);
    text-transform: uppercase;
}
.mono { font-family: var(--font-mono); font-size: 12px; color: var(--fg-mute); }

.micro-link {
    color: var(--accent);
    border-bottom: 1px solid var(--accent-soft);
    padding-bottom: 1px;
    transition: border-color 0.3s var(--ease);
}
.micro-link:hover { border-color: var(--accent); }

em {
    font-style: normal;
    color: var(--fg);
    border-bottom: 1px dashed var(--accent);
    padding-bottom: 1px;
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 28px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 15px;
    letter-spacing: -0.01em;
    transition: all 0.4s var(--ease);
    cursor: pointer;
    border: 1px solid transparent;
    will-change: transform;
}
.btn .arrow { transition: transform 0.4s var(--ease); }
.btn:hover .arrow { transform: translateX(6px); }

.btn--primary {
    background: var(--accent);
    color: #000;
    box-shadow:
        0 0 0 0 var(--accent-glow),
        0 16px 40px -16px var(--accent-glow);
}
.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow:
        0 0 0 6px var(--accent-soft),
        0 24px 48px -12px var(--accent-glow);
}

.btn--ghost {
    background: transparent;
    color: var(--fg);
    border-color: var(--line-strong);
}
.btn--ghost:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: var(--accent-soft);
}

/* ---------- NAV ---------- */
.nav {
    position: fixed; top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 16px 0;
    transition: all 0.4s var(--ease);
}
.nav.is-scrolled {
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    background: rgba(5, 5, 5, 0.7);
    border-bottom: 1px solid var(--line);
    padding: 10px 0;
}
.nav__inner {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}
.nav__logo img { height: 28px; width: auto; }

.nav__links {
    display: flex; gap: 36px;
}
.nav__links a {
    font-size: 14px;
    color: var(--fg-dim);
    transition: color 0.3s var(--ease);
    position: relative;
}
.nav__links a::before {
    content: "";
    position: absolute;
    left: 0; bottom: -6px;
    width: 0; height: 1px;
    background: var(--accent);
    transition: width 0.3s var(--ease);
}
.nav__links a:hover { color: var(--fg); }
.nav__links a:hover::before { width: 100%; }

.nav__cta {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 10px 18px;
    border: 1px solid var(--line-strong);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.3s var(--ease);
}
.nav__cta:hover { border-color: var(--accent); color: var(--accent); }
.nav__cta .dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 12px var(--accent-glow);
    animation: pulse 1.6s ease-in-out infinite;
}
@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%      { opacity: 0.5; transform: scale(0.85); }
}

@media (max-width: 820px) {
    .nav__links { display: none; }
}

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

.hero__grid {
    position: absolute; inset: 0;
    background-image:
        linear-gradient(to right, var(--line) 1px, transparent 1px),
        linear-gradient(to bottom, var(--line) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: radial-gradient(ellipse 70% 50% at 50% 50%, black, transparent);
    -webkit-mask-image: radial-gradient(ellipse 70% 50% at 50% 50%, black, transparent);
    z-index: -2;
}
.hero__glow {
    position: absolute;
    top: 50%; left: 50%;
    width: 800px; height: 800px;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, var(--accent-glow) 0%, transparent 60%);
    filter: blur(60px);
    z-index: -1;
    transition: transform 0.6s var(--ease);
    opacity: 0.7;
}

.hero__inner {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 32px;
    width: 100%;
}
.hero__title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(2.8rem, 9vw, 7.5rem);
    line-height: 0.96;
    letter-spacing: -0.04em;
    margin: 24px 0 36px;
    max-width: 16ch;
}
.hero__sub {
    font-size: clamp(1.1rem, 1.7vw, 1.4rem);
    color: var(--fg-dim);
    max-width: 56ch;
    line-height: 1.5;
    margin-bottom: 48px;
}
.hero__actions {
    display: flex; gap: 16px; flex-wrap: wrap;
    margin-bottom: 96px;
}

.hero__meta {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 720px;
    padding-top: 40px;
    border-top: 1px solid var(--line);
}
.meta-item {
    display: flex; flex-direction: column; gap: 8px;
}
.meta-num {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 4vw, 3rem);
    font-weight: 600;
    letter-spacing: -0.04em;
    color: var(--accent);
    text-shadow: 0 0 30px var(--accent-glow);
}
.meta-label {
    font-family: var(--font-mono);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--fg-mute);
    line-height: 1.3;
}

@media (max-width: 640px) {
    .hero__meta { grid-template-columns: 1fr 1fr; }
    .hero__meta .meta-item:last-child { grid-column: 1 / -1; }
}

/* ---------- Ticker ---------- */
.ticker {
    position: relative;
    margin-top: 80px;
    padding: 22px 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: linear-gradient(180deg, transparent, var(--accent-soft), transparent);
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
}
.ticker__track {
    display: inline-flex; gap: 48px;
    align-items: center;
    white-space: nowrap;
    animation: ticker 40s linear infinite;
    font-family: var(--font-arcade);
    font-size: 14px;
    color: var(--fg);
    letter-spacing: 0.08em;
}
.ticker__track .heart {
    color: var(--accent);
    font-size: 18px;
    text-shadow: 0 0 16px var(--accent-glow);
}
@keyframes ticker {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

.blink {
    display: inline-block;
    color: var(--accent);
    animation: blink 1s steps(2) infinite;
}
@keyframes blink { 50% { opacity: 0; } }

/* ---------- Manifesto ---------- */
.manifesto__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 60px;
    padding-top: 60px;
    border-top: 1px solid var(--line);
}
@media (max-width: 820px) {
    .manifesto__grid { grid-template-columns: 1fr; gap: 32px; }
}

/* ---------- Suite dB section ---------- */
.suite { background: linear-gradient(180deg, var(--bg) 0%, var(--bg-soft) 50%, var(--bg) 100%); }
.suite__head { text-align: center; margin-bottom: 80px; }
.suite__head .kicker { margin-left: auto; margin-right: auto; }
.suite__tagline {
    font-size: clamp(1.2rem, 2vw, 1.5rem);
    color: var(--fg-dim);
    max-width: 36ch;
    margin: 0 auto;
}
.suite__hero {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 64px;
    align-items: center;
}
@media (max-width: 980px) {
    .suite__hero { grid-template-columns: 1fr; gap: 48px; }
}
.suite__copy { display: flex; flex-direction: column; gap: 24px; align-items: flex-start; }
.suite__copy p {
    font-size: 1.1rem;
    color: var(--fg-dim);
    line-height: 1.6;
    max-width: 48ch;
}

/* ---------- Device mockup ---------- */
.device-mock {
    background: var(--bg-card);
    border: 1px solid var(--line-strong);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow:
        0 40px 80px -30px rgba(0, 0, 0, 0.8),
        0 0 0 1px rgba(255, 255, 255, 0.03) inset,
        0 80px 100px -40px var(--accent-glow);
    transform: perspective(1400px) rotateY(-6deg) rotateX(2deg);
    transition: transform 0.8s var(--ease);
}
.device-mock:hover { transform: perspective(1400px) rotateY(-2deg) rotateX(0deg); }

.device-mock__bar {
    display: flex; align-items: center; gap: 8px;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid var(--line);
}
.device-mock__bar span {
    width: 12px; height: 12px;
    border-radius: 50%;
    background: var(--line-strong);
}
.device-mock__bar span:nth-child(1) { background: #ff5f57; }
.device-mock__bar span:nth-child(2) { background: #febc2e; }
.device-mock__bar span:nth-child(3) { background: #28c840; }
.device-mock__bar code {
    margin-left: auto;
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--fg-mute);
    letter-spacing: 0.04em;
}

.device-mock__screen {
    padding: 36px 32px;
    background:
        radial-gradient(circle at 20% 0%, rgba(0, 255, 133, 0.06), transparent 40%),
        var(--bg-card);
    min-height: 360px;
}
.readout { font-family: var(--font-mono); }
.readout__label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--fg-mute);
    margin-bottom: 8px;
}
.readout__value {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 4rem;
    color: var(--accent);
    line-height: 1;
    letter-spacing: -0.04em;
    text-shadow: 0 0 40px var(--accent-glow);
    margin-bottom: 32px;
}
.readout__value small {
    font-size: 1.4rem;
    color: var(--fg-dim);
    margin-left: 6px;
    text-shadow: none;
}
.readout__bars {
    display: flex; gap: 4px;
    align-items: flex-end;
    height: 110px;
    margin-bottom: 28px;
    padding-bottom: 12px;
    border-bottom: 1px dashed var(--line);
}
.readout__bars span {
    flex: 1;
    background: linear-gradient(to top, var(--accent), var(--accent-2));
    height: var(--h);
    border-radius: 2px;
    box-shadow: 0 0 10px var(--accent-glow);
    animation: bar 2.4s ease-in-out infinite;
    animation-delay: calc(var(--h) * 5ms);
}
@keyframes bar {
    0%, 100% { transform: scaleY(1); transform-origin: bottom; }
    50%      { transform: scaleY(0.55); transform-origin: bottom; }
}
.readout__row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.readout__row > div {
    display: flex; flex-direction: column; gap: 4px;
}
.readout__row span {
    font-size: 10px;
    color: var(--fg-mute);
    text-transform: uppercase;
    letter-spacing: 0.14em;
}
.readout__row strong {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.4rem;
    color: var(--fg);
    letter-spacing: -0.02em;
}

/* ---------- FEATURES grid ---------- */
.grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 64px;
}
@media (max-width: 980px) { .grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .grid { grid-template-columns: 1fr; } }

.card {
    position: relative;
    padding: 36px 32px;
    background: var(--bg-card);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    transition: all 0.45s var(--ease);
    overflow: hidden;
    isolation: isolate;
}
.card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(600px circle at var(--mx, 50%) var(--my, 0%), var(--accent-soft), transparent 40%);
    opacity: 0;
    transition: opacity 0.4s var(--ease);
    z-index: -1;
}
.card:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
    box-shadow: 0 30px 60px -30px var(--accent-glow);
}
.card:hover::before { opacity: 1; }

.card__icon {
    display: inline-flex;
    align-items: center; justify-content: center;
    width: 56px; height: 56px;
    border-radius: 12px;
    background: var(--accent-soft);
    border: 1px solid var(--accent-soft);
    color: var(--accent);
    margin-bottom: 24px;
    font-family: var(--font-arcade);
    font-size: 9px;
    line-height: 1.4;
    text-shadow: 0 0 8px var(--accent-glow);
}
.card h3 {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.35rem;
    letter-spacing: -0.02em;
    margin-bottom: 12px;
}
.card p {
    color: var(--fg-dim);
    font-size: 0.95rem;
    line-height: 1.55;
}

/* ---------- DEVICES ---------- */
.devices { background: var(--bg-soft); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.devices .display, .devices .kicker { text-align: center; display: block; }
.devices .kicker { display: inline-flex; }
.devices > .container { text-align: center; }
.devices__row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    margin-top: 64px;
}
.device-tag {
    padding: 24px 32px;
    border: 1px solid var(--line-strong);
    border-radius: var(--radius);
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 180px;
    transition: all 0.4s var(--ease);
    background: var(--bg);
}
.device-tag:hover {
    border-color: var(--accent);
    transform: translateY(-3px);
    box-shadow: 0 20px 40px -20px var(--accent-glow);
}
.device-tag__name {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.3rem;
    letter-spacing: -0.02em;
}
.device-tag__sub {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--fg-mute);
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

/* ---------- CTA ---------- */
.cta-section {
    position: relative;
    overflow: hidden;
}
.cta-section::before {
    content: "";
    position: absolute;
    top: 50%; left: 50%;
    width: 1000px; height: 1000px;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, var(--accent-glow), transparent 65%);
    filter: blur(80px);
    opacity: 0.5;
    z-index: 0;
}
.cta-box {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 80px 32px;
    border: 1px solid var(--line-strong);
    border-radius: var(--radius-lg);
    background:
        linear-gradient(180deg, rgba(255,255,255,0.02), transparent),
        rgba(10, 10, 10, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}
.cta-box .kicker { margin-left: auto; margin-right: auto; }

/* ----- CTA form (Brevo-compatible) ----- */
.sib-form-container {
    margin: 48px auto 16px;
    max-width: 520px;
    width: 100%;
}

.cta-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
}
.cta-form__pill {
    display: flex;
    gap: 8px;
    padding: 6px;
    border: 1px solid var(--line-strong);
    border-radius: 999px;
    background: var(--bg);
    transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.cta-form__pill:focus-within {
    border-color: var(--accent);
    box-shadow: 0 0 0 4px var(--accent-soft);
}
.cta-form .input {
    flex: 1;
    min-width: 0;
    background: transparent;
    border: none;
    outline: none;
    padding: 0 22px;
    font-size: 15px;
    color: var(--fg);
    font-family: var(--font-body);
}
.cta-form .input::placeholder { color: var(--fg-mute); }

.cta-form__btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 26px;
    border: none;
    border-radius: 999px;
    background: var(--accent);
    color: #000;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 0.08em;
    cursor: pointer;
    transition: all 0.3s var(--ease);
    font-family: var(--font-arcade);
    white-space: nowrap;
}
.cta-form__btn:hover {
    transform: translateX(2px);
    box-shadow: 0 8px 24px -6px var(--accent-glow);
}
.cta-form__btn:disabled { opacity: 0.7; cursor: wait; }

/* Inline validation message under the pill */
.cta-form__error {
    display: block;
    font-family: var(--font-mono);
    font-size: 12px;
    color: #ff8e8e;
    text-align: center;
    letter-spacing: 0.04em;
    min-height: 0;
}
.cta-form__error:empty { display: none; }

/* Brevo honeypot — must remain in DOM but invisible to humans */
.input--hidden {
    position: absolute !important;
    left: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

/* Brevo success / error panels — restyled to match the dark/neon theme */
.sib-form-message-panel {
    display: none;
    margin: 0 auto 24px;
    padding: 16px 20px;
    border-radius: 14px;
    border: 1px solid;
    font-family: var(--font-mono);
    font-size: 13px;
    line-height: 1.5;
    letter-spacing: 0.02em;
    text-align: left;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
.sib-form-message-panel__text {
    display: flex;
    align-items: center;
    gap: 12px;
}
.sib-notification__icon {
    width: 20px;
    height: 20px;
    fill: currentColor;
    flex-shrink: 0;
}
.sib-form-message-panel__inner-text { flex: 1; }

.cta-msg--success {
    color: var(--accent);
    background: var(--accent-soft);
    border-color: var(--accent);
    box-shadow: 0 0 32px var(--accent-glow);
}
.cta-msg--error {
    color: #ff8e8e;
    background: rgba(255, 90, 90, 0.08);
    border-color: rgba(255, 90, 90, 0.35);
}

/* Loader icon (Brevo swaps these classes during submit) */
.sib-hide-loader-icon { display: none; }
.sib-show-loader-icon {
    display: inline-block;
    width: 14px;
    height: 14px;
    fill: currentColor;
    animation: sib-spin 0.8s linear infinite;
}
@keyframes sib-spin { to { transform: rotate(360deg); } }

/* ---------- Pixel heart (8-bit style) ---------- */
.heart-px {
    display: inline-block;
    width: 2px; height: 2px;
    margin: 0 16px 6px 2px;
    background: transparent;
    vertical-align: middle;
    box-shadow:
        2px 0   0 var(--accent),  4px 0   0 var(--accent),
        8px 0   0 var(--accent),  10px 0  0 var(--accent),
        0  2px  0 var(--accent),  2px 2px 0 var(--accent),  4px 2px 0 var(--accent),
        6px 2px 0 var(--accent),  8px 2px 0 var(--accent),  10px 2px 0 var(--accent), 12px 2px 0 var(--accent),
        0  4px  0 var(--accent),  2px 4px 0 var(--accent),  4px 4px 0 var(--accent),
        6px 4px 0 var(--accent),  8px 4px 0 var(--accent),  10px 4px 0 var(--accent), 12px 4px 0 var(--accent),
        2px 6px 0 var(--accent),  4px 6px 0 var(--accent),  6px 6px 0 var(--accent),
        8px 6px 0 var(--accent),  10px 6px 0 var(--accent),
        4px 8px 0 var(--accent),  6px 8px 0 var(--accent),  8px 8px 0 var(--accent),
        6px 10px 0 var(--accent);
    filter: drop-shadow(0 0 4px var(--accent-glow));
}
.heart-px.sm { transform: scale(0.7); margin: 0 10px 4px 0; }

/* ---------- FOOTER ---------- */
.footer {
    padding: 80px 0 32px;
    border-top: 1px solid var(--line);
    background: var(--bg-soft);
}
.footer__inner {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 64px;
    padding-bottom: 60px;
    border-bottom: 1px solid var(--line);
}
@media (max-width: 820px) {
    .footer__inner { grid-template-columns: 1fr; gap: 48px; }
}
.footer__brand img { height: 32px; margin-bottom: 18px; }
.footer__brand p {
    color: var(--fg-dim);
    font-size: 14px;
    line-height: 1.6;
}
.footer__cols {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}
@media (max-width: 640px) { .footer__cols { grid-template-columns: 1fr 1fr; } }
.footer__cols h4 {
    font-family: var(--font-mono);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--accent);
    margin-bottom: 18px;
    font-weight: 500;
}
.footer__cols a {
    display: block;
    color: var(--fg-dim);
    font-size: 14px;
    padding: 6px 0;
    transition: color 0.3s var(--ease);
}
.footer__cols a:hover { color: var(--accent); }

.footer__bottom {
    max-width: 1240px;
    margin: 0 auto;
    padding: 24px 32px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--fg-mute);
    font-size: 12px;
}

/* ---------- Reveal on scroll ---------- */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 1s var(--ease), transform 1s var(--ease);
}
.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}
.reveal:nth-child(2) { transition-delay: 0.08s; }
.reveal:nth-child(3) { transition-delay: 0.16s; }
.reveal:nth-child(4) { transition-delay: 0.24s; }
.reveal:nth-child(5) { transition-delay: 0.32s; }

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    .reveal { opacity: 1; transform: none; }
}
