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

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-height);
}

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

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

ul,
ol {
    list-style: none;
}

/* ========================================
   CONTAINER
   ======================================== */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

/* ========================================
   TYPOGRAPHY UTILITIES
   ======================================== */
.text-gradient {
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent), var(--color-lavender));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-eyebrow {
    font-size: var(--font-size-sm);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-primary);
    margin-bottom: var(--space-sm);
}

.section-title {
    font-size: var(--font-size-3xl);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: var(--space-md);
    color: #F5F5F5;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: var(--font-size-md);
    color: #94A3B8;
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.7;
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-3xl);
}

/* ========================================
   BUTTONS
   ======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: 12px 28px;
    font-family: var(--font-family);
    font-size: var(--font-size-sm);
    font-weight: 700;
    border: 2px solid transparent;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    text-decoration: none;
    line-height: 1.4;
}

.btn--primary {
    background: #3B82F6;
    color: #FFFFFF;
}

.btn--primary:hover {
    background: #2563EB;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.35);
}

.btn--accent {
    background: #3B82F6;
    color: #FFFFFF;
}

.btn--accent:hover {
    background: #2563EB;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}

.btn--outline {
    background: transparent;
    color: #3B82F6;
    border-color: rgba(59, 130, 246, 0.4);
}

.btn--outline:hover {
    background: #3B82F6;
    color: #FFFFFF;
    transform: translateY(-2px);
}

.btn--lg {
    padding: 14px 36px;
    font-size: var(--font-size-base);
}

.btn--sm {
    padding: 8px 16px;
    font-size: var(--font-size-xs);
    border-width: 1.5px;
}

.btn--full {
    width: 100%;
}

.magnetic-cta {
    will-change: transform;
    transform-origin: center;
}

/* ========================================
   HEADER / NAVBAR
   ======================================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(18, 18, 18, 0.8);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: none;
    transition: box-shadow 0.3s ease, background 0.3s ease;
}

.site-header.is-scrolled {
    box-shadow: var(--shadow-md);
}

.navbar__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-height);
    gap: 8px;
}

.navbar__logo {
    text-decoration: none;
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.navbar__logo-text {
    display: flex;
    align-items: baseline;
    gap: 6px;
    font-family: var(--font-family);
    font-weight: 800;
    font-size: 1.55rem;
    letter-spacing: -0.5px;
}

.logo-wiggly {
    color: var(--color-primary);
}

.logo-woosh {
    color: var(--color-accent);
}

.navbar__logo img {
    height: 38px;
    width: auto;
}

.navbar__links {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    flex: 1;
    justify-content: center;
    padding: 0 var(--space-lg);
}

.navbar__links a {
    font-size: var(--font-size-sm);
    font-weight: 600;
    color: #94A3B8;
    position: relative;
    transition: color 0.25s ease;
    padding: 4px 0;
}

.navbar__links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
    border-radius: 2px;
    transition: width 0.3s ease;
}

.navbar__links a:hover {
    color: var(--color-primary);
}

.navbar__links a:hover::after,
.navbar__links a.is-active::after {
    width: 100%;
}

.navbar__link--portal {
    color: #3B82F6 !important;
}

.navbar__cta {
    flex-shrink: 0;
}

.navbar__auth {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
}

.navbar__auth-user {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
}

.navbar__auth-email {
    font-size: var(--font-size-xs);
    color: #cbd5e1;
    max-width: 180px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.navbar__hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--space-sm);
    z-index: 1001;
}

.navbar__hamburger span {
    display: block;
    width: 24px;
    height: 2.5px;
    background: #F5F5F5;
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

/* --- Theme Toggle Button --- */
.theme-toggle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    flex-shrink: 0;
    transition: background 300ms ease, border-color 300ms ease;
}

.theme-toggle:hover {
    background: rgba(59, 130, 246, 0.1);
    border-color: rgba(59, 130, 246, 0.3);
}

.theme-toggle__sun,
.theme-toggle__moon {
    position: absolute;
    transition: opacity 300ms ease, transform 300ms ease;
}

/* Dark mode default: show moon */
.theme-toggle__sun {
    color: #fbbf24;
    opacity: 0;
    transform: rotate(-90deg) scale(0);
}

.theme-toggle__moon {
    color: #94A3B8;
    opacity: 1;
    transform: rotate(0deg) scale(1);
}

[data-theme="light"] .theme-toggle {
    border-color: rgba(0, 0, 0, 0.1);
    background: rgba(0, 0, 0, 0.03);
}

[data-theme="light"] .theme-toggle:hover {
    background: rgba(59, 130, 246, 0.06);
    border-color: rgba(59, 130, 246, 0.2);
}

[data-theme="light"] .theme-toggle__sun {
    opacity: 1;
    transform: rotate(0deg) scale(1);
}

[data-theme="light"] .theme-toggle__moon {
    opacity: 0;
    transform: rotate(90deg) scale(0);
}

/* ========================================
   AUTH MODAL
   ======================================== */
.auth-modal {
    position: fixed;
    inset: 0;
    z-index: 1200;
    display: grid;
    place-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
}

.auth-modal.is-open {
    opacity: 1;
    pointer-events: auto;
}

.auth-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(2, 6, 23, 0.7);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.auth-modal__panel {
    position: relative;
    width: min(92vw, 480px);
    max-height: 90vh;
    overflow-y: auto;
    border-radius: var(--radius-xl);
    padding: 28px;
    background: linear-gradient(160deg, #161d2a 0%, #0f172a 100%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 28px 70px rgba(2, 6, 23, 0.55);
}

.auth-modal__close {
    position: absolute;
    top: 12px;
    right: 12px;
    border: 0;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    font-size: 22px;
    line-height: 1;
    color: #e2e8f0;
    background: rgba(255, 255, 255, 0.08);
    cursor: pointer;
}

.auth-modal__close:hover {
    background: rgba(255, 255, 255, 0.16);
}

.auth-modal__eyebrow {
    font-size: var(--font-size-xs);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #60a5fa;
    margin-bottom: 8px;
}

.auth-modal__title {
    font-size: var(--font-size-xl);
    color: #f8fafc;
    margin-bottom: 18px;
}

.auth-modal__tabs {
    display: none;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 18px;
}

.auth-tab {
    border: 1px solid rgba(148, 163, 184, 0.25);
    background: rgba(255, 255, 255, 0.04);
    color: #cbd5e1;
    padding: 10px 14px;
    border-radius: var(--radius-md);
    cursor: pointer;
    font-weight: 600;
}

.auth-tab.is-active {
    border-color: rgba(59, 130, 246, 0.6);
    color: #ffffff;
    background: rgba(59, 130, 246, 0.22);
}

.auth-form {
    display: grid;
    gap: 10px;
}

.auth-form.is-hidden {
    display: none;
}

.auth-form__label {
    font-size: var(--font-size-xs);
    color: #cbd5e1;
    font-weight: 600;
}

.auth-form__input {
    width: 100%;
    border-radius: var(--radius-md);
    border: 1px solid rgba(148, 163, 184, 0.35);
    background: rgba(2, 6, 23, 0.35);
    color: #f8fafc;
    padding: 11px 12px;
    font-family: var(--font-family);
    font-size: var(--font-size-sm);
}

.auth-form__input::placeholder {
    color: #94a3b8;
}

.auth-form__input:focus {
    outline: none;
    border-color: #60a5fa;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.25);
}

.auth-form__submit {
    margin-top: 8px;
}

.auth-form__forgot-link {
    display: block;
    margin-top: 10px;
    background: none;
    border: none;
    color: #60a5fa;
    font-size: var(--font-size-xs);
    cursor: pointer;
    text-align: center;
    width: 100%;
    padding: 4px 0;
}

.auth-form__forgot-link:hover {
    color: #93c5fd;
    text-decoration: underline;
}

.auth-form__switch-link {
    display: block;
    margin-top: 2px;
    background: none;
    border: none;
    color: #cbd5e1;
    font-size: var(--font-size-xs);
    cursor: pointer;
    text-align: center;
    width: 100%;
    padding: 4px 0;
}

.auth-form__switch-link:hover {
    color: #93c5fd;
    text-decoration: underline;
}

.auth-form__hint {
    font-size: var(--font-size-xs);
    color: #94a3b8;
    margin-bottom: 10px;
    line-height: 1.5;
}

.auth-divider {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 18px 0 12px;
    color: #64748b;
    font-size: var(--font-size-xs);
}

.auth-divider::before,
.auth-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(148, 163, 184, 0.2);
}

.btn--google {
    background: #ffffff;
    color: #1e293b;
    border: 1.5px solid rgba(148, 163, 184, 0.35);
    font-size: var(--font-size-sm);
    font-weight: 600;
    gap: 10px;
}

.btn--google:hover {
    background: #f8fafc;
    border-color: rgba(59, 130, 246, 0.4);
    transform: translateY(-1px);
    color: #0f172a;
}

.auth-modal__status {
    margin-top: 14px;
    min-height: 22px;
    font-size: var(--font-size-sm);
    color: #93c5fd;
}

.auth-modal__status.is-error {
    color: #fca5a5;
}

.auth-modal__status.is-success {
    color: #86efac;
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
    padding-top: calc(var(--header-height) + var(--space-4xl));
    padding-bottom: var(--space-4xl);
    background: #121212;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(46, 196, 182, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(242, 167, 179, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.hero__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero__eyebrow {
    font-size: var(--font-size-sm);
    font-weight: 600;
    color: #3B82F6;
    background: rgba(59, 130, 246, 0.1);
    display: inline-block;
    padding: 6px 16px;
    border-radius: var(--radius-full);
    margin-bottom: var(--space-lg);
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.hero__headline {
    font-size: var(--font-size-4xl);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: var(--space-lg);
    color: #F5F5F5;
    letter-spacing: -0.02em;
}

.hero__subheadline {
    font-size: var(--font-size-md);
    color: #94A3B8;
    line-height: 1.7;
    margin-bottom: var(--space-xl);
    max-width: 520px;
}

.hero__actions {
    display: flex;
    gap: var(--space-md);
    margin-bottom: var(--space-2xl);
    flex-wrap: wrap;
}

.hero__stats {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    padding: var(--space-lg) var(--space-xl);
    background: rgba(30, 30, 30, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: var(--radius-lg);
    box-shadow: none;
    max-width: fit-content;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero__stat {
    text-align: center;
}

.hero__stat-number {
    display: block;
    font-size: var(--font-size-xl);
    font-weight: 800;
    color: var(--color-primary);
}

.hero__stat-label {
    font-size: var(--font-size-xs);
    color: var(--color-text-light);
    font-weight: 500;
}

.hero__stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
}

.hero__visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero__image-wrapper {
    width: 100%;
}

.hero__placeholder-img {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
}

.hero__placeholder-pet,
.hero__placeholder-device {
    aspect-ratio: 1;
    border-radius: var(--radius-xl);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    font-size: 3.5rem;
    transition: transform 0.3s ease;
}

.hero__placeholder-pet:hover,
.hero__placeholder-device:hover {
    transform: scale(1.03);
}

.hero__placeholder-pet {
    background: rgba(59, 130, 246, 0.08);
    border: 2px solid rgba(59, 130, 246, 0.15);
}

.hero__placeholder-device {
    background: rgba(129, 140, 248, 0.08);
    border: 2px solid rgba(129, 140, 248, 0.15);
}

.hero__placeholder-pet p,
.hero__placeholder-device p {
    font-size: var(--font-size-sm);
    font-weight: 600;
    color: #94A3B8;
}

/* ========================================
   HERO — DARK MINIMALIST
   ======================================== */
.hero-dark {
    background: #121212;
    color: #ffffff;
    padding: 120px 0 100px;
    overflow: hidden;
    position: relative;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.hero-dark__container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 48px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 80px;
}

/* --- Badge --- */
.hero-dark__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(59, 130, 246, 0.08);
    border: 1px solid rgba(59, 130, 246, 0.15);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 500;
    color: #60a5fa;
    letter-spacing: 0.02em;
    margin-bottom: 32px;
    width: fit-content;
}

.hero-dark__badge svg {
    color: #3b82f6;
}

/* --- Headline --- */
.hero-dark__headline {
    font-family: 'Inter', sans-serif;
    font-size: clamp(2.5rem, 4.5vw, 4rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.08;
    color: #f8fafc;
    margin-bottom: 24px;
}

/* --- Sub-headline --- */
.hero-dark__subheadline {
    font-size: 1.125rem;
    font-weight: 400;
    line-height: 1.7;
    color: #6b7280;
    max-width: 480px;
    margin-bottom: 40px;
}

/* --- CTA Button --- */
.hero-dark__actions {
    margin-bottom: 56px;
}

.hero-dark__btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    background: #ffffff;
    color: #121212;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: -0.01em;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.06),
        0 1px 2px rgba(0, 0, 0, 0.3),
        0 0 40px rgba(255, 255, 255, 0.06);
    position: relative;
    overflow: hidden;
}

.hero-dark__btn::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg,
            transparent 30%,
            rgba(255, 255, 255, 0.25) 50%,
            transparent 70%);
    animation: btnShimmer 3.5s ease-in-out infinite;
    pointer-events: none;
}

@keyframes btnShimmer {
    0% {
        transform: translateX(-100%) rotate(45deg);
    }

    100% {
        transform: translateX(100%) rotate(45deg);
    }
}

.hero-dark__btn:hover {
    background: #f0f0f0;
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.1),
        0 4px 16px rgba(0, 0, 0, 0.4),
        0 0 60px rgba(255, 255, 255, 0.1);
    transform: translateY(-1px);
    color: #121212;
}

.hero-dark__btn svg {
    transition: transform 0.3s ease;
}

.hero-dark__btn:hover svg {
    transform: translateX(3px);
}

/* ========================================
   HERO WAITLIST BUTTON — LAYERED STATE MACHINE
   States: idle | running | confirmed
   ======================================== */
.hero-dark__btn {
    /* clip so dog doesn't bleed outside pill */
    overflow: hidden;
}

/* Prevent the shimmer ::after from overlapping dog/check layers */
.hero-dark__btn.ww-btn--running::after,
.hero-dark__btn.ww-btn--confirmed::after {
    animation: none;
    opacity: 0;
}

/* ----- Shared layer setup ----- */
.ww-btn__label,
.ww-btn__dog-stage,
.ww-btn__confirmed {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    transition: opacity 0.22s ease, transform 0.22s ease;
    pointer-events: none;
}

/* idle: label visible, others hidden */
.ww-btn__label {
    opacity: 1;
    transform: translate(-50%, -50%);
}

.ww-btn__dog-stage {
    opacity: 0;
    transform: translate(-50%, calc(-50% + 8px));
}

.ww-btn__confirmed {
    opacity: 0;
    transform: translate(-50%, calc(-50% + 8px));
    gap: 10px;
}

/* button needs a fixed width/height so layers can be absolutely centred */
.hero-dark__btn {
    position: relative;
    min-width: 180px;
    min-height: 54px;
}

/* ----- RUNNING STATE ----- */
.hero-dark__btn.ww-btn--running .ww-btn__label {
    opacity: 0;
    transform: translate(-50%, calc(-50% - 8px));
}

.hero-dark__btn.ww-btn--running .ww-btn__dog-stage {
    opacity: 1;
    transform: translate(-50%, -50%);
}

/* ----- CONFIRMED STATE ----- */
.hero-dark__btn.ww-btn--confirmed .ww-btn__label,
.hero-dark__btn.ww-btn--confirmed .ww-btn__dog-stage {
    opacity: 0;
    transform: translate(-50%, calc(-50% - 8px));
}

.hero-dark__btn.ww-btn--confirmed .ww-btn__confirmed {
    opacity: 1;
    transform: translate(-50%, -50%);
}

.hero-dark__btn.ww-btn--confirmed {
    background: #121212;
    color: #ffffff;
    border: 1.5px solid rgba(255, 255, 255, 0.18);
}

/* ----- DOG SVG ----- */
.ww-btn__dog-stage {
    width: 100%;
    justify-content: flex-start;
    padding: 0 24px;
    box-sizing: border-box;
    color: #121212;
}

.ww-btn__dog {
    width: 80px;
    height: 32px;
    flex-shrink: 0;
    /* JS sets translateX via --dog-x to spring the dog across */
    transform: translateX(var(--dog-x, -24px));
    will-change: transform;
}

/* Gallop: alternate leg pairs */
@keyframes dogFrontLegs {

    0%,
    100% {
        d: path("M46 19 Q47 24 44 27");
    }

    50% {
        d: path("M46 19 Q48 22 50 24");
    }
}

@keyframes dogFrontLegs2 {

    0%,
    100% {
        d: path("M42 19 Q40 25 38 27");
    }

    50% {
        d: path("M42 19 Q38 23 36 25");
    }
}

@keyframes dogBackLegs {

    0%,
    100% {
        d: path("M32 19 Q34 24 32 27");
    }

    50% {
        d: path("M32 19 Q30 23 28 25");
    }
}

@keyframes dogBackLegs2 {

    0%,
    100% {
        d: path("M36 19 Q35 25 37 27");
    }

    50% {
        d: path("M36 19 Q38 22 40 24");
    }
}

@keyframes dogBodyBob {

    0%,
    100% {
        d: path("M28 18 Q36 14 44 16 Q50 17 54 14");
    }

    50% {
        d: path("M28 17 Q36 13 44 15 Q50 16 54 13");
    }
}

@keyframes dogTailWag {

    0%,
    100% {
        d: path("M28 18 Q22 12 24 8");
    }

    50% {
        d: path("M28 18 Q20 14 23 10");
    }
}

@keyframes dogEarFlap {

    0%,
    100% {
        d: path("M54 9 Q52 5 55 6");
    }

    50% {
        d: path("M54 9 Q51 6 54 7");
    }
}

.hero-dark__btn.ww-btn--running .dog-leg--fl1 {
    animation: dogFrontLegs 0.28s ease-in-out infinite;
}

.hero-dark__btn.ww-btn--running .dog-leg--fl2 {
    animation: dogFrontLegs2 0.28s ease-in-out infinite 0.14s;
}

.hero-dark__btn.ww-btn--running .dog-leg--bl1 {
    animation: dogBackLegs 0.28s ease-in-out infinite 0.07s;
}

.hero-dark__btn.ww-btn--running .dog-leg--bl2 {
    animation: dogBackLegs2 0.28s ease-in-out infinite 0.21s;
}

.hero-dark__btn.ww-btn--running .dog-body {
    animation: dogBodyBob 0.28s ease-in-out infinite;
}

.hero-dark__btn.ww-btn--running .dog-tail {
    animation: dogTailWag 0.22s ease-in-out infinite;
}

.hero-dark__btn.ww-btn--running .dog-ear {
    animation: dogEarFlap 0.32s ease-in-out infinite;
}

/* ----- CHECKMARK DRAW-ON ----- */
.ww-btn__check {
    overflow: visible;
}

.ww-btn__check polyline {
    stroke-dasharray: 22;
    stroke-dashoffset: 22;
    transition: stroke-dashoffset 0.42s cubic-bezier(0.22, 1, 0.36, 1) 0.08s;
}

.hero-dark__btn.ww-btn--confirmed .ww-btn__check polyline {
    stroke-dashoffset: 0;
}

/* --- Meta stats --- */
.hero-dark__meta {
    display: flex;
    align-items: center;
    gap: 20px;
}

.hero-dark__meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 500;
    color: #4b5563;
    letter-spacing: 0.01em;
}

.hero-dark__meta-item svg {
    color: #3b82f6;
    opacity: 0.7;
}

.hero-dark__meta-divider {
    width: 1px;
    height: 16px;
    background: #1f2937;
}

/* --- Visual / Product side --- */
.hero-dark__visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-dark__product-glow {
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

/* Orbiting particle 1 */
.hero-dark__product-glow::before {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #3b82f6;
    box-shadow: 0 0 16px 4px rgba(59, 130, 246, 0.6);
    top: 50%;
    left: 50%;
    animation: orbit1 8s linear infinite;
}

/* Orbiting particle 2 */
.hero-dark__product-glow::after {
    content: '';
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #818cf8;
    box-shadow: 0 0 12px 3px rgba(129, 140, 248, 0.5);
    top: 50%;
    left: 50%;
    animation: orbit2 12s linear infinite reverse;
}

@keyframes orbit1 {
    from {
        transform: rotate(0deg) translateX(180px) rotate(0deg);
    }

    to {
        transform: rotate(360deg) translateX(180px) rotate(-360deg);
    }
}

@keyframes orbit2 {
    from {
        transform: rotate(0deg) translateX(140px) rotate(0deg);
    }

    to {
        transform: rotate(360deg) translateX(140px) rotate(-360deg);
    }
}

.hero-dark__product-img {
    width: 100%;
    max-width: 520px;
    height: auto;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 20px 60px rgba(59, 130, 246, 0.12));
    animation: heroFloat 6s ease-in-out infinite;
}

@keyframes heroFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

/* --- Animated data rings (product demo effect) --- */
.hero-dark__data-rings {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    pointer-events: none;
}

.data-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 50%;
    border: 1px solid transparent;
    transform: translate(-50%, -50%);
    opacity: 0;
    animation: dataRingPulse 4s ease-out infinite;
}

.data-ring--1 {
    width: 250px;
    height: 250px;
    border-color: rgba(59, 130, 246, 0.25);
    border-style: dashed;
    animation-delay: 0s;
    animation-duration: 4s;
}

.data-ring--2 {
    width: 340px;
    height: 340px;
    border-color: rgba(129, 140, 248, 0.15);
    border-style: dotted;
    animation-delay: 1.3s;
    animation-duration: 4s;
}

.data-ring--3 {
    width: 430px;
    height: 430px;
    border-color: rgba(56, 189, 248, 0.1);
    border-style: dashed;
    animation-delay: 2.6s;
    animation-duration: 4s;
}

@keyframes dataRingPulse {
    0% {
        transform: translate(-50%, -50%) scale(0.7) rotate(0deg);
        opacity: 0;
    }

    20% {
        opacity: 1;
    }

    100% {
        transform: translate(-50%, -50%) scale(1.1) rotate(45deg);
        opacity: 0;
    }
}

/* --- Responsive --- */
@media (max-width: 1024px) {
    .hero-dark__container {
        grid-template-columns: 1fr;
        gap: 48px;
        text-align: center;
        padding: 0 32px;
    }

    .hero-dark__badge {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-dark__subheadline {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-dark__meta {
        justify-content: center;
    }

    .hero-dark__product-img {
        max-width: 400px;
    }

    .hero-dark {
        padding: 96px 0 72px;
    }
}

@media (max-width: 640px) {
    .hero-dark {
        padding: 80px 0 56px;
    }

    .hero-dark__container {
        gap: 36px;
        padding: 0 20px;
    }

    .hero-dark__badge {
        font-size: 12px;
        margin-bottom: 24px;
    }

    .hero-dark__subheadline {
        font-size: 1rem;
    }

    .hero-dark__btn {
        padding: 14px 28px;
        font-size: 14px;
        width: 100%;
        justify-content: center;
    }

    .hero-dark__actions {
        margin-bottom: 40px;
    }

    .hero-dark__meta {
        flex-direction: column;
        gap: 12px;
    }

    .hero-dark__meta-divider {
        width: 32px;
        height: 1px;
    }

    .hero-dark__product-img {
        max-width: 300px;
    }
}

/* ========================================
   SOCIAL PROOF BAR
   ======================================== */
.social-proof {
    background: #1E1E1E;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding: var(--space-lg) 0;
}

.social-proof__container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-lg);
    flex-wrap: wrap;
}

.social-proof__container>p {
    font-size: var(--font-size-sm);
    color: #94A3B8;
    font-weight: 500;
}

.social-proof__logos {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
}

.social-proof__item {
    display: flex;
    flex-direction: column;
    font-size: var(--font-size-sm);
    color: #94A3B8;
}

.social-proof__item strong {
    color: #F5F5F5;
}

.social-proof__divider {
    width: 1px;
    height: 32px;
    background: rgba(255, 255, 255, 0.1);
}

/* ========================================
   ECOSYSTEM
   ======================================== */
.ecosystem {
    padding: var(--space-5xl) 0;
    background: #121212;
    position: relative;
}

.ecosystem::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to bottom, rgba(18, 18, 18, 0) 0%, transparent 100%);
    pointer-events: none;
}

.ecosystem__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

.eco-card {
    background: #1E1E1E;
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04), 0 2px 8px rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    position: relative;
    overflow: hidden;
}

.eco-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.eco-card:hover::before {
    opacity: 1;
}

.eco-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 40px rgba(59, 130, 246, 0.15), 0 0 0 1px rgba(59, 130, 246, 0.1);
    border-color: rgba(59, 130, 246, 0.3);
}

.eco-card:nth-child(1)::before {
    background: linear-gradient(90deg, var(--color-primary), var(--color-mint));
}

.eco-card:nth-child(2)::before {
    background: linear-gradient(90deg, var(--color-lavender), var(--color-accent));
}

.eco-card:nth-child(3)::before {
    background: linear-gradient(90deg, var(--color-accent), var(--color-peach));
}

.eco-card__icon {
    font-size: 2.5rem;
    margin-bottom: var(--space-md);
    display: inline-block;
}

.eco-card__icon img {
    width: 56px;
    height: 56px;
    display: block;
}

.eco-card__title {
    font-size: var(--font-size-lg);
    font-weight: 700;
    margin-bottom: var(--space-sm);
    color: #F5F5F5;
    letter-spacing: -0.02em;
}

.eco-card__desc {
    font-size: var(--font-size-sm);
    color: #94A3B8;
    line-height: 1.7;
}

/* ========================================
   HOW IT WORKS — GLASSMORPHISM
   ======================================== */
.hiw {
    padding: var(--space-5xl) 0;
    background: linear-gradient(170deg, #0f0f1a 0%, #1a1a2e 50%, #0f0f1a 100%);
    position: relative;
    overflow: hidden;
}

.hiw::before {
    content: '';
    position: absolute;
    top: -40%;
    left: -20%;
    width: 60%;
    height: 80%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.hiw::after {
    content: '';
    position: absolute;
    bottom: -30%;
    right: -15%;
    width: 50%;
    height: 70%;
    background: radial-gradient(circle, rgba(46, 196, 182, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.hiw__container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
    position: relative;
    z-index: 1;
    text-align: center;
}

.hiw__eyebrow {
    font-family: 'Inter', sans-serif;
    font-size: var(--font-size-xs);
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #3b82f6;
    margin-bottom: var(--space-md);
}

.hiw__title {
    font-family: 'Inter', sans-serif;
    font-size: var(--font-size-3xl);
    font-weight: 800;
    color: #f0f0f5;
    letter-spacing: -0.02em;
    margin-bottom: var(--space-md);
}

.hiw__subtitle {
    font-family: 'Inter', sans-serif;
    font-size: var(--font-size-base);
    color: rgba(240, 240, 245, 0.55);
    max-width: 540px;
    margin: 0 auto var(--space-3xl);
    line-height: 1.7;
}

/* --- Flow layout (cards + connectors) --- */
.hiw__flow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
}

/* --- Glass card --- */
.hiw__card {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: var(--space-2xl) var(--space-xl);
    text-align: center;
    width: 280px;
    flex-shrink: 0;
    position: relative;
    transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.hiw__card:hover {
    transform: translateY(-6px);
    border-color: rgba(59, 130, 246, 0.25);
    box-shadow: 0 8px 32px rgba(59, 130, 246, 0.1), 0 0 0 1px rgba(59, 130, 246, 0.08);
}

.hiw__step-num {
    font-family: 'Inter', sans-serif;
    font-size: 2.75rem;
    font-weight: 900;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.25), rgba(46, 196, 182, 0.15));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: var(--space-sm);
    display: block;
}

.hiw__icon {
    margin-bottom: var(--space-md);
}

.hiw__icon img {
    width: 48px;
    height: 48px;
    display: block;
    margin: 0 auto;
    opacity: 0.9;
}

.hiw__card-title {
    font-family: 'Inter', sans-serif;
    font-size: var(--font-size-lg);
    font-weight: 700;
    color: #f0f0f5;
    margin-bottom: var(--space-sm);
}

.hiw__card-desc {
    font-family: 'Inter', sans-serif;
    font-size: var(--font-size-sm);
    color: rgba(240, 240, 245, 0.5);
    line-height: 1.7;
}

/* --- Dashed connectors --- */
.hiw__connector {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 0 var(--space-sm);
    flex-shrink: 0;
}

.hiw__connector-line {
    width: 60px;
    height: 2px;
    display: block;
    filter: drop-shadow(0 0 4px rgba(59, 130, 246, 0.4));
}

.hiw__connector-line line {
    animation: dashFlow 1.2s linear infinite;
}

@keyframes dashFlow {
    from {
        stroke-dashoffset: 20;
    }

    to {
        stroke-dashoffset: 0;
    }
}

.hiw__connector-arrow {
    flex-shrink: 0;
    opacity: 0.9;
    animation: arrowPulse 2s ease-in-out infinite;
    filter: drop-shadow(0 0 6px rgba(59, 130, 246, 0.5));
}

@keyframes arrowPulse {

    0%,
    100% {
        opacity: 0.5;
        transform: translateX(0);
    }

    50% {
        opacity: 1;
        transform: translateX(3px);
    }
}

/* --- Patent badge --- */
.hiw__badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    margin-top: var(--space-3xl);
    padding: 8px 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    font-family: 'Inter', sans-serif;
    font-size: var(--font-size-xs);
    font-weight: 500;
    color: rgba(240, 240, 245, 0.6);
    letter-spacing: 0.04em;
}

.hiw__badge svg {
    opacity: 0.5;
    flex-shrink: 0;
}

/* ========================================
   PRICING GRID
   ======================================== */
.pricing {
    padding: var(--space-5xl) 0;
    background: #121212;
}

.pricing__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    max-width: 780px;
    margin: 0 auto;
}

/* --- Card base --- */
.pricing__card {
    border-radius: 24px;
    background: #1E1E1E;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04), 0 2px 8px rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    position: relative;
}

.pricing__card-inner {
    padding: var(--space-2xl) var(--space-xl);
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* --- Pro card animated gradient border --- */
.pricing__card--pro {
    background: conic-gradient(from var(--pricing-angle, 0deg), #3B82F6, #818cf8, #38bdf8, #3B82F6);
    padding: 2px;
    border: none;
    animation: pricingBorderRotate 4s linear infinite;
    box-shadow: 0 0 24px rgba(59, 130, 246, 0.2), 0 0 48px rgba(129, 140, 248, 0.1);
}

@property --pricing-angle {
    syntax: '<angle>';
    initial-value: 0deg;
    inherits: false;
}

@keyframes pricingBorderRotate {
    to {
        --pricing-angle: 360deg;
    }
}

/* Fallback for browsers without @property */
@supports not (background: conic-gradient(from 0deg, red, blue)) {
    .pricing__card--pro {
        background: linear-gradient(135deg, #3B82F6, #818cf8);
    }
}

.pricing__card--pro .pricing__card-inner {
    background: #1E1E1E;
    border-radius: 22px;
}

/* --- Badge --- */
.pricing__badge {
    display: inline-block;
    align-self: flex-start;
    font-size: var(--font-size-xs);
    font-weight: 600;
    letter-spacing: 0.04em;
    color: #FFFFFF;
    background: linear-gradient(135deg, #3B82F6, #2563EB);
    padding: 4px 14px;
    border-radius: var(--radius-full);
    margin-bottom: var(--space-md);
}

/* --- Plan info --- */
.pricing__plan-name {
    font-size: var(--font-size-xl);
    font-weight: 800;
    color: #F5F5F5;
    margin-bottom: 2px;
    letter-spacing: -0.02em;
}

.pricing__plan-tag {
    font-size: var(--font-size-sm);
    color: #94A3B8;
    margin-bottom: var(--space-lg);
}

.pricing__price {
    display: flex;
    align-items: baseline;
    gap: 2px;
    margin-bottom: var(--space-xl);
}

.pricing__currency {
    font-size: var(--font-size-lg);
    font-weight: 700;
    color: #F5F5F5;
}

.pricing__amount {
    font-size: var(--font-size-4xl);
    font-weight: 800;
    color: #F5F5F5;
    line-height: 1;
}

.pricing__period {
    font-size: var(--font-size-sm);
    color: #94A3B8;
    margin-left: 4px;
}

/* --- Feature list --- */
.pricing__features {
    list-style: none;
    padding: 0;
    margin: 0 0 var(--space-xl);
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    flex-grow: 1;
}

.pricing__features li {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: var(--font-size-sm);
    color: #94A3B8;
    line-height: 1.5;
}

.pricing__features li img {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

/* --- Buttons --- */
.pricing__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px var(--space-xl);
    border-radius: var(--radius-full);
    font-size: var(--font-size-sm);
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
    text-align: center;
}

.pricing__btn:hover {
    transform: translateY(-2px);
}

.pricing__btn--outline {
    color: #3B82F6;
    border: 1.5px solid rgba(59, 130, 246, 0.4);
    background: transparent;
}

.pricing__btn--outline:hover {
    background: rgba(59, 130, 246, 0.1);
    box-shadow: 0 4px 16px rgba(59, 130, 246, 0.15);
}

.pricing__btn--solid {
    color: #FFFFFF;
    background: linear-gradient(135deg, #3B82F6, #2563EB);
    border: none;
}

.pricing__btn--solid:hover {
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.35);
}

/* ========================================
   PRODUCT CARDS
   ======================================== */
.products {
    padding: var(--space-5xl) 0;
    background: #121212;
    position: relative;
}

.products::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to bottom, rgba(15, 15, 26, 0.6), transparent);
    pointer-events: none;
}

.products__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

.product-card {
    background: #1E1E1E;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04), 0 2px 8px rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    position: relative;
}

.product-card:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: 0 16px 48px rgba(59, 130, 246, 0.15), 0 0 0 1px rgba(59, 130, 246, 0.1);
    border-color: rgba(59, 130, 246, 0.3);
}

.product-card__badge {
    position: absolute;
    top: var(--space-md);
    left: var(--space-md);
    background: var(--color-primary);
    color: var(--color-white);
    font-size: var(--font-size-xs);
    font-weight: 700;
    padding: 4px 14px;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 2;
}

.product-card__badge--accent {
    background: var(--color-accent);
}

.product-card__image {
    padding: var(--space-2xl);
    display: flex;
    justify-content: center;
    background: rgba(59, 130, 246, 0.06);
    position: relative;
    overflow: hidden;
}

.product-card__image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40px;
    background: linear-gradient(transparent, #1E1E1E);
}

.product-card:nth-child(2) .product-card__image {
    background: rgba(129, 140, 248, 0.06);
}

/* --- Hub card (3rd product) --- */
.product-card__image--hub {
    background: rgba(56, 189, 248, 0.06);
}

.product-card__badge--hub {
    background: linear-gradient(135deg, #3B82F6, #38bdf8);
}

.product-placeholder--hub {
    border-color: rgba(56, 189, 248, 0.12);
}

.product-placeholder--photo {
    width: auto;
    height: auto;
    max-width: 200px;
    max-height: 200px;
    border-radius: var(--radius-lg);
    background: transparent;
    border: none;
}

.product-photo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: var(--radius-lg);
}

.product-card__subtitle {
    font-size: var(--font-size-sm);
    color: #60a5fa;
    margin-bottom: var(--space-lg);
    font-weight: 500;
    letter-spacing: -0.01em;
}

.product-card__btn {
    display: inline-block;
    margin-top: var(--space-lg);
    padding: 12px 28px;
    background: var(--color-primary);
    color: #FFFFFF;
    font-size: var(--font-size-sm);
    font-weight: 700;
    border-radius: var(--radius-full);
    text-decoration: none;
    text-align: center;
    letter-spacing: 0.02em;
    transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
}

.product-card__btn:hover {
    background: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.3);
}

/* --- Comparison Table --- */
.comparison {
    margin-top: var(--space-4xl);
}

.comparison__title {
    font-size: var(--font-size-xl);
    font-weight: 800;
    color: #F5F5F5;
    letter-spacing: -0.02em;
    text-align: center;
    margin-bottom: var(--space-xl);
}

.comparison__wrapper {
    overflow-x: auto;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: #1E1E1E;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.comparison__table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
}

.comparison__table thead th {
    padding: 20px 24px;
    font-size: var(--font-size-sm);
    font-weight: 700;
    color: #F5F5F5;
    letter-spacing: -0.02em;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    white-space: nowrap;
}

.comparison__feature-col {
    text-align: left !important;
    color: #94A3B8 !important;
    font-weight: 600 !important;
    width: 36%;
}

.comparison__table tbody td {
    padding: 16px 24px;
    font-size: var(--font-size-sm);
    font-weight: 500;
    color: #94A3B8;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.comparison__table tbody td:first-child {
    text-align: left;
    color: #F5F5F5;
    font-weight: 600;
}

.comparison__table tbody tr:nth-child(even) {
    background: rgba(255, 255, 255, 0.02);
}

.comparison__table tbody tr:last-child td {
    border-bottom: none;
}

.comparison__table tbody tr:hover {
    background: rgba(59, 130, 246, 0.04);
}

/* Checkmark & dash */
.comparison__check {
    display: inline-block;
    vertical-align: middle;
}

.comparison__dash {
    color: rgba(255, 255, 255, 0.2);
    font-size: var(--font-size-lg);
    font-weight: 300;
}

/* Best Value column highlight */
.comparison__highlight {
    position: relative;
    background: rgba(59, 130, 246, 0.04);
}

thead .comparison__highlight {
    background: rgba(59, 130, 246, 0.08);
}

.comparison__highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    box-shadow: inset 1px 0 0 rgba(59, 130, 246, 0.15),
        inset -1px 0 0 rgba(59, 130, 246, 0.15);
}

thead .comparison__highlight::before {
    box-shadow: inset 1px 0 0 rgba(59, 130, 246, 0.15),
        inset -1px 0 0 rgba(59, 130, 246, 0.15),
        inset 0 1px 0 rgba(59, 130, 246, 0.15);
    border-radius: var(--radius-sm) var(--radius-sm) 0 0;
}

tbody tr:last-child .comparison__highlight::before {
    box-shadow: inset 1px 0 0 rgba(59, 130, 246, 0.15),
        inset -1px 0 0 rgba(59, 130, 246, 0.15),
        inset 0 -1px 0 rgba(59, 130, 246, 0.15);
    border-radius: 0 0 var(--radius-sm) var(--radius-sm);
}

.comparison__best-badge {
    display: block;
    margin: 0 auto 6px;
    width: fit-content;
    background: linear-gradient(135deg, #3B82F6, #60a5fa);
    color: #FFFFFF;
    font-size: 10px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    line-height: 1;
}

.product-placeholder {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    box-shadow: none;
    transition: transform 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.product-placeholder img {
    width: 100px;
    height: 100px;
}

.product-card:hover .product-placeholder {
    transform: scale(1.05);
}

.product-card__body {
    padding: var(--space-xl) var(--space-2xl) var(--space-2xl);
}

.product-card__title {
    font-size: var(--font-size-xl);
    font-weight: 800;
    margin-bottom: var(--space-sm);
    color: #F5F5F5;
    letter-spacing: -0.02em;
}

.product-card__desc {
    font-size: var(--font-size-sm);
    color: #94A3B8;
    margin-bottom: var(--space-lg);
    line-height: 1.7;
}

.product-card__features {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.product-card__features li {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    font-size: var(--font-size-sm);
    font-weight: 500;
    color: #94A3B8;
    padding: var(--space-sm) 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.product-card__features li:last-child {
    border-bottom: none;
}

.feature-icon {
    font-size: 1.2rem;
    flex-shrink: 0;
    width: 28px;
    text-align: center;
}

.feature-icon img {
    width: 22px;
    height: 22px;
    display: inline-block;
    vertical-align: middle;
}

/* ========================================
   PROACTIVE CARE / DASHBOARD
   ======================================== */
.proactive-care {
    padding: var(--space-5xl) 0;
    background: #121212;
    position: relative;
}

.proactive-care::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to bottom, rgba(18, 18, 18, 0.8), transparent);
    pointer-events: none;
}

.dashboard-preview {
    background: #1E1B2E;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    max-width: 1100px;
    margin: 0 auto;
}

.dashboard-preview__header {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-md) var(--space-lg);
    background: #252240;
    border-bottom: 1px solid #3a365c;
}

.dashboard-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.dashboard-dot--red {
    background: var(--color-accent);
}

.dashboard-dot--yellow {
    background: #FFB347;
}

.dashboard-dot--green {
    background: var(--color-primary);
}

.dashboard-preview__title {
    margin-left: var(--space-md);
    font-size: var(--font-size-sm);
    color: #A89EC8;
    font-weight: 500;
}

.dashboard-preview__body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
    padding: var(--space-xl);
}

.dashboard-panel {
    background: #252240;
    border-radius: var(--radius-md);
    padding: var(--space-lg);
    border: 1px solid #3a365c;
}

.dashboard-panel__header {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}

.dashboard-panel__icon {
    font-size: 1.8rem;
}

.dashboard-panel__header h4 {
    color: var(--color-white);
    font-size: var(--font-size-lg);
    font-weight: 700;
}

.dashboard-panel__breed {
    font-size: var(--font-size-xs);
    color: #A89EC8;
}

.dashboard-status {
    margin-left: auto;
    font-size: var(--font-size-xs);
    font-weight: 600;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    white-space: nowrap;
}

.dashboard-status--good {
    background: rgba(46, 196, 182, 0.15);
    color: var(--color-primary);
}

.dashboard-vitals {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
}

.vital-card {
    background: #2E2A50;
    border-radius: var(--radius-sm);
    padding: var(--space-md);
    transition: background 0.3s ease;
}

.vital-card:hover {
    background: #38345e;
}

.vital-card__label {
    display: block;
    font-size: var(--font-size-xs);
    color: #A89EC8;
    margin-bottom: var(--space-xs);
    font-weight: 500;
}

.vital-card__value {
    display: block;
    font-size: var(--font-size-lg);
    color: var(--color-white);
    font-weight: 700;
    margin-bottom: var(--space-sm);
}

.vital-card__value small {
    font-size: var(--font-size-xs);
    font-weight: 500;
    color: #A89EC8;
}

.vital-card__bar {
    height: 4px;
    background: #3a365c;
    border-radius: 2px;
    margin-bottom: var(--space-xs);
    overflow: hidden;
}

.vital-card__fill {
    height: 100%;
    background: var(--color-primary);
    border-radius: 2px;
    transition: width 1.5s ease;
    width: 0;
}

.vital-card__fill--warm {
    background: var(--color-accent);
}

.vital-card__fill--active {
    background: var(--color-mint);
}

.vital-card__fill--calories {
    background: var(--color-sky);
}

.vital-card__range {
    font-size: 10px;
    color: #7B7893;
}

/* Alerts */
.dashboard-alerts {
    background: #252240;
    border-radius: var(--radius-md);
    padding: var(--space-lg);
    border: 1px solid #3a365c;
    display: flex;
    flex-direction: column;
}

.dashboard-alerts__title {
    color: var(--color-white);
    font-size: var(--font-size-base);
    font-weight: 700;
    margin-bottom: var(--space-md);
}

.dashboard-alerts__title img {
    width: 20px;
    height: 20px;
    display: inline-block;
    vertical-align: middle;
    margin-right: 4px;
}

.alert-item {
    display: flex;
    gap: var(--space-md);
    padding: var(--space-md);
    border-radius: var(--radius-sm);
    margin-bottom: var(--space-sm);
    align-items: flex-start;
    transition: transform 0.2s ease;
}

.alert-item:last-child {
    margin-bottom: 0;
}

.alert-item:hover {
    transform: translateX(4px);
}

.alert-item--info {
    background: rgba(137, 207, 240, 0.08);
    border-left: 3px solid var(--color-sky);
}

.alert-item--warning {
    background: rgba(242, 167, 179, 0.08);
    border-left: 3px solid var(--color-accent);
}

.alert-item--success {
    background: rgba(46, 196, 182, 0.08);
    border-left: 3px solid var(--color-primary);
}

.alert-item__icon {
    font-size: 1.2rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.alert-item__icon img {
    width: 24px;
    height: 24px;
    display: block;
}

.alert-item strong {
    display: block;
    font-size: var(--font-size-sm);
    color: var(--color-white);
    margin-bottom: 2px;
}

.alert-item p {
    font-size: var(--font-size-xs);
    color: #A89EC8;
    line-height: 1.5;
}

.alert-item__time {
    font-size: 10px;
    color: #7B7893;
    flex-shrink: 0;
    margin-left: auto;
    white-space: nowrap;
    padding-top: 2px;
}

/* ========================================
   VET PARTNER SECTION
   ======================================== */
.partner-section {
    padding: var(--space-5xl) 0;
    background: #1E1E1E;
    position: relative;
    overflow: hidden;
}

.partner-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.partner__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
}

.partner__content .section-title {
    text-align: left;
}

.partner__desc {
    font-size: var(--font-size-md);
    color: #94A3B8;
    line-height: 1.7;
    margin-bottom: var(--space-xl);
}

.partner__perks {
    margin-bottom: var(--space-xl);
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.partner__perks li {
    font-size: var(--font-size-sm);
    font-weight: 500;
    color: #94A3B8;
    padding: var(--space-sm) var(--space-md);
    background: rgba(255, 255, 255, 0.04);
    border-radius: var(--radius-sm);
    transition: transform 0.2s ease;
    border-left: 3px solid #3B82F6;
    display: flex;
    align-items: center;
    gap: 8px;
}

.partner__perks li img {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.partner__perks li:hover {
    transform: translateX(4px);
}

.partner__visual {
    display: flex;
    justify-content: center;
}

.partner-graphic {
    position: relative;
}

.partner-graphic__circle {
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: rgba(59, 130, 246, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    box-shadow: none;
    position: relative;
    z-index: 1;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.partner-graphic__circle img {
    width: 100px;
    height: 100px;
}

.partner-graphic::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    border-radius: 50%;
    border: 2px dashed rgba(59, 130, 246, 0.2);
    animation: spinSlow 30s linear infinite;
}

@keyframes spinSlow {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* ========================================
   ROADMAP / TIMELINE
   ======================================== */
.roadmap {
    padding: var(--space-5xl) 0;
    background: #121212;
}

.timeline {
    position: relative;
    max-width: 720px;
    margin: 0 auto;
    padding-left: var(--space-2xl);
}

.timeline__line {
    position: absolute;
    left: 11px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--color-primary), var(--color-lavender), var(--color-accent));
}

.timeline__item {
    position: relative;
    padding-bottom: var(--space-2xl);
    padding-left: var(--space-xl);
}

.timeline__item:last-child {
    padding-bottom: 0;
}

.timeline__dot {
    position: absolute;
    left: -25px;
    top: 4px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #2a2a2a;
    border: 3px solid #121212;
    z-index: 1;
    transition: transform 0.3s ease;
}

.timeline__item:hover .timeline__dot {
    transform: scale(1.3);
}

.timeline__item--done .timeline__dot {
    background: var(--color-primary);
    box-shadow: 0 0 0 4px rgba(46, 196, 182, 0.15);
}

.timeline__item--active .timeline__dot {
    background: var(--color-accent);
    box-shadow: 0 0 0 6px rgba(242, 167, 179, 0.25);
    animation: pulseDot 2s ease-in-out infinite;
}

@keyframes pulseDot {

    0%,
    100% {
        box-shadow: 0 0 0 4px rgba(242, 167, 179, 0.25);
    }

    50% {
        box-shadow: 0 0 0 10px rgba(242, 167, 179, 0.1);
    }
}

.timeline__date {
    display: inline-block;
    font-size: var(--font-size-xs);
    font-weight: 700;
    color: #3B82F6;
    background: rgba(59, 130, 246, 0.1);
    padding: 2px 10px;
    border-radius: var(--radius-full);
    margin-bottom: var(--space-sm);
}

.timeline__item--active .timeline__date {
    background: rgba(59, 130, 246, 0.15);
    color: #60a5fa;
}

.timeline__content h4 {
    font-size: var(--font-size-lg);
    font-weight: 700;
    margin-bottom: var(--space-xs);
    color: #F5F5F5;
    letter-spacing: -0.02em;
}

.timeline__content p {
    font-size: var(--font-size-sm);
    color: #94A3B8;
    line-height: 1.6;
}

/* ========================================
   CTA / WAITLIST SECTION
   ======================================== */
.cta-section {
    padding: var(--space-5xl) 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #121212 40%, #0f0f1a 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background:
        radial-gradient(circle at 25% 40%, rgba(59, 130, 246, 0.06) 0%, transparent 40%),
        radial-gradient(circle at 75% 60%, rgba(129, 140, 248, 0.05) 0%, transparent 40%);
    pointer-events: none;
}

.cta-section__inner {
    text-align: center;
    max-width: 680px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-section__title {
    font-size: var(--font-size-3xl);
    font-weight: 900;
    color: var(--color-white);
    margin-bottom: var(--space-md);
    line-height: 1.2;
}

.cta-section__title .text-gradient {
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent), var(--color-lavender));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-section__subtitle {
    font-size: var(--font-size-md);
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: var(--space-2xl);
    line-height: 1.7;
}

.waitlist-form__row {
    display: flex;
    gap: var(--space-md);
    margin-bottom: var(--space-md);
}

.waitlist-form__input {
    flex: 1;
    padding: 14px 20px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.06);
    color: #F5F5F5;
    font-family: var(--font-family);
    font-size: var(--font-size-sm);
    outline: none;
    transition: border-color 0.3s ease, background 0.3s ease;
    -webkit-appearance: none;
    appearance: none;
}

.waitlist-form__input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.waitlist-form__input:focus {
    border-color: #3B82F6;
    background: rgba(255, 255, 255, 0.1);
}

.waitlist-form__input[readonly] {
    opacity: 0.85;
    cursor: not-allowed;
}

.waitlist-form__input option {
    color: #F5F5F5;
    background: #1E1E1E;
}

.waitlist-form__btn {
    flex-shrink: 0;
    border: none;
}

.waitlist-form__btn img {
    width: 18px;
    height: 18px;
    display: inline-block;
    vertical-align: middle;
    margin-left: 6px;
}

.waitlist-form__note {
    font-size: var(--font-size-xs);
    color: rgba(255, 255, 255, 0.4);
    margin-top: var(--space-md);
}

.waitlist-form__status {
    margin-top: 10px;
    min-height: 20px;
    font-size: var(--font-size-xs);
    color: #86efac;
}

.waitlist-form__status.is-error {
    color: #fca5a5;
}

/* --- Waitlist social proof counter --- */
.waitlist-counter {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: var(--space-lg);
    padding: 10px 20px;
    background: rgba(52, 211, 153, 0.08);
    border: 1px solid rgba(52, 211, 153, 0.2);
    border-radius: var(--radius-full);
    font-size: var(--font-size-sm);
    color: rgba(255, 255, 255, 0.7);
}

.waitlist-counter strong {
    color: #34d399;
    font-weight: 700;
}

.waitlist-counter__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #34d399;
    box-shadow: 0 0 8px rgba(52, 211, 153, 0.6);
    animation: counterPulse 2s ease-in-out infinite;
    flex-shrink: 0;
}

@keyframes counterPulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(0.8);
    }
}

/* ========================================
   FOOTER
   ======================================== */
.site-footer {
    background: #0a0a0a;
    color: rgba(255, 255, 255, 0.7);
    padding: var(--space-3xl) 0 var(--space-xl);
}

.footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--space-2xl);
    margin-bottom: var(--space-2xl);
    padding-bottom: var(--space-2xl);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer__brand .navbar__logo-text {
    margin-bottom: var(--space-md);
}

.footer__tagline {
    font-size: var(--font-size-sm);
    color: rgba(255, 255, 255, 0.45);
    max-width: 280px;
    line-height: 1.6;
}

.footer__links h4 {
    color: var(--color-white);
    font-size: var(--font-size-sm);
    font-weight: 700;
    margin-bottom: var(--space-md);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer__links ul {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.footer__links a {
    font-size: var(--font-size-sm);
    color: rgba(255, 255, 255, 0.55);
    transition: color 0.25s ease, transform 0.2s ease;
    display: inline-block;
}

.footer__links a:hover {
    color: var(--color-primary);
    transform: translateX(2px);
}

.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: var(--font-size-xs);
    color: rgba(255, 255, 255, 0.35);
}

.footer__bottom img {
    width: 16px;
    height: 16px;
    display: inline-block;
    vertical-align: middle;
    margin: 0 2px;
}

/* --- Trusted By logo bar --- */
.footer__trusted {
    text-align: center;
    padding: var(--space-2xl) 0;
    margin-bottom: var(--space-xl);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer__trusted-label {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.3);
    margin-bottom: var(--space-lg);
}

.footer__trusted-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-3xl);
    margin-bottom: var(--space-lg);
}

.footer__trusted-logo {
    display: inline-flex;
    align-items: center;
    transition: opacity 0.3s ease, filter 0.3s ease;
    opacity: 0.5;
    filter: grayscale(100%);
}

.footer__trusted-logo:hover {
    opacity: 1;
    filter: grayscale(0%);
}

.footer__trusted-logo img {
    height: 40px;
    width: auto;
    display: block;
}

.footer__legal {
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.3);
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto;
}

/* ========================================
   MOBILE STICKY CTA
   ======================================== */
.mobile-sticky-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    padding: var(--space-md);
    background: rgba(18, 18, 18, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.4);
}

/* ========================================
   ENQUIRY CHAT FAB
   ======================================== */
.enquiry-chat-fab {
    position: fixed;
    right: 18px;
    bottom: 90px;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    box-shadow: 0 12px 30px rgba(37, 99, 235, 0.45);
    z-index: 998;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.enquiry-chat-fab:hover {
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 16px 34px rgba(37, 99, 235, 0.5);
}

/* ========================================
   RESPONSIVE — TABLET
   ======================================== */
@media (max-width: 1024px) {
    .hero__container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero__subheadline {
        margin-left: auto;
        margin-right: auto;
    }

    .hero__actions {
        justify-content: center;
    }

    .hero__stats {
        margin: 0 auto;
    }

    .hero__visual {
        order: -1;
    }

    .hero__placeholder-img {
        max-width: 360px;
    }

    .products__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .dashboard-preview__body {
        grid-template-columns: 1fr;
    }

    .partner__grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .partner__content .section-title {
        text-align: center;
    }

    .partner__perks {
        align-items: center;
    }

    .partner__perks li {
        max-width: 400px;
        width: 100%;
    }

    .partner__content .btn {
        margin: 0 auto;
    }

    .footer__grid {
        grid-template-columns: 1fr 1fr;
    }

    .pricing__grid {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin: 0 auto;
    }
}

/* ========================================
   RESPONSIVE — MOBILE
   ======================================== */
@media (max-width: 768px) {
    :root {
        --header-height: 60px;
        --font-size-4xl: 2.25rem;
        --font-size-3xl: 1.75rem;
        --font-size-2xl: 1.5rem;
        --space-5xl: 80px;
        --space-4xl: 64px;
    }

    .site-header {
        background: rgba(18, 18, 18, 0.97);
    }

    .navbar__logo-text {
        font-size: 1.25rem;
        letter-spacing: -0.3px;
    }

    .navbar__links,
    .navbar__cta,
    .navbar__auth {
        display: none;
    }

    .navbar__hamburger {
        display: flex;
    }

    .navbar__links.is-open {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: var(--header-height);
        left: 0;
        right: 0;
        bottom: 0;
        background: #121212;
        padding: var(--space-2xl) var(--space-lg);
        gap: var(--space-lg);
        animation: fadeSlideDown 0.3s ease forwards;
        z-index: 1000;
    }

    .navbar__links.is-open a {
        font-size: 1.05rem;
    }

    .navbar__auth.is-open {
        display: inline-flex;
        position: fixed;
        bottom: 88px;
        left: var(--space-lg);
        right: var(--space-lg);
        justify-content: center;
        z-index: 1001;
    }

    .navbar__auth-user {
        width: 100%;
        justify-content: center;
    }

    .auth-modal__panel {
        padding: 22px 18px;
    }

    .navbar__hamburger[aria-expanded="true"] span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .navbar__hamburger[aria-expanded="true"] span:nth-child(2) {
        opacity: 0;
    }

    .navbar__hamburger[aria-expanded="true"] span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .mobile-sticky-cta {
        display: block;
    }

    body {
        padding-bottom: 80px;
    }

    .ecosystem__grid {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin: 0 auto;
    }

    .products__grid {
        grid-template-columns: 1fr;
        max-width: 560px;
        margin: 0 auto;
    }

    .hiw__flow {
        flex-direction: column;
        gap: 0;
    }

    .hiw__card {
        width: 100%;
        max-width: 400px;
    }

    .hiw__connector {
        transform: rotate(90deg);
        padding: var(--space-sm) 0;
    }

    .social-proof__container {
        flex-direction: column;
        text-align: center;
    }

    .social-proof__logos {
        flex-direction: column;
    }

    .social-proof__divider {
        width: 40px;
        height: 1px;
    }

    .dashboard-vitals {
        grid-template-columns: 1fr;
    }

    .alert-item {
        flex-wrap: wrap;
    }

    .alert-item__time {
        width: 100%;
        margin-left: 0;
        margin-top: var(--space-xs);
    }

    .waitlist-form__row {
        flex-direction: column;
    }

    .waitlist-form__btn {
        width: 100%;
    }

    .footer__grid {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }

    .footer__bottom {
        flex-direction: column;
        gap: var(--space-sm);
        text-align: center;
    }

    .hero__placeholder-img {
        max-width: 300px;
    }

    .hero__placeholder-pet,
    .hero__placeholder-device {
        font-size: 2.5rem;
    }

    .hero__stats {
        gap: var(--space-md);
        padding: var(--space-md);
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* ========================================
   RESPONSIVE — SMALL MOBILE
   ======================================== */
@media (max-width: 480px) {
    :root {
        --font-size-4xl: 1.85rem;
        --font-size-3xl: 1.5rem;
    }

    .container {
        padding: 0 var(--space-md);
    }

    .hero__stats {
        flex-direction: column;
        align-items: center;
    }

    .hero__stat-divider {
        width: 40px;
        height: 1px;
    }

    .partner-graphic__circle {
        width: 200px;
        height: 200px;
        font-size: 3.5rem;
    }
}

@keyframes fadeSlideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========================================
   THEME TRANSITION
   ======================================== */
.theme-switching,
.theme-switching *,
.theme-switching *::before,
.theme-switching *::after {
    transition: background-color 500ms ease,
        color 500ms ease,
        border-color 500ms ease,
        box-shadow 500ms ease,
        opacity 500ms ease !important;
}

/* View Transitions API — circular reveal */
::view-transition-old(root),
::view-transition-new(root) {
    animation: none;
    mix-blend-mode: normal;
}

::view-transition-old(root) {
    z-index: 1;
}

::view-transition-new(root) {
    z-index: 9999;
}

/* ========================================
   LIGHT THEME — SECTION OVERRIDES
   ======================================== */

/* --- Header --- */
[data-theme="light"] .site-header {
    background: rgba(255, 255, 255, 0.9);
    border-bottom-color: rgba(0, 0, 0, 0.06);
}

[data-theme="light"] .navbar__links a {
    color: #475569;
}

[data-theme="light"] .navbar__links a:hover {
    color: #3B82F6;
}

[data-theme="light"] .navbar__auth-email {
    color: #334155;
}

[data-theme="light"] .auth-modal__panel {
    background: linear-gradient(170deg, #ffffff 0%, #f8fafc 100%);
    border-color: rgba(15, 23, 42, 0.12);
    box-shadow: 0 24px 64px rgba(15, 23, 42, 0.25);
}

[data-theme="light"] .auth-modal__title,
[data-theme="light"] .auth-form__input {
    color: #0f172a;
}

[data-theme="light"] .auth-form__label {
    color: #334155;
}

[data-theme="light"] .auth-form__input {
    background: #ffffff;
    border-color: #cbd5e1;
}

[data-theme="light"] .auth-tab {
    color: #475569;
    background: #ffffff;
}

[data-theme="light"] .auth-tab.is-active {
    color: #1e293b;
    background: rgba(59, 130, 246, 0.16);
}

[data-theme="light"] .auth-modal__close {
    color: #1e293b;
    background: rgba(15, 23, 42, 0.08);
}

[data-theme="light"] .navbar__hamburger span {
    background: #1E293B;
}

/* --- Typography --- */
[data-theme="light"] .section-title {
    color: #1E293B;
}

[data-theme="light"] .section-subtitle {
    color: #64748B;
}

[data-theme="light"] .section-eyebrow {
    color: #2563EB;
}

/* --- Hero (legacy) --- */
[data-theme="light"] .hero {
    background: #FFFFFF;
}

[data-theme="light"] .hero__eyebrow {
    color: #2563EB;
    background: rgba(59, 130, 246, 0.06);
    border-color: rgba(59, 130, 246, 0.12);
}

[data-theme="light"] .hero__headline {
    color: #1E293B;
}

[data-theme="light"] .hero__subheadline {
    color: #64748B;
}

[data-theme="light"] .hero__stats {
    background: #FFFFFF;
    border-color: #E2E8F0;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    backdrop-filter: none;
}

[data-theme="light"] .hero__stat-divider {
    background: #E2E8F0;
}

[data-theme="light"] .hero__placeholder-pet {
    background: rgba(59, 130, 246, 0.04);
    border-color: rgba(59, 130, 246, 0.1);
}

[data-theme="light"] .hero__placeholder-device {
    background: rgba(129, 140, 248, 0.04);
    border-color: rgba(129, 140, 248, 0.1);
}

[data-theme="light"] .hero__placeholder-pet p,
[data-theme="light"] .hero__placeholder-device p {
    color: #64748B;
}

/* --- Hero Dark --- */
[data-theme="light"] .hero-dark {
    background: #FFFFFF;
}

[data-theme="light"] .hero-dark__badge {
    background: rgba(59, 130, 246, 0.06);
    border-color: rgba(59, 130, 246, 0.12);
    color: #2563EB;
}

[data-theme="light"] .hero-dark__headline {
    color: #1E293B;
}

[data-theme="light"] .hero-dark__subheadline {
    color: #64748B;
}

[data-theme="light"] .hero-dark__btn {
    background: #1E293B;
    color: #FFFFFF;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.06);
}

[data-theme="light"] .hero-dark__btn:hover {
    background: #0f172a;
    color: #FFFFFF;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

[data-theme="light"] .hero-dark__meta-item {
    color: #64748B;
}

[data-theme="light"] .hero-dark__meta-divider {
    background: #E2E8F0;
}

[data-theme="light"] .hero-dark__product-glow {
    background: radial-gradient(circle, rgba(59, 130, 246, 0.06) 0%, transparent 70%);
}

/* --- Social Proof --- */
[data-theme="light"] .social-proof {
    background: #F8F9FC;
    border-top-color: #E2E8F0;
    border-bottom-color: #E2E8F0;
}

[data-theme="light"] .social-proof__container>p {
    color: #64748B;
}

[data-theme="light"] .social-proof__item {
    color: #64748B;
}

[data-theme="light"] .social-proof__item strong {
    color: #1E293B;
}

[data-theme="light"] .social-proof__divider {
    background: #E2E8F0;
}

/* --- Ecosystem --- */
[data-theme="light"] .ecosystem {
    background: #FFFFFF;
}

[data-theme="light"] .eco-card {
    background: #F8F9FC;
    border-color: #E2E8F0;
}

[data-theme="light"] .eco-card:hover {
    box-shadow: 0 12px 40px rgba(59, 130, 246, 0.06);
    border-color: rgba(59, 130, 246, 0.2);
}

[data-theme="light"] .eco-card__title {
    color: #1E293B;
}

[data-theme="light"] .eco-card__desc {
    color: #64748B;
}

/* --- How It Works (glassmorphism) --- */
[data-theme="light"] .hiw {
    background: linear-gradient(170deg, #F0F4FF 0%, #FAFBFF 50%, #F0F4FF 100%);
}

[data-theme="light"] .hiw::before {
    background: radial-gradient(circle, rgba(59, 130, 246, 0.04) 0%, transparent 70%);
}

[data-theme="light"] .hiw::after {
    background: radial-gradient(circle, rgba(129, 140, 248, 0.03) 0%, transparent 70%);
}

[data-theme="light"] .hiw__eyebrow {
    color: #2563EB;
}

[data-theme="light"] .hiw__title {
    color: #1E293B;
}

[data-theme="light"] .hiw__subtitle {
    color: #64748B;
}

[data-theme="light"] .hiw__card {
    background: rgba(255, 255, 255, 0.85);
    border-color: rgba(0, 0, 0, 0.06);
}

[data-theme="light"] .hiw__card:hover {
    border-color: rgba(59, 130, 246, 0.2);
    box-shadow: 0 8px 32px rgba(59, 130, 246, 0.08);
}

[data-theme="light"] .hiw__step-num {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(129, 140, 248, 0.15));
}

[data-theme="light"] .hiw__card-title {
    color: #1E293B;
}

[data-theme="light"] .hiw__card-desc {
    color: #64748B;
}

[data-theme="light"] .hiw__badge {
    background: rgba(0, 0, 0, 0.03);
    border-color: rgba(0, 0, 0, 0.06);
    color: #64748B;
}

/* --- Pricing --- */
[data-theme="light"] .pricing {
    background: #FFFFFF;
}

[data-theme="light"] .pricing__card {
    background: #F8F9FC;
    border-color: #E2E8F0;
}

[data-theme="light"] .pricing__card--pro {
    border: none;
}

[data-theme="light"] .pricing__card--pro .pricing__card-inner {
    background: #F8F9FC;
}

[data-theme="light"] .pricing__plan-name {
    color: #1E293B;
}

[data-theme="light"] .pricing__plan-tag {
    color: #64748B;
}

[data-theme="light"] .pricing__currency,
[data-theme="light"] .pricing__amount {
    color: #1E293B;
}

[data-theme="light"] .pricing__period {
    color: #64748B;
}

[data-theme="light"] .pricing__features li {
    color: #475569;
}

[data-theme="light"] .pricing__btn--outline {
    border-color: rgba(59, 130, 246, 0.3);
}

[data-theme="light"] .pricing__btn--outline:hover {
    background: rgba(59, 130, 246, 0.06);
}

/* --- Products --- */
[data-theme="light"] .products {
    background: #FFFFFF;
}

[data-theme="light"] .product-card {
    background: #F8F9FC;
    border-color: #E2E8F0;
}

[data-theme="light"] .product-card:hover {
    box-shadow: 0 12px 40px rgba(59, 130, 246, 0.06);
    border-color: rgba(59, 130, 246, 0.15);
}

[data-theme="light"] .product-card__image {
    background: rgba(59, 130, 246, 0.04);
}

[data-theme="light"] .product-card__image::after {
    background: linear-gradient(transparent, #F8F9FC);
}

[data-theme="light"] .product-card:nth-child(2) .product-card__image {
    background: rgba(129, 140, 248, 0.04);
}

[data-theme="light"] .product-placeholder {
    background: #FFFFFF;
    border-color: #E2E8F0;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

[data-theme="light"] .product-card__title {
    color: #1E293B;
}

[data-theme="light"] .product-card__desc {
    color: #64748B;
}

[data-theme="light"] .product-card__features li {
    color: #475569;
    border-bottom-color: #F1F5F9;
}

[data-theme="light"] .product-card__image--hub {
    background: rgba(56, 189, 248, 0.04);
}

[data-theme="light"] .product-card__subtitle {
    color: #3B82F6;
}

[data-theme="light"] .product-card__btn {
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.15);
}

/* --- Comparison Table (light) --- */
[data-theme="light"] .comparison__title {
    color: #1E293B;
}

[data-theme="light"] .comparison__wrapper {
    background: #FFFFFF;
    border-color: #E2E8F0;
}

[data-theme="light"] .comparison__table thead th {
    color: #1E293B;
    border-bottom-color: #E2E8F0;
}

[data-theme="light"] .comparison__feature-col {
    color: #64748B !important;
}

[data-theme="light"] .comparison__table tbody td {
    color: #64748B;
    border-bottom-color: #F1F5F9;
}

[data-theme="light"] .comparison__table tbody td:first-child {
    color: #1E293B;
}

[data-theme="light"] .comparison__table tbody tr:nth-child(even) {
    background: #F8F9FC;
}

[data-theme="light"] .comparison__table tbody tr:hover {
    background: rgba(59, 130, 246, 0.03);
}

[data-theme="light"] .comparison__dash {
    color: #CBD5E1;
}

[data-theme="light"] .comparison__highlight {
    background: rgba(59, 130, 246, 0.03);
}

[data-theme="light"] thead .comparison__highlight {
    background: rgba(59, 130, 246, 0.06);
}

/* --- Proactive Care --- */
[data-theme="light"] .proactive-care {
    background: #FFFFFF;
}

/* --- Partner --- */
[data-theme="light"] .partner-section {
    background: #F8F9FC;
}

[data-theme="light"] .partner-section::before {
    background: radial-gradient(circle, rgba(59, 130, 246, 0.03) 0%, transparent 70%);
}

[data-theme="light"] .partner__desc {
    color: #64748B;
}

[data-theme="light"] .partner__perks li {
    color: #475569;
    background: #FFFFFF;
    border-left-color: #3B82F6;
}

[data-theme="light"] .partner-graphic__circle {
    background: #FFFFFF;
    border-color: #E2E8F0;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

[data-theme="light"] .partner-graphic::before {
    border-color: rgba(59, 130, 246, 0.15);
}

/* --- Roadmap --- */
[data-theme="light"] .roadmap {
    background: #FFFFFF;
}

[data-theme="light"] .timeline__dot {
    background: #E2E8F0;
    border-color: #FFFFFF;
}

[data-theme="light"] .timeline__date {
    color: #2563EB;
    background: rgba(59, 130, 246, 0.06);
}

[data-theme="light"] .timeline__content h4 {
    color: #1E293B;
}

[data-theme="light"] .timeline__content p {
    color: #64748B;
}

/* --- CTA (stays dark for contrast) --- */
[data-theme="light"] .cta-section {
    background: linear-gradient(135deg, #1E293B 0%, #0f172a 40%, #020617 100%);
}

/* --- Waitlist form --- */
[data-theme="light"] .waitlist-form__input option {
    color: #1E293B;
    background: #FFFFFF;
}

[data-theme="light"] .enquiry-chat-fab {
    color: #ffffff;
    box-shadow: 0 12px 24px rgba(59, 130, 246, 0.35);
}

/* --- Footer (stays dark for contrast) --- */
[data-theme="light"] .site-footer {
    background: #0f172a;
}

/* --- Mobile Sticky CTA --- */
[data-theme="light"] .mobile-sticky-cta {
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.08);
}

/* --- Mobile nav --- */
@media (max-width: 768px) {
    .enquiry-chat-fab {
        bottom: 96px;
    }

    [data-theme="light"] .navbar__links.is-open {
        background: #FFFFFF;
    }
}