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

:root {
    --bg-primary: #ffffff;
    --bg-secondary: #fafafa;
    --bg-accent: #f8f8f8;
    --text-primary: #1a1a1a;
    --text-secondary: #404040;
    --text-muted: #737373;
    --accent-primary: #6b21a8;
    --accent-secondary: #581c87;
    --accent-tertiary: #4c1d95;
    --accent-quaternary: #7c3aed;
    --accent-success: #16a34a;
    --gradient-primary: linear-gradient(135deg, #6b21a8 0%, #581c87 50%, #4c1d95 100%);
    --gradient-secondary: linear-gradient(135deg, #7c3aed 0%, #6b21a8 100%);
    --gradient-tertiary: linear-gradient(135deg, #6b21a8 0%, #7c3aed 100%);
    --gradient-card: linear-gradient(145deg, rgba(255,255,255,0.9) 0%, rgba(250,250,250,0.7) 100%);
    --border-color: #e8e8e8;
    --border-light: #f5f5f5;
    --shadow-sm: 0 4px 12px rgba(107, 33, 168, 0.12);
    --shadow-md: 0 8px 24px rgba(107, 33, 168, 0.15);
    --shadow-lg: 0 16px 48px rgba(107, 33, 168, 0.20);
    --shadow-xl: 0 24px 64px rgba(107, 33, 168, 0.25);
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 32px;
    height: 32px;
    background: var(--gradient-primary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    box-shadow: var(--shadow-sm);
}

.nav-cta-container {
    position: relative;
}

.nav-cta {
    background: var(--gradient-primary);
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.nav-cta-arrow {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.nav-cta-container.active .nav-cta-arrow {
    transform: rotate(180deg);
}

.nav-dropdown {
    position: absolute;
    top: calc(100% + 16px);
    right: 0;
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 24px;
    min-width: 320px;
    box-shadow: var(--shadow-lg);
    display: none;
    z-index: 10000;
}

.nav-dropdown.show {
    display: block;
    animation: dropdownFadeIn 0.3s ease forwards;
}

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

.nav-dropdown::before {
    content: '';
    position: absolute;
    top: -8px;
    right: 24px;
    width: 16px;
    height: 16px;
    background: white;
    border: 1px solid var(--border-color);
    border-bottom: none;
    border-right: none;
    transform: rotate(45deg);
}

.nav-cta-container.active .nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.nav-dropdown p {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.nav-dropdown-form {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
}

.nav-dropdown-input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 14px;
    outline: none;
    transition: border-color 0.3s ease;
    background: var(--bg-secondary);
}

.nav-dropdown-input:focus {
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 3px rgba(107, 33, 168, 0.1);
}

.nav-dropdown-btn {
    background: var(--gradient-primary);
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.nav-dropdown-btn:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow-sm);
}

.nav-dropdown-disclaimer {
    font-size: 12px;
    color: var(--text-muted);
    text-align: center;
}

/* Hero Section */
.hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    background: var(--bg-primary);
    position: relative;
    overflow: hidden;
    padding: 120px 0 80px;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        radial-gradient(circle at 30% 80%, rgba(107, 33, 168, 0.06) 0%, transparent 40%);
    animation: float 25s ease-in-out infinite;
    pointer-events: none;
}

@keyframes float {
    0%, 100% { transform: rotate(0deg) translateY(0px); }
    50% { transform: rotate(2deg) translateY(-30px); }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.hero h1 {
    font-size: clamp(42px, 5vw, 56px);
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 24px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
}

.hero .subtitle {
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.5;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
}

.signup-form {
    display: flex;
    gap: 8px;
    max-width: 500px;
    margin: 0 auto 32px auto;
    align-items: stretch;
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 16px;
    padding: 8px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.signup-form:focus-within {
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 4px rgba(107, 33, 168, 0.1), var(--shadow-md);
}

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

.email-input::placeholder {
    color: var(--text-muted);
}

.signup-btn {
    background: var(--gradient-primary);
    color: white;
    padding: 16px 28px;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    box-shadow: var(--shadow-sm);
}

.signup-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.social-proof {
    margin-top: 32px;
    color: var(--text-secondary);
    font-size: 16px;
    font-weight: 500;
}

.subscriber-count {
    font-weight: 700;
    color: var(--accent-primary);
}

/* Benefits Section */
.benefits {
    padding: 100px 0;
    background: var(--bg-secondary);
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-title {
    font-size: 44px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text-primary);
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 500px;
    margin: 0 auto;
    font-weight: 500;
}

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

@media (max-width: 1024px) {
    .benefits-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

.benefit-card {
    background: var(--gradient-card);
    border: 1px solid rgba(76, 29, 149, 0.15);
    border-radius: 24px;
    padding: 40px 32px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    backdrop-filter: blur(20px);
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.benefit-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(145deg, rgba(255,255,255,0.1) 0%, rgba(76, 29, 149, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 24px;
}

.benefit-card:hover::before {
    transform: scaleX(1);
}

.benefit-card:hover::after {
    opacity: 1;
}

.benefit-card:hover {
    transform: translateY(-12px);
    border-color: rgba(76, 29, 149, 0.3);
    box-shadow: var(--shadow-xl);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin: 0 auto 28px auto;
    box-shadow: var(--shadow-lg);
    position: relative;
    transition: all 0.4s ease;
}

.benefit-icon::before {
    content: '';
    position: absolute;
    inset: 3px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.1) 100%);
    border-radius: 21px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.benefit-card:hover .benefit-icon {
    transform: translateY(-4px) scale(1.05);
    box-shadow: var(--shadow-xl);
}

.benefit-card:hover .benefit-icon::before {
    opacity: 1;
}

.benefit-icon svg {
    width: 36px;
    height: 36px;
    color: white;
    z-index: 1;
    position: relative;
}

.benefit-card h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.benefit-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 16px;
}

/* What You Get */
.content-preview {
    padding: 100px 0;
    background: var(--bg-accent);
}

.preview-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto;
}

@media (max-width: 1024px) {
    .preview-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

.preview-card {
    background: var(--gradient-card);
    border: 1px solid rgba(76, 29, 149, 0.12);
    border-radius: 24px;
    padding: 36px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    backdrop-filter: blur(20px);
}

.preview-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-tertiary);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.preview-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(145deg, rgba(255,255,255,0.08) 0%, rgba(76, 29, 149, 0.03) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 24px;
}

.preview-card:hover::after {
    transform: scaleX(1);
}

.preview-card:hover::before {
    opacity: 1;
}

.preview-card:hover {
    transform: translateY(-8px);
    border-color: rgba(76, 29, 149, 0.25);
    box-shadow: var(--shadow-lg);
}

.preview-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--accent-primary);
    color: white;
    padding: 12px 18px;
    border-radius: 14px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
    border: none;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s ease;
}

.preview-card:hover .preview-tag {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.preview-tag svg {
    width: 16px;
    height: 16px;
    color: white;
}

.preview-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.preview-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 15px;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: var(--bg-accent);
    text-align: center;
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.cta-section h2 {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 20px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.01em;
}

.cta-section p {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 32px;
    line-height: 1.6;
}

.cta-primary {
    background: var(--gradient-primary);
    color: white;
    padding: 20px 40px;
    border: none;
    border-radius: 16px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    box-shadow: var(--shadow-md);
}

.cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

/* Footer */
.footer {
    background: var(--bg-primary);
    border-top: 1px solid var(--border-color);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 2fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

.footer-section h4 {
    color: var(--text-primary);
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 16px;
}

.footer-section p,
.footer-section a {
    color: var(--text-secondary);
    text-decoration: none;
    line-height: 1.8;
    font-size: 15px;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--accent-primary);
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: 30px;
    text-align: center;
    color: var(--text-muted);
    font-size: 14px;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .nav-cta-container {
        display: none;
    }

    .nav-dropdown {
        right: -20px;
        left: -20px;
        min-width: auto;
    }

    .hero {
        min-height: 70vh;
        padding: 100px 0 60px;
    }

    .hero h1 {
        font-size: 36px;
    }

    .signup-form {
        flex-direction: column;
        gap: 0;
        padding: 16px;
    }

    .email-input {
        width: 100%;
        margin-bottom: 16px;
    }

    .signup-btn {
        width: 100%;
    }

    .hero .subtitle {
        font-size: 18px;
    }

    .section-title {
        font-size: 32px;
    }

    .benefits-grid,
    .preview-grid {
        grid-template-columns: 1fr !important;
        gap: 20px;
    }

    .container {
        padding: 0 20px;
    }

    .benefits,
    .content-preview,
    .cta-section {
        padding: 60px 0;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.benefit-card,
.preview-card {
    animation: fadeInUp 0.6s ease forwards;
}

.benefit-card:nth-child(1) { animation-delay: 0.1s; }
.benefit-card:nth-child(2) { animation-delay: 0.2s; }
.benefit-card:nth-child(3) { animation-delay: 0.3s; }

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}


/*===========================================RECENT ISSUES=======================*/


.recent-issues {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-primary);
    line-height: 1.1;
}

.section-subtitle {
    font-size: 16px;
    color: var(--text-secondary);
    font-weight: 500;
}

.issues-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.issue-card {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

    .issue-card:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow-md);
        border-color: var(--accent-primary);
    }

.issue-featured-image {
    width: 100%;
    /*height: 180px;*/
    height: 220px;
    object-fit: cover;
    display: block;
}

.issue-content {
    padding: 20px;
}

.issue-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.issue-number {
    background: var(--accent-primary);
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.issue-date {
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 500;
}

.issue-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text-primary);
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.read-more {
    color: var(--accent-primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
}

    .read-more:hover {
        color: var(--text-primary);
    }

    .read-more svg {
        transition: transform 0.3s ease;
    }

    .read-more:hover svg {
        transform: translateX(3px);
    }

.view-all-section {
    text-align: center;
    margin-top: 40px;
}

.view-all-btn {
    color: var(--accent-primary);
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border: 2px solid var(--accent-primary);
    border-radius: 8px;
    transition: all 0.3s ease;
}

    .view-all-btn:hover {
        background: var(--accent-primary);
        color: white;
    }

@media (max-width: 768px) {
    .issues-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .issue-content {
        padding: 16px;
    }

    .recent-issues {
        padding: 60px 0;
    }

    .section-title {
        font-size: 28px;
    }

    .container {
        padding: 0 20px;
    }

    .issue-featured-image {
        height: 160px;
    }
}