/* ===========================
   PERMINUT LANDING
   Brand: RGB(52,17,64) = #341140
   =========================== */

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

:root {
    /* ── Brand palette derived from #341140 ── */
    --brand-900: #341140;   /* base — RGB(52,17,64)     */
    --brand-800: #4a1a5c;   /* slightly lighter          */
    --brand-700: #622278;   /* mid-purple                */
    --brand-600: #7a2d92;   /* CTA hover                 */
    --brand-500: #9b45b0;   /* accent                    */
    --brand-400: #bb72ca;   /* softer accent             */
    --brand-300: #d5a5df;   /* light tint                */
    --brand-100: #f5eaf8;   /* subtle tint bg            */
    --brand-50:  #faf4fc;   /* barely-there bg           */

    /* ── Backgrounds ── */
    --bg:        #F8F7FC;
    --bg-white:  #FFFFFF;
    --surface:   #FFFFFF;
    --surface2:  #F3F1F7;
    --surface3:  #EAE7F2;

    /* ── Borders ── */
    --border:       #E5E1EF;
    --border-hover: #C8C0DC;

    /* ── Text ── */
    --text:       #1C1529;
    --text-muted: #6B6080;
    --text-dim:   #A89FBB;

    /* ── Functional palette (Slack-inspired accents) ── */
    --green:        #2EB67D;
    --green-light:  #E8F8F1;
    --yellow:       #ECB22E;
    --yellow-light: #FEF8E7;
    --red:          #E01E5A;
    --red-light:    #FDEAEF;
    --blue:         #36C5F0;
    --blue-light:   #E8F8FE;

    /* ── Primary (alias for brand base) ── */
    --primary:       var(--brand-900);
    --primary-mid:   var(--brand-700);
    --primary-hover: var(--brand-800);
    --primary-light: var(--brand-100);
    --primary-glow:  rgba(52, 17, 64, 0.18);

    --radius:    0.875rem;
    --radius-lg: 1.25rem;
    --radius-xl: 1.75rem;

    --shadow-sm: 0 1px 4px rgba(52,17,64,0.07), 0 4px 14px rgba(52,17,64,0.04);
    --shadow-md: 0 4px 16px rgba(52,17,64,0.09), 0 12px 36px rgba(52,17,64,0.06);
    --shadow-lg: 0 8px 32px rgba(52,17,64,0.11), 0 24px 60px rgba(52,17,64,0.07);
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg);
    color: var(--text);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    line-height: 1.6;
}

.container {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ===== NAV ===== */
.nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 0.875rem 0;
    background: rgba(248, 247, 252, 0.88);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s, box-shadow 0.3s;
}
.nav.scrolled {
    border-color: var(--border);
    box-shadow: var(--shadow-sm);
    background: rgba(255,255,255,0.94);
}
.nav-inner {
    max-width: 1160px; margin: 0 auto;
    padding: 0 2rem;
    display: flex; align-items: center; gap: 2rem;
}
.nav-logo {
    display: flex; align-items: center; gap: 0.6rem;
    text-decoration: none;
    font-weight: 800; font-size: 1.05rem;
    color: var(--text); letter-spacing: -0.02em;
}
.logo-icon {
    width: 34px; height: 34px;
    background: linear-gradient(135deg, var(--brand-900), var(--brand-700));
    border-radius: 9px;
    display: flex; align-items: center; justify-content: center;
    color: white; flex-shrink: 0;
    box-shadow: 0 2px 10px var(--primary-glow);
}
.nav-links { display: flex; gap: 1.75rem; margin-left: auto; }
.nav-links a {
    text-decoration: none; color: var(--text-muted);
    font-size: 0.875rem; font-weight: 500; transition: color 0.2s;
}
.nav-links a:hover { color: var(--primary); }
.nav-cta { display: flex; gap: 0.625rem; margin-left: 1rem; }
.mobile-menu-btn {
    display: none; flex-direction: column; gap: 5px;
    background: none; border: none; cursor: pointer; padding: 0.5rem; margin-left: auto;
}
.mobile-menu-btn span {
    display: block; width: 22px; height: 2px;
    background: var(--text); border-radius: 2px; transition: 0.3s;
}
.mobile-menu {
    display: none; flex-direction: column; gap: 0.5rem;
    padding: 1rem 2rem 1.5rem;
    border-top: 1px solid var(--border);
    background: var(--bg-white);
}
.mobile-menu a {
    text-decoration: none; color: var(--text-muted);
    font-size: 0.9rem; font-weight: 500;
    padding: 0.5rem 0; transition: color 0.2s;
}
.mobile-menu a:hover { color: var(--primary); }
.mobile-menu.open { display: flex; }

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex; align-items: center; gap: 0.5rem;
    padding: 0.6rem 1.2rem; border-radius: 0.7rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.82rem; font-weight: 700; letter-spacing: 0.01em;
    text-decoration: none; border: none; cursor: pointer;
    transition: all 0.18s; white-space: nowrap;
}
.btn-primary {
    background: linear-gradient(135deg, var(--brand-900) 0%, var(--brand-700) 100%);
    color: white;
    box-shadow: 0 2px 12px var(--primary-glow);
}
.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 22px var(--primary-glow);
    background: linear-gradient(135deg, var(--brand-800) 0%, var(--brand-600) 100%);
}
.btn-ghost {
    background: var(--surface2); color: var(--text-muted);
    border: 1px solid var(--border);
}
.btn-ghost:hover { background: var(--surface3); color: var(--primary); border-color: var(--border-hover); }
.btn-outline {
    background: transparent; color: var(--primary);
    border: 1.5px solid var(--primary);
}
.btn-outline:hover { background: var(--primary-light); }
.btn-white {
    background: white; color: var(--brand-900);
    font-weight: 800;
    box-shadow: 0 4px 20px rgba(0,0,0,0.12);
}
.btn-white:hover { transform: translateY(-1px); box-shadow: 0 8px 28px rgba(0,0,0,0.18); }
.btn-white-outline {
    background: transparent; color: rgba(255,255,255,0.85);
    border: 1.5px solid rgba(255,255,255,0.3);
}
.btn-white-outline:hover { background: rgba(255,255,255,0.1); color: white; border-color: rgba(255,255,255,0.55); }
.btn-lg { padding: 0.875rem 1.75rem; font-size: 0.9rem; border-radius: 0.875rem; }

/* ===== HERO ===== */
.hero {
    min-height: 100vh;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    padding: 8rem 2rem 4rem;
    position: relative; text-align: center; overflow: hidden;
    background: linear-gradient(180deg, #EEE8F6 0%, #F8F7FC 65%);
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.hero-orb { position: absolute; border-radius: 50%; filter: blur(90px); opacity: 0.14; }
.hero-orb-1 {
    width: 600px; height: 600px; background: var(--brand-900);
    top: -200px; left: -200px; animation: drift1 8s ease-in-out infinite;
}
.hero-orb-2 {
    width: 400px; height: 400px; background: var(--brand-600);
    top: 80px; right: -100px; animation: drift2 10s ease-in-out infinite;
}
.hero-orb-3 {
    width: 300px; height: 300px; background: var(--brand-400);
    bottom: 80px; left: 30%; opacity: 0.07;
    animation: drift1 12s ease-in-out infinite reverse;
}
.grid-overlay {
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(52,17,64,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(52,17,64,0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at 50% 40%, black 20%, transparent 75%);
}
@keyframes drift1 { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(40px,-40px) scale(1.08); } }
@keyframes drift2 { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(-50px,30px) scale(0.95); } }

.hero-badge {
    display: inline-flex; align-items: center; gap: 0.5rem;
    padding: 0.35rem 1rem;
    border: 1px solid rgba(52,17,64,0.2); border-radius: 999px;
    color: var(--brand-900); font-size: 0.72rem; font-weight: 700;
    letter-spacing: 0.06em; text-transform: uppercase;
    margin-bottom: 2rem; background: rgba(52,17,64,0.06);
    animation: fadeUp 0.6s ease-out both;
}
.badge-dot {
    width: 7px; height: 7px; border-radius: 50%;
    background: var(--brand-700); animation: pulse 2s infinite;
}
.hero-title {
    font-size: clamp(2.4rem, 5.5vw, 4.2rem);
    font-weight: 900; line-height: 1.1; letter-spacing: -0.04em;
    margin-bottom: 1.5rem; color: var(--text);
    animation: fadeUp 0.6s 0.1s ease-out both;
}
.gradient-text {
    background: linear-gradient(135deg, var(--brand-900), var(--brand-500), var(--brand-400));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-desc {
    font-size: 1.05rem; color: var(--text-muted);
    max-width: 580px; margin: 0 auto 2.5rem; line-height: 1.75;
    animation: fadeUp 0.6s 0.2s ease-out both;
}
.hero-actions {
    display: flex; gap: 0.875rem; justify-content: center; flex-wrap: wrap;
    margin-bottom: 3rem; animation: fadeUp 0.6s 0.3s ease-out both;
}
.hero-stats {
    display: flex; align-items: center; gap: 2rem; justify-content: center;
    font-size: 0.8rem; animation: fadeUp 0.6s 0.4s ease-out both;
}
.stat { display: flex; flex-direction: column; gap: 2px; }
.stat-num { font-weight: 800; color: var(--text); font-size: 0.875rem; }
.stat-label { font-size: 0.68rem; letter-spacing: 0.05em; text-transform: uppercase; color: var(--text-muted); }
.stat-divider { width: 1px; height: 30px; background: var(--border); }

/* HERO DEMO CARD */
.hero-demo {
    width: 100%; max-width: 680px;
    margin: 4rem auto 0; animation: fadeUp 0.8s 0.5s ease-out both;
}
.demo-card {
    background: var(--bg-white); border: 1px solid var(--border);
    border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-lg);
}
.demo-header {
    display: flex; align-items: center; gap: 1rem;
    padding: 0.875rem 1.25rem; background: var(--surface2);
    border-bottom: 1px solid var(--border);
}
.demo-dots { display: flex; gap: 6px; }
.demo-dots span { width: 10px; height: 10px; border-radius: 50%; }
.demo-dots span:nth-child(1) { background: #ff5f57; }
.demo-dots span:nth-child(2) { background: #febc2e; }
.demo-dots span:nth-child(3) { background: #28c840; }
.demo-title { font-size: 0.75rem; font-weight: 600; color: var(--text-muted); flex: 1; }
.demo-live {
    display: flex; align-items: center; gap: 5px;
    font-size: 0.68rem; font-weight: 700;
    color: var(--green); letter-spacing: 0.06em; text-transform: uppercase;
}
.demo-live span {
    width: 6px; height: 6px; border-radius: 50%;
    background: var(--green); animation: pulse 1.5s infinite;
}
.demo-body { padding: 0.875rem; }
.timer-row {
    display: flex; align-items: center; gap: 0.875rem;
    padding: 0.75rem 0.875rem;
    border-radius: 0.75rem; margin-bottom: 0.4rem;
    border: 1px solid transparent; transition: all 0.2s;
}
.active-row { background: var(--brand-50); border-color: rgba(52,17,64,0.12); }
.timer-user { display: flex; align-items: center; gap: 0.65rem; flex: 1; min-width: 0; }
.user-avatar {
    width: 34px; height: 34px; border-radius: 9px;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.65rem; font-weight: 800; color: white; flex-shrink: 0;
}
.user-name { font-size: 0.8rem; font-weight: 700; color: var(--text); }
.user-project {
    display: flex; align-items: center; gap: 5px;
    font-size: 0.68rem; color: var(--text-muted); margin-top: 1px;
    white-space: nowrap;
}
.project-dot { width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; }
.timer-display {
    font-family: 'SF Mono', 'Fira Code', monospace;
    font-size: 1rem; font-weight: 800;
    color: var(--text-muted); letter-spacing: 0.04em; flex-shrink: 0;
}
.timer-display.running { color: var(--brand-700); }
.timer-status { font-size: 0.63rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.07em; flex-shrink: 0; }
.running-badge { display: flex; align-items: center; gap: 4px; color: var(--green); }
.running-badge span { width: 6px; height: 6px; border-radius: 50%; background: var(--green); animation: pulse 1s infinite; }
.stopped-badge { color: var(--text-dim); }
.demo-footer { padding: 0 0.25rem 0.25rem; margin-top: 0.5rem; display: flex; flex-direction: column; gap: 0.625rem; }
.budget-label { display: flex; justify-content: space-between; font-size: 0.68rem; font-weight: 600; color: var(--text-muted); margin-bottom: 4px; }
.budget-pct { color: var(--text-muted); }
.warning-pct { color: var(--red) !important; font-weight: 800; }
.budget-bar { height: 5px; background: var(--surface2); border-radius: 999px; overflow: hidden; }
.budget-fill { height: 100%; border-radius: 999px; }
.warning-fill { background: var(--red) !important; }

/* ===== SECTION COMMON ===== */
.section-label {
    display: inline-block;
    font-size: 0.68rem; font-weight: 800;
    text-transform: uppercase; letter-spacing: 0.12em;
    color: var(--brand-700);
    border: 1px solid rgba(52,17,64,0.18);
    background: var(--primary-light);
    padding: 0.28rem 0.8rem; border-radius: 999px; margin-bottom: 1.25rem;
}
.section-title {
    font-size: clamp(1.9rem, 3.5vw, 2.8rem);
    font-weight: 900; letter-spacing: -0.03em; line-height: 1.18; margin-bottom: 1rem;
}
.section-desc {
    font-size: 1rem; color: var(--text-muted);
    max-width: 520px; line-height: 1.72; margin-bottom: 4rem;
}

/* ===== FEATURES ===== */
.features {
    padding: 8rem 0; background: var(--bg-white);
    border-top: 1px solid var(--border);
}
.features-grid {
    display: grid; grid-template-columns: repeat(12, 1fr); gap: 1rem;
}
.feature-card {
    background: var(--bg);
    border: 1px solid var(--border); border-radius: var(--radius-lg);
    padding: 1.75rem;
    transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
    grid-column: span 4;
    display: flex; flex-direction: column; gap: 0.7rem;
}
.feature-card:hover { border-color: rgba(52,17,64,0.2); box-shadow: var(--shadow-md); transform: translateY(-2px); }
.feature-card-wide { grid-column: span 8; }
.feature-icon {
    width: 42px; height: 42px; border-radius: 11px;
    background: color-mix(in srgb, var(--c) 10%, transparent);
    border: 1px solid color-mix(in srgb, var(--c) 20%, transparent);
    display: flex; align-items: center; justify-content: center;
    color: var(--c); margin-bottom: 0.15rem;
}
.feature-card h3 { font-size: 1rem; font-weight: 800; letter-spacing: -0.02em; color: var(--text); }
.feature-card p { font-size: 0.865rem; color: var(--text-muted); line-height: 1.65; flex: 1; }

/* Feature timer visual */
.feature-visual.timer-visual {
    margin-top: auto;
    display: flex; flex-direction: column; align-items: center;
    justify-content: center; gap: 1.25rem;
    background: var(--bg-white);
    border: 1px solid var(--border); border-radius: var(--radius);
    padding: 1.5rem; text-align: center;
}
.big-timer {
    font-family: 'SF Mono', 'Fira Code', monospace;
    font-size: 2.2rem; font-weight: 800;
    color: var(--brand-900); letter-spacing: 0.06em;
}
.tc-btn {
    width: 44px; height: 44px; border-radius: 50%;
    border: none; cursor: pointer;
    font-size: 1rem; transition: all 0.2s;
    display: flex; align-items: center; justify-content: center;
}
.tc-play {
    background: linear-gradient(135deg, var(--brand-900), var(--brand-700));
    color: white; box-shadow: 0 4px 14px var(--primary-glow);
}
.tc-play:hover { transform: scale(1.1); box-shadow: 0 6px 20px var(--primary-glow); }

.feature-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-top: auto; }
.ftag {
    font-size: 0.65rem; font-weight: 700; letter-spacing: 0.03em;
    text-transform: uppercase; padding: 0.25rem 0.65rem; border-radius: 999px;
    background: color-mix(in srgb, var(--c) 8%, transparent);
    border: 1px solid color-mix(in srgb, var(--c) 20%, transparent);
    color: var(--c);
}
.team-avatars { display: flex; margin-top: auto; }
.ta {
    width: 34px; height: 34px; border-radius: 50%;
    margin-left: -9px; border: 2px solid var(--bg);
    display: flex; align-items: center; justify-content: center;
    font-size: 0.62rem; font-weight: 800; color: white;
}
.ta:first-child { margin-left: 0; }
.ta-more { background: var(--surface3); color: var(--text-muted); border-color: var(--border); font-size: 0.58rem; }
.alarm-pills { display: flex; gap: 0.4rem; flex-wrap: wrap; margin-top: auto; }
.alarm-pill {
    display: flex; align-items: center; gap: 5px;
    font-size: 0.72rem; font-weight: 700;
    padding: 0.3rem 0.65rem; border-radius: 999px;
    background: var(--surface2); border: 1px solid var(--border); color: var(--text-muted);
}
.alarm-pill.warn { background: var(--yellow-light); border-color: rgba(236,178,46,0.3); color: #957020; }
.alarm-pill.danger { background: var(--red-light); border-color: rgba(224,30,90,0.3); color: var(--red); }
.alarm-dot { width: 7px; height: 7px; border-radius: 50%; }
.alarm-dot.green { background: var(--green); }
.alarm-dot.orange { background: var(--yellow); animation: pulse 2s infinite; }
.alarm-dot.red { background: var(--red); animation: pulse 1s infinite; }
.slack-preview { margin-top: auto; }
.slack-msg {
    display: flex; gap: 0.65rem; align-items: flex-start;
    background: var(--bg-white); border: 1px solid var(--border);
    border-radius: var(--radius); padding: 0.875rem;
    border-left: 3px solid var(--yellow); box-shadow: var(--shadow-sm);
}
.slack-icon { font-size: 1.1rem; line-height: 1; }
.slack-msg strong { display: block; font-size: 0.78rem; margin-bottom: 2px; color: var(--text); }
.slack-msg p { font-size: 0.73rem; color: var(--text-muted); }

/* ===== HOW IT WORKS ===== */
.how {
    padding: 8rem 0; background: var(--bg);
    border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.steps { display: flex; align-items: flex-start; gap: 0; margin-top: 1rem; }
.step { flex: 1; display: flex; flex-direction: column; gap: 1rem; }
.step-num {
    width: 44px; height: 44px; border-radius: 12px;
    background: linear-gradient(135deg, var(--brand-900), var(--brand-700));
    color: white; display: flex; align-items: center; justify-content: center;
    font-weight: 900; font-size: 0.82rem; letter-spacing: 0.04em;
    flex-shrink: 0; box-shadow: 0 4px 14px var(--primary-glow);
}
.step-content h3 { font-size: 0.95rem; font-weight: 800; margin-bottom: 0.35rem; letter-spacing: -0.02em; color: var(--text); }
.step-content p { font-size: 0.84rem; color: var(--text-muted); line-height: 1.62; }
.step-line {
    flex: 0 0 80px; height: 2px;
    background: linear-gradient(90deg, var(--brand-900), var(--brand-400));
    margin-top: 22px; opacity: 0.2;
}

/* ===== SECURITY / ARCHITECTURE ===== */
.security {
    padding: 8rem 0; background: var(--bg-white); border-top: 1px solid var(--border);
}
.security-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.security-text { display: flex; flex-direction: column; gap: 0; }
.security-text h2 { font-size: 2.4rem; font-weight: 900; letter-spacing: -0.03em; margin-bottom: 1rem; }
.security-text > p { font-size: 0.95rem; color: var(--text-muted); line-height: 1.72; margin-bottom: 2rem; }
.security-list { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; }
.security-list li { display: flex; align-items: center; gap: 0.7rem; font-size: 0.88rem; font-weight: 500; color: var(--text-muted); }
.security-list li svg { color: var(--green); flex-shrink: 0; }
.security-visual { position: relative; height: 320px; }
.db-card {
    position: absolute; background: var(--bg-white);
    border: 1px solid var(--border); border-radius: var(--radius-lg);
    padding: 1.25rem; box-shadow: var(--shadow-md);
}
.main-db {
    width: 270px; left: 50%; transform: translateX(-50%); top: 30px;
    border-color: rgba(52,17,64,0.2);
    box-shadow: 0 0 0 1px rgba(52,17,64,0.06), var(--shadow-md);
}
.side-db { width: 170px; display: flex; flex-direction: column; gap: 0.4rem; padding: 0.875rem 1rem; }
.side-db { left: 0; bottom: 10px; transform: rotate(-5deg); opacity: 0.55; }
.side-db-2 { left: auto; right: 0; bottom: 30px; transform: rotate(5deg); opacity: 0.55; }
.db-icon { font-size: 1.4rem; margin-bottom: 0.2rem; }
.db-card > span { font-size: 0.8rem; font-weight: 700; display: block; margin-bottom: 0.6rem; color: var(--text); }
.db-records { display: flex; flex-direction: column; gap: 0.35rem; }
.db-row { display: flex; align-items: center; gap: 0.45rem; font-size: 0.68rem; color: var(--text-muted); font-weight: 500; }
.db-dot { width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; }
.db-badge { font-size: 0.6rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.07em; padding: 0.18rem 0.5rem; border-radius: 999px; width: fit-content; }
.isolated { background: var(--green-light); color: var(--green); border: 1px solid rgba(46,182,125,0.25); }

/* ===== PRICING ===== */
.pricing {
    padding: 8rem 0; background: var(--bg);
    border-top: 1px solid var(--border); text-align: center;
}
.pricing .section-desc { margin: 0 auto 4rem; }
.pricing-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; max-width: 720px; margin: 0 auto; }
.pricing-card {
    background: var(--bg-white); border: 1px solid var(--border); border-radius: var(--radius-xl);
    padding: 2.25rem; text-align: left;
    display: flex; flex-direction: column; gap: 1.1rem;
    box-shadow: var(--shadow-sm); transition: box-shadow 0.25s, border-color 0.25s;
}
.pricing-card:hover { box-shadow: var(--shadow-md); border-color: var(--border-hover); }
.pricing-featured {
    border-color: rgba(52,17,64,0.22);
    box-shadow: 0 0 0 1px rgba(52,17,64,0.05), var(--shadow-md);
    background: linear-gradient(160deg, var(--brand-50) 0%, var(--bg-white) 55%);
}
.pricing-badge {
    display: inline-block; font-size: 0.63rem; font-weight: 800;
    text-transform: uppercase; letter-spacing: 0.1em;
    padding: 0.25rem 0.7rem; border-radius: 999px;
    background: var(--surface3); border: 1px solid var(--border);
    color: var(--text-muted); width: fit-content;
}
.badge-featured { background: var(--brand-100); border-color: rgba(52,17,64,0.2); color: var(--brand-800); }
.pricing-price { font-size: 2.75rem; font-weight: 900; letter-spacing: -0.04em; line-height: 1; color: var(--text); }
.pricing-price span { font-size: 1rem; font-weight: 500; color: var(--text-muted); }
.pricing-desc { font-size: 0.87rem; color: var(--text-muted); line-height: 1.62; }
.pricing-features { list-style: none; display: flex; flex-direction: column; gap: 0.625rem; flex: 1; }
.pricing-features li { display: flex; align-items: center; gap: 0.65rem; font-size: 0.875rem; color: var(--text-muted); }
.pricing-features li svg { width: 14px; height: 14px; color: var(--green); flex-shrink: 0; }

/* ===== CTA ===== */
.cta {
    padding: 8rem 2rem; text-align: center;
    background: linear-gradient(135deg, var(--brand-900) 0%, var(--brand-700) 60%, var(--brand-600) 100%);
    position: relative; overflow: hidden;
}
.cta-orb {
    position: absolute; width: 600px; height: 600px; border-radius: 50%;
    background: radial-gradient(circle, rgba(255,255,255,0.07), transparent 65%);
    top: 50%; left: 50%; transform: translate(-50%, -50%); pointer-events: none;
}
.cta h2 { font-size: clamp(2rem, 5vw, 3.25rem); font-weight: 900; letter-spacing: -0.04em; margin-bottom: 1rem; color: white; }
.cta p { font-size: 1rem; color: rgba(255,255,255,0.68); max-width: 460px; margin: 0 auto 2.5rem; line-height: 1.68; }
.cta-actions { display: flex; gap: 0.875rem; justify-content: center; flex-wrap: wrap; }

/* ===== FOOTER ===== */
.footer { padding: 3.5rem 0 1.5rem; background: var(--bg-white); border-top: 1px solid var(--border); }
.footer-inner { display: flex; justify-content: space-between; gap: 3rem; margin-bottom: 2.5rem; flex-wrap: wrap; }
.footer-brand { display: flex; flex-direction: column; gap: 0.625rem; }
.footer-brand p { font-size: 0.84rem; color: var(--text-muted); }
.footer-links { display: flex; gap: 4rem; }
.footer-links div { display: flex; flex-direction: column; gap: 0.625rem; }
.footer-links h4 { font-size: 0.72rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-dim); }
.footer-links a { font-size: 0.84rem; color: var(--text-muted); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--primary); }
.footer-bottom {
    display: flex; justify-content: space-between; padding-top: 1.5rem;
    border-top: 1px solid var(--border); font-size: 0.78rem; color: var(--text-dim);
    flex-wrap: wrap; gap: 0.5rem;
}
.footer-bottom a { color: var(--text-muted); text-decoration: none; }
.footer-bottom a:hover { color: var(--primary); }

/* ===== ANIMATIONS ===== */
@keyframes fadeUp { from { opacity:0; transform:translateY(18px); } to { opacity:1; transform:translateY(0); } }
@keyframes pulse { 0%,100% { opacity:1; } 50% { opacity:0.4; } }
.reveal { opacity:0; transform:translateY(20px); transition: opacity 0.55s ease, transform 0.55s ease; }
.reveal.visible { opacity:1; transform:translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .feature-card { grid-column: span 6; }
    .feature-card-wide { grid-column: span 12; }
    .security-inner { grid-template-columns: 1fr; gap: 3rem; }
    .security-visual { display: none; }
    .steps { flex-direction: column; gap: 2rem; }
    .step-line { display: none; }
}
@media (max-width: 768px) {
    .nav-links, .nav-cta { display: none; }
    .mobile-menu-btn { display: flex; }
    .hero { padding-top: 6rem; }
    .feature-card { grid-column: span 12; }
    .pricing-grid { grid-template-columns: 1fr; max-width: 380px; }
    .footer-inner { flex-direction: column; }
    .footer-links { flex-direction: column; gap: 1.5rem; }
    .footer-bottom { flex-direction: column; text-align: center; }
}
