/* AegisGate Security Platform - Main Stylesheet */

/* ============================================
   CSS Variables (Theme)
   ============================================ */
:root {
    /* Deep-Space Foundation (Atmosphere of Safety) */
    --bg-primary: #0a0c10;       /* Deeper, midnight black-blue */
    --bg-secondary: #11141d;     /* Subtle lift for cards/nav */
    --bg-tertiary: #1a1f2e;      /* Elevated surfaces */
    
    /* Refined Security Palette (Steel & Cyan) */
    --primary: #38bdf8;          /* Sophisticated Cyan (Less electric, more steel) */
    --primary-glow: rgba(56, 189, 248, 0.15);
    --secondary: #10b981;        /* Emerald for success/safety */
    --accent: #f43f5e;           /* Rose for critical warnings */
    
    /* Typography Levels */
    --text-primary: #f8fafc;     /* Pure, clean white-grey */
    --text-secondary: #94a3b8;    /* Muted slate for a sophisticated look */
    --text-muted: #64748b;        /* Deep slate for low-priority info */
    
    /* Glass & Borders */
    --border-color: rgba(51, 65, 85, 0.5); /* Transparent borders for glass effect */
    --glass-bg: rgba(17, 20, 29, 0.7);     /* Semi-transparent backdrop */
    
    /* Code/Monospace */
    --code-bg: #0f172a;
    --code-text: #38bdf8;
    
    /* Spacing & Geometry */
    --container-max: 1280px;      /* Slightly wider for modern displays */
    --section-padding: 6rem 0;    /* More breathing room (Professional whitespace) */
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    
    /* Terminal */
    --terminal-bg: #0a0c10;
    --terminal-header: #161b22;
}

/* ============================================
   Base Styles
   ============================================ */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    font-size: 1.1rem; /* Increase body font size by approx 2pt */
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: var(--text-secondary);
}

img {
    max-width: 100%;
    height: auto;
}

code {
    background: var(--code-bg);
    color: var(--code-text);
    padding: 0.2em 0.4em;
    border-radius: 4px;
    font-family: 'SF Mono', 'Fira Code', 'Consolas', monospace;
    font-size: 0.9em;
}

/* ============================================
   Layout
   ============================================ */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 1.5rem;
}

main {
    min-height: calc(100vh - 200px);
}

/* ============================================
   Navigation
   ============================================ */
nav {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    padding: 0.75rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

nav ul {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 1.5rem;
}

nav a {
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
    padding: 0.5rem 0.85rem;
    border-radius: var(--radius-sm);
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

nav a:hover,
nav a.active {
    color: var(--text-primary);
    background: rgba(56, 189, 248, 0.1);
}

nav a.active {
    color: var(--primary);
}

nav a.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 4px;
    background: var(--primary);
    border-radius: 50%;
}

nav .logo {
    padding: 0;
    background: transparent !important;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

nav .logo:hover {
    background: transparent !important;
    text-shadow: none;
}

nav .logo img {
    height: 48px;
    width: auto;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

nav .logo:hover img {
    transform: rotate(-5deg) scale(1.1);
}

nav .nav-brand-text {
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

/* ============================================
   Typography
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    color: var(--text-primary);
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; margin-top: 2rem; }
h3 { font-size: 1.5rem; margin-top: 1.5rem; }

p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

.subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-top: 0.5rem;
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
    position: relative;
    background: radial-gradient(circle at center, var(--bg-tertiary) 0%, var(--bg-primary) 100%);
    padding: 8rem 0 6rem 0;
    text-align: center;
    overflow: hidden;
}

/* Atmospheric Glow Effect */
.hero::before {
    content: '';
    position: absolute;
    top: -10%;
    left: 50%;
    transform: translateX(-50%);
    width: 60vw;
    height: 40vh;
    background: radial-gradient(circle, var(--primary-glow) 0%, transparent 70%);
    filter: blur(60px);
    z-index: 0;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
}

.hero h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(to bottom, var(--text-primary), var(--text-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero .subtitle {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    max-width: 700px;
    margin: 0 auto 2.5rem auto;
    line-height: 1.6;
    color: var(--text-secondary);
    font-weight: 400;
}

.hero-logo {
    margin-bottom: 2rem;
}

.hero-logo img {
    width: 120px;
    height: auto;
}

.badges {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 2rem 0;
    opacity: 0.7;
    filter: grayscale(0.5) brightness(1.2);
    transition: all 0.3s ease;
}

.badges:hover {
    opacity: 1;
    filter: grayscale(0);
}

.badges img {
    height: 24px;
    width: auto;
}

/* ============================================
   Sections
   ============================================ */
section {
    padding: var(--section-padding);
    border-bottom: 1px solid var(--border-color);
}

section:last-of-type {
    border-bottom: none;
}

section h2 {
    text-align: center;
    margin-bottom: 2rem;
}

/* ============================================
   Cards
   ============================================ */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.card {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 2rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 
                0 0 20px var(--primary-glow);
}

.card h3 {
    color: var(--text-primary);
    font-size: 1.8rem;
    font-weight: 800;
    margin-top: 0;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.card h3::before {
    content: '';
    display: block;
    width: 4px;
    height: 24px;
    background: var(--primary);
    border-radius: 2px;
}

.card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.card li {
    padding: 0.5rem 0;
    color: var(--text-secondary);
    font-size: 0.95rem;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.card li::before {
    content: '→';
    color: var(--primary);
    font-weight: bold;
    font-size: 0.8rem;
}

/* ============================================
   Buttons
   ============================================ */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
    text-align: center;
}

.btn-primary {
    background: var(--primary);
    color: var(--bg-primary);
}

.btn-primary:hover {
    background: #00c4ec;
    color: var(--bg-primary);
}

.btn-secondary {
    background: var(--bg-tertiary);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    background: var(--border-color);
    color: var(--text-primary);
}

.btn-group {
    margin-bottom: 3rem;
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

/* ============================================
   Terminal
   ============================================ */
.terminal-container {
    max-width: 800px;
    margin: 0 auto;
}

.terminal {
    background: var(--terminal-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
}

.terminal-header {
    background: var(--terminal-header);
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

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

.terminal-dot.red { background: #ff5f56; }
.terminal-dot.yellow { background: #ffbd2e; }
.terminal-dot.green { background: #27c93f; }

.terminal-title {
    margin-left: auto;
    color: var(--text-muted);
    font-size: 0.85rem;
}

.terminal-body {
    padding: 1rem;
    min-height: 300px;
    max-height: 400px;
    overflow-y: auto;
    font-family: 'SF Mono', 'Fira Code', 'Consolas', monospace;
    font-size: 0.9rem;
}

.terminal-body .output {
    margin-bottom: 1rem;
    white-space: pre-wrap;
    color: var(--text-secondary);
}

.terminal-input {
    display: flex;
    align-items: center;
    padding: 0.75rem 1rem;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
}

.terminal-input span {
    color: var(--primary);
    margin-right: 0.75rem;
    font-weight: 600;
}

.terminal-input input {
    flex: 1;
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-family: inherit;
    font-size: inherit;
    outline: none;
}

.prompt { color: var(--primary); }
.command { color: var(--text-primary); }
.success { color: var(--secondary); }

/* ============================================
   Stats Grid
   ============================================ */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.stat {
    text-align: center;
    padding: 2rem;
    background: var(--glass-bg);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.stat:hover {
    border-color: var(--primary);
    background: rgba(56, 189, 248, 0.05);
}

.stat .value {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
    display: block;
    line-height: 1;
    margin-bottom: 0.5rem;
    letter-spacing: -1px;
}

.stat .label {
    color: var(--text-muted);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
}

/* ============================================
   Alerts
   ============================================ */
.alert {
    padding: 1rem 1.5rem;
    border-radius: 6px;
    margin: 1rem 0;
    border-left: 4px solid;
}

.alert-info {
    background: rgba(0, 173, 216, 0.1);
    border-color: var(--primary);
    color: var(--primary);
}

.alert-warning {
    background: rgba(255, 189, 46, 0.1);
    border-color: #ffbd2e;
    color: #ffbd2e;
}

.alert-danger {
    background: rgba(249, 117, 131, 0.1);
    border-color: var(--accent);
    color: var(--accent);
}

.alert-success {
    background: rgba(35, 134, 54, 0.1);
    border-color: var(--secondary);
    color: var(--secondary);
}

/* ============================================
   Tables
   ============================================ */
table {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
}

th, td {
    text-align: left;
    padding: 1rem;
    border-bottom: 1px solid var(--border-color);
}

th {
    color: var(--primary);
    font-weight: 600;
}

tr:hover {
    background: var(--bg-secondary);
}

/* ============================================
   Command Box
   ============================================ */
.command-box {
    position: relative;
    background: var(--code-bg);
    border-radius: 6px;
    margin: 1rem 0;
}

.command-box pre {
    padding: 1rem;
    overflow-x: auto;
    font-family: 'SF Mono', 'Fira Code', 'Consolas', monospace;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.copy-btn {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    color: var(--text-secondary);
    cursor: pointer;
    font-size: 0.8rem;
    transition: all 0.2s ease;
}

.copy-btn:hover {
    background: var(--border-color);
    color: var(--text-primary);
}

/* ============================================
   Mermaid Diagrams
   ============================================ */
.mermaid {
    text-align: center;
    margin: 2rem 0;
    overflow-x: auto;
}

.footer-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 3rem;
}

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

.footer-links {
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.footer-logo img {
    height: 64px;
    width: auto;
}

.footer-brand-name {
    font-weight: 700;
    color: var(--text-primary);
    font-size: 1.1rem;
}


/* ============================================
   Page Header
   ============================================ */
.page-header {
    background: var(--bg-secondary);
    padding: 2rem 0;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 2rem;
}

.page-header h1 {
    margin-bottom: 0.5rem;
}

.page-header .description {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin: 0;
}

/* ============================================
   Content
   ============================================ */
.content {
    max-width: 800px;
}

.content h2 {
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 0.5rem;
}

.content ul, .content ol {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.content li {
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
}

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 768px) {
    nav ul {
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .badges {
        gap: 0.25rem;
    }
    
    .badges img {
        height: 18px;
    }
    
    h1 { font-size: 2rem; }
    h2 { font-size: 1.5rem; }
    
    .card-grid {
        grid-template-columns: 1fr;
    }
    
    .btn-group {
    margin-bottom: 3rem;
        flex-direction: column;
    }
    
    .btn-group .btn {
        width: 100%;
    }
}

/* ============================================
   CTA Stack — Full-width stacked cards
   ============================================ */
/*
   Pattern for the EU AI Act module section. Full-width cards stacked
   vertically, with an icon on the left and content on the right. This
   gives the cards plenty of horizontal room for the 6-8 bullet points
   they typically contain, without forcing them into cramped 2-column
   layouts.
*/
.cta-stack {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 2.5rem 0;
}

.cta-card {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border-color);
    border-left: 4px solid var(--primary);
    border-radius: var(--radius-md);
    padding: 1.75rem 2rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.cta-card:hover {
    transform: translateX(4px);
    border-color: var(--primary);
}

.cta-card-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    background: var(--bg-tertiary);
    border-radius: var(--radius-sm);
}

.cta-card-content {
    flex: 1;
    min-width: 0;
}

.cta-card-content h3 {
    margin: 0 0 0.75rem 0;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-primary);
}

.cta-card-content code {
    font-size: 0.85em;
    background: var(--code-bg);
    color: var(--code-text);
    padding: 0.15em 0.4em;
    border-radius: 4px;
}

/* EU flag-themed variant */
.cta-eu {
    border-left-color: #003399;
    background: linear-gradient(90deg, rgba(0, 51, 153, 0.08) 0%, var(--glass-bg) 30%);
}

.cta-eu:hover {
    border-left-color: #FFD700;
    background: linear-gradient(90deg, rgba(0, 51, 153, 0.12) 0%, var(--glass-bg) 30%);
}

/* Mobile: stack the icon above the content */
@media (max-width: 600px) {
    .cta-card {
        flex-direction: column;
        gap: 1rem;
        padding: 1.25rem 1.5rem;
    }
    .cta-card-icon {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }
}

/* ============================================
   TL;DR list — emphasised bullets after intro paragraph
   ============================================
   IMPORTANT: Bullets are hidden via list-style:none to give a cleaner,
   more "marketing prose" look. The list semantics (ul/li) are preserved
   for accessibility (screen readers still announce it as a list) and
   for any future styling that might want to use list markers.
   ============================================ */
.tldr-list {
    list-style: none;   /* Hide the bullet dot */
    margin: 1.5rem 0 2rem 0;
    padding-left: 0;    /* Remove the default indent since there are no bullets to offset */
}

.tldr-list li {
    margin-bottom: 0.75rem;
    line-height: 1.55;
    color: var(--text-secondary);
    font-size: 1rem;
    /* Visual alignment: use a small left border or padding to maintain
       a "list-like" feel without the actual bullet */
    padding-left: 1.25rem;
    position: relative;
}

/* Optional visual marker: a small dot replaced with a left-border
   treatment, OR a custom symbol. Comment out this block if you want
   completely plain text with no visual indicator. */
.tldr-list li::before {
    content: "→";       /* Arrow indicator instead of bullet */
    color: var(--primary);
    position: absolute;
    left: 0;
    top: 0;
    font-weight: 700;
}

.tldr-list li:last-child {
    margin-bottom: 0;
}

.tldr-list li strong {
    color: var(--text-primary);
}

/* ============================================
   CTA card lists — hide bullets for cleaner card layout
   ============================================ */
/*
   The CTA cards (.cta-card-content) contain <ul> lists that need the
   bullet dots hidden. Same reasoning as .tldr-list: cleaner visual,
   but list semantics preserved for accessibility.

   Cards are wider than the TL;DR list, so we use a different visual
   marker (em-dash) for the bullets to maintain a "list feel" without
   the actual disc marker.
*/
.cta-card-content ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.cta-card-content li {
    margin-bottom: 0.5rem;
    line-height: 1.5;
    color: var(--text-secondary);
    padding-left: 1.25rem;
    position: relative;
}

.cta-card-content li::before {
    content: "—";       /* Em-dash indicator instead of bullet */
    color: var(--primary);
    position: absolute;
    left: 0;
    top: 0;
}

.cta-card-content li:last-child {
    margin-bottom: 0;
}

.cta-card-content li strong {
    color: var(--text-primary);
}

/* ============================================
   EU flag inline SVG — minor styling
   ============================================ */
.eu-flag {
    /* When the flag is inside a colored alert, give it a subtle border for
       contrast against the dark background */
    vertical-align: -0.2em;
}

.alert-info .eu-flag {
    /* On the dark blue info alert, the stars are already yellow and the
       background is already dark blue — they blend together. The flag
       still works but is subtle. This is fine for decorative use. */
}

/* ============================================
   Animation Classes
   ============================================ */

/*
   IMPORTANT: Animation safety pattern (2026-06-09 fix)

   History: User reported "homepage displays briefly, then fades to black".
   Root cause: the .fade-in class started elements at opacity:0 and only
   faded to opacity:1 when JavaScript added .visible. If JS failed or the
   IntersectionObserver didn't fire, elements stayed invisible.

   The fix below uses a "no-js" pattern: by default, .fade-in has NO opacity
   change (so elements are visible). When JS runs and adds the .js class to
   <html>, then .fade-in starts at opacity:0 and the observer makes them
   visible. If JS fails to load, the user still sees content (just without
   the fade-in animation).

   This is the "Progressive Enhancement" pattern: animations are a bonus, not
   a requirement.
*/

/* When JS is enabled, .fade-in starts hidden */
.js .fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

/* When .visible class is added (by IntersectionObserver), fade in */
.js .fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* When JS is disabled, .fade-in has no effect (content always visible) */
.no-js .fade-in {
    opacity: 1;
    transform: none;
}
.text-center { text-align: center; }

/* ============================================
   DOCUMENTATION SITE LAYOUT
   ============================================ */
.docs-layout{max-width:1200px;margin:0 auto;padding:2rem 1rem;display:flex;gap:2rem}
.docs-sidebar{width:250px;flex-shrink:0;background:#161b22;border-radius:8px;border:1px solid #30363d;padding:1.5rem}
.docs-sidebar h3{color:#00d2ff;margin-top:0;margin-bottom:1rem;font-size:1.1rem;border-bottom:1px solid #30363d;padding-bottom:0.5rem}
.docs-sidebar nav ul{list-style:none;padding:0;margin:0;display:block}
.docs-sidebar nav ul li{margin-bottom:0.25rem}
.docs-sidebar nav ul li a{display:block;padding:0.5rem 1rem;color:#8b949e;text-decoration:none;border-radius:6px;transition:all 0.2s;font-size:0.95rem}
.docs-sidebar nav ul li a:hover{background:rgba(0,210,255,0.1);color:#00d2ff}
.docs-sidebar nav ul li a.active{background:rgba(0,210,255,0.15);color:#00d2ff;font-weight:600;border-left:3px solid #00d2ff}
.docs-content{flex:1;min-width:0}
.docs-content h1{color:#e6edf3;font-size:2rem;margin-bottom:1rem}
.docs-content h2{color:#e6edf3;font-size:1.5rem;margin:2rem 0 1rem;border-bottom:1px solid #30363d;padding-bottom:0.5rem}
.docs-content p{color:#8b949e;line-height:1.7}
.docs-content a{color:#00d2ff;text-decoration:none}
.docs-content a:hover{text-decoration:underline}
@media(max-width:768px){.docs-layout{display:block}.docs-sidebar{width:100%;margin-bottom:2rem}.docs-content{width:100%}}

/* Pricing page */
.pricing-cards{display:grid;grid-template-columns:repeat(auto-fit,minmax(240px,1fr));gap:1.5rem;margin:2rem 0}
.pricing-card{background:#161b22;border:1px solid #30363d;border-radius:12px;padding:2rem;transition:all 0.3s;display:flex;flex-direction:column}
.pricing-card:hover{border-color:#00d2ff;transform:translateY(-2px)}
.pricing-card.starter{border-color:#238636;box-shadow:0 0 20px rgba(35,134,54,0.15)}
.pricing-card h3{color:#00d2ff;margin-top:0}
.pricing-card .price{font-size:2.5rem;font-weight:700;color:#e6edf3;margin:0.5rem 0}
.pricing-card .price span{font-size:0.9rem;color:#8b949e;font-weight:400}
.pricing-card p{color:#8b949e;font-size:0.95rem;line-height:1.5;margin-bottom:1.5rem;flex-grow:0}
.pricing-card ul{list-style:none;padding:0;margin:0 0 1.5rem 0;flex-grow:1}
.pricing-card ul li{padding:0.4rem 0;color:#8b949e;border-bottom:1px solid #21262d;font-size:0.9rem;line-height:1.4}
.pricing-card ul li::before{content:"✓ ";color:#238636;font-weight:700}
.pricing-card .btn{display:block;text-align:center;margin-top:auto;padding:0.75rem 1.5rem;border-radius:8px;text-decoration:none;font-weight:600;transition:all 0.2s}
.content h3{color:#e6edf3}
.content hr{border:none;border-top:1px solid #30363d;margin:2rem 0}
