/* =============================================
   KLOAK — Design System (Dark Mode)
   ============================================= */

/* ========== Variables ========== */
:root {
    --bg-primary: #080d12;
    --bg-secondary: #0d1520;
    --bg-card: #0f1a26;
    --bg-hover: #162030;
    --bg-input: #121c28;
    
    --border: #ffffff10;
    --border-hover: #ffffff20;
    
    --text-primary: #e8f0fe;
    --text-secondary: #8fa3bc;
    --text-muted: #6b7a8d;
    
    --accent: #00e676;
    --accent-dim: #00e67620;
    --accent-glow: #00e67612;
    
    --green: #22c55e;
    --red: #ef4444;
    --yellow: #eab308;
    --blue: #3b82f6;
    
    --green-bg: #22c55e15;
    --red-bg: #ef444415;
    --yellow-bg: #eab30815;
    --blue-bg: #3b82f615;
    
    --radius: 12px;
    --radius-sm: 8px;
    --radius-xs: 6px;
    
    --shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.5);
    
    --transition: 0.2s ease;
    --glass: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.06);
}

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

html {
    scroll-behavior: smooth;
}

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

a {
    color: var(--accent);
    text-decoration: none;
    transition: opacity var(--transition);
}

a:hover {
    opacity: 0.8;
}

/* ========== Navbar ========== */
.navbar {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border);
    backdrop-filter: blur(20px);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    text-decoration: none;
}

.nav-logo span {
    background: linear-gradient(135deg, var(--accent), #00cc66);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-links {
    display: flex;
    gap: 0.25rem;
}

.nav-link {
    color: var(--text-secondary);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-xs);
    font-size: 0.875rem;
    font-weight: 500;
    transition: all var(--transition);
}

.nav-link:hover, .nav-link.active {
    color: var(--text-primary);
    background: var(--bg-hover);
    opacity: 1;
}

.nav-link.active {
    color: var(--accent);
}

.nav-user {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.nav-avatar img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid var(--border);
}

.avatar-placeholder {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--accent-dim);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.875rem;
}

.nav-logout {
    color: var(--text-muted) !important;
    font-size: 0.8rem;
}

/* ========== Main Content ========== */
.main-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.5rem;
}

.page-container {
    max-width: 1000px;
    margin: 0 auto;
}

.page-narrow {
    max-width: 600px;
}

.page-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.page-header h1 {
    font-size: 1.5rem;
    font-weight: 700;
}

/* ========== Cards ========== */
.card {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    padding: 1.25rem;
    margin-bottom: 1.25rem;
    backdrop-filter: blur(10px);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.card-header h2 {
    font-size: 1rem;
    font-weight: 600;
}

/* ========== Stats Grid ========== */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.stat-card {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    padding: 1.25rem;
    text-align: center;
    transition: transform var(--transition);
}

.stat-card:hover {
    transform: translateY(-2px);
}

.stat-value {
    display: block;
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.stat-label {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.stat-passed .stat-value { color: var(--green); }
.stat-blocked .stat-value { color: var(--red); }
.stat-rate .stat-value { color: var(--accent); }

/* ========== Buttons ========== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    border: none;
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
    font-family: inherit;
    color: var(--text-primary);
}

.btn-primary {
    background: var(--accent);
    color: #000;
    font-weight: 600;
}

.btn-primary:hover {
    background: #00e077;
    opacity: 1;
    box-shadow: 0 0 20px var(--accent-dim);
}

.btn-ghost {
    background: transparent;
    color: var(--text-secondary);
    border: 1px solid var(--border);
}

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

.btn-danger-ghost {
    background: transparent;
    color: var(--red);
    border: 1px solid var(--red-bg);
}

.btn-danger-ghost:hover {
    background: var(--red-bg);
}

.btn-sm {
    padding: 0.375rem 0.75rem;
    font-size: 0.8rem;
}

.btn-lg {
    padding: 0.875rem 2rem;
    font-size: 1rem;
}

.btn-block {
    width: 100%;
}

.btn-icon {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    padding: 0.25rem;
    color: var(--text-secondary);
    transition: color var(--transition);
}

.btn-icon:hover {
    color: var(--text-primary);
}

/* ========== Badges ========== */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.25rem 0.625rem;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 500;
    background: var(--bg-hover);
    color: var(--text-secondary);
}

.badge-success { background: var(--green-bg); color: var(--green); }
.badge-danger { background: var(--red-bg); color: var(--red); }
.badge-warning { background: var(--yellow-bg); color: var(--yellow); }
.badge-fb { background: #1877f215; color: #4a9af5; }
.badge-ig { background: #e1306c15; color: #e1306c; }

/* ========== Alerts ========== */
.alert {
    padding: 0.875rem 1.25rem;
    border-radius: var(--radius-sm);
    margin-bottom: 1.25rem;
    font-size: 0.875rem;
}

.alert-error {
    background: var(--red-bg);
    color: #fca5a5;
    border: 1px solid #ef444430;
}

.alert-warning {
    background: var(--yellow-bg);
    color: #fde047;
    border: 1px solid #eab30830;
}

.alert-success {
    background: var(--green-bg);
    color: #86efac;
    border: 1px solid #22c55e30;
}

.alert a {
    color: inherit;
    text-decoration: underline;
    font-weight: 600;
}

/* ========== Tables ========== */
.logs-table-wrapper {
    overflow-x: auto;
}

.logs-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.85rem;
}

.logs-table th {
    text-align: left;
    padding: 0.625rem 0.75rem;
    color: var(--text-muted);
    font-weight: 500;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-bottom: 1px solid var(--border);
}

.logs-table td {
    padding: 0.625rem 0.75rem;
    border-bottom: 1px solid var(--border);
    color: var(--text-secondary);
}

.logs-table tbody tr:hover {
    background: var(--bg-hover);
}

/* ========== Forms ========== */
.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.form-group label small {
    color: var(--text-muted);
    font-weight: 400;
}

.form-group input[type="text"],
.form-group input[type="url"],
.form-group input[type="email"],
.form-group input[type="password"],
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    background: var(--bg-input);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-size: 0.9rem;
    font-family: inherit;
    transition: border-color var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-dim);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%2394a3b8' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.form-section {
    border-top: 1px solid var(--border);
    margin-top: 1.5rem;
    padding-top: 1.25rem;
}

.form-section h3 {
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

/* ========== Checkboxes & Radios ========== */
.checkbox-option, .radio-option {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    cursor: pointer;
    font-size: 0.9rem;
}

.checkbox-option input, .radio-option input {
    accent-color: var(--accent);
    width: 16px;
    height: 16px;
}

.radio-group {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.radio-option small {
    color: var(--text-muted);
}

.source-selector {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.source-option {
    cursor: pointer;
}

.source-option input {
    display: none;
}

.source-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.5rem 1rem;
    border: 1px solid var(--border);
    border-radius: 100px;
    font-size: 0.85rem;
    transition: all var(--transition);
}

.source-option input:checked + .source-chip {
    border-color: var(--accent);
    background: var(--accent-dim);
    color: var(--accent);
}

.sub-field {
    padding-left: 2.25rem;
    margin-top: 0.5rem;
}

.sub-field label {
    font-size: 0.8rem;
    margin-bottom: 0.375rem;
}

.sub-field input {
    width: 100%;
    padding: 0.5rem 0.75rem;
    background: var(--bg-input);
    border: 1px solid var(--border);
    border-radius: var(--radius-xs);
    color: var(--text-primary);
    font-size: 0.85rem;
    font-family: inherit;
}

/* ========== Switch ========== */
.switch {
    position: relative;
    display: inline-block;
    width: 44px;
    height: 24px;
}

.switch input { display: none; }

.switch-slider {
    position: absolute;
    inset: 0;
    background: var(--bg-hover);
    border-radius: 24px;
    cursor: pointer;
    transition: background var(--transition);
}

.switch-slider::before {
    content: '';
    position: absolute;
    width: 18px;
    height: 18px;
    left: 3px;
    bottom: 3px;
    background: var(--text-muted);
    border-radius: 50%;
    transition: all var(--transition);
}

.switch input:checked + .switch-slider {
    background: var(--accent-dim);
}

.switch input:checked + .switch-slider::before {
    transform: translateX(20px);
    background: var(--accent);
}

/* ========== Modal ========== */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    z-index: 200;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.modal-overlay.active {
    display: flex;
}

.modal {
    background: var(--bg-secondary);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    width: 100%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    padding: 1.5rem;
    box-shadow: var(--shadow-lg);
    animation: modalIn 0.2s ease;
}

.modal-sm {
    max-width: 450px;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.modal-header h2 {
    font-size: 1.125rem;
}

.modal-footer {
    display: flex;
    justify-content: flex-end;
    gap: 0.75rem;
    margin-top: 1.5rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--border);
}

@keyframes modalIn {
    from { opacity: 0; transform: translateY(10px) scale(0.98); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

/* ========== Campaign Cards ========== */
.campaigns-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1rem;
}

.campaign-card {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    padding: 1.25rem;
    transition: border-color var(--transition);
}

.campaign-card:hover {
    border-color: var(--border-hover);
}

.campaign-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.campaign-card-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.campaign-card-title h3 {
    font-size: 0.95rem;
    font-weight: 600;
}

.campaign-card-stats {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.mini-stat {
    text-align: center;
}

.mini-stat-value {
    display: block;
    font-size: 1.125rem;
    font-weight: 700;
}

.mini-stat-label {
    display: block;
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
}

.text-green { color: var(--green); }
.text-red { color: var(--red); }
.text-accent { color: var(--accent); }
.text-muted { color: var(--text-muted); }
.text-center { text-align: center; }

.campaign-card-links {
    margin-bottom: 1rem;
}

.link-row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
}

.link-label {
    color: var(--text-muted);
    flex-shrink: 0;
}

.link-value {
    background: var(--bg-input);
    padding: 0.375rem 0.625rem;
    border-radius: var(--radius-xs);
    font-size: 0.75rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    flex: 1;
    color: var(--text-secondary);
}

.campaign-card-actions {
    display: flex;
    gap: 0.5rem;
    padding-top: 0.75rem;
    border-top: 1px solid var(--border);
}

.campaign-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border);
}

.campaign-row:last-child {
    border-bottom: none;
}

.campaign-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.campaign-stats {
    display: flex;
    gap: 0.5rem;
}

/* ========== Domain Cards ========== */
.domain-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.25rem;
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.domain-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.domain-info h3 {
    font-size: 0.95rem;
}

.domain-campaign {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.domain-status-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
}

.dot-green { background: var(--green); box-shadow: 0 0 6px var(--green); }
.dot-yellow { background: var(--yellow); box-shadow: 0 0 6px var(--yellow); }
.dot-red { background: var(--red); }

.domain-actions {
    display: flex;
    gap: 0.5rem;
}

.dns-instructions {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.dns-instructions.compact {
    font-size: 0.8rem;
    margin-top: 0.75rem;
    padding: 0.75rem;
    background: var(--bg-input);
    border-radius: var(--radius-xs);
}

.dns-table {
    width: 100%;
    margin: 0.75rem 0;
    border-collapse: collapse;
}

.dns-table th, .dns-table td {
    padding: 0.5rem 0.75rem;
    text-align: left;
    border-bottom: 1px solid var(--border);
}

.dns-table th {
    color: var(--text-muted);
    font-weight: 500;
    font-size: 0.8rem;
}

.dns-table code {
    background: var(--bg-hover);
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    font-size: 0.85rem;
}

/* ========== Account ========== */
.account-info {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1rem;
}

.avatar-large {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    border: 3px solid var(--border);
}

.avatar-placeholder-large {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--accent-dim);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border);
}

.detail-row:last-child {
    border-bottom: none;
}

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

.detail-value {
    font-weight: 500;
    font-size: 0.9rem;
}

.subscription-cta {
    margin-top: 1.5rem;
    text-align: center;
}

/* ========== Empty States ========== */
.empty-state {
    text-align: center;
    padding: 1.5rem;
    color: var(--text-muted);
}

.empty-state a {
    font-weight: 600;
}

.empty-state-large {
    text-align: center;
    padding: 4rem 2rem;
    background: var(--bg-card);
    border: 1px dashed var(--border);
    border-radius: var(--radius);
}

.empty-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.empty-state-large h3 {
    margin-bottom: 0.5rem;
}

.empty-state-large p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

/* ========== Filters ========== */
.filters-bar {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.filter-group {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.filter-group label {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.filter-group select {
    padding: 0.5rem 0.75rem;
    background: var(--bg-input);
    border: 1px solid var(--border);
    border-radius: var(--radius-xs);
    color: var(--text-primary);
    font-size: 0.85rem;
    font-family: inherit;
}

.period-tabs {
    display: flex;
    gap: 0.25rem;
    background: var(--bg-input);
    padding: 0.25rem;
    border-radius: var(--radius-sm);
}

.period-tab {
    padding: 0.375rem 0.75rem;
    border: none;
    background: transparent;
    color: var(--text-muted);
    font-size: 0.8rem;
    font-family: inherit;
    border-radius: var(--radius-xs);
    cursor: pointer;
    transition: all var(--transition);
}

.period-tab.active, .period-tab:hover {
    background: var(--bg-hover);
    color: var(--text-primary);
}

.period-tab.active {
    background: var(--accent-dim);
    color: var(--accent);
}

/* ========== Pagination ========== */
.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 0;
}

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

/* ========== Chart ========== */
.chart-container {
    height: 250px;
    position: relative;
}

/* ========== Toast ========== */
#toast-container {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.toast {
    padding: 0.875rem 1.25rem;
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    font-weight: 500;
    animation: toastIn 0.3s ease, toastOut 0.3s ease 3s forwards;
    box-shadow: var(--shadow);
    max-width: 350px;
}

.toast-success { background: var(--green); color: #000; }
.toast-error { background: var(--red); color: #fff; }
.toast-warning { background: var(--yellow); color: #000; }
.toast-info { background: var(--blue); color: #fff; }

@keyframes toastIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
@keyframes toastOut { from { opacity: 1; } to { opacity: 0; transform: translateY(-10px); } }

/* ========== Login Page ========== */
.login-page {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background: var(--bg-primary);
}

.login-container {
    width: 100%;
    max-width: 420px;
    padding: 1.5rem;
}

.login-card {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    padding: 2.5rem;
    text-align: center;
    box-shadow: var(--shadow-lg);
}

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

.logo-emoji {
    font-size: 3rem;
    display: block;
    margin-bottom: 0.5rem;
}

.login-logo h1 {
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--accent), #00cc66);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.login-subtitle {
    color: var(--text-muted);
    margin-top: 0.25rem;
}

.login-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.btn-google {
    background: #fff;
    color: #333;
    padding: 0.875rem 1.5rem;
    border-radius: var(--radius-sm);
    font-weight: 600;
}

.btn-google:hover {
    background: #f0f0f0;
    opacity: 1;
}

.btn-apple {
    background: #000;
    color: #fff;
    padding: 0.875rem 1.5rem;
    border-radius: var(--radius-sm);
    font-weight: 600;
    border: 1px solid #333;
}

.btn-apple:hover {
    background: #1a1a1a;
    opacity: 1;
}

.login-terms {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.login-terms a {
    color: var(--text-secondary);
    text-decoration: underline;
}

/* ========== Landing Page ========== */
.landing-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(10, 10, 15, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
}

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

.hero {
    padding: 8rem 1.5rem 5rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: var(--accent-dim);
    border: 1px solid var(--accent);
    border-radius: 100px;
    font-size: 0.85rem;
    color: var(--accent);
    margin-bottom: 1.5rem;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1.25rem;
}

.hero-description {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 2rem;
    line-height: 1.7;
}

.hero-cta {
    margin-top: 2rem;
}

.hero-price {
    margin-top: 0.75rem;
    font-size: 0.875rem;
    color: var(--text-muted);
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 3rem;
}

.features {
    padding: 5rem 0;
}

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

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    padding: 2rem;
    text-align: center;
    transition: transform var(--transition), border-color var(--transition);
}

.feature-card:hover {
    transform: translateY(-4px);
    border-color: var(--accent-dim);
}

.feature-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.feature-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.pricing {
    padding: 5rem 0;
}

.pricing-card {
    max-width: 400px;
    margin: 0 auto;
    background: var(--bg-card);
    border: 2px solid var(--accent);
    border-radius: var(--radius);
    padding: 2.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), #00cc66);
}

.pricing-header h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.pricing-value {
    margin-bottom: 2rem;
}

.currency {
    font-size: 1.25rem;
    color: var(--text-muted);
    vertical-align: top;
}

.amount {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--accent);
}

.period {
    font-size: 1rem;
    color: var(--text-muted);
}

.pricing-features {
    list-style: none;
    text-align: left;
    margin-bottom: 2rem;
}

.pricing-features li {
    padding: 0.5rem 0;
    font-size: 0.9rem;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border);
}

.pricing-features li:last-child {
    border-bottom: none;
}

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

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

/* ========== Hidden ========== */
.hidden {
    display: none !important;
}

/* ========== Responsive ========== */
@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .nav-links {
        display: none;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .campaign-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .filters-bar {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .domain-card {
        flex-direction: column;
        align-items: flex-start;
    }
}