


:root {
    --accent:  #4ADE80;
    --accent2: #86EFAC;
    --glow:    rgba(74,222,128,0.25);
    --r-sm: 8px; --r-md: 16px; --r-lg: 24px; --r-xl: 32px;
    --font-body: 'Inter', -apple-system, sans-serif;
    --font-display: 'Syne', sans-serif;
}

[data-theme="dark"] {
    --bg:         #07100A;
    --bg2:        #0D1A10;
    --bg3:        #111F14;
    --fg:         #FFFFFF;
    --fg70:       rgba(255,255,255,0.68);
    --fg40:       rgba(255,255,255,0.40);
    --fg20:       rgba(255,255,255,0.20);
    --fg10:       rgba(255,255,255,0.08);
    --fg5:        rgba(255,255,255,0.04);
    --nav-bg:     rgba(7,16,10,0.88);
    --card-bg:    rgba(255,255,255,0.04);
    --card-bd:    rgba(255,255,255,0.07);
    --card-hover: rgba(74,222,128,0.22);
    --pill-bg:    rgba(13,26,16,0.85);
    --badge-bg:   rgba(74,222,128,0.10);
    --badge-bd:   rgba(74,222,128,0.28);
    --input-bg:   rgba(255,255,255,0.05);
    --input-bd:   rgba(255,255,255,0.12);
    --input-focus:rgba(74,222,128,0.40);
    --footer-bd:  rgba(255,255,255,0.06);
    --dark:       #0D1A10;
}

[data-theme="light"] {
    --bg:         #F4FBF0;
    --bg2:        #EBF6E4;
    --bg3:        #E2F0DA;
    --fg:         #0D1A10;
    --fg70:       rgba(13,26,16,0.65);
    --fg40:       rgba(13,26,16,0.40);
    --fg20:       rgba(13,26,16,0.20);
    --fg10:       rgba(13,26,16,0.07);
    --fg5:        rgba(13,26,16,0.03);
    --nav-bg:     rgba(244,251,240,0.92);
    --card-bg:    rgba(255,255,255,0.80);
    --card-bd:    rgba(13,26,16,0.10);
    --card-hover: rgba(34,197,94,0.35);
    --pill-bg:    rgba(255,255,255,0.95);
    --badge-bg:   rgba(34,197,94,0.10);
    --badge-bd:   rgba(34,197,94,0.30);
    --input-bg:   rgba(255,255,255,0.90);
    --input-bd:   rgba(13,26,16,0.15);
    --input-focus:rgba(74,222,128,0.50);
    --footer-bd:  rgba(13,26,16,0.10);
    --dark:       #0D1A10;
}


*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-body);
    background: var(--bg);
    color: var(--fg);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    transition: background 0.35s ease, color 0.35s ease;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }


.t-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 48px;
}
.t-section { padding: 90px 0; }
.t-section-alt { background: var(--bg2); }


.t-nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 200;
    padding: 18px 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s ease;
}
.t-nav.scrolled {
    background: var(--nav-bg);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    padding: 12px 48px;
    border-bottom: 1px solid var(--fg10);
}
.t-nav-logo {
    display: flex; align-items: center; gap: 10px;
    text-decoration: none;
}
.t-nav-logo img { width: 74px; height: 74px; object-fit: contain; }
.t-nav-logo-text {
    font-family: var(--font-display);
    font-weight: 700; font-size: 18px;
    color: var(--fg); letter-spacing: 2px;
}
.t-nav-links {
    display: flex; align-items: center; gap: 28px;
    list-style: none;
}
.t-nav-links a {
    color: var(--fg70);
    font-size: 14px; font-weight: 500;
    transition: color 0.2s;
}
.t-nav-links a:hover,
.t-nav-links a.active { color: var(--fg); }
.t-nav-right { display: flex; align-items: center; gap: 10px; }


.t-nav-icon {
    position: relative;
    display: flex; align-items: center; justify-content: center;
    width: 38px; height: 38px;
    border-radius: 50%;
    border: none;
    color: var(--fg70);
    transition: all 0.2s;
    text-decoration: none;
}
.t-nav-icon:hover { color: var(--accent); }
.t-nav-icon svg { width: 17px; height: 17px; }
.t-cart-badge {
    position: absolute; top: -4px; right: -4px;
    width: 16px; height: 16px;
    background: var(--accent);
    border-radius: 50%;
    font-size: 10px; font-weight: 700;
    color: var(--dark);
    display: flex; align-items: center; justify-content: center;
    line-height: 1;
}


.t-theme-btn {
    width: 38px; height: 38px;
    border-radius: 50%;
    border: none;
    background: transparent;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    font-size: 16px;
    transition: all 0.25s;
}
.t-theme-btn:hover { transform: rotate(15deg); }


.t-nav-cta {
    padding: 10px 22px;
    background: var(--accent);
    color: var(--dark) !important;
    border-radius: 100px;
    font-weight: 700; font-size: 13px;
    transition: all 0.2s;
}
.t-nav-cta:hover { background: var(--accent2); transform: translateY(-2px); box-shadow: 0 6px 20px var(--glow); }


.t-nav-toggle {
    display: none;
    flex-direction: column; gap: 5px; padding: 6px;
    cursor: pointer;
}
.t-nav-toggle span {
    width: 22px; height: 2.5px;
    background: var(--fg); border-radius: 2px;
    transition: all 0.3s;
}


.t-btn {
    display: inline-flex; align-items: center; gap: 9px;
    padding: 14px 28px;
    border-radius: 100px;
    font-weight: 700; font-size: 15px;
    transition: all 0.25s;
    text-decoration: none;
    cursor: pointer;
    border: none;
    font-family: var(--font-body);
}
.t-btn-primary {
    background: var(--accent);
    color: var(--dark);
    box-shadow: 0 4px 20px var(--glow);
}
.t-btn-primary:hover { background: var(--accent2); transform: translateY(-3px); box-shadow: 0 12px 32px rgba(74,222,128,0.40); }
.t-btn-outline {
    background: transparent;
    color: var(--fg);
    border: 1.5px solid var(--fg40);
}
.t-btn-outline:hover { border-color: var(--accent); color: var(--accent); }
.t-btn-dark {
    background: var(--fg);
    color: var(--bg);
}
.t-btn-dark:hover { opacity: 0.85; transform: translateY(-2px); }
.t-btn-block { width: 100%; justify-content: center; }
.t-btn-lg { padding: 16px 36px; font-size: 16px; }


.t-eyebrow {
    display: inline-flex; align-items: center; gap: 7px;
    padding: 5px 14px;
    background: var(--badge-bg);
    border: 1px solid var(--badge-bd);
    border-radius: 100px;
    font-size: 11px; font-weight: 700;
    letter-spacing: 1.5px; text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 16px;
}
.t-h1 {
    font-family: var(--font-display);
    font-size: clamp(44px, 5vw, 74px);
    font-weight: 800; line-height: 1.05;
    letter-spacing: -1px;
    color: var(--fg);
}
.t-h2 {
    font-family: var(--font-display);
    font-size: clamp(28px, 3.5vw, 50px);
    font-weight: 800; line-height: 1.1;
    letter-spacing: -0.5px;
    color: var(--fg);
    margin-bottom: 14px;
}
.t-h3 {
    font-family: var(--font-display);
    font-size: clamp(20px, 2vw, 26px);
    font-weight: 700; line-height: 1.2;
    color: var(--fg);
    margin-bottom: 10px;
}
.t-lead {
    font-size: 17px; line-height: 1.75;
    color: var(--fg70);
    max-width: 560px;
    margin-bottom: 36px;
}
.t-grad {
    background: linear-gradient(130deg, #4ADE80 0%, #86EFAC 60%, #D1FAE5 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}


.t-card {
    background: var(--card-bg);
    border: 1px solid var(--card-bd);
    border-radius: var(--r-lg);
    padding: 32px;
    transition: border-color 0.3s, transform 0.3s;
}
.t-card:hover { border-color: var(--card-hover); transform: translateY(-4px); }


.t-form-group { margin-bottom: 20px; }
.t-label {
    display: block;
    font-size: 13px; font-weight: 600;
    color: var(--fg70);
    margin-bottom: 7px;
    letter-spacing: 0.3px;
}
.t-input {
    width: 100%;
    padding: 13px 16px;
    background: var(--input-bg);
    border: 1.5px solid var(--input-bd);
    border-radius: var(--r-md);
    color: var(--fg);
    font-size: 15px;
    font-family: var(--font-body);
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
}
.t-input:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--input-focus);
}
.t-input::placeholder { color: var(--fg40); }


.t-footer {
    background: var(--bg2);
    border-top: 1px solid var(--footer-bd);
    padding: 64px 0 32px;
}
.t-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.6fr;
    gap: 48px;
    margin-bottom: 48px;
    align-items: start;
}
.t-footer-logo {
    display: flex; align-items: center; gap: 10px;
    margin-bottom: 10px; text-decoration: none;
}
.t-footer-logo img { width: 36px; height: 36px; object-fit: contain; }
.t-footer-logo-text {
    font-family: var(--font-display);
    font-weight: 700; font-size: 15px; color: var(--fg);
    letter-spacing: 1.5px;
}
.t-footer-tagline { font-size: 13px; color: var(--fg40); margin-bottom: 20px; line-height: 1.5; }
.t-footer-social { display: flex; gap: 10px; }
.t-footer-social a {
    width: 38px; height: 38px;
    border-radius: 50%;
    border: 1.5px solid var(--fg20);
    display: flex; align-items: center; justify-content: center;
    color: var(--fg70);
    transition: all 0.2s;
}
.t-footer-social a:hover { border-color: var(--accent); color: var(--accent); }
.t-footer-col-title {
    font-size: 11px; font-weight: 700;
    letter-spacing: 1.8px; text-transform: uppercase;
    color: var(--fg40); margin-bottom: 18px;
}
.t-footer-links { display: flex; flex-direction: column; gap: 12px; }
.t-footer-links a { font-size: 14px; color: var(--fg70); transition: color 0.2s; }
.t-footer-links a:hover { color: var(--accent); }
.t-footer-bottom {
    border-top: 1px solid var(--footer-bd);
    padding-top: 24px;
    display: flex; align-items: center; justify-content: center;
    text-align: center;
}
.t-footer-copy { font-size: 13px; color: var(--fg40); }
.t-footer-email {
    display: flex; align-items: center; gap: 8px;
    font-size: 14px; color: var(--fg70);
    transition: color 0.2s;
}
.t-footer-email:hover { color: var(--accent); }
.t-footer-app-links { display: flex; flex-direction: column; gap: 10px; }
.t-footer-app-link {
    padding: 9px 16px;
    border: 1.5px solid var(--fg20);
    border-radius: var(--r-sm);
    font-size: 13px; font-weight: 600;
    color: var(--fg70);
    transition: all 0.2s;
    text-align: center;
    display: block;
}
.t-footer-app-link:hover { border-color: var(--accent); color: var(--accent); }
.t-footer-app-link.disabled { opacity: 0.4; pointer-events: none; }



.t-float-card { display: none; }
.t-float-pills-mobile {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    width: 100%;
    margin-top: 20px;
}
.t-float-pill {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 6px;
    background: var(--pill-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--card-hover);
    border-radius: 14px;
    padding: 14px 8px;
}
.t-float-pill-icon { font-size: 22px; }
.t-hero-right {
    flex-direction: column;
    align-items: center;
    min-height: auto;
    width: 100%;
    gap: 0;
}


@media (min-width: 961px) {
    .t-float-card { display: block; }
    .t-float-pills-mobile { display: none; }
    .t-hero-right {
        flex-direction: row;
        align-items: center;
        min-height: 500px;
        width: auto;
    }
}


.t-reveal {
    opacity: 1;
    transform: none;
}
.t-d1 { transition-delay: 0.10s; }
.t-d2 { transition-delay: 0.20s; }
.t-d3 { transition-delay: 0.30s; }
.t-d4 { transition-delay: 0.40s; }


.t-page-hero {
    padding: 140px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.t-page-hero-blob {
    position: absolute;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(74,222,128,0.10) 0%, transparent 65%);
    border-radius: 50%;
    top: -100px; left: 50%; transform: translateX(-50%);
    filter: blur(60px);
    pointer-events: none;
}


.t-ticker.fixed-below-nav {
    position: fixed;
    top: 72px;
    left: 0; right: 0;
    z-index: 199;
    transition: top 0.3s ease;
}
.scrolled ~ .t-ticker,
.t-nav.scrolled + .t-ticker {
    top: 58px;
}
.t-ticker {
    background: var(--accent);
    padding: 11px 0;
    overflow: hidden;
    white-space: nowrap;
    user-select: none;
}
.t-ticker-inner { display: inline-flex; animation: t-slide 32s linear infinite; }
.t-ticker-item {
    display: inline-flex; align-items: center; gap: 16px;
    padding: 0 28px;
    font-family: var(--font-display);
    font-weight: 700; font-size: 12px;
    color: #0D1A10;
    letter-spacing: 0.5px; text-transform: uppercase;
}
.t-ticker-sep { width: 4px; height: 4px; background: rgba(0,0,0,0.30); border-radius: 50%; flex-shrink: 0; }
@keyframes t-slide { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }


.t-check-list { display: flex; flex-direction: column; gap: 16px; margin-bottom: 36px; }
.t-check-item { display: flex; align-items: flex-start; gap: 12px; }
.t-check-circle {
    width: 22px; height: 22px; border-radius: 50%;
    background: var(--badge-bg); border: 1.5px solid var(--badge-bd);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0; margin-top: 2px;
}
.t-check-circle svg { width: 11px; height: 11px; stroke: var(--accent); fill: none; stroke-width: 2.5; }
.t-check-text { font-size: 15px; line-height: 1.65; color: var(--fg70); }


.t-stats { display: flex; gap: 40px; flex-wrap: wrap; }
.t-stat-val {
    font-family: 'Inter', sans-serif;
    font-size: 36px; font-weight: 800;
    line-height: 1.15; letter-spacing: -1.5px;
    margin-bottom: 5px; color: var(--fg);
    font-variant-numeric: tabular-nums;
}
.t-stat-val .ac { color: var(--accent); }
.t-stat-lbl { font-size: 12px; font-weight: 500; color: var(--fg70); }


.cookie-consent {
    position: fixed; bottom: 20px; left: 50%; transform: translateX(-50%);
    background: var(--bg3);
    border: 1px solid var(--card-bd);
    border-radius: var(--r-lg);
    padding: 20px 28px;
    z-index: 500;
    max-width: 520px; width: calc(100% - 40px);
    box-shadow: 0 8px 40px rgba(0,0,0,0.25);
}
.cookie-consent.hidden { display: none; }
.cookie-content { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.cookie-text h4 { font-size: 15px; font-weight: 700; color: var(--fg); margin-bottom: 4px; }
.cookie-text p { font-size: 13px; color: var(--fg70); }
.cookie-buttons { display: flex; gap: 8px; flex-shrink: 0; }
.cookie-btn { padding: 9px 18px; border-radius: 100px; font-size: 13px; font-weight: 700; cursor: pointer; border: none; transition: all 0.2s; }
.cookie-accept { background: var(--accent); color: var(--dark); }
.cookie-accept:hover { background: var(--accent2); }
.cookie-decline { background: var(--fg10); color: var(--fg70); }
.cookie-decline:hover { background: var(--fg20); }


.t-spinner {
    width: 36px; height: 36px;
    border: 3px solid var(--fg10);
    border-top-color: var(--accent);
    border-radius: 50%;
    animation: t-spin 0.8s linear infinite;
}
@keyframes t-spin { to { transform: rotate(360deg); } }


@media (max-width: 960px) {
    .t-container { padding: 0 24px; }
    .t-section { padding: 60px 0; }
    .t-nav { padding: 14px 24px 14px 12px; justify-content: flex-start; }
    .t-nav.scrolled { padding: 10px 24px 10px 12px; justify-content: flex-start; }
    .t-nav-right { gap: 8px; margin-left: auto; }
    .t-nav-toggle { margin-left: 0; }
    .t-nav-cta { display: none; }
    .t-nav-logo img { width: 54px; height: 54px; }
    .t-nav-logo-text { font-size: 15px; letter-spacing: 1.5px; white-space: normal; max-width: 58px; line-height: 1.2; }

    
    .t-nav-links { display: none; }
    .t-nav-toggle { display: flex; }

    
    .t-nav-links.mobile-open {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        position: fixed;
        top: 60px; left: 0; right: 0;
        background: var(--bg2);
        border-bottom: 1px solid var(--card-bd);
        padding: 12px 0 20px;
        z-index: 199;
        box-shadow: 0 12px 40px rgba(0,0,0,0.18);
    }
    .t-nav-links.mobile-open li { width: 100%; }
    .t-nav-links.mobile-open a {
        display: block;
        padding: 13px 28px;
        font-size: 16px;
        color: var(--fg);
        border-bottom: 1px solid var(--fg5);
    }
    .t-nav-links.mobile-open a:hover { color: var(--accent); background: var(--fg5); }

    .t-footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
    .t-stats { gap: 24px; justify-content: center; }
    .t-hero-left { text-align: center; }
    .t-hero-left .t-lead { margin-left: auto; margin-right: auto; }
    .t-hero-left > div[style*="display:flex"] { justify-content: center; }

}

@media (max-width: 768px) {
    .t-container { padding: 0 20px; }
    .t-section { padding: 48px 0; }

    
    .t-bento { grid-template-columns: 1fr !important; }
    .t-bento > * {
        grid-column: auto !important;
        grid-row: auto !important;
    }

    
    [style*="grid-template-columns:1fr 420px"],
    [style*="grid-template-columns: 1fr 420px"],
    [style*="grid-template-columns:1fr 1fr"],
    [style*="grid-template-columns: 1fr 1fr"],
    [style*="grid-template-columns:1fr 360px"],
    [style*="grid-template-columns: 1fr 360px"] {
        grid-template-columns: 1fr !important;
    }
    [style*="grid-template-columns:repeat(3,1fr)"],
    [style*="grid-template-columns: repeat(3, 1fr)"],
    [style*="grid-template-columns:repeat(3, 1fr)"] {
        grid-template-columns: 1fr !important;
    }
    [style*="grid-template-columns:repeat(4,1fr)"],
    [style*="grid-template-columns: repeat(4, 1fr)"] {
        grid-template-columns: 1fr 1fr !important;
    }

    
    [style*="gap:72px"], [style*="gap: 72px"] { gap: 32px !important; }
    [style*="gap:64px"], [style*="gap: 64px"] { gap: 28px !important; }
    [style*="gap:40px"], [style*="gap: 40px"] { gap: 20px !important; }

    
    .t-h1 { font-size: clamp(36px, 9vw, 52px); }
    .t-h2 { font-size: clamp(24px, 7vw, 38px); }
    .t-lead {
        font-size: 15px;
        width: auto !important;
        max-width: 100% !important;
        white-space: normal !important;
        overflow-wrap: break-word;
        margin-left: auto;
        margin-right: auto;
    }

    
    .t-page-hero { padding: 100px 0 48px; }

    
    .t-card { padding: 28px 20px; }

    
    #cart-summary { display: block !important; }

    
    .t-stat-val { font-size: 28px; }

    
    .t-btn { padding: 12px 18px; font-size: 14px; }
    .t-btn-lg { padding: 14px 24px; font-size: 15px; }
    .t-mobile-wrap {
        max-width: 100% !important;
        white-space: normal !important;
        overflow-wrap: anywhere;
        margin-left: auto;
        margin-right: auto;
    }
    .t-hero-actions,
    .t-cta-actions {
        flex-wrap: wrap !important;
    }
    .t-hero-phone-scene { width: 240px !important; }
    .t-hero-phone-img { width: 240px !important; }
    .t-hero-phone-glow { width: 270px !important; height: 270px !important; filter: blur(32px) !important; }

}

@media (max-width: 480px) {
    .t-container { padding: 0 16px; }
    .t-nav-right .t-nav-cta { display: none; }

    [style*="grid-template-columns:repeat(4,1fr)"],
    [style*="grid-template-columns: repeat(4, 1fr)"] {
        grid-template-columns: 1fr !important;
    }

    
    [style*="padding:40px"] { padding: 24px !important; }
    [style*="padding: 40px"] { padding: 24px !important; }
    .t-hero-phone-scene { width: 210px !important; }
    .t-hero-phone-img { width: 210px !important; }
    .t-hero-phone-glow { width: 235px !important; height: 235px !important; }
}

@media (max-width: 600px) {
    .t-footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .t-footer-logo { justify-content: center; }
    .t-footer-social { justify-content: center; }
    .t-footer-links { align-items: center; }
    .t-footer-app-links { align-items: center; }
    .t-footer-app-link { width: 100%; max-width: 280px; }
    .t-footer-email { justify-content: center; }
    .t-footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}
