/* ============================================================
   ANRERA TECH — Landing Page Styles
   Minimal, light, animated SaaS landing
   ============================================================ */

/* ===== CSS VARIABLES ===== */
:root {
    --color-primary: #FF253B;
    --color-primary-light: rgba(255, 37, 59, .08);
    --color-primary-glow: rgba(255, 37, 59, .15);
    --color-text: #1a1a1a;
    --color-text-secondary: #6b7280;
    --color-bg: #ffffff;
    --color-bg-alt: #fafafa;
    --color-border: #f0f0f0;
    --color-dark: #111113;
    --radius-card: 20px;
    --radius-pill: 60px;
    --shadow-soft: 0 2px 24px rgba(0,0,0,.05);
    --shadow-hover: 0 12px 40px rgba(0,0,0,.1);
    --transition: .4s cubic-bezier(.25,.46,.45,.94);
}

/* ===== BASE ===== */
.landing-body {
    background: var(--color-bg);
    color: var(--color-text);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.landing-body .section-label {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--color-primary);
    margin-bottom: 12px;
}

.landing-body .section-title {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-text);
    margin-bottom: 16px;
}

.landing-body .section-subtitle {
    font-size: 17px;
    color: var(--color-text-secondary);
    max-width: 560px;
    line-height: 1.6;
}

/* ===== NAVBAR LANDING ===== */
.navbar-landing {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 24px;
    transition: var(--transition);
}

.navbar-landing.scrolled {
    padding: 10px 24px;
}

.navbar-landing .navbar-inner {
    max-width: 1100px;
    margin: 0 auto;
    background: rgba(255,255,255,.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: var(--radius-pill);
    padding: 6px 6px 6px 24px;
    box-shadow: 0 1px 8px rgba(0,0,0,.06);
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,.04);
}

.navbar-landing.scrolled .navbar-inner {
    box-shadow: 0 4px 24px rgba(0,0,0,.08);
}

.navbar-landing .nav-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
}

.navbar-landing .nav-logo svg {
    height: 22px;
    width: auto;
}

.navbar-landing .nav-links {
    display: flex;
    align-items: center;
    gap: 2px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.navbar-landing .nav-links a {
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    color: var(--color-text-secondary);
    text-decoration: none;
    transition: all .2s;
    white-space: nowrap;
}

.navbar-landing .nav-links a:hover {
    background: var(--color-bg-alt);
    color: var(--color-text);
}

.navbar-landing .nav-links .dropdown {
    position: relative;
}

.navbar-landing .nav-links .dropdown-toggle {
    cursor: pointer;
}

.navbar-landing .nav-links .dropdown-toggle::after {
    display: inline-block;
    margin-left: 4px;
    vertical-align: middle;
    content: "";
    border-top: 4px solid;
    border-right: 4px solid transparent;
    border-left: 4px solid transparent;
    opacity: .5;
    transition: transform .2s;
}

.navbar-landing .nav-links .dropdown.open .dropdown-toggle::after {
    transform: rotate(180deg);
}

/* Invisible bridge to prevent hover gap */
.navbar-landing .nav-links .dropdown::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    height: 12px;
    display: none;
}

.navbar-landing .nav-links .dropdown:hover::after,
.navbar-landing .nav-links .dropdown.open::after {
    display: block;
}

.navbar-landing .nav-links .dropdown-menu {
    display: block;
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%) translateY(-4px);
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: 14px;
    padding: 6px;
    min-width: 200px;
    box-shadow: 0 8px 32px rgba(0,0,0,.1);
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s, transform .2s;
    list-style: none;
    margin: 0;
    z-index: 1050;
}

.navbar-landing .nav-links .dropdown:hover .dropdown-menu,
.navbar-landing .nav-links .dropdown.open .dropdown-menu {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.navbar-landing .nav-links .dropdown-menu a {
    display: block;
    padding: 10px 14px;
    border-radius: 10px;
    font-size: 14px;
    color: var(--color-text);
}

.navbar-landing .nav-links .dropdown-menu a:hover {
    background: var(--color-bg-alt);
}

.navbar-landing .nav-cta {
    padding: 10px 24px;
    border-radius: 50px;
    background: var(--color-text);
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all .25s;
    flex-shrink: 0;
    border: none;
}

.navbar-landing .nav-cta:hover {
    background: #333;
    color: #fff;
    transform: translateY(-1px);
}

/* Burger */
.nav-burger-landing {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    padding: 10px;
    background: none;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: background .2s;
}

.nav-burger-landing:hover {
    background: var(--color-bg-alt);
}

.nav-burger-landing span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--color-text);
    border-radius: 2px;
    transition: all .3s ease;
}

.nav-burger-landing.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.nav-burger-landing.open span:nth-child(2) {
    opacity: 0;
}
.nav-burger-landing.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile nav overlay */
.mobile-nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.3);
    backdrop-filter: blur(4px);
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s;
}

.mobile-nav-overlay.open {
    opacity: 1;
    pointer-events: auto;
}

.mobile-nav-panel {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(320px, 85vw);
    background: #fff;
    z-index: 1001;
    padding: 24px;
    transform: translateX(100%);
    transition: transform .35s cubic-bezier(.4,0,.2,1);
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mobile-nav-panel.open {
    transform: translateX(0);
}

.mobile-nav-panel .mobile-nav-close {
    align-self: flex-end;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: var(--color-bg-alt);
    border: none;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    color: var(--color-text);
}

.mobile-nav-panel a {
    display: block;
    padding: 14px 16px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 500;
    color: var(--color-text);
    text-decoration: none;
    transition: background .15s;
}

.mobile-nav-panel a:hover {
    background: var(--color-bg-alt);
}

.mobile-nav-panel .mobile-nav-group-title {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #999;
    padding: 20px 16px 6px;
}

@media (max-width: 920px) {
    .navbar-landing .nav-links,
    .navbar-landing .nav-cta {
        display: none;
    }
    .nav-burger-landing {
        display: flex;
    }
}


/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 100svh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding: 120px 24px 60px;
}

/* Gradient Orbs */
.hero-orbs {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: .35;
    will-change: transform;
}

.hero-orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, #FF253B 0%, transparent 70%);
    top: -15%;
    right: -10%;
    animation: orbFloat1 18s ease-in-out infinite;
}

.hero-orb-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #ff6b7a 0%, transparent 70%);
    bottom: -10%;
    left: -8%;
    animation: orbFloat2 22s ease-in-out infinite;
}

.hero-orb-3 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #ff9d47 0%, transparent 70%);
    top: 30%;
    left: 50%;
    animation: orbFloat3 20s ease-in-out infinite;
}

.hero-orb-4 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, #ffc2c8 0%, transparent 70%);
    bottom: 20%;
    right: 20%;
    animation: orbFloat4 24s ease-in-out infinite;
}

@keyframes orbFloat1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(-60px, 40px) scale(1.1); }
    50% { transform: translate(-30px, 80px) scale(.95); }
    75% { transform: translate(40px, 20px) scale(1.05); }
}

@keyframes orbFloat2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(50px, -30px) scale(1.08); }
    50% { transform: translate(80px, -60px) scale(.92); }
    75% { transform: translate(20px, -40px) scale(1.04); }
}

@keyframes orbFloat3 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(-70px, -50px) scale(1.12); }
    66% { transform: translate(40px, 30px) scale(.9); }
}

@keyframes orbFloat4 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(50px, 50px) scale(1.06); }
    66% { transform: translate(-40px, -20px) scale(.96); }
}

/* Floating feature pills */
.hero-features {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 1;
}

.feature-pill {
    position: absolute;
    display: inline-block;
    padding: 8px 16px;
    border-radius: 50px;
    background: rgba(255, 255, 255, .75);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 37, 59, .12);
    font-size: 13px;
    font-weight: 500;
    color: var(--color-text-secondary);
    white-space: nowrap;
    box-shadow: 0 4px 16px rgba(255, 37, 59, .06);
    will-change: transform;
    opacity: 0;
    animation: pillFadeIn .8s ease forwards, pillFloat 14s ease-in-out infinite;
}

@keyframes pillFadeIn {
    to { opacity: 1; }
}

@keyframes pillFloat {
    0%, 100% { transform: translate(0, 0); }
    25% { transform: translate(12px, -14px); }
    50% { transform: translate(-8px, -22px); }
    75% { transform: translate(-14px, 8px); }
}

@keyframes pillFloatB {
    0%, 100% { transform: translate(0, 0); }
    25% { transform: translate(-16px, 10px); }
    50% { transform: translate(10px, 20px); }
    75% { transform: translate(18px, -6px); }
}

@keyframes pillFloatC {
    0%, 100% { transform: translate(0, 0); }
    33% { transform: translate(20px, 14px); }
    66% { transform: translate(-12px, -18px); }
}

/* Distributed evenly in a ring around the central content */
/* Top row */
.feature-pill-1  { top: 6%;    left: 5%;   animation-delay: 0s,   .2s; animation-duration: .8s, 13s; }
.feature-pill-2  { top: 4%;    left: 40%;  animation-delay: .1s,  .8s; animation-duration: .8s, 11s; animation-name: pillFadeIn, pillFloatC; }
.feature-pill-3  { top: 6%;    right: 5%;  animation-delay: .15s, .4s; animation-duration: .8s, 15s; animation-name: pillFadeIn, pillFloatB; }
/* Upper ring */
.feature-pill-4  { top: 18%;   left: 16%;  animation-delay: .2s,  .5s; animation-duration: .8s, 16s; animation-name: pillFadeIn, pillFloatB; }
.feature-pill-5  { top: 18%;   right: 14%; animation-delay: .25s, .3s; animation-duration: .8s, 14s; animation-name: pillFadeIn, pillFloatC; }
/* Mid sides */
.feature-pill-6  { top: 34%;   left: 3%;   animation-delay: .3s,  .1s; animation-duration: .8s, 17s; }
.feature-pill-7  { top: 34%;   right: 3%;  animation-delay: .35s, .6s; animation-duration: .8s, 12s; animation-name: pillFadeIn, pillFloatB; }
/* Lower-mid sides */
.feature-pill-8  { top: 52%;   left: 5%;   animation-delay: .4s,  .7s; animation-duration: .8s, 15s; animation-name: pillFadeIn, pillFloatC; }
.feature-pill-9  { top: 52%;   right: 5%;  animation-delay: .45s, .2s; animation-duration: .8s, 13s; }
/* Lower ring */
.feature-pill-10 { bottom: 22%; left: 3%;  animation-delay: .5s,  .9s; animation-duration: .8s, 16s; animation-name: pillFadeIn, pillFloatB; }
.feature-pill-11 { bottom: 22%; right: 3%; animation-delay: .55s, .3s; animation-duration: .8s, 14s; animation-name: pillFadeIn, pillFloatC; }
/* Bottom ring */
.feature-pill-12 { bottom: 10%; left: 18%; animation-delay: .6s,  .6s; animation-duration: .8s, 12s; }
.feature-pill-13 { bottom: 10%; right: 16%;animation-delay: .65s, .4s; animation-duration: .8s, 18s; animation-name: pillFadeIn, pillFloatB; }
/* Bottom corners */
.feature-pill-14 { bottom: 4%;  left: 38%; animation-delay: .7s,  .1s; animation-duration: .8s, 15s; animation-name: pillFadeIn, pillFloatC; }
.feature-pill-15 { bottom: 4%;  right: 5%; animation-delay: .75s, .8s; animation-duration: .8s, 13s; }

@media (max-width: 1100px) {
    .feature-pill-2, .feature-pill-4, .feature-pill-5,
    .feature-pill-13, .feature-pill-14 { display: none; }
}

@media (max-width: 768px) {
    .hero-features { display: none; }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

/* Announcement pill */
.hero-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    border-radius: 50px;
    background: var(--color-primary-light);
    border: 1px solid var(--color-primary-glow);
    font-size: 14px;
    font-weight: 500;
    color: var(--color-primary);
    margin-bottom: 32px;
    animation: fadeInDown .8s ease both;
}

/* Hero heading */
.hero h1 {
    font-size: clamp(36px, 6vw, 60px);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -.02em;
    margin-bottom: 24px;
    animation: fadeInUp .8s .15s ease both;
}

.hero h1 .typewriter-text {
    color: var(--color-primary);
    position: relative;
}

.hero h1 .typewriter-cursor {
    display: inline-block;
    width: 3px;
    height: 1em;
    background: var(--color-primary);
    margin-left: 2px;
    vertical-align: text-bottom;
    animation: cursorBlink 1s step-end infinite;
}

.hero .hero-subtitle {
    font-size: clamp(16px, 2vw, 19px);
    color: var(--color-text-secondary);
    line-height: 1.7;
    margin-bottom: 40px;
    animation: fadeInUp .8s .3s ease both;
}

/* CTA group */
.hero-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    animation: fadeInUp .8s .45s ease both;
}

.btn-primary-landing {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 50px;
    background: var(--color-text);
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all .3s;
    border: none;
}

.btn-primary-landing:hover {
    background: #333;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,.15);
}

.btn-ghost-landing {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 14px 24px;
    border-radius: 50px;
    background: transparent;
    color: var(--color-text-secondary);
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    transition: all .25s;
    border: none;
}

.btn-ghost-landing:hover {
    color: var(--color-text);
    background: var(--color-bg-alt);
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    animation: fadeInUp 1s 1s ease both;
}

.scroll-indicator span {
    display: block;
    width: 24px;
    height: 40px;
    border: 2px solid rgba(0,0,0,.15);
    border-radius: 12px;
    position: relative;
}

.scroll-indicator span::after {
    content: "";
    position: absolute;
    top: 6px;
    left: 50%;
    width: 4px;
    height: 8px;
    background: rgba(0,0,0,.25);
    border-radius: 4px;
    transform: translateX(-50%);
    animation: scrollDot 2s ease-in-out infinite;
}

@keyframes scrollDot {
    0%, 100% { opacity: 1; transform: translateX(-50%) translateY(0); }
    50% { opacity: .3; transform: translateX(-50%) translateY(12px); }
}

@keyframes cursorBlink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}


/* ===== PRODUCTS — BENTO GRID ===== */
.section-products {
    padding: 100px 24px;
    background: var(--color-bg-alt);
}

.section-products .section-header {
    text-align: center;
    margin-bottom: 56px;
}

.section-products .section-subtitle {
    margin: 0 auto;
}

.bento-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: 20px;
}

.bento-card {
    background: var(--color-bg);
    border-radius: var(--radius-card);
    padding: 32px;
    position: relative;
    overflow: hidden;
    transition: transform .4s cubic-bezier(.25,.46,.45,.94), box-shadow .4s;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--color-border);
}

.bento-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
    border-color: transparent;
}

.bento-card.bento-large {
    grid-column: span 2;
}

.bento-card .bento-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    object-fit: contain;
    margin-bottom: 20px;
}

.bento-card .bento-badges {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.bento-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
}

.bento-badge-popular {
    background: #FFF3E0;
    color: #E65100;
}

.bento-badge-new {
    background: #E8F5E9;
    color: #2E7D32;
}

.bento-badge-free {
    background: #E3F2FD;
    color: #1565C0;
}

.bento-badge-partner {
    background: #F3E5F5;
    color: #7B1FA2;
}

.bento-badge-testing {
    background: #FFF8E1;
    color: #F57F17;
}

.bento-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--color-text);
}

.bento-card .bento-desc {
    font-size: 15px;
    color: var(--color-text-secondary);
    line-height: 1.6;
    margin-bottom: 20px;
    flex: 1;
}

.bento-card .bento-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.bento-price {
    font-size: 22px;
    font-weight: 700;
    color: var(--color-text);
}

.bento-price small {
    font-size: 13px;
    font-weight: 400;
    color: var(--color-text-secondary);
}

.bento-trial {
    font-size: 13px;
    color: var(--color-text-secondary);
}

.bento-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 22px;
    border-radius: 50px;
    background: var(--color-text);
    color: #fff;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    transition: all .25s;
    border: none;
}

.bento-link:hover {
    background: #333;
    color: #fff;
    transform: translateY(-1px);
}

@media (max-width: 768px) {
    .bento-grid {
        grid-template-columns: 1fr;
    }
    .bento-card.bento-large {
        grid-column: span 1;
    }
}


/* ===== FEATURES ===== */
.section-features {
    padding: 100px 24px;
    background: var(--color-bg);
}

.section-features .section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-features .section-subtitle {
    margin: 0 auto;
}

.features-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px 40px;
}

.feature-item {
    text-align: center;
}

.feature-icon-wrap {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: var(--color-primary-light);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    font-size: 24px;
}

.feature-item .feature-icon-wrap {
    margin-bottom: 16px;
}

.feature-item h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--color-text);
}

.feature-item p {
    font-size: 14px;
    color: var(--color-text-secondary);
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 36px 24px;
    }
}

@media (max-width: 480px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}


/* ===== STATISTICS ===== */
.section-stats {
    padding: 80px 24px;
    background: linear-gradient(135deg, var(--color-bg-alt) 0%, #fff5f5 50%, var(--color-bg-alt) 100%);
    position: relative;
}

.stats-grid {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    text-align: center;
}

.stat-item .stat-number {
    font-size: clamp(40px, 5vw, 64px);
    font-weight: 700;
    color: var(--color-text);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-item .stat-label {
    font-size: 14px;
    color: var(--color-text-secondary);
    line-height: 1.4;
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 24px;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }
}


/* ===== TOOLS ===== */
.section-tools {
    padding: 100px 24px;
    background: var(--color-bg);
}

.section-tools .section-header {
    text-align: center;
    margin-bottom: 56px;
}

.section-tools .section-subtitle {
    margin: 0 auto;
}

.tools-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.tool-card {
    border: 1.5px solid var(--color-border);
    border-radius: var(--radius-card);
    padding: 28px;
    transition: all .35s;
    display: flex;
    flex-direction: column;
    background: transparent;
}

.tool-card:hover {
    border-color: var(--color-primary-glow);
    background: #fff;
    box-shadow: var(--shadow-soft);
    transform: translateY(-2px);
}

.tool-card .tool-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    object-fit: contain;
    margin-bottom: 16px;
}

.tool-card h4 {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--color-text);
}

.tool-card p {
    font-size: 14px;
    color: var(--color-text-secondary);
    line-height: 1.6;
    margin-bottom: 20px;
    flex: 1;
}

.tool-card .tool-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--color-primary);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: gap .25s;
}

.tool-card .tool-link:hover {
    gap: 10px;
}

@media (max-width: 768px) {
    .tools-grid {
        grid-template-columns: 1fr;
    }
}


/* ===== CTA SECTION ===== */
.section-cta {
    padding: 100px 24px;
    background: var(--color-bg-alt);
    text-align: center;
}

.cta-box {
    max-width: 560px;
    margin: 0 auto;
}

.cta-box h2 {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--color-text);
}

.cta-box p {
    font-size: 17px;
    color: var(--color-text-secondary);
    margin-bottom: 36px;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-red-landing {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 50px;
    background: var(--color-primary);
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all .3s;
    border: none;
}

.btn-red-landing:hover {
    background: #e01f33;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255,37,59,.25);
}


/* ===== FOOTER ===== */
.landing-footer {
    background: var(--color-dark);
    color: rgba(255,255,255,.7);
    padding: 64px 24px 32px;
}

.footer-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
}

.footer-brand p {
    font-size: 14px;
    line-height: 1.7;
    margin: 16px 0 0;
    max-width: 280px;
}

.footer-brand .footer-logo svg {
    height: 22px;
    width: auto;
}

.footer-col h5 {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255,255,255,.4);
    margin-bottom: 16px;
}

.footer-col a {
    display: block;
    color: rgba(255,255,255,.7);
    text-decoration: none;
    font-size: 14px;
    padding: 4px 0;
    transition: color .2s;
}

.footer-col a:hover {
    color: #fff;
}

.footer-bottom {
    max-width: 1100px;
    margin: 48px auto 0;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,.08);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 13px;
    color: rgba(255,255,255,.35);
}

@media (max-width: 768px) {
    .footer-inner {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
    .footer-brand {
        grid-column: span 2;
    }
}

@media (max-width: 480px) {
    .footer-inner {
        grid-template-columns: 1fr;
    }
    .footer-brand {
        grid-column: span 1;
    }
}


/* ===== SCROLL ANIMATIONS ===== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .7s cubic-bezier(.25,.46,.45,.94), transform .7s cubic-bezier(.25,.46,.45,.94);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }
.reveal-delay-5 { transition-delay: .5s; }
.reveal-delay-6 { transition-delay: .6s; }

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-16px); }
    to { opacity: 1; transform: translateY(0); }
}


/* ===== PRINT / REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
    *, ::before, ::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
    .hero-orb { animation: none !important; }
    .feature-pill { animation: pillFadeIn .4s ease forwards !important; }
    .reveal { opacity: 1; transform: none; }
}

/* ===== PRODUCT SLIDER ===== */
.product-slider {
    max-width: 100%;
}

.product-slider-viewport {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-card);
    border: 1px solid var(--color-border);
    background: var(--color-bg-alt);
    box-shadow: var(--shadow-soft);
}

.product-slider-track {
    display: flex;
    transition: transform var(--transition);
    will-change: transform;
}

.product-slide {
    flex: 0 0 100%;
    min-width: 100%;
}

.product-slide img {
    display: block;
    width: 100%;
    aspect-ratio: 1817 / 1160;
    object-fit: cover;
    user-select: none;
    -webkit-user-drag: none;
}

.product-slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.product-slider-dot {
    width: 8px;
    height: 8px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: var(--color-border);
    cursor: pointer;
    transition: background var(--transition), width var(--transition);
}

.product-slider-dot.is-active {
    width: 24px;
    border-radius: 4px;
    background: var(--color-primary);
}

@media (max-width: 600px) {
    .product-slider-dots {
        margin-top: 16px;
    }
}

/* ===== PRODUCT PAGE LAYOUT ===== */
.product-page {
    padding-top: 120px;
    padding-bottom: 40px;
}

.product-container {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 24px;
}

.product-breadcrumbs {
    margin-bottom: 20px;
}

.product-breadcrumbs ol {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    padding: 0;
    margin: 0;
    font-size: 14px;
    color: var(--color-text-secondary);
}

.product-breadcrumbs a {
    color: var(--color-text-secondary);
    text-decoration: none;
    transition: color .2s ease;
}

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

.product-breadcrumbs [aria-current="page"] {
    color: var(--color-text);
}

.product-hero {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
}

.product-hero-icon {
    width: 76px;
    height: 76px;
    border-radius: 18px;
    object-fit: cover;
    flex-shrink: 0;
}

.product-hero h1 {
    font-size: clamp(26px, 4vw, 40px);
    font-weight: 700;
    margin: 0;
    line-height: 1.15;
}

.product-hero .product-tagline {
    margin: 6px 0 0;
    color: var(--color-text-secondary);
    font-size: 16px;
    line-height: 1.5;
}

.product-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 40px;
    align-items: start;
}

.product-main {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.product-aside {
    position: sticky;
    top: 96px;
}

.product-block {
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-card);
    padding: 28px;
    box-shadow: var(--shadow-soft);
}

.product-block > h2 {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 16px;
    color: var(--color-text);
}

.product-block > p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--color-text-secondary);
    margin: 0;
}

.product-features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.product-feature {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.product-feature .feature-icon-wrap {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    font-size: 20px;
}

.product-feature-title {
    font-weight: 600;
    font-size: 15px;
    margin-bottom: 4px;
    color: var(--color-text);
}

.product-feature-text {
    font-size: 14px;
    color: var(--color-text-secondary);
    line-height: 1.6;
}

.product-highlight {
    padding: 20px;
    border-radius: 14px;
    background: var(--color-primary-light);
    border: 1px solid var(--color-primary-glow);
    font-size: 15px;
    line-height: 1.7;
    color: var(--color-text);
}

.product-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 12px;
}

.product-list li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-size: 15px;
    line-height: 1.6;
    color: var(--color-text-secondary);
}

.product-list .material-symbols-rounded {
    font-size: 18px;
    color: var(--color-primary);
    flex-shrink: 0;
    margin-top: 3px;
}

.product-prose {
    font-size: 15px;
    line-height: 1.75;
    color: var(--color-text-secondary);
}

.product-prose > p {
    margin: 0 0 16px;
}

.product-prose > p:last-child {
    margin-bottom: 0;
}

.product-prose strong {
    color: var(--color-text);
    font-weight: 600;
}

.product-prose a {
    color: var(--color-primary);
    text-decoration: underline;
    text-underline-offset: 2px;
    word-break: break-word;
}

.product-prose a:hover {
    text-decoration: none;
}

/* ===== FAQ ===== */
.faq-list {
    display: grid;
    gap: 12px;
}

.faq-item {
    border: 1px solid var(--color-border);
    border-radius: 14px;
    padding: 4px 18px;
    transition: border-color .2s;
}

.faq-item[open] {
    border-color: var(--color-primary-glow);
}

.faq-question {
    list-style: none;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    color: var(--color-text);
    padding: 14px 28px 14px 0;
    position: relative;
}

.faq-question::-webkit-details-marker {
    display: none;
}

.faq-question::after {
    content: "add";
    font-family: "Material Symbols Rounded";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    color: var(--color-primary);
    transition: transform .2s;
}

.faq-item[open] .faq-question::after {
    content: "remove";
}

.faq-answer {
    font-size: 15px;
    line-height: 1.7;
    color: var(--color-text-secondary);
    padding: 0 0 16px;
}

/* ===== PURCHASE CARD ===== */
.purchase-card {
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-card);
    padding: 28px;
    box-shadow: var(--shadow-hover);
}

.purchase-price {
    font-size: 32px;
    font-weight: 700;
    line-height: 1;
    color: var(--color-text);
}

.purchase-price .free {
    color: var(--color-primary);
}

.purchase-price .period {
    font-size: 14px;
    font-weight: 400;
    color: var(--color-text-secondary);
}

.purchase-trial {
    margin-top: 14px;
}

.purchase-version {
    margin-top: 14px;
    font-size: 14px;
    color: var(--color-text-secondary);
}

.purchase-version strong {
    color: var(--color-text);
    font-weight: 600;
}

.purchase-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 22px;
}

.purchase-actions .btn-primary-landing,
.purchase-actions .btn-ghost-landing,
.purchase-actions .btn-disabled-landing {
    width: 100%;
    justify-content: center;
}

.btn-disabled-landing {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 24px;
    border-radius: var(--radius-pill);
    background: var(--color-bg-alt);
    color: var(--color-text-secondary);
    font-weight: 600;
    border: 1px solid var(--color-border);
    cursor: default;
}

.purchase-facts {
    list-style: none;
    padding: 0;
    margin: 22px 0 0;
    border-top: 1px solid var(--color-border);
}

.purchase-fact {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 13px 0;
    border-bottom: 1px solid var(--color-border);
    font-size: 14px;
}

.purchase-fact-label {
    color: var(--color-text-secondary);
    display: flex;
    align-items: center;
    gap: 8px;
}

.purchase-fact-label .material-symbols-rounded {
    font-size: 18px;
}

.purchase-fact-value {
    font-weight: 600;
    text-align: right;
    color: var(--color-text);
}

/* ===== COMPATIBLE APPS ===== */
.compat-card {
    margin-top: 20px;
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-card);
    padding: 24px;
    box-shadow: var(--shadow-soft);
}

.compat-title {
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 4px;
    color: var(--color-text);
}

.compat-subtitle {
    font-size: 13px;
    color: var(--color-text-secondary);
    margin: 0 0 16px;
    line-height: 1.5;
}

.compat-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    border-radius: 14px;
    border: 1px solid var(--color-border);
    text-decoration: none;
    color: inherit;
    transition: border-color var(--transition), background var(--transition);
}

.compat-item + .compat-item {
    margin-top: 10px;
}

a.compat-item:hover {
    border-color: var(--color-primary-glow);
    background: var(--color-primary-light);
}

.compat-item img {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    object-fit: cover;
    flex-shrink: 0;
}

.compat-item-body {
    min-width: 0;
}

.compat-item-name {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 14px;
    color: var(--color-text);
}

.compat-item-platform {
    font-size: 11px;
    font-weight: 600;
    color: var(--color-text-secondary);
    background: var(--color-bg-alt);
    border: 1px solid var(--color-border);
    border-radius: 20px;
    padding: 2px 8px;
    white-space: nowrap;
}

.compat-item-desc {
    display: block;
    font-size: 12.5px;
    color: var(--color-text-secondary);
    margin-top: 3px;
    line-height: 1.4;
}

.product-cta-bottom {
    margin-top: 40px;
    padding: 44px;
    border-radius: var(--radius-card);
    background: var(--color-bg-alt);
    text-align: center;
}

.product-cta-bottom h2 {
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 8px;
}

.product-cta-bottom p {
    color: var(--color-text-secondary);
    font-size: 15px;
    margin: 0 0 24px;
}

.product-cta-bottom .product-cta-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 900px) {
    .product-layout {
        display: flex;
        flex-direction: column;
        gap: 28px;
    }

    .product-aside {
        position: static;
        order: -1;
    }
}

@media (max-width: 560px) {
    .product-features-grid {
        grid-template-columns: 1fr;
    }

    .product-hero {
        gap: 16px;
    }

    .product-hero-icon {
        width: 60px;
        height: 60px;
    }

    .product-block,
    .purchase-card {
        padding: 22px;
    }

    .product-cta-bottom {
        padding: 32px 22px;
    }
}

/* ===== CONNECT PAGE ===== */
.connect-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 24px;
}

.connect-header {
    text-align: center;
    margin-bottom: 40px;
}

.connect-header h1 {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
    margin: 0 0 12px;
    line-height: 1.15;
}

.connect-header p {
    max-width: 620px;
    margin: 0 auto;
    color: var(--color-text-secondary);
    font-size: 16px;
    line-height: 1.6;
}

.connect-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.connect-card {
    display: flex;
    flex-direction: column;
    gap: 16px;
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-card);
    padding: 24px;
    box-shadow: var(--shadow-soft);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.connect-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover, 0 12px 30px rgba(0, 0, 0, 0.08));
}

.connect-card-head {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    color: inherit;
}

.connect-card-head img {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    object-fit: cover;
    flex-shrink: 0;
}

.connect-card-title {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.connect-card-name {
    font-weight: 700;
    font-size: 17px;
    color: var(--color-text);
}

.connect-card-tagline {
    font-size: 13px;
    color: var(--color-text-secondary);
    line-height: 1.45;
    margin-top: 2px;
}

.connect-card-price {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: auto;
    font-size: 18px;
    color: var(--color-text);
}

.connect-card-price span {
    font-size: 13px;
    color: var(--color-text-secondary);
}

.connect-card-price .free {
    color: var(--color-primary);
}

.connect-card-trial {
    background: var(--color-primary-light);
    color: var(--color-primary);
    border-radius: 50px;
    padding: 4px 12px;
    font-size: 12px !important;
    font-weight: 600;
}

.connect-card-btn {
    width: 100%;
    justify-content: center;
}

.connect-help {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 40px;
    color: var(--color-text-secondary);
    font-size: 15px;
}

@media (max-width: 640px) {
    .connect-grid {
        grid-template-columns: 1fr;
    }
}

