:root {
    --bg-dark: #0a0a0f;
    --bg-darker: #050508;
    --bg-card: #141420;
    --bg-card-hover: #1a1a2a;
    --accent-red: #ef4444;
    --accent-orange: #f97316;
    --accent-gradient: linear-gradient(135deg, #ef4444 0%, #f97316 50%, #fbbf24 100%);
    --accent-gradient-hover: linear-gradient(135deg, #dc2626 0%, #ea580c 50%, #f59e0b 100%);
    --text-primary: #ffffff;
    --text-secondary: #a1a1aa;
    --text-muted: #71717a;
    --border: rgba(255, 255, 255, 0.08);
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 10, 15, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-icon {
    font-size: 1.5rem;
}

.logo-icon-img {
    width: 36px !important;
    height: 36px !important;
    max-width: 36px !important;
    max-height: 36px !important;
    border-radius: 50%;
    object-fit: cover;
}

.btn-icon-img {
    width: 1.25rem;
    height: 1.25rem;
    border-radius: 50%;
    object-fit: cover;
}

.logo-text {
    font-size: 1.25rem;
    font-weight: 700;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s;
}

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

.nav-link-login {
    color: var(--text-primary) !important;
    font-weight: 600 !important;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-nav {
    background: #ffffff !important;
    color: #0a0a0f !important;
    padding: 0.6rem 1.25rem;
}

.btn-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.3);
    background: #f0f0f0 !important;
}

.btn-primary {
    background: #ffffff !important;
    color: #0a0a0f !important;
}

.btn-primary:hover {
    background: #f0f0f0 !important;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.btn-icon {
    font-size: 1.1rem;
}

.hero {
    min-height: auto;
    display: flex;
    align-items: center;
    padding: 7rem 2rem 3rem;
    background: radial-gradient(ellipse at top, rgba(239, 68, 68, 0.1) 0%, transparent 50%),
                var(--bg-dark);
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.highlight {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
    max-width: 500px;
}

.hero-support {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.emphasis {
    color: var(--accent-orange);
    font-weight: 600;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.btn-arrow {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1.5rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.btn-arrow-icon {
    font-size: 1.2rem;
    transition: transform 0.2s;
}

.btn-arrow:hover .btn-arrow-icon {
    transform: translateX(4px);
}

.social-proof {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.proof-avatars {
    display: flex;
}

.avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 2px solid var(--bg-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    margin-left: -8px;
}

.avatar:first-child {
    margin-left: 0;
}

.proof-text {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.proof-stars {
    color: #fbbf24;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.proof-text span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.hero-visual {
    display: flex;
    justify-content: center;
}

.dashboard-preview {
    display: flex;
    background: var(--bg-darker);
    border-radius: 16px;
    border: 1px solid var(--border);
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
    max-width: 600px;
    width: 100%;
}

.preview-sidebar {
    background: var(--bg-card);
    padding: 1rem;
    width: 140px;
    border-right: 1px solid var(--border);
}

.sidebar-logo {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    padding-left: 0.5rem;
}

.sidebar-nav {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.sidebar-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem;
    border-radius: 6px;
    font-size: 0.7rem;
    color: var(--text-muted);
    cursor: pointer;
    transition: all 0.2s;
}

.sidebar-item.active {
    background: rgba(239, 68, 68, 0.1);
    color: var(--text-primary);
}

.sidebar-icon {
    font-size: 0.85rem;
}

.preview-main {
    flex: 1;
    padding: 1rem;
    min-width: 0;
}

.preview-header h3 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.preview-header p {
    font-size: 0.7rem;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
}

.preview-input-row {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.preview-input {
    flex: 1;
    padding: 0.4rem 0.6rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 6px;
    color: var(--text-primary);
    font-size: 0.7rem;
    min-width: 0;
}

.preview-select {
    padding: 0.4rem 0.5rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 6px;
    color: var(--text-primary);
    font-size: 0.65rem;
}

.preview-btn {
    padding: 0.4rem 0.75rem;
    background: var(--accent-gradient);
    border: none;
    border-radius: 6px;
    color: white;
    font-size: 0.7rem;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
}

.preview-stats {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.preview-stat {
    flex: 1;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 0.6rem;
    text-align: center;
}

.stat-num {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.1rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.stat-label {
    font-size: 0.55rem;
    color: var(--text-muted);
}

.preview-domains {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.preview-domain-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 0.5rem 0.75rem;
    font-size: 0.7rem;
}

.domain-name {
    font-weight: 600;
}

.domain-badge {
    padding: 0.15rem 0.4rem;
    border-radius: 4px;
    font-size: 0.55rem;
    font-weight: 700;
    text-transform: uppercase;
}

.domain-badge.active {
    background: rgba(34, 197, 94, 0.2);
    color: #22c55e;
}

.domain-count {
    margin-left: auto;
    color: var(--text-muted);
    font-size: 0.65rem;
}

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

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

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-secondary);
}

.promise-section {
    background: var(--bg-darker);
}

.promise-card {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    padding: 3rem;
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.1) 0%, rgba(249, 115, 22, 0.05) 100%);
    border-radius: 24px;
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.promise-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.promise-card h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.highlight-orange {
    color: var(--accent-orange);
}

.promise-card p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.demo-section {
    background: var(--bg-dark);
}

.demo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
}

.demo-steps {
    display: flex;
    gap: 2rem;
}

.demo-step {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background: var(--bg-card);
    border-radius: 12px;
    border: 1px solid var(--border);
    transition: all 0.3s;
}

.demo-step.active {
    background: rgba(239, 68, 68, 0.1);
    border-color: var(--accent-red);
}

.step-number {
    width: 28px;
    height: 28px;
    background: var(--accent-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
}

.step-text {
    font-weight: 500;
}

.demo-preview {
    width: 100%;
    max-width: 600px;
}

.demo-window {
    background: var(--bg-card);
    border-radius: 16px;
    border: 1px solid var(--border);
    overflow: hidden;
}

.demo-header {
    display: flex;
    gap: 0.5rem;
    padding: 1rem;
    border-bottom: 1px solid var(--border);
}

.demo-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--text-muted);
}

.demo-content {
    padding: 2rem;
}

.demo-input-group {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.demo-input {
    flex: 1;
    padding: 1rem;
    background: var(--bg-darker);
    border: 1px solid var(--border);
    border-radius: 10px;
    color: var(--text-primary);
    font-size: 1rem;
}

.demo-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    background: var(--accent-gradient);
    border: none;
    border-radius: 10px;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.demo-btn:hover {
    transform: scale(1.05);
}

.demo-result {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: 10px;
}

.result-icon {
    width: 40px;
    height: 40px;
    background: #22c55e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: white;
}

.result-text {
    display: flex;
    flex-direction: column;
}

.result-text span {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.benefits-section {
    background: var(--bg-dark);
    border-top: 1px solid var(--border);
}

.benefits-section .section-container {
    padding: 3rem 2rem;
}

.benefits-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.benefit-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.benefit-check {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    color: white;
    margin-top: 0.15rem;
}

.benefit-content h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.35rem;
    color: var(--text-primary);
}

.benefit-content p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

@media (max-width: 900px) {
    .benefits-list {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.how-section {
    background: var(--bg-darker);
}

.features-section {
    background: var(--bg-dark);
}

.side-by-side {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: start;
}

.side-left h2 {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.side-description {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.btn-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    color: var(--accent-orange);
    font-weight: 600;
    padding: 0;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.2s;
}

.btn-link:hover {
    gap: 0.75rem;
}

.btn-link .btn-arrow-icon {
    transition: transform 0.2s;
}

.btn-link:hover .btn-arrow-icon {
    transform: translateX(4px);
}

.steps-grid-compact {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.step-card-compact {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.25rem;
    transition: all 0.3s;
}

.step-card-compact:hover {
    border-color: rgba(239, 68, 68, 0.3);
}

.step-icon-compact {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.step-card-compact h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.step-card-compact p {
    color: var(--text-secondary);
    font-size: 0.85rem;
    line-height: 1.5;
}

.features-grid-compact {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.feature-card-compact {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.25rem;
    transition: all 0.3s;
}

.feature-card-compact:hover {
    background: var(--bg-card-hover);
}

.feature-icon-compact {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.feature-card-compact h3 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.feature-card-compact p {
    color: var(--text-secondary);
    font-size: 0.8rem;
    line-height: 1.5;
}

.cta-section {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.15) 0%, rgba(249, 115, 22, 0.1) 50%, var(--bg-darker) 100%);
    border-top: 1px solid rgba(239, 68, 68, 0.2);
}

.cta-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 6rem 2rem;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.cta-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-top: 3rem;
}

.cta-stat {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.footer {
    background: var(--bg-darker);
    border-top: 1px solid var(--border);
}

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

.footer-main {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 1rem;
    max-width: 280px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-column h4 {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.footer-column a {
    display: block;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
    transition: color 0.2s;
}

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

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid var(--border);
    text-align: center;
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.85rem;
}

@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-content {
        order: 1;
    }
    
    .hero-visual {
        order: 2;
    }
    
    .hero-subtitle {
        margin: 0 auto 1rem;
    }
    
    .hero-cta {
        align-items: center;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .nav-links a:not(.btn) {
        display: none;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero {
        padding: 6rem 1rem 3rem;
    }
    
    .section-container {
        padding: 4rem 1rem;
    }
    
    .promise-card {
        padding: 2rem;
    }
    
    .promise-card h2 {
        font-size: 1.75rem;
    }
    
    .demo-steps {
        flex-direction: column;
        gap: 1rem;
    }
    
    .demo-input-group {
        flex-direction: column;
    }
    
    .cta-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .footer-links {
        grid-template-columns: 1fr 1fr;
    }
}

/* Comparison section */

.comparison-section {
  background: #050308;
  color: #f9fafb;
  padding: 2rem 1rem 4rem;
}

.comparison-container {
  max-width: 1100px;
  margin: 0 auto;
}

.comparison-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.comparison-title {
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.comparison-subtitle {
  margin-top: 0.75rem;
  font-size: 0.9rem;
  line-height: 1.6;
  color: #9ca3af;
}

/* Table wrapper */

.comparison-table-wrapper {
  overflow-x: auto;
  border-radius: 26px;
  border: 1px solid #1f2937;
  background: radial-gradient(circle at top left, rgba(255,138,60,0.18), transparent 55%),
              radial-gradient(circle at center right, rgba(255,200,87,0.12), transparent 55%),
              linear-gradient(to bottom, #090613, #050308);
  box-shadow: 0 0 80px rgba(0, 0, 0, 0.8);
}

/* Table */

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 760px;
  font-size: 0.8rem;
}

.comparison-table th,
.comparison-table td {
  padding: 0.9rem 1.1rem;
}

.comparison-table thead tr {
  border-bottom: 1px solid #1f2937;
}

/* Header columns */

.comparison-feature-col {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: none;
  letter-spacing: normal;
  color: #f9fafb;
  width: 28%;
  vertical-align: middle;
}

.comparison-inboxnuke-col {
  width: 18%;
}

.comparison-table thead th:not(:first-child):not(.comparison-inboxnuke-col) {
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(249, 250, 251, 0.85);
}

.comparison-table thead th:nth-child(3),
.comparison-table thead th:nth-child(4) {
  color: #facc6b;
}

/* InboxNuke orange pill */

.comparison-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.45rem 1.8rem;
  border-radius: 999px;
  background: linear-gradient(90deg, #ff8a3c, #ffc857);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.7);
}

.comparison-pill-label {
  font-size: 0.8rem;
  font-weight: 800;
  color: #1b0f0a;
}

.comparison-pill-subtitle {
  margin-top: 0.4rem;
  font-size: 0.7rem;
  color: rgba(255, 240, 199, 0.95);
}

/* Zebra rows */

.comparison-table tbody tr:nth-child(odd) {
  background: rgba(15, 23, 42, 0.72);
}

.comparison-table tbody tr:nth-child(even) {
  background: rgba(15, 23, 42, 0.45);
}

.comparison-table tbody td:first-child {
  font-size: 0.8rem;
  font-weight: 500;
  color: #f9fafb;
}

/* Icon cells */

.comparison-check-cell,
.comparison-x-cell {
  text-align: center;
  width: 10%;
}

.comparison-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.6rem;
  height: 1.6rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 700;
}

.comparison-icon-check {
  background-color: rgba(34, 197, 94, 0.15);
  color: #22c55e;
  box-shadow: 0 0 16px rgba(34, 197, 94, 0.5);
}

.comparison-icon-x {
  background-color: rgba(15, 23, 42, 0.95);
  color: #6b7280;
}

/* Footnote */

.comparison-footnote {
  margin-top: 1.6rem;
  text-align: center;
  font-size: 0.72rem;
  color: #9ca3af;
}

.comparison-footnote-highlight {
  color: #ffc857;
  font-weight: 700;
}
