@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Satoshi:wght@300;400;500;700&display=swap');

/* 1) CSS Reset + :root variables */
:root {
    --bg-primary: #0A0F1F;
    --accent-cyan: #00FFE0;
    --accent-red: #FF3B30;
    --text-primary: #E0E0E0;
    --text-muted: #A0A0A0;
    --glass-bg: rgba(10,15,31,0.6);
    --glass-border: rgba(0,255,224,0.2);

    --font-primary: 'Inter', sans-serif;
    --font-secondary: 'Satoshi', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

/* 2) body + typography scale */
body {
    font-family: var(--font-primary);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

a {
    color: var(--accent-cyan);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-secondary);
    color: var(--text-primary);
    margin-bottom: 0.5em;
    line-height: 1.2;
}

h1 { font-size: 4rem; }
h2 { font-size: 3rem; }
h3 { font-size: 2.5rem; }
h4 { font-size: 2rem; }
h5 { font-size: 1.5rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 1em;
    color: var(--text-muted);
}

/* 3) .navbar */
.navbar {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--glass-border);
    z-index: 1000;
    padding: 0.5rem 2rem;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 100%;
    width: 100%;
    padding: 0 1rem;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-secondary);
    font-weight: 700;
    font-size: 1.4rem;
    color: var(--accent-cyan);
    text-shadow: 0 0 10px rgba(0, 255, 224, 0.5);
    text-decoration: none;
}

.navbar-brand img {
    width: auto;
}

.navbar-nav {
    display: flex;
    gap: 2rem;
    list-style: none;
    align-items: center;
}

.navbar-nav .nav-item {
    list-style: none;
}

.navbar-nav .nav-link {
    color: var(--text-primary);
    font-weight: 500;
    text-decoration: none;
    position: relative;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--accent-cyan);
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0;
    height: 2px;
    background-color: var(--accent-cyan);
    transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover::after {
    width: 100%;
}

.navbar .logo {
    font-family: var(--font-secondary);
    font-weight: 700;
    font-size: 1.8rem;
    color: var(--accent-cyan);
    text-shadow: 0 0 10px rgba(0, 255, 224, 0.5);
}

.navbar-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.navbar-links a {
    color: var(--text-primary);
    font-weight: 500;
    position: relative;
}

.navbar-links a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0;
    height: 2px;
    background-color: var(--accent-cyan);
    transition: width 0.3s ease;
}

.navbar-links a:hover::after {
    width: 100%;
}

.navbar-cta {
    margin-left: auto;
}

/* 4) .navbar-mobile hamburger menu */
.navbar-mobile-toggle {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.navbar-mobile-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--text-primary);
    transition: all 0.3s ease;
}

.navbar-mobile {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border-top: 1px solid var(--glass-border);
    padding: 1rem 0;
    list-style: none;
    text-align: center;
}

.navbar-mobile.is-active {
    display: flex;
}

.navbar-mobile li {
    padding: 0.75rem 0;
}

.navbar-mobile a {
    color: var(--text-primary);
    font-size: 1.1rem;
    display: block;
}

/* 5) .hero-section */
.hero-section, .hero { /* Added .hero as an alias for .hero-section */
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    padding: 4rem 2rem;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 255, 224, 0.1) 0%, rgba(10, 15, 31, 0.8) 50%, rgba(255, 59, 48, 0.1) 100%);
    z-index: 1;
}

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

.hero-content h1 {
    font-size: 5rem;
    margin-bottom: 0.5em;
    background: linear-gradient(45deg, var(--accent-cyan), var(--text-primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 20px rgba(0, 255, 224, 0.7);
}

.hero-content p {
    font-size: 1.5rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

/* 6) .card */
.card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 48px 0 rgba(0, 255, 224, 0.2);
}

/* Added .product-card with same properties as .card */
.product-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

/* 7) .product-grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

/* 8) .pricing-grid */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    align-items: stretch;
}

/* 9) .pricing-card with .pricing-card--featured variant */
.pricing-card {
    /* Replaced @extend .card; with manual copy of .card properties */
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 2rem; /* This will be overridden by the next padding rule */
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 3rem 2rem;
}

.pricing-card h3 {
    font-size: 2rem;
    margin-bottom: 0.5em;
}

.pricing-card .price {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--accent-cyan);
    margin-bottom: 0.5em;
}

.pricing-card .price span {
    font-size: 1.2rem;
    color: var(--text-muted);
}

.pricing-card ul {
    list-style: none;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.pricing-card ul li {
    margin-bottom: 0.75em;
    color: var(--text-primary);
}

.pricing-card--featured {
    background: linear-gradient(135deg, var(--glass-bg) 0%, rgba(0, 255, 224, 0.1) 100%);
    border: 2px solid var(--accent-cyan);
    box-shadow: 0 0 40px rgba(0, 255, 224, 0.4);
    transform: scale(1.05);
    z-index: 10;
}

.pricing-card--featured:hover {
    transform: translateY(-10px) scale(1.07);
    box-shadow: 0 0 60px rgba(0, 255, 224, 0.6);
}

/* 10) .btn-primary + .btn-secondary */
.btn {
    display: inline-block;
    padding: 0.9rem 2.2rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    white-space: nowrap;
}

.btn-primary {
    background-color: var(--accent-cyan);
    color: var(--bg-primary);
    border: none;
    box-shadow: 0 0 15px rgba(0, 255, 224, 0.4);
}

.btn-primary:hover {
    background-color: var(--text-primary);
    box-shadow: 0 0 25px rgba(0, 255, 224, 0.8);
    animation: glowPulse 1.5s infinite alternate;
}

.btn-secondary {
    background-color: transparent;
    color: var(--accent-cyan);
    border: 2px solid var(--accent-cyan);
}

.btn-secondary:hover {
    background-color: var(--accent-cyan);
    color: var(--bg-primary);
    box-shadow: 0 0 15px rgba(0, 255, 224, 0.4);
}

/* 11) .section */
.section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 6rem 2rem;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 3.5rem;
    margin-bottom: 0.5em;
    background: linear-gradient(45deg, var(--accent-cyan), var(--text-primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-header p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
}

/* 12) .footer */
.footer {
    background-color: var(--bg-primary);
    border-top: 1px solid var(--glass-border);
    padding: 4rem 2rem;
    text-align: center;
    color: var(--text-muted);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
}

.footer-col {
    flex: 1;
    min-width: 200px;
    text-align: left;
}

.footer-col h4 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.75rem;
}

.footer-col ul li a {
    color: var(--text-muted);
}

.footer-col ul li a:hover {
    color: var(--accent-cyan);
}

.footer-bottom {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
}

/* 13) .accent-line */
.accent-line {
    border: none;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, var(--accent-cyan) 50%, transparent 100%);
    margin: 3rem auto;
    max-width: 800px;
}

/* 14) .feature-card */
.feature-card {
    /* Replaced @extend .card; with manual copy of .card properties */
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.feature-card .icon-area {
    width: 80px;
    height: 80px;
    background-color: var(--accent-cyan);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
    color: var(--bg-primary);
    box-shadow: 0 0 20px rgba(0, 255, 224, 0.6);
}

.feature-card h4 {
    font-size: 1.8rem;
    margin-bottom: 0.75rem;
}

.feature-card p {
    color: var(--text-muted);
}

/* 15) .pipeline-step */
.pipeline-steps {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    position: relative;
    padding-left: 2rem;
}

.pipeline-steps::before {
    content: '';
    position: absolute;
    left: 0.5rem;
    top: 0;
    height: 100%;
    width: 2px;
    background: linear-gradient(to bottom, var(--accent-cyan) 0%, rgba(0, 255, 224, 0.2) 100%);
}

.pipeline-step {
    position: relative;
    padding-left: 2rem;
}

.pipeline-step::before {
    content: attr(data-step);
    position: absolute;
    left: -1.5rem;
    top: 0;
    width: 3rem;
    height: 3rem;
    background-color: var(--accent-cyan);
    color: var(--bg-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    box-shadow: 0 0 15px rgba(0, 255, 224, 0.4);
}

/* 16) .pipeline-arrow */
.pipeline-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--accent-cyan);
    text-shadow: 0 0 10px rgba(0, 255, 224, 0.5);
    padding: 0 0.5rem;
}

/* 17) .step-number */
.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    background-color: var(--accent-cyan);
    color: var(--bg-primary);
    border-radius: 50%;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    box-shadow: 0 0 15px rgba(0, 255, 224, 0.4);
}

/* 18) Layout utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-padding {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.bg-light {
    background: rgba(0, 255, 224, 0.03);
}

.bg-dark {
    background: rgba(0, 0, 0, 0.3);
}

.text-white { color: var(--text-primary); }
.text-center { text-align: center; }

.cta-section {
    text-align: center;
    padding: 6rem 2rem;
}

/* 19) .feature-cards-grid */
.feature-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.feature-cards-grid .feature-card {
    text-align: left;
}

.feature-cards-grid .feature-card h3 {
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
    color: var(--accent-cyan);
}

/* 20) .badge (pricing card) */
.badge {
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-cyan);
    color: var(--bg-primary);
    padding: 0.4rem 1.5rem;
    border-radius: 0 0 8px 8px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* 21) .announcement-banner */
.announcement-banner {
    background: linear-gradient(135deg, #FF6B35 0%, #FFB347 100%);
    color: #0F0F1A;
    text-align: center;
    padding: 0.75rem 2rem;
    font-weight: 600;
    font-size: 0.95rem;
    position: relative;
    z-index: 1001;
}

.announcement-banner a {
    color: #0F0F1A;
    text-decoration: underline;
    font-weight: 700;
}

.announcement-banner a:hover {
    color: #333;
}

/* 22) .trades-grid */
.trades-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.trades-grid .trade-item {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    padding: 1rem;
    text-align: center;
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.trades-grid .trade-item:hover {
    border-color: var(--accent-cyan);
    box-shadow: 0 0 20px rgba(0, 255, 224, 0.2);
    transform: translateY(-2px);
}

.trades-grid .trade-icon {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    display: block;
}

/* 23) Blog post styles */
.blog-hero {
    min-height: 50vh;
    background: linear-gradient(135deg, #FF6B35 0%, #0F0F1A 60%, var(--bg-primary) 100%);
}

.blog-post {
    max-width: 800px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
    color: var(--text-muted);
    font-size: 0.9rem;
    border-bottom: 1px solid var(--glass-border);
    padding-bottom: 1.5rem;
}

.blog-meta .author { font-weight: 600; color: var(--text-primary); }
.blog-meta .date { color: var(--text-muted); }

.blog-post h2 {
    font-size: 2rem;
    margin-top: 3rem;
    margin-bottom: 1rem;
    color: var(--accent-cyan);
}

.blog-post h3 {
    font-size: 1.4rem;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}

.blog-post p {
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.blog-post ul, .blog-post ol {
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.blog-post li {
    margin-bottom: 0.5rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.blog-cta {
    text-align: center;
    padding: 3rem;
    margin-top: 3rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
}

/* 24) FAQ styles */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-question {
    padding: 1.25rem 1.5rem;
    cursor: pointer;
    font-weight: 600;
    color: var(--text-primary);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background: rgba(0, 255, 224, 0.05);
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--accent-cyan);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
    content: 'âˆ’';
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 1.5rem;
}

    gap: 2rem;
    margin-top: 2rem;
}

.feature-cards-grid .feature-card {
    text-align: left;
}

.feature-cards-grid .feature-card h3 {
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
    color: var(--accent-cyan);
}

/* 20) .badge (pricing card) */
.badge {
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-cyan);
    color: var(--bg-primary);
    padding: 0.4rem 1.5rem;
    border-radius: 0 0 8px 8px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* 21) .announcement-banner */
.announcement-banner {
    background: linear-gradient(135deg, #FF6B35 0%, #FFB347 100%);
    color: #0F0F1A;
    text-align: center;
    padding: 0.75rem 2rem;
    font-weight: 600;
    font-size: 0.95rem;
    position: relative;
    z-index: 1001;
}

.announcement-banner a {
    color: #0F0F1A;
    text-decoration: underline;
    font-weight: 700;
}

.announcement-banner a:hover {
    color: #333;
}

/* 22) .trades-grid */
.trades-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.trades-grid .trade-item {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    padding: 1rem;
    text-align: center;
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.trades-grid .trade-item:hover {
    border-color: var(--accent-cyan);
    box-shadow: 0 0 20px rgba(0, 255, 224, 0.2);
    transform: translateY(-2px);
}

.trades-grid .trade-icon {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    display: block;
}

/* 23) Blog post styles */
.blog-hero {
    min-height: 50vh;
    background: linear-gradient(135deg, #FF6B35 0%, #0F0F1A 60%, var(--bg-primary) 100%);
}

.blog-post {
    max-width: 800px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
    color: var(--text-muted);
    font-size: 0.9rem;
    border-bottom: 1px solid var(--glass-border);
    padding-bottom: 1.5rem;
}

.blog-meta .author { font-weight: 600; color: var(--text-primary); }
.blog-meta .date { color: var(--text-muted); }

.blog-post h2 {
    font-size: 2rem;
    margin-top: 3rem;
    margin-bottom: 1rem;
    color: var(--accent-cyan);
}

.blog-post h3 {
    font-size: 1.4rem;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}

.blog-post p {
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.blog-post ul, .blog-post ol {
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.blog-post li {
    margin-bottom: 0.5rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.blog-cta {
    text-align: center;
    padding: 3rem;
    margin-top: 3rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
}

/* 24) FAQ styles */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-question {
    padding: 1.25rem 1.5rem;
    cursor: pointer;
    font-weight: 600;
    color: var(--text-primary);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background: rgba(0, 255, 224, 0.05);
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--accent-cyan);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
    content: '−';
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 1.5rem;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 1.5rem 1.25rem;
}

/* 25) Animations */
@keyframes glowPulse {
    0% { box-shadow: 0 0 15px rgba(0, 255, 224, 0.4); }
    100% { box-shadow: 0 0 30px rgba(0, 255, 224, 0.8); }
}

/* 26) Hamburger */
.navbar-mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.hamburger-icon,
.hamburger-icon::before,
.hamburger-icon::after {
    display: block;
    width: 22px;
    height: 2px;
    background-color: var(--text-primary);
    transition: all 0.3s ease;
}

.hamburger-icon { position: relative; }
.hamburger-icon::before, .hamburger-icon::after { content: ''; position: absolute; left: 0; }
.hamburger-icon::before { top: -6px; }
.hamburger-icon::after { top: 6px; }

/* 27) Responsive */
@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.5rem; }

    .hero-section { min-height: 60vh; padding: 3rem 1rem; }
    .hero-content h1 { font-size: 2.5rem; }

    .product-grid, .pricing-grid, .feature-cards-grid, .trades-grid {
        grid-template-columns: 1fr;
    }
    .pipeline-steps { flex-direction: column; }
    .pipeline-arrow { display: none; }
    .pricing-card--featured { transform: scale(1); }

    .footer-columns { flex-direction: column; text-align: center; }

    .navbar-mobile-toggle {
        display: flex; flex-direction: column;
        justify-content: center; align-items: center;
        width: 36px; height: 36px;
    }

    .navbar-nav {
        display: none; flex-direction: column;
        position: absolute; top: 100%; left: 0; width: 100%;
        background: rgba(10,15,31,0.98);
        backdrop-filter: blur(16px);
        padding: 1rem;
        border-top: 1px solid var(--glass-border);
        gap: 0.25rem; z-index: 1000;
    }
    .navbar-nav.is-active { display: flex; }
    .navbar-nav .nav-link { padding: 0.75rem 1rem; font-size: 1.1rem; }

    .announcement-banner { font-size: 0.85rem; padding: 0.5rem 1rem; }
}

/* Footer columns layout */
.footer-columns {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}
/* Footer Social Icons - Matching MD */
.footer-socials {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 0.75rem;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(0,255,224,0.1);
    border: 1px solid rgba(0,255,224,0.25);
    color: #a0a8c0;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: rgba(0,255,224,0.25);
    border-color: #00FFE0;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,255,224,0.3);
}

/* Footer Share Buttons */
.footer-share {
    margin-top: 1.25rem;
}

.footer-share h4 {
    font-size: 0.85rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.share-buttons {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.share-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 6px;
    background: rgba(0,255,224,0.08);
    border: 1px solid rgba(0,255,224,0.2);
    color: #00FFE0;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    font-size: 0.75rem;
}

.share-btn:hover {
    background: rgba(0,255,224,0.2);
    border-color: #00FFE0;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 3px 12px rgba(0,255,224,0.25);
}

.share-copy {
    font-family: inherit;
    padding: 0;
}

/* === Appended by restore_glow.py: Enhanced Glassmorphism & Glow Effects === */

.feature-card {
    background: rgba(10,15,31,0.7);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(0,229,255,0.15);
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
}

.feature-card:hover {
    border-color: rgba(0,229,255,0.4);
    box-shadow: 0 8px 40px rgba(0,229,255,0.15);
    transform: translateY(-4px);
}

.feature-card img, .pipeline-step img, .product-card img {
    filter: drop-shadow(0 0 12px rgba(0,229,255,0.3));
    transition: filter 0.3s ease;
}

.feature-card:hover img {
    filter: drop-shadow(0 0 20px rgba(0,229,255,0.5));
}

.product-card {
    background: rgba(10,15,31,0.7);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(0,229,255,0.15);
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
}

.product-card:hover {
    border-color: rgba(0,229,255,0.4);
    box-shadow: 0 8px 40px rgba(0,229,255,0.15);
    transform: translateY(-4px);
}

.pipeline-step {
    background: rgba(10,15,31,0.6);
    border: 1px solid rgba(255,107,53,0.2);
    border-radius: 16px;
    backdrop-filter: blur(8px);
}

.trade-item {
    transition: all 0.3s ease;
}

.trade-item:hover {
    border-color: rgba(0,229,255,0.3);
    box-shadow: 0 0 15px rgba(0,229,255,0.1);
    transform: translateY(-2px);
}
