/* Starter Rune Selection Styles */
.starter-rune-selection {
    margin: 40px 0;
    text-align: center;
}

.rune-selection-header {
    margin-bottom: 20px;
}

.rune-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.rune-card {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

/* FlowRune - Sophisticated Warm Tone */
.rune-card[data-rune="flowrune"] {
    background: rgba(184, 134, 91, 0.08);
    border-color: rgba(184, 134, 91, 0.3);
}

.rune-card[data-rune="flowrune"] .rune-icon {
    color: #b8865b;
}

.rune-card[data-rune="flowrune"] .free-tag {
    background: #b8865b;
}

/* Ansuz - Cool Blue */
.rune-card[data-rune="ansuz"] {
    background: rgba(100, 149, 237, 0.08);
    border-color: rgba(100, 149, 237, 0.3);
}

.rune-card[data-rune="ansuz"] .rune-icon {
    color: #6495ed;
}

.rune-card[data-rune="ansuz"] .free-tag {
    background: #6495ed;
}

/* Laguz - Emerald Green */
.rune-card[data-rune="laguz"] {
    background: rgba(72, 201, 176, 0.08);
    border-color: rgba(72, 201, 176, 0.3);
}

.rune-card[data-rune="laguz"] .rune-icon {
    color: #48c9b0;
}

.rune-card[data-rune="laguz"] .free-tag {
    background: #48c9b0;
}

/* Selected state with colored glow */
.rune-card.selected {
    transform: translateY(-5px);
    box-shadow: 0 0 25px rgba(70, 178, 157, 0.6);
}

/* FlowRune selected state */
.rune-card[data-rune="flowrune"].selected {
    border-color: #b8865b;
    box-shadow: 0 0 25px rgba(184, 134, 91, 0.6), 0 0 40px rgba(184, 134, 91, 0.3);
    background: rgba(184, 134, 91, 0.15);
}

/* Ansuz selected state */
.rune-card[data-rune="ansuz"].selected {
    border-color: #6495ed;
    box-shadow: 0 0 25px rgba(100, 149, 237, 0.6), 0 0 40px rgba(100, 149, 237, 0.3);
    background: rgba(100, 149, 237, 0.15);
}

/* Laguz selected state */
.rune-card[data-rune="laguz"].selected {
    border-color: #48c9b0;
    box-shadow: 0 0 25px rgba(72, 201, 176, 0.6), 0 0 40px rgba(72, 201, 176, 0.3);
    background: rgba(72, 201, 176, 0.15);
}

.rune-card.selected::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border: 2px solid currentColor;
    border-radius: 17px;
    pointer-events: none;
    opacity: 0.8;
}

.rune-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}

.rune-icon.card-rune {
    font-size: 2rem;
    color: #a0714a;
}

.rune-card-info h5 {
    color: #f3f4f6;
    font-size: 1.2rem;
}

.rune-card-info p {
    color: #e0e1dd;
    opacity: 0.8;
}

.rune-price {
    color: #a0714a;
}

.rune-card-features {
    margin-top: 10px;
}

/* Base button styling - will be overridden by individual rune styles */
.select-rune-btn {
    padding: 10px;
    border-radius: 8px;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    font-weight: 600;
    border: none;
    cursor: pointer;
}

/* FlowRune button - sophisticated warm tone */
.rune-card[data-rune="flowrune"] .select-rune-btn {
    background: rgba(184, 134, 91, 0.2);
    color: rgba(205, 164, 130, 0.8);
    border: 1px solid rgba(184, 134, 91, 0.4);
}

.rune-card[data-rune="flowrune"] .select-rune-btn.selected {
    background: linear-gradient(135deg, rgba(184, 134, 91, 0.9), rgba(205, 164, 130, 0.8));
    color: #1a1a1a;
    box-shadow: 0 0 15px rgba(184, 134, 91, 0.5);
    border-color: #b8865b;
}

/* Ansuz button - darker blue background, lighter blue text */
.rune-card[data-rune="ansuz"] .select-rune-btn {
    background: rgba(100, 149, 237, 0.2);
    color: rgba(100, 149, 237, 0.7);
    border: 1px solid rgba(100, 149, 237, 0.3);
}

.rune-card[data-rune="ansuz"] .select-rune-btn.selected {
    background: rgba(100, 149, 237, 0.9);
    color: #1a1a1a;
    box-shadow: 0 0 15px rgba(100, 149, 237, 0.4);
    border-color: #6495ed;
}

/* Laguz button - darker green background, lighter green text */
.rune-card[data-rune="laguz"] .select-rune-btn {
    background: rgba(72, 201, 176, 0.2);
    color: rgba(72, 201, 176, 0.7);
    border: 1px solid rgba(72, 201, 176, 0.3);
}

.rune-card[data-rune="laguz"] .select-rune-btn.selected {
    background: rgba(72, 201, 176, 0.9);
    color: #1a1a1a;
    box-shadow: 0 0 15px rgba(72, 201, 176, 0.4);
    border-color: #48c9b0;
}

.select-rune-btn .btn-icon {
    font-size: 1.2rem;
}

/* Founder Arsenal Section Styles */
.founder-arsenal-section {
    position: relative;
    padding: 4rem 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0f0f0f 100%);
    border: 2px solid rgba(255, 107, 53, 0.3);
    border-radius: 30px;
    margin: 4rem 0;
    overflow: hidden;
}

/* Cosmic Background Elements */
.arsenal-cosmos {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.cosmic-orb {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle at center, rgba(255, 107, 53, 0.4) 0%, rgba(255, 171, 0, 0.2) 50%, transparent 70%);
    animation: float 6s ease-in-out infinite;
}

.cosmic-orb.orb-1 {
    width: 120px;
    height: 120px;
    top: 10%;
    right: 10%;
    animation-delay: 0s;
    background: radial-gradient(circle at center, rgba(255, 171, 0, 0.3) 0%, rgba(255, 107, 53, 0.1) 50%, transparent 70%);
}

.cosmic-orb.orb-2 {
    width: 80px;
    height: 80px;
    bottom: 15%;
    left: 8%;
    animation-delay: -2s;
    background: radial-gradient(circle at center, rgba(255, 107, 53, 0.25) 0%, rgba(255, 171, 0, 0.1) 50%, transparent 70%);
}

.cosmic-orb.orb-3 {
    width: 100px;
    height: 100px;
    top: 50%;
    left: 3%;
    animation-delay: -4s;
    background: radial-gradient(circle at center, rgba(255, 171, 0, 0.2) 0%, rgba(255, 107, 53, 0.1) 50%, transparent 70%);
}

.energy-field {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200%;
    height: 200%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle at center, 
        transparent 0%, 
        rgba(255, 107, 53, 0.03) 20%, 
        rgba(255, 171, 0, 0.05) 40%, 
        transparent 60%
    );
    animation: pulse 8s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    25% { transform: translateY(-20px) rotate(90deg); }
    50% { transform: translateY(0px) rotate(180deg); }
    75% { transform: translateY(20px) rotate(270deg); }
}

@keyframes pulse {
    0%, 100% { opacity: 0.3; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.1; transform: translate(-50%, -50%) scale(1.1); }
}

/* Epic Header Styling */
.founder-header.epic-header {
    text-align: center;
    position: relative;
    z-index: 2;
    margin-bottom: 3rem;
}

.section-badge.legendary-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.2), rgba(255, 171, 0, 0.2));
    border: 2px solid rgba(255, 107, 53, 0.5);
    border-radius: 25px;
    padding: 0.5rem 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.3);
}

.badge-rune.epic-pulse {
    font-size: 1.2rem;
    color: #ffab00;
    animation: epicPulse 2s ease-in-out infinite;
}

.badge-text {
    color: #ff6b35;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 2px;
}

@keyframes epicPulse {
    0%, 100% { transform: scale(1); text-shadow: 0 0 5px rgba(255, 171, 0, 0.5); }
    50% { transform: scale(1.1); text-shadow: 0 0 15px rgba(255, 171, 0, 0.8); }
}

.founder-title.legendary-text {
    font-size: 3rem;
    color: #e0e1dd;
    font-family: 'Cinzel', serif;
    position: relative;
    margin-bottom: 1rem;
}

.title-rune.mystical-float {
    display: block;
    font-size: 1.5rem;
    color: #ffab00;
    margin-bottom: 0.5rem;
    animation: mysticalFloat 3s ease-in-out infinite;
    text-shadow: 0 0 10px rgba(255, 171, 0, 0.6);
}

@keyframes mysticalFloat {
    0%, 100% { transform: translateY(0px); opacity: 0.8; }
    50% { transform: translateY(-5px); opacity: 1; }
}

.title-crown {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 15px;
    background: linear-gradient(45deg, #ffab00, #ff6b35);
    border-radius: 50% 50% 0 0;
    opacity: 0.7;
}

.title-crown::before,
.title-crown::after {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    background: #ffab00;
    border-radius: 50%;
    top: 2px;
}

.title-crown::before { left: 5px; }
.title-crown::after { right: 5px; }

/* Arsenal Power Indicator */
.arsenal-power-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.power-bar {
    width: 200px;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}

.power-fill {
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #ff6b35, #ffab00, #ff6b35);
    border-radius: 10px;
    animation: powerFlow 2s ease-in-out infinite;
}

.power-spark {
    position: absolute;
    top: 0;
    left: 0;
    width: 20px;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
    animation: spark 1.5s linear infinite;
}

@keyframes powerFlow {
    0%, 100% { background-position: 0% 0%; }
    50% { background-position: 100% 0%; }
}

@keyframes spark {
    0% { left: -20px; }
    100% { left: 200px; }
}

.power-text {
    color: #ffab00;
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 1px;
    text-shadow: 0 0 5px rgba(255, 171, 0, 0.5);
}

/* Premium Bundle Section Styles */
.premium-bundle-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.03) 0%, rgba(255, 171, 0, 0.03) 50%, rgba(70, 178, 157, 0.03) 100%);
    margin: 3rem 0;
    border-top: 1px solid rgba(255, 107, 53, 0.2);
    border-bottom: 1px solid rgba(255, 107, 53, 0.2);
    position: relative;
    overflow: hidden;
}

.premium-bundle-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.1), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    50% { left: 100%; }
    100% { left: 100%; }
}

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

.premium-bundle-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.bundle-runes-display {
    margin-bottom: 2rem;
}

.floating-rune-set {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.bundle-rune-1,
.bundle-rune-2,
.bundle-rune-3 {
    font-size: 4rem;
    font-family: 'Cinzel', serif;
    font-weight: 700;
    opacity: 0.8;
    transition: all 0.5s ease;
    text-shadow: 0 0 20px currentColor;
}

.bundle-rune-1 {
    color: #ff8c66;
    animation: float-left 6s ease-in-out infinite;
}

.bundle-rune-2 {
    color: #6495ed;
    animation: float-center 6s ease-in-out infinite 1s;
}

.bundle-rune-3 {
    color: #48c9b0;
    animation: float-right 6s ease-in-out infinite 2s;
}

.bundle-connection-lines {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    border: 2px solid rgba(255, 107, 53, 0.3);
    border-radius: 50%;
    animation: pulse-ring 4s ease-in-out infinite;
}

@keyframes float-left {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    25% { transform: translateY(-10px) rotate(-5deg); }
    75% { transform: translateY(10px) rotate(5deg); }
}

@keyframes float-center {
    0%, 100% { transform: translateY(0px) scale(1); }
    50% { transform: translateY(-15px) scale(1.1); }
}

@keyframes float-right {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    25% { transform: translateY(10px) rotate(5deg); }
    75% { transform: translateY(-10px) rotate(-5deg); }
}

@keyframes pulse-ring {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.3; }
    50% { transform: translate(-50%, -50%) scale(1.1); opacity: 0.6; }
}

.bundle-title-section {
    max-width: 800px;
    margin: 0 auto;
}

.bundle-main-title {
    font-family: 'Cinzel', serif;
    font-size: 3rem;
    font-weight: 700;
    color: #e0e1dd;
    margin-bottom: 1rem;
    text-shadow: 0 2px 10px rgba(255, 107, 53, 0.3);
}

.bundle-subtitle {
    font-size: 1.3rem;
    color: #d1d5db;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.bundle-value-prop {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.value-point {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #e0e1dd;
    font-weight: 500;
}

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

.premium-bundle-card {
    position: relative;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border: 2px solid rgba(255, 107, 53, 0.4);
    border-radius: 25px;
    padding: 0;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(255, 107, 53, 0.2);
    max-width: 900px;
    margin: 0 auto;
}

.bundle-card-glow {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #ff6b35, #ffab00, #46b29d, #ff6b35);
    background-size: 400% 400%;
    border-radius: 25px;
    z-index: -1;
    animation: glow-rotation 4s ease-in-out infinite;
    opacity: 0.6;
}

@keyframes glow-rotation {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.bundle-card-content {
    padding: 2.5rem;
    position: relative;
    z-index: 2;
}

.bundle-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 107, 53, 0.2);
}

.bundle-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #ff6b35, #ffab00);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

.bundle-pricing-display {
    text-align: right;
}

.pricing-comparison {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.5rem;
}

.individual-price {
    font-size: 0.9rem;
    color: #9ca3af;
}

.individual-price strike {
    color: #ff6b6b;
}

.bundle-price-main {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffab00;
    text-shadow: 0 2px 10px rgba(255, 171, 0, 0.4);
}

.savings-badge {
    background: #46b29d;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.rune-showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.showcase-rune {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.showcase-rune:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 107, 53, 0.3);
    background: rgba(255, 107, 53, 0.05);
}

.showcase-rune-icon {
    font-size: 3rem;
    font-family: 'Cinzel', serif;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 0 15px currentColor;
}

.showcase-rune:nth-child(1) .showcase-rune-icon {
    color: #ff8c66;
}

.showcase-rune:nth-child(2) .showcase-rune-icon {
    color: #6495ed;
}

.showcase-rune:nth-child(3) .showcase-rune-icon {
    color: #48c9b0;
}

.showcase-rune-info h4 {
    color: #e0e1dd;
    font-family: 'Cinzel', serif;
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

.showcase-rune-info p {
    color: #d1d5db;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.rune-mini-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.rune-mini-features li {
    color: #9ca3af;
    font-size: 0.85rem;
    padding: 0.2rem 0;
    position: relative;
    padding-left: 1rem;
}

.rune-mini-features li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: currentColor;
}

.bundle-bonus-features {
    margin: 2rem 0;
    padding: 2rem;
    background: rgba(255, 107, 53, 0.05);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 20px;
}

.bundle-bonus-features h4 {
    color: #ff6b35;
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.bonus-features-grid {
    display: grid;
    gap: 1rem;
}

.bonus-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.bonus-feature:hover {
    background: rgba(255, 107, 53, 0.08);
    border-color: rgba(255, 107, 53, 0.3);
    transform: translateX(5px);
}

.bonus-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.bonus-content {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.bonus-title {
    color: #e0e1dd;
    font-weight: 600;
    font-size: 1.1rem;
}

.bonus-desc {
    color: #d1d5db;
    font-size: 0.9rem;
}

.bundle-purchase-section {
    text-align: center;
    margin-top: 2rem;
}

.premium-bundle-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ff6b35, #ffab00, #46b29d);
    background-size: 200% 200%;
    color: white;
    text-decoration: none;
    padding: 1.5rem 3rem;
    border-radius: 25px;
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.4s ease;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
    animation: gradient-shift 3s ease infinite;
    margin-bottom: 1rem;
}

@keyframes gradient-shift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.premium-bundle-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s;
}

.premium-bundle-btn:hover::before {
    left: 100%;
}

.premium-bundle-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.6);
    background-size: 300% 300%;
}

.btn-glow {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #ff6b35, #ffab00, #46b29d, #ff6b35);
    background-size: 400% 400%;
    border-radius: 25px;
    z-index: -1;
    animation: glow-rotation 2s linear infinite;
    opacity: 0.7;
}

.btn-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    z-index: 2;
}

.btn-icon-combo {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.btn-runes {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    font-weight: 700;
    text-shadow: 0 0 10px currentColor;
}

.btn-text-main {
    font-size: 1.1rem;
    font-weight: 700;
}

.btn-price {
    font-size: 1.3rem;
    font-weight: 900;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.bundle-guarantee {
    margin-top: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: #e5e7eb;
    font-size: 0.9rem;
}

.guarantee-icon {
    font-size: 1.2rem;
    color: #46b29d;
}

/* Responsive Design */
@media (max-width: 768px) {
    .premium-bundle-section {
        padding: 2rem 0;
    }
    
    .bundle-container {
        padding: 0 1rem;
    }
    
    .floating-rune-set {
        gap: 1rem;
    }
    
    .bundle-rune-1,
    .bundle-rune-2,
    .bundle-rune-3 {
        font-size: 2.5rem;
    }
    
    .bundle-main-title {
        font-size: 2rem;
    }
    
    .bundle-subtitle {
        font-size: 1.1rem;
    }
    
    .bundle-value-prop {
        flex-direction: column;
        gap: 1rem;
    }
    
    .bundle-card-content {
        padding: 1.5rem;
    }
    
    .bundle-card-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .pricing-comparison {
        align-items: flex-start;
    }
    
    .rune-showcase-grid {
        grid-template-columns: 1fr;
    }
    
    .bonus-features-grid {
        gap: 0.5rem;
    }
    
    .bonus-feature {
        padding: 0.8rem;
    }
    
    .premium-bundle-btn {
        padding: 1.2rem 2rem;
        font-size: 1rem;
    }
}

.bundle-option {
    margin-top: 40px;
}

.bundle-card {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(70, 178, 157, 0.3);
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}

.bundle-card.selected {
    background: rgba(70, 178, 157, 0.1);
    border-color: #46b29d;
    box-shadow: 0 0 10px rgba(70, 178, 157, 0.5);
}

.bundle-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}

.bundle-icon {
    font-size: 2rem;
    color: #46b29d;
}

.bundle-info h5 {
    color: #e0e1dd;
    font-size: 1.2rem;
}

.bundle-info p {
    color: #e0e1dd;
    opacity: 0.8;
}

.bundle-pricing {
    color: #46b29d;
}

.bundle-features {
    margin-top: 10px;
}

.select-bundle-btn {
    background: #46b29d;
    color: #1a1a1a;
    padding: 10px;
    border-radius: 8px;
    transition: background 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.select-bundle-btn.selected {
    background: rgba(70, 178, 157, 0.8);
}

.selection-summary {
    background: rgba(70, 178, 157, 0.05);
    border: 1px solid rgba(70, 178, 157, 0.3);
    border-radius: 15px;
    padding: 20px;
    display: inline-block;
    transition: all 0.3s ease;
}

.summary-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}

.summary-total {
    font-size: 1.3rem;
    color: #46b29d;
}

.selected-items {
    margin-top: 10px;
}

.selected-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 5px 0;
}

.item-icon {
    font-size: 1.5rem;
    color: #46b29d;
}

.item-name {
    color: #e0e1dd;
}

.item-price {
    color: #46b29d;
}

.checkout-actions {
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.checkout-btn, .clear-selection-btn {
    background: linear-gradient(145deg, #46b29d, #3d9c84);
    color: #1a1a1a;
    padding: 10px 20px;
    border-radius: 8px;
    transition: background 0.3s;
}

.checkout-btn:hover, .clear-selection-btn:hover {
    background: #46b29d;
}

.clear-selection-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: #e0e1dd;
}

.clear-selection-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #ff6b35;
    border-color: rgba(255, 107, 53, 0.5);
}

.rune-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
    border-color: rgba(255, 107, 53, 0.5);
}

.bundle-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(70, 178, 157, 0.3);
    border-color: rgba(70, 178, 157, 0.5);
}

.bundle-includes {
    text-align: center;
    margin-top: 10px;
    font-style: italic;
    color: #e0e1dd;
    opacity: 0.8;
}

.original-price {
    text-decoration: line-through;
    color: #888;
    margin-right: 5px;
}

.bundle-price {
    color: #46b29d;
    font-weight: bold;
    font-size: 1.2rem;
    margin-right: 5px;
}

.savings-badge {
    background: #46b29d;
    color: #1a1a1a;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: bold;
}

.rune-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.rune-card-info {
    flex: 1;
    margin-left: 10px;
}

.rune-card-info h5 {
    margin: 0;
    font-size: 1.1rem;
}

.rune-card-info p {
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.8;
}

.price-tag {
    background: linear-gradient(135deg, #8b6f47 0%, #a0825c 100%);
    color: #f5f5f5;
    padding: 4px 8px;
    border-radius: 4px;
    font-weight: bold;
    font-size: 0.9rem;
}

.free-tag {
    background: #46b29d;
    color: #1a1a1a;
    padding: 4px 8px;
    border-radius: 4px;
    font-weight: bold;
    font-size: 0.9rem;
    animation: freeTagGlow 2s ease-in-out infinite alternate;
}

@keyframes freeTagGlow {
    0% { box-shadow: 0 0 8px rgba(70, 178, 157, 0.4); }
    100% { box-shadow: 0 0 15px rgba(70, 178, 157, 0.7); }
}

.rune-card-features {
    margin: 15px 0;
    text-align: left;
}

.rune-card-footer {
    margin-top: 15px;
}

.select-rune-btn {
    width: 100%;
    border: none;
    cursor: pointer;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* Individual rune button hover effects */
.rune-card[data-rune="flowrune"] .select-rune-btn:hover {
    background: linear-gradient(135deg, rgba(184, 134, 91, 0.8), rgba(205, 164, 130, 0.6));
    color: #1a1a1a;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(184, 134, 91, 0.4);
    border-color: rgba(184, 134, 91, 0.6);
}

.rune-card[data-rune="ansuz"] .select-rune-btn:hover {
    background: rgba(100, 149, 237, 0.7);
    color: #1a1a1a;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(100, 149, 237, 0.3);
    border-color: rgba(100, 149, 237, 0.5);
}

.rune-card[data-rune="laguz"] .select-rune-btn:hover {
    background: rgba(72, 201, 176, 0.7);
    color: #1a1a1a;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(72, 201, 176, 0.3);
    border-color: rgba(72, 201, 176, 0.5);
}

.select-bundle-btn {
    width: 100%;
    border: none;
    cursor: pointer;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.select-bundle-btn:hover {
    background: rgba(70, 178, 157, 0.9);
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(70, 178, 157, 0.3);
}

.bundle-footer {
    margin-top: 15px;
}

@media (max-width: 768px) {
    .rune-cards-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .rune-card {
        padding: 15px;
    }
    
    .bundle-card {
        padding: 15px;
    }
    
    .selection-summary {
        padding: 15px;
    }
    
    .checkout-actions {
        flex-direction: column;
        gap: 10px;
    }
    
    .checkout-btn, .clear-selection-btn {
        width: 100%;
    }
}

@keyframes pulseBackground {
    0% { background-position: 0% 50%; }
    100% { background-position: 100% 50%; }
}

.launch-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
    text-align: center;
}

.launch-header {
    text-align: center;
    margin-bottom: var(--spacing-3xl);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-xl);
    flex-wrap: wrap;
}

.launch-icon-container {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.launch-rune {
    font-size: 4rem;
    color: var(--emerald-green);
    animation: launchRuneGlow 2s ease-in-out infinite alternate;
    text-shadow: 0 0 30px rgba(70, 178, 157, 0.6);
}

@keyframes launchRuneGlow {
    0% { 
        text-shadow: 0 0 30px rgba(70, 178, 157, 0.6);
        transform: scale(1);
    }
    100% { 
        text-shadow: 0 0 50px rgba(70, 178, 157, 0.8), 0 0 70px rgba(70, 178, 157, 0.4);
        transform: scale(1.05);
    }
}

.animated-rune {
    animation: rotateRune 8s linear infinite;
}

@keyframes rotateRune {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.rune-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120%;
    height: 120%;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(70, 178, 157, 0.2) 0%, transparent 70%);
    animation: glowPulse 3s ease-in-out infinite alternate;
}

@keyframes glowPulse {
    0% { opacity: 0.3; transform: translate(-50%, -50%) scale(1); }
    100% { opacity: 0.6; transform: translate(-50%, -50%) scale(1.2); }
}

.launch-title-group {
    flex: 1;
    text-align: center;
}

.launch-title {
    font-family: var(--font-norse);
    color: var(--emerald-green);
    font-size: 2.5rem;
    margin-bottom: 15px;
    text-shadow: 0 0 20px rgba(70, 178, 157, 0.5);
}

.launch-subtitle {
    color: var(--silver-mist);
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 20px;
}

.launch-badge {
    background: var(--emerald-gradient);
    color: var(--deep-midnight);
    padding: 8px 18px;
    border-radius: 12px;
    font-weight: bold;
    box-shadow: 0 0 10px rgba(70, 178, 157, 0.5);
    display: flex;
    align-items: center;
    gap: 8px;
    animation: badgeGlow 2s ease-in-out infinite alternate;
}

.launch-timeline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-lg);
    margin: var(--spacing-2xl) 0;
    flex-wrap: wrap;
}

.timeline-step {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(70, 178, 157, 0.3);
    border-radius: 15px;
    padding: var(--spacing-lg);
    min-width: 150px;
    text-align: center;
    transition: all 0.3s ease;
}

.timeline-step.active {
    border-color: var(--emerald-green);
    background: rgba(70, 178, 157, 0.1);
    box-shadow: 0 0 20px rgba(70, 178, 157, 0.3);
}

.timeline-step.pending {
    opacity: 0.6;
}

.step-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--emerald-green);
    margin: 0 auto var(--spacing-sm);
    box-shadow: 0 0 10px rgba(70, 178, 157, 0.5);
}

.timeline-step.pending .step-dot {
    background: var(--stone-gray);
    box-shadow: none;
}

.step-content h4 {
    color: var(--emerald-green);
    margin-bottom: var(--spacing-xs);
    font-size: 1.1rem;
}

.step-content p {
    color: var(--silver-mist);
    opacity: 0.8;
    margin-bottom: 0;
    font-size: 0.9rem;
}

.timeline-arrow {
    font-size: 1.5rem;
    color: var(--emerald-green);
    opacity: 0.7;
}

.launch-content {
    margin-top: var(--spacing-3xl);
}

.launch-benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
    margin-bottom: var(--spacing-3xl);
}

.launch-benefits-grid .benefit-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(70, 178, 157, 0.3);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    backdrop-filter: blur(10px);
}

.launch-benefits-grid .benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(70, 178, 157, 0.2);
    border-color: var(--emerald-green);
}

.benefit-icon-wrapper {
    margin-bottom: var(--spacing-lg);
}

.benefit-rune {
    font-size: 2.5rem;
    color: var(--emerald-green);
    animation: benefitRuneGlow 3s ease-in-out infinite alternate;
}

@keyframes benefitRuneGlow {
    0% { text-shadow: 0 0 20px rgba(70, 178, 157, 0.5); }
    100% { text-shadow: 0 0 30px rgba(70, 178, 157, 0.8); }
}

.benefit-card h3 {
    color: var(--emerald-green);
    margin-bottom: var(--spacing-sm);
    font-size: 1.3rem;
}

.benefit-card p {
    color: var(--silver-mist);
    opacity: 0.9;
    margin-bottom: 0;
    line-height: 1.6;
}

.launch-pricing-container {
    display: flex;
    justify-content: center;
    margin-top: var(--spacing-2xl);
}

.launch-pricing-container .pricing-card {
    background: rgba(255, 255, 255, 0.08);
    border: 2px solid var(--emerald-green);
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
    max-width: 500px;
    width: 100%;
    text-align: center;
}

.launch-pricing-container .price-display {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 15px;
    margin-bottom: var(--spacing-lg);
}

.launch-pricing-container .original-price {
    text-decoration: line-through;
    opacity: 0.7;
    margin-right: 7px;
    font-size: 1.4rem;
    color: var(--stone-gray);
}

.launch-pricing-container .launch-price {
    font-size: 2.2rem;
    font-weight: bold;
    color: var(--emerald-green);
}

.launch-pricing-container .price-period {
    color: var(--silver-mist);
    opacity: 0.8;
    font-size: 1.1rem;
}

.launch-pricing-container .savings-badge {
    text-align: center;
    background: var(--emerald-gradient);
    color: var(--deep-midnight);
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 1rem;
    margin-top: 15px;
    font-weight: 600;
    animation: savingsBadgeGlow 2s ease-in-out infinite alternate;
}

@keyframes savingsBadgeGlow {
    0% { box-shadow: 0 0 10px rgba(70, 178, 157, 0.3); }
    100% { box-shadow: 0 0 20px rgba(70, 178, 157, 0.5); }
}

/* Launch Promise Section */
.launch-promise {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(70, 178, 157, 0.3);
    border-radius: 12px;
    padding: var(--spacing-lg);
    margin: var(--spacing-lg) 0;
    text-align: center;
}

.promise-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-sm);
}

.promise-icon {
    font-size: 1.5rem;
    color: var(--emerald-green);
}

.promise-header h4 {
    color: var(--emerald-green);
    margin-bottom: 0;
    font-size: 1.2rem;
}

.launch-promise p {
    color: var(--silver-mist);
    opacity: 0.9;
    margin-bottom: 0;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Launch Card Header */
.card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: var(--spacing-lg);
    padding-bottom: var(--spacing-md);
    border-bottom: 1px solid rgba(70, 178, 157, 0.2);
}

.header-content {
    flex: 1;
    text-align: left;
}

.header-content h3 {
    color: var(--emerald-green);
    margin-bottom: var(--spacing-xs);
    font-size: 1.4rem;
}

.launch-status {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    font-size: 0.9rem;
    color: var(--silver-mist);
    opacity: 0.8;
}

.status-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--emerald-green);
    box-shadow: 0 0 8px rgba(70, 178, 157, 0.6);
    animation: statusPulse 2s ease-in-out infinite;
}

@keyframes statusPulse {
    0%, 100% { 
        opacity: 1; 
        transform: scale(1);
    }
    50% { 
        opacity: 0.6; 
        transform: scale(0.8);
    }
}

.limited-badge {
    background: linear-gradient(135deg, #b33333 0%, #c44444 100%);
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    animation: limitedBadgePulse 2s ease-in-out infinite alternate;
}

@keyframes limitedBadgePulse {
    0% { box-shadow: 0 0 10px rgba(255, 68, 68, 0.3); }
    100% { box-shadow: 0 0 20px rgba(255, 68, 68, 0.6); }
}

.badge-flame {
    font-size: 0.9rem;
    animation: flameFlicker 1s ease-in-out infinite alternate;
}

@keyframes flameFlicker {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}

/* Price Section */
.price-section {
    text-align: center;
    margin: var(--spacing-lg) 0;
}

/* Features List */
.features-list {
    text-align: left;
    margin: var(--spacing-lg) 0;
}

.features-list .feature-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-xs) 0;
    border-bottom: 1px solid rgba(70, 178, 157, 0.1);
}

.features-list .feature-item:last-child {
    border-bottom: none;
}

.feature-check {
    color: var(--emerald-green);
    font-weight: bold;
    font-size: 1.1rem;
}

.features-list .feature-item span:last-child {
    color: var(--silver-mist);
    opacity: 0.9;
    font-size: 0.9rem;
}

/* Payment Section */
.payment-section {
    margin-top: var(--spacing-xl);
}

.payment-buttons {
    display: flex;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.payment-btn {
    flex: 1;
    padding: var(--spacing-lg);
    border: 2px solid var(--emerald-green);
    border-radius: 12px;
    background: rgba(70, 178, 157, 0.1);
    color: var(--emerald-green);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
}

.payment-btn:hover {
    background: var(--emerald-green);
    color: var(--deep-midnight);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(70, 178, 157, 0.4);
}

.payment-btn.crypto-payment {
    border-color: var(--nordic-gold);
    color: var(--nordic-gold);
    background: rgba(212, 175, 55, 0.1);
}

.payment-btn.crypto-payment:hover {
    background: var(--nordic-gold);
    color: var(--deep-midnight);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

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

.payment-security {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-md);
}

.security-icons {
    display: flex;
    gap: var(--spacing-xs);
}

.security-icon {
    font-size: 1.1rem;
    color: var(--emerald-green);
}

.security-text {
    color: var(--silver-mist);
    opacity: 0.7;
    font-size: 0.8rem;
}

/* Terms Section */
.terms-section {
    margin-top: var(--spacing-lg);
    text-align: center;
}

.terms-link {
    background: transparent;
    border: none;
    color: var(--silver-mist);
    opacity: 0.7;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-xs);
    margin: 0 auto;
}

.terms-link:hover {
    color: var(--emerald-green);
    opacity: 1;
}

.terms-icon {
    font-size: 0.9rem;
}

/* Guarantee Footer */
.guarantee-footer {
    margin-top: var(--spacing-xl);
    padding-top: var(--spacing-lg);
    border-top: 1px solid rgba(70, 178, 157, 0.2);
}

.guarantee-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-md);
}

.guarantee-icon {
    font-size: 1.5rem;
    color: var(--emerald-green);
}

.guarantee-text {
    text-align: left;
}

.guarantee-main {
    color: var(--emerald-green);
    font-weight: 600;
    font-size: 1rem;
    display: block;
}

.guarantee-sub {
    color: var(--silver-mist);
    opacity: 0.8;
    font-size: 0.8rem;
    display: block;
}

/* Responsive adjustments for launch section */
@media (max-width: 768px) {
    .launch-header {
        flex-direction: column;
        gap: var(--spacing-lg);
        text-align: center;
    }
    
    .launch-icon-container {
        margin-bottom: var(--spacing-md);
    }
    
    .launch-timeline {
        flex-direction: column;
        gap: var(--spacing-md);
    }
    
    .timeline-arrow {
        transform: rotate(90deg);
    }
    
    .launch-benefits-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .payment-buttons {
        flex-direction: column;
    }
    
    .card-header {
        flex-direction: column;
        gap: var(--spacing-md);
        text-align: center;
    }
    
    .guarantee-content {
        flex-direction: column;
        gap: var(--spacing-sm);
        text-align: center;
    }
    
    .guarantee-text {
        text-align: center;
    }
}

/* RuneFlow.co - Coming Soon Page CSS */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  /* Norse Color Palette */
  --deep-midnight: #022b3a;
  --nordic-gold: #d4af37;
  --silver-mist: #e0e1dd;
  --emerald-green: #46b29d;
  --rune-glow: #46b29d;
  
  /* Additional Colors */
  --white: #ffffff;
  --deep-blue: #1a365d;
  --stone-gray: #718096;
  --ice-blue: #f7fafc;
  --primary-gold: #d4af37;
  --border-color: #e2e8f0;
  
  /* Gradients */
  --hero-gradient: linear-gradient(135deg, #022b3a 0%, #0f3a4b 100%);
  --gold-gradient: linear-gradient(135deg, #d4af37 0%, #b8941f 100%);
  --emerald-gradient: linear-gradient(135deg, #46b29d 0%, #3a9688 100%);
  --card-gradient: linear-gradient(135deg, rgba(224, 225, 221, 0.1) 0%, rgba(224, 225, 221, 0.05) 100%);
  --rune-flow: linear-gradient(90deg, #d4af37 0%, #46b29d 50%, #d4af37 100%);
  
  /* Typography */
  --font-norse: 'Cinzel', serif;
  --font-body: 'Inter', sans-serif;
  
  /* Shadows */
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.2);
  --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.3);
  
  /* Spacing */
  --spacing-xs: 0.25rem;
  --spacing-sm: 0.5rem;
  --spacing-md: 1rem;
  --spacing-lg: 1.5rem;
  --spacing-xl: 2rem;
  --spacing-2xl: 3rem;
  --spacing-3xl: 4rem;
}

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

body {
  font-family: var(--font-body);
  line-height: 1.6;
  color: var(--silver-mist);
  background-color: var(--deep-midnight);
  background-image: 
    radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(70, 178, 157, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 40% 80%, rgba(212, 175, 55, 0.05) 0%, transparent 50%);
  background-attachment: fixed;
  min-height: 100vh;
  overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-norse);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: var(--spacing-md);
  color: var(--silver-mist);
  text-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

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

p {
  margin-bottom: var(--spacing-md);
}

a {
  color: var(--nordic-gold);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--emerald-green);
  text-shadow: 0 0 10px rgba(70, 178, 157, 0.5);
}

/* Floating Runes Background */
.floating-runes {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.floating-runes .rune-float {
  position: absolute;
  font-size: 2rem;
  color: var(--nordic-gold);
  opacity: 0.1;
  animation: floatRune 15s ease-in-out infinite;
}

.floating-runes .rune-float:nth-child(1) {
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}

.floating-runes .rune-float:nth-child(2) {
  top: 20%;
  right: 15%;
  animation-delay: -2s;
}

.floating-runes .rune-float:nth-child(3) {
  top: 60%;
  left: 8%;
  animation-delay: -4s;
}

.floating-runes .rune-float:nth-child(4) {
  top: 40%;
  right: 20%;
  animation-delay: -6s;
}

.floating-runes .rune-float:nth-child(5) {
  top: 80%;
  left: 25%;
  animation-delay: -8s;
}

.floating-runes .rune-float:nth-child(6) {
  top: 30%;
  right: 40%;
  animation-delay: -10s;
}

.floating-runes .rune-float:nth-child(7) {
  top: 70%;
  right: 10%;
  animation-delay: -12s;
}

.floating-runes .rune-float:nth-child(8) {
  top: 50%;
  left: 45%;
  animation-delay: -14s;
}

@keyframes floatRune {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
    opacity: 0.1;
  }
  25% {
    transform: translateY(-20px) rotate(5deg);
    opacity: 0.15;
  }
  50% {
    transform: translateY(-10px) rotate(-3deg);
    opacity: 0.2;
  }
  75% {
    transform: translateY(-15px) rotate(2deg);
    opacity: 0.1;
  }
}

/* Glass Window Demo */
.glass-window-section {
  margin-top: var(--spacing-3xl);
  padding: var(--spacing-lg);
  background: rgba(0, 0, 0, 0.25);
  border-radius: var(--spacing-sm);
  box-shadow: var(--shadow-lg);
}
.glass-window-header {
  text-align: center;
}
.glass-window-container {
  position: relative;
  overflow: hidden;
}
.glass-window {
  background: var(--deep-midnight);
  border-radius: var(--spacing-xs);
  box-shadow: var(--shadow-md);
}
.window-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--nordic-gold);
  padding: var(--spacing-xs);
}
.window-controls .control-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin-right: 5px;
}
.window-controls .red { background: #ff5f56; }
.window-controls .yellow { background: #ffbd2e; }
.window-controls .green { background: #27c93f; }
.window-content {
  padding: var(--spacing-lg);
}
.pipeline-step {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--spacing-xs) 0;
  border-bottom: 1px solid var(--border-color);
}
.step-icon {
  font-size: 24px;
  color: var(--primary-gold);
}
.step-info h4 {
  margin: 0;
  color: var(--silver-mist);
}
.step-status {
  font-weight: bold;
  color: var(--emerald-green);
}
.completed .step-status { color: var(--nordic-gold); }
.active .step-status { color: var(--emerald-green); }
.pending .step-status { color: var(--stone-gray); }
.live-stats {
  display: flex;
  justify-content: space-around;
  margin-top: var(--spacing-lg);
}
.stat-item .stat-number {
  font-size: 1.5rem;
  color: var(--nordic-gold);
}
.stat-item .stat-label {
  color: var(--silver-mist);
}

/* Testimonials Section */
.testimonials-section {
  background: var(--deep-blue);
  padding: var(--spacing-3xl) var(--spacing-lg);
  text-align: center;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: var(--spacing-lg);
  margin-top: var(--spacing-lg);
}
.testimonial-card {
  background: var(--card-gradient);
  padding: var(--spacing-md);
  border-radius: var(--spacing-sm);
  box-shadow: var(--shadow-md);
}
.testimonial-content {
  font-style: italic;
}
.testimonial-author {
  margin-top: var(--spacing-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}
.author-avatar {
  font-size: 24px;
  margin-right: var(--spacing-sm);
}
.author-info h4 {
  margin: 0;
  color: var(--nordic-gold);
}
.author-info p {
  margin: 0;
  color: var(--silver-mist);
}

/* Countdown Timer */
.countdown-container {
  margin-top: var(--spacing-md);
  text-align: center;
}
.countdown-timer {
  display: flex;
  justify-content: center;
  gap: var(--spacing-md);
}
.time-unit .time-number {
  font-size: 1.5rem;
  color: var(--nordic-gold);
}
.time-unit .time-label {
  color: var(--silver-mist);
}

/* FAQ Section */
.faq-section {
  margin-top: var(--spacing-3xl);
  padding: var(--spacing-xl);
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.1) 100%);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(10px);
}

.faq-title {
  text-align: center;
  color: var(--nordic-gold);
  font-size: 2.2rem;
  margin-bottom: var(--spacing-2xl);
  text-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}

.faq-container {
  margin-top: var(--spacing-lg);
}

.faq-item {
  margin-bottom: var(--spacing-lg);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(212, 175, 55, 0.1);
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: rgba(212, 175, 55, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.1);
}

.faq-question {
  cursor: pointer;
  padding: var(--spacing-lg);
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, rgba(212, 175, 55, 0.02) 100%);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
  position: relative;
}

.faq-question::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 4px;
  background: var(--gold-gradient);
  transform: scaleY(0);
  transition: transform 0.3s ease;
}

.faq-question:hover {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(212, 175, 55, 0.05) 100%);
}

.faq-question:hover::before {
  transform: scaleY(1);
}

.faq-question h4 {
  color: var(--nordic-gold);
  margin-bottom: 0;
  font-size: 1.1rem;
  font-weight: 600;
  flex: 1;
  padding-right: var(--spacing-md);
}

.faq-toggle {
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--nordic-gold);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.2);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.02);
  border-top: 1px solid rgba(212, 175, 55, 0.1);
  transition: all 0.4s ease;
}

.faq-answer-content {
  padding: var(--spacing-lg);
  padding-top: var(--spacing-md);
}

.faq-answer p {
  color: var(--silver-mist);
  opacity: 0.9;
  line-height: 1.7;
  margin-bottom: 0;
  font-size: 0.95rem;
}

.faq-item.open .faq-answer {
  max-height: 200px;
}

.faq-item.open .faq-toggle {
  transform: rotate(45deg);
  background: rgba(212, 175, 55, 0.2);
  border-color: rgba(212, 175, 55, 0.4);
}

.faq-item.open .faq-question::before {
  transform: scaleY(1);
}

/* What's Inside Preview */
.whats-inside-section {
  margin-top: var(--spacing-3xl);
  padding: var(--spacing-xl);
  background: var(--card-gradient);
  border-radius: var(--spacing-sm);
  box-shadow: var(--shadow-md);
}
.inside-title {
  text-align: center;
}
.inside-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: var(--spacing-md);
  margin-top: var(--spacing-lg);
}
.inside-category {
  text-align: center;
}
.category-preview {
  padding: var(--spacing-md);
  background: var(--deep-blue);
  border-radius: var(--spacing-xs);
  box-shadow: var(--shadow-sm);
}
.preview-icon {
  font-size: 36px;
}
.preview-count {
  font-weight: bold;
  color: var(--nordic-gold);
}

/* Risk Reversal Section */
.risk-reversal-section {
  margin-top: var(--spacing-3xl);
  padding: var(--spacing-3xl);
  background: linear-gradient(135deg, rgba(70, 178, 157, 0.12) 0%, rgba(70, 178, 157, 0.06) 50%, rgba(70, 178, 157, 0.08) 100%);
  border: 2px solid rgba(70, 178, 157, 0.3);
  border-radius: 25px;
  box-shadow: 0 0 40px rgba(70, 178, 157, 0.2);
  position: relative;
  overflow: hidden;
  animation: riskSectionGlow 4s ease-in-out infinite alternate;
}

.risk-reversal-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(70, 178, 157, 0.03) 0%, transparent 70%);
  animation: rotateBgReverse 25s linear infinite;
  pointer-events: none;
  z-index: 0;
}

@keyframes riskSectionGlow {
  0% { box-shadow: 0 0 30px rgba(70, 178, 157, 0.2); }
  100% { box-shadow: 0 0 50px rgba(70, 178, 157, 0.4); }
}

@keyframes rotateBgReverse {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(-360deg); }
}

.risk-reversal-container {
  position: relative;
  z-index: 1;
  max-width: 1000px;
  margin: 0 auto;
}

.risk-reversal-header {
  text-align: center;
  margin-bottom: var(--spacing-3xl);
}

.risk-shield-icon {
  margin-bottom: var(--spacing-lg);
  display: inline-block;
}

.shield-rune {
  font-size: 4rem;
  color: var(--emerald-green);
  display: block;
  animation: shieldPulse 3s ease-in-out infinite alternate;
  text-shadow: 0 0 30px rgba(70, 178, 157, 0.6);
}

@keyframes shieldPulse {
  0% { 
    text-shadow: 0 0 30px rgba(70, 178, 157, 0.6);
    transform: scale(1);
  }
  100% { 
    text-shadow: 0 0 50px rgba(70, 178, 157, 0.8), 0 0 70px rgba(70, 178, 157, 0.4);
    transform: scale(1.05);
  }
}

.risk-reversal-title {
  font-size: 2.5rem;
  color: var(--emerald-green);
  margin-bottom: var(--spacing-md);
  text-shadow: 0 0 20px rgba(70, 178, 157, 0.5);
  font-family: var(--font-norse);
}

.risk-reversal-subtitle {
  font-size: 1.2rem;
  color: var(--silver-mist);
  opacity: 0.9;
  margin-bottom: 0;
  font-weight: 300;
}

.risk-reversal-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--spacing-xl);
  margin-bottom: var(--spacing-3xl);
}

.reversal-item {
  background: rgba(255, 255, 255, 0.08);
  border: 2px solid rgba(70, 178, 157, 0.2);
  border-radius: 20px;
  padding: var(--spacing-2xl);
  text-align: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(15px);
  position: relative;
  overflow: hidden;
}

.reversal-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--emerald-green), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.reversal-item:hover {
  transform: translateY(-8px);
  border-color: var(--emerald-green);
  box-shadow: 0 15px 35px rgba(70, 178, 157, 0.3);
  background: rgba(255, 255, 255, 0.12);
}

.reversal-item:hover::before {
  transform: translateX(100%);
}

.reversal-icon-container {
  position: relative;
  display: inline-block;
  margin-bottom: var(--spacing-lg);
}

.reversal-icon {
  font-size: 3rem;
  color: var(--emerald-green);
  background: rgba(70, 178, 157, 0.1);
  border: 2px solid rgba(70, 178, 157, 0.3);
  border-radius: 50%;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-shadow: 0 0 20px rgba(70, 178, 157, 0.5);
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}

.reversal-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(70, 178, 157, 0.2) 0%, transparent 70%);
  opacity: 0;
  transition: all 0.3s ease;
  z-index: 1;
}

.reversal-item:hover .reversal-icon {
  border-color: var(--emerald-green);
  text-shadow: 0 0 30px rgba(70, 178, 157, 0.8);
  transform: scale(1.1);
}

.reversal-item:hover .reversal-glow {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.5);
}

.reversal-content {
  text-align: center;
}

.reversal-content h4 {
  color: var(--emerald-green);
  margin-bottom: var(--spacing-sm);
  font-size: 1.3rem;
  font-weight: 600;
  text-shadow: 0 0 10px rgba(70, 178, 157, 0.3);
}

.reversal-content p {
  color: var(--silver-mist);
  opacity: 0.9;
  margin-bottom: var(--spacing-md);
  line-height: 1.6;
  font-size: 0.95rem;
}

.reversal-badge {
  background: linear-gradient(135deg, var(--emerald-green) 0%, #3a9688 100%);
  color: var(--deep-midnight);
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-block;
  animation: badgeGlow 2s ease-in-out infinite alternate;
}

@keyframes badgeGlow {
  0% { box-shadow: 0 0 10px rgba(70, 178, 157, 0.3); }
  100% { box-shadow: 0 0 20px rgba(70, 178, 157, 0.5); }
}

.risk-reversal-footer {
  text-align: center;
  padding-top: var(--spacing-xl);
  border-top: 2px solid rgba(70, 178, 157, 0.2);
}

.guarantee-seal {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-lg);
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(70, 178, 157, 0.3);
  border-radius: 15px;
  padding: var(--spacing-xl);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.guarantee-seal:hover {
  border-color: var(--emerald-green);
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
}

.seal-icon {
  font-size: 2.5rem;
  color: var(--emerald-green);
  text-shadow: 0 0 15px rgba(70, 178, 157, 0.5);
  animation: sealFloat 3s ease-in-out infinite alternate;
}

@keyframes sealFloat {
  0% { transform: translateY(0px); }
  100% { transform: translateY(-5px); }
}

.seal-text {
  text-align: left;
}

.seal-text h5 {
  color: var(--emerald-green);
  margin-bottom: var(--spacing-xs);
  font-size: 1.2rem;
  font-weight: 600;
  text-shadow: 0 0 10px rgba(70, 178, 157, 0.3);
}

.seal-text p {
  color: var(--silver-mist);
  opacity: 0.9;
  margin-bottom: 0;
  font-size: 0.9rem;
  line-height: 1.4;
}

/* Main Container */
.hero-container {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 2rem 0;
}

.content-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-lg);
  width: 100%;
}

/* Brand Section */
.brand {
  text-align: center;
  margin-bottom: var(--spacing-3xl);
}

.logo {
  font-size: 4rem;
  font-weight: 700;
  color: var(--nordic-gold);
  text-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
  margin-bottom: var(--spacing-sm);
}

.logo span {
  color: var(--emerald-green);
  text-shadow: 0 0 20px rgba(70, 178, 157, 0.5);
}

.tagline {
  font-size: 1.2rem;
  color: var(--silver-mist);
  opacity: 0.8;
  font-weight: 300;
  letter-spacing: 1px;
  margin-bottom: 0;
}

/* Hero Content */
.hero-content {
  text-align: center;
  margin-bottom: var(--spacing-3xl);
}

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  background: var(--rune-flow);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: var(--spacing-lg);
  line-height: 1.1;
}

.hero-description {
  font-size: 1.3rem;
  color: var(--silver-mist);
  opacity: 0.9;
  max-width: 800px;
  margin: 0 auto var(--spacing-2xl);
  line-height: 1.6;
}

.hero-description strong {
  color: var(--nordic-gold);
  font-weight: 600;
}

/* Benefits Grid */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--spacing-xl);
  margin: var(--spacing-3xl) 0;
}

.benefit-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 15px;
  padding: var(--spacing-xl);
  text-align: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.benefit-item:hover {
  transform: translateY(-5px);
  border-color: var(--nordic-gold);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

.benefit-icon {
  font-size: 3rem;
  margin-bottom: var(--spacing-md);
  display: block;
}

/* Stylized Rune Icons */
.rune-icon {
  font-family: var(--font-norse);
  font-weight: 700;
  text-shadow: 0 0 20px currentColor;
  position: relative;
  display: inline-block;
  transition: all 0.3s ease;
}

.rune-icon::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 120%;
  height: 120%;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, currentColor 0%, transparent 70%);
  opacity: 0.2;
  z-index: -1;
  transition: all 0.3s ease;
}

.rune-icon:hover::before {
  opacity: 0.4;
  transform: translate(-50%, -50%) scale(1.2);
}

/* Individual rune colors and effects */
.fire-rune {
  color: #a0714a;
  animation: fireGlow 2s ease-in-out infinite alternate;
}

.lightning-rune {
  color: #4ecdc4;
  animation: lightningPulse 1.5s ease-in-out infinite alternate;
}

.target-rune {
  color: #ffd23f;
  animation: targetShine 2.5s ease-in-out infinite alternate;
}

.modal-rune {
  color: #a0714a;
  font-size: 1.2em;
  margin-right: 0.5rem;
  animation: modalRuneGlow 2s ease-in-out infinite alternate;
}

/* Rune animations */
@keyframes fireGlow {
  0% {
    text-shadow: 0 0 20px #a0714a, 0 0 30px #a0714a, 0 0 40px #a0714a;
  }
  100% {
    text-shadow: 0 0 30px #a0714a, 0 0 40px #a0714a, 0 0 50px #a0714a;
  }
}

@keyframes lightningPulse {
  0% {
    text-shadow: 0 0 20px #4ecdc4, 0 0 30px #4ecdc4;
    transform: scale(1);
  }
  100% {
    text-shadow: 0 0 30px #4ecdc4, 0 0 40px #4ecdc4, 0 0 50px #4ecdc4;
    transform: scale(1.05);
  }
}

@keyframes targetShine {
  0% {
    text-shadow: 0 0 20px #ffd23f, 0 0 30px #ffd23f;
    color: #ffd23f;
  }
  100% {
    text-shadow: 0 0 30px #ffd23f, 0 0 40px #ffd23f, 0 0 50px #ffd23f;
    color: #ffeb3b;
  }
}

@keyframes modalRuneGlow {
  0% {
    text-shadow: 0 0 15px #a0714a;
  }
  100% {
    text-shadow: 0 0 25px #a0714a, 0 0 35px #a0714a;
  }
}

/* Enhanced hover effects for benefit items with rune icons */
.benefit-item:hover .fire-rune {
  animation: fireGlow 0.5s ease-in-out infinite alternate;
  transform: scale(1.1);
}

.benefit-item:hover .lightning-rune {
  animation: lightningPulse 0.5s ease-in-out infinite alternate;
  transform: scale(1.1);
}

.benefit-item:hover .target-rune {
  animation: targetShine 0.5s ease-in-out infinite alternate;
  transform: scale(1.1);
}

.benefit-item h3 {
  color: var(--nordic-gold);
  margin-bottom: var(--spacing-sm);
  font-size: 1.3rem;
}

.benefit-item p {
  color: var(--silver-mist);
  opacity: 0.8;
  margin-bottom: 0;
}

/* Email Capture Section */
.email-capture-section {
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid var(--nordic-gold);
  border-radius: 20px;
  padding: var(--spacing-3xl);
  margin: var(--spacing-3xl) 0;
  backdrop-filter: blur(10px);
  animation: captureGlow 3s ease-in-out infinite alternate;
}

@keyframes captureGlow {
  0% { box-shadow: 0 0 20px rgba(212, 175, 55, 0.3); }
  100% { box-shadow: 0 0 30px rgba(212, 175, 55, 0.5); }
}

.capture-header {
  text-align: center;
  margin-bottom: var(--spacing-2xl);
}

.starter-rune-icon {
  margin-bottom: var(--spacing-lg);
}

.starter-rune {
  font-size: 4rem;
  color: var(--nordic-gold);
  display: block;
  animation: starterRuneGlow 2s ease-in-out infinite alternate;
}

@keyframes starterRuneGlow {
  0% { 
    text-shadow: 0 0 30px var(--nordic-gold); 
    transform: scale(1);
  }
  100% { 
    text-shadow: 0 0 50px var(--nordic-gold), 0 0 70px var(--nordic-gold); 
    transform: scale(1.05);
  }
}

.capture-title {
  color: var(--nordic-gold);
  margin-bottom: var(--spacing-md);
  font-size: 2.2rem;
  line-height: 1.2;
}

.capture-subtitle {
  color: var(--silver-mist);
  opacity: 0.9;
  font-size: 1.1rem;
  margin-bottom: 0;
}

/* Starter Rune Preview */
.starter-rune-preview {
  margin: var(--spacing-2xl) 0;
  display: flex;
  justify-content: center;
}

.rune-preview-card {
  background: rgba(255, 255, 255, 0.08);
  border: 2px solid rgba(212, 175, 55, 0.4);
  border-radius: 15px;
  padding: var(--spacing-xl);
  max-width: 500px;
  width: 100%;
  backdrop-filter: blur(15px);
  transition: all 0.3s ease;
  animation: previewFloat 4s ease-in-out infinite alternate;
}

@keyframes previewFloat {
  0% { transform: translateY(0px); }
  100% { transform: translateY(-5px); }
}

.rune-preview-card:hover {
  transform: translateY(-5px);
  border-color: var(--nordic-gold);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.preview-header {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-lg);
}

.preview-rune {
  font-size: 2.5rem;
  color: var(--nordic-gold);
  animation: previewRunePulse 3s ease-in-out infinite alternate;
}

@keyframes previewRunePulse {
  0% { text-shadow: 0 0 20px var(--nordic-gold); }
  100% { text-shadow: 0 0 30px var(--nordic-gold), 0 0 40px var(--nordic-gold); }
}

.preview-info {
  flex: 1;
}

.preview-info h4 {
  color: var(--nordic-gold);
  margin-bottom: var(--spacing-xs);
  font-size: 1.3rem;
}

.preview-info p {
  color: var(--silver-mist);
  opacity: 0.8;
  margin-bottom: 0;
  font-size: 0.9rem;
}

.preview-value {
  text-align: right;
}

.value-badge {
  background: var(--emerald-gradient);
  color: var(--deep-midnight);
  padding: 0.4rem 0.8rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  animation: valueBadgeGlow 2s ease-in-out infinite alternate;
}

@keyframes valueBadgeGlow {
  0% { box-shadow: 0 0 10px rgba(70, 178, 157, 0.3); }
  100% { box-shadow: 0 0 20px rgba(70, 178, 157, 0.6); }
}

.preview-features {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
}

.feature-item {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  padding: var(--spacing-sm);
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.feature-item:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(5px);
}

.feature-icon {
  font-size: 1.2rem;
  width: 24px;
  text-align: center;
}

.feature-item span:last-child {
  color: var(--silver-mist);
  opacity: 0.9;
  font-size: 0.9rem;
}

.email-form {
  max-width: 600px;
  margin: 0 auto;
}

.form-group {
  display: flex;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-md);
}

.form-group input {
  flex: 1;
  padding: 1rem var(--spacing-lg);
  border: 2px solid rgba(212, 175, 55, 0.3);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--silver-mist);
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.form-group input:focus {
  outline: none;
  border-color: var(--nordic-gold);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
}

.form-group input::placeholder {
  color: rgba(224, 225, 221, 0.5);
}

.submit-btn {
  padding: 1rem var(--spacing-xl);
  background: linear-gradient(135deg, #8b6f47 0%, #a0825c 100%);
  color: #f5f5f5;
  border: none;
  border-radius: 10px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  min-width: 200px;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(139, 111, 71, 0.4);
  background: linear-gradient(135deg, #9c7a54 0%, #b5936b 100%);
}

.submit-btn:active {
  transform: translateY(0);
}

.btn-loader {
  display: none;
  animation: spin 1s linear infinite;
}

.submit-btn.loading .btn-text {
  display: none;
}

.submit-btn.loading .btn-loader {
  display: inline-block;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.form-disclaimer {
  text-align: center;
  color: var(--silver-mist);
  opacity: 0.7;
  font-size: 0.9rem;
  margin-bottom: 0;
}

.disclaimer-highlight {
  color: var(--emerald-green);
  font-weight: 600;
  opacity: 1;
}

.starter-btn {
  background: var(--emerald-gradient);
  animation: starterBtnGlow 2s ease-in-out infinite alternate;
}

@keyframes starterBtnGlow {
  0% { box-shadow: 0 5px 15px rgba(70, 178, 157, 0.4); }
  100% { box-shadow: 0 5px 20px rgba(70, 178, 157, 0.6); }
}

.starter-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(70, 178, 157, 0.5);
}

/* Social Proof */
.social-proof {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--spacing-xl);
  margin: var(--spacing-3xl) 0;
}

.proof-item {
  text-align: center;
  padding: var(--spacing-lg);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(70, 178, 157, 0.3);
}

.proof-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--emerald-green);
  font-family: var(--font-norse);
  text-shadow: 0 0 10px rgba(70, 178, 157, 0.5);
}

.proof-label {
  color: var(--silver-mist);
  opacity: 0.8;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Timeline Section */
.timeline-section {
  margin: var(--spacing-3xl) 0;
}

.timeline-title {
  text-align: center;
  color: var(--nordic-gold);
  margin-bottom: var(--spacing-2xl);
  font-size: 2.5rem;
}

.timeline {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--emerald-gradient);
  transform: translateX(-50%);
}

.timeline-item {
  position: relative;
  margin: var(--spacing-2xl) 0;
  padding: 0 var(--spacing-xl);
}

.timeline-item:nth-child(odd) .timeline-content {
  margin-left: 0;
  margin-right: 50%;
  text-align: right;
}

.timeline-item:nth-child(even) .timeline-content {
  margin-left: 50%;
  margin-right: 0;
  text-align: left;
}

.timeline-dot {
  position: absolute;
  left: 50%;
  top: 1rem;
  width: 20px;
  height: 20px;
  background: var(--nordic-gold);
  border-radius: 50%;
  transform: translateX(-50%);
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.timeline-item.active .timeline-dot {
  background: var(--emerald-green);
  box-shadow: 0 0 20px rgba(70, 178, 157, 0.8);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: translateX(-50%) scale(1); }
  50% { transform: translateX(-50%) scale(1.2); }
}

.timeline-content {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 15px;
  padding: var(--spacing-lg);
  backdrop-filter: blur(10px);
}

.timeline-content h4 {
  color: var(--nordic-gold);
  margin-bottom: var(--spacing-sm);
  font-size: 1.3rem;
}

.timeline-content p {
  color: var(--silver-mist);
  opacity: 0.8;
  margin-bottom: var(--spacing-sm);
}

.timeline-status {
  display: inline-block;
  padding: 0.3rem 0.8rem;
  background: var(--emerald-gradient);
  color: var(--deep-midnight);
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.timeline-date {
  color: var(--nordic-gold);
  font-weight: 600;
  font-size: 0.9rem;
}

/* Enhanced Modal Styles */
.modal {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(15px);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  overflow-y: auto;
  padding: var(--spacing-lg);
}

.modal.show {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  background: linear-gradient(145deg, #022b3a 0%, #0f3a4b 100%);
  border: 3px solid transparent;
  background-clip: padding-box;
  border-radius: 25px;
  padding: var(--spacing-3xl);
  max-width: 600px;
  width: 95%;
  text-align: center;
  box-shadow: 
    0 0 60px rgba(212, 175, 55, 0.4),
    0 0 120px rgba(70, 178, 157, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transform: scale(0.7) translateY(50px) rotateX(15deg);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(20px);
}

/* Animated border gradient */
.modal-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 25px;
  padding: 3px;
  background: linear-gradient(45deg, 
    var(--nordic-gold) 0%, 
    var(--emerald-green) 25%, 
    var(--nordic-gold) 50%, 
    var(--emerald-green) 75%, 
    var(--nordic-gold) 100%);
  background-size: 400% 400%;
  animation: gradientBorder 3s ease infinite;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: subtract;
  -webkit-mask-composite: source-out;
  z-index: -1;
}

@keyframes gradientBorder {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* Floating particles effect */
.modal-content::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.03) 1px, transparent 1px);
  background-size: 30px 30px;
  animation: floatParticles 20s linear infinite;
  pointer-events: none;
  z-index: -1;
}

@keyframes floatParticles {
  0% { transform: translate(0, 0) rotate(0deg); }
  100% { transform: translate(-30px, -30px) rotate(360deg); }
}

.modal.show .modal-content {
  transform: scale(1) translateY(0) rotateX(0deg);
}

.modal-content h3 {
  color: var(--nordic-gold);
  margin-bottom: var(--spacing-lg);
  font-size: 2.2rem;
  text-shadow: 0 0 30px rgba(212, 175, 55, 0.6);
  position: relative;
  z-index: 1;
}

.modal-content p {
  color: var(--silver-mist);
  margin-bottom: var(--spacing-xl);
  line-height: 1.7;
  font-size: 1.1rem;
  opacity: 0.95;
  position: relative;
  z-index: 1;
}

.modal-close {
  padding: 1rem var(--spacing-xl);
  background: var(--gold-gradient);
  color: var(--deep-midnight);
  border: none;
  border-radius: 15px;
  font-size: 1.2rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
  z-index: 1;
}

.modal-close::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s;
}

.modal-close:hover::before {
  left: 100%;
}

.modal-close:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 12px 35px rgba(212, 175, 55, 0.5);
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Download Success Modal Styles */
.download-success {
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 12px;
  padding: 1.5rem;
  margin: 1rem 0;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.download-preview {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex: 1;
}

.download-rune {
  font-size: 2.5rem;
  color: var(--nordic-gold);
  filter: drop-shadow(0 0 15px rgba(212, 175, 55, 0.6));
  animation: runeGlow 3s ease-in-out infinite alternate;
}

.download-preview h4 {
  font-family: var(--font-norse);
  color: var(--nordic-gold);
  margin: 0;
  font-size: 1.1rem;
}

@keyframes runeGlow {
  0% {
    text-shadow: 0 0 15px var(--nordic-gold);
    transform: scale(1);
  }
  100% {
    text-shadow: 0 0 25px var(--nordic-gold), 0 0 35px var(--nordic-gold);
    transform: scale(1.02);
  }
}

.download-preview p {
  color: var(--silver-mist);
  margin: 0;
  font-size: 0.9rem;
}

.download-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.download-btn {
  background: var(--gold-gradient);
  color: var(--deep-midnight);
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 0.9rem;
  display: inline-block;
}

.download-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.download-note {
  font-size: 0.8rem;
  color: var(--silver-mist);
  margin: 0;
  opacity: 0.8;
}

@media (max-width: 768px) {
  .download-success {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
  
  .download-preview {
    flex-direction: column;
    text-align: center;
  }
}

/* Footer */
.site-footer {
  margin-top: var(--spacing-3xl);
  padding-top: var(--spacing-xl);
  border-top: 1px solid rgba(212, 175, 55, 0.3);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--spacing-md);
}

.footer-content p {
  color: var(--silver-mist);
  opacity: 0.7;
  margin-bottom: 0;
  font-size: 0.9rem;
}

.social-links {
  display: flex;
  gap: var(--spacing-lg);
}

.social-link {
  color: var(--nordic-gold);
  font-weight: 500;
  transition: all 0.3s ease;
}

.social-link:hover {
  color: var(--emerald-green);
  transform: translateY(-2px);
}

/* Blind Founder Section */
.blind-founder-section {
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.12) 0%, rgba(255, 107, 53, 0.06) 50%, rgba(255, 107, 53, 0.08) 100%);
  border: 2px solid #ff6b35;
  border-radius: 25px;
  padding: var(--spacing-3xl);
  margin: var(--spacing-3xl) 0;
  animation: founderGlow 4s ease-in-out infinite alternate;
  position: relative;
  overflow: hidden;
}

.blind-founder-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 107, 53, 0.03) 0%, transparent 70%);
  animation: rotateBg 20s linear infinite;
  pointer-events: none;
  z-index: 0;
}

.blind-founder-section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 80% 20%, rgba(212, 175, 55, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 20% 80%, rgba(70, 178, 157, 0.03) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

@keyframes rotateBg {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.founder-container {
  position: relative;
  z-index: 1;
}

@keyframes founderGlow {
  0% { box-shadow: 0 0 30px rgba(255, 107, 53, 0.3); }
  100% { box-shadow: 0 0 50px rgba(255, 107, 53, 0.6); }
}

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

.founder-header {
  text-align: center;
  margin-bottom: var(--spacing-2xl);
}

.founder-rune {
  font-size: 4rem;
  color: #ff6b35;
  display: block;
  margin-bottom: var(--spacing-md);
  animation: founderRuneGlow 3s ease-in-out infinite alternate;
}

@keyframes founderRuneGlow {
  0% { text-shadow: 0 0 30px #ff6b35; }
  100% { text-shadow: 0 0 50px #ff6b35, 0 0 70px #ff6b35; }
}

.founder-title {
  font-size: 2.5rem;
  color: #ff6b35;
  margin-bottom: var(--spacing-md);
  text-shadow: 0 0 20px rgba(255, 107, 53, 0.5);
}

.founder-subtitle {
  font-size: 1.2rem;
  color: var(--silver-mist);
  opacity: 0.9;
  margin-bottom: 0;
}

.founder-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-2xl);
  margin-bottom: var(--spacing-2xl);
}

.founder-benefits {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-lg);
}

.benefit-highlight {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
  padding: var(--spacing-lg);
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  border: 1px solid rgba(255, 107, 53, 0.3);
  transition: all 0.3s ease;
}

.benefit-highlight:hover {
  border-color: #ff6b35;
  transform: translateY(-2px);
}

.highlight-icon {
  font-size: 2rem;
  color: #ff6b35;
}

.highlight-content h3 {
  color: #ff6b35;
  margin-bottom: var(--spacing-xs);
  font-size: 1.1rem;
}

.highlight-content p {
  color: var(--silver-mist);
  opacity: 0.8;
  margin-bottom: 0;
  font-size: 0.9rem;
}

.founder-pricing {
  display: flex;
  justify-content: center;
}

.pricing-card {
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid #ff6b35;
  border-radius: 20px;
  padding: var(--spacing-2xl);
  text-align: center;
  width: 100%;
  max-width: 400px;
  backdrop-filter: blur(10px);
}

.pricing-card h3 {
  color: #ff6b35;
  margin-bottom: var(--spacing-lg);
  font-size: 1.5rem;
}

.price-display {
  margin-bottom: var(--spacing-xl);
}

.original-price {
  display: block;
  color: var(--silver-mist);
  opacity: 0.6;
  text-decoration: line-through;
  font-size: 1.2rem;
  margin-bottom: var(--spacing-xs);
}

.founder-price {
  display: block;
  color: #ff6b35;
  font-size: 3rem;
  font-weight: 700;
  font-family: var(--font-norse);
  text-shadow: 0 0 20px rgba(255, 107, 53, 0.5);
  margin-bottom: var(--spacing-xs);
}

.savings {
  display: inline-block;
  background: var(--emerald-gradient);
  color: var(--deep-midnight);
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.alternative-pricing {
  margin: var(--spacing-lg) 0;
  padding: var(--spacing-md);
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  border: 1px solid rgba(212, 175, 55, 0.2);
}

.alt-option {
  color: var(--silver-mist);
  font-size: 0.9rem;
  margin-bottom: var(--spacing-sm);
  text-align: center;
  opacity: 0.9;
}

.subscription-pricing {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--spacing-md);
}

.sub-original {
  color: var(--silver-mist);
  opacity: 0.6;
  text-decoration: line-through;
  font-size: 1rem;
}

.sub-founder {
  color: var(--nordic-gold);
  font-size: 1.5rem;
  font-weight: 700;
  font-family: var(--font-norse);
  text-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
}

.beta-access-notice {
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.15) 0%, rgba(255, 107, 53, 0.08) 100%);
  border: 2px solid #ff6b35;
  border-radius: 12px;
  padding: var(--spacing-lg);
  margin: var(--spacing-lg) 0;
  text-align: center;
  animation: betaGlow 2s ease-in-out infinite alternate;
}

@keyframes betaGlow {
  0% { 
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.3); 
    border-color: #ff6b35;
  }
  100% { 
    box-shadow: 0 0 30px rgba(255, 107, 53, 0.5); 
    border-color: #ff8c35;
  }
}

.beta-badge {
  background: linear-gradient(135deg, #ff6b35 0%, #ff8c35 100%);
  color: var(--deep-midnight);
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: var(--spacing-sm);
  display: inline-block;
  animation: badgePulse 2s ease-in-out infinite alternate;
}

@keyframes badgePulse {
  0% { transform: scale(1); }
  100% { transform: scale(1.02); }
}

.beta-description {
  color: var(--silver-mist);
  font-size: 0.9rem;
  margin: 0;
  line-height: 1.4;
  opacity: 0.9;
}

.templates-breakdown {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 15px;
  padding: var(--spacing-xl);
  margin: var(--spacing-lg) 0;
}

.breakdown-title {
  color: var(--nordic-gold);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: var(--spacing-lg);
  text-align: center;
  font-family: var(--font-norse);
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-2xl);
}

.category-item {
  display: flex;
  align-items: center;
  gap: var(--spacing-lg);
  padding: var(--spacing-lg);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
  border: 1px solid rgba(212, 175, 55, 0.15);
  border-radius: 15px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.category-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold-gradient);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.category-item:hover {
  border-color: rgba(212, 175, 55, 0.4);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.06) 100%);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.15);
}

.category-item:hover::before {
  transform: scaleX(1);
}

.category-icon {
  font-size: 1.8rem;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(212, 175, 55, 0.1);
  border-radius: 8px;
  flex-shrink: 0;
  font-family: var(--font-norse);
  font-weight: 600;
  color: var(--nordic-gold);
  text-shadow: 0 0 10px rgba(212, 175, 55, 0.4);
  transition: all 0.3s ease;
  position: relative;
}

.category-icon::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 120%;
  height: 120%;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
  opacity: 0;
  transition: all 0.3s ease;
  z-index: -1;
}

.category-item:hover .category-icon::before {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.2);
}

.category-item:hover .category-icon {
  text-shadow: 0 0 15px rgba(212, 175, 55, 0.8);
  transform: scale(1.1);
}

.category-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.category-name {
  font-weight: 600;
  color: var(--nordic-gold);
  font-size: 0.9rem;
  line-height: 1.2;
}

.category-count {
  font-size: 0.8rem;
  color: var(--silver-mist);
  opacity: 0.8;
  font-weight: 500;
}

.category-creds {
  font-size: 0.75rem;
  color: var(--silver-mist);
  opacity: 0.6;
  line-height: 1.3;
}

.credentials-summary {
  border-top: 2px solid rgba(212, 175, 55, 0.2);
  padding-top: var(--spacing-xl);
  margin-top: var(--spacing-xl);
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, transparent 100%);
  border-radius: 0 0 15px 15px;
  padding: var(--spacing-xl);
}

.credentials-summary h5 {
  color: var(--nordic-gold);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: var(--spacing-lg);
  font-family: var(--font-norse);
  text-align: center;
  text-shadow: 0 0 10px rgba(212, 175, 55, 0.4);
}

.creds-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  max-height: 240px;
  overflow-y: auto;
  scrollbar-width: thick;
  scrollbar-color: rgba(212, 175, 55, 0.8) rgba(255, 255, 255, 0.12);
  padding-right: 12px;
  padding: var(--spacing-sm);
  background: rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  border: 1px solid rgba(212, 175, 55, 0.1);
}

.creds-grid::-webkit-scrollbar {
  width: 12px;
}

.creds-grid::-webkit-scrollbar-track {
  background: linear-gradient(135deg, rgba(2, 43, 58, 0.8) 0%, rgba(15, 58, 75, 0.6) 100%);
  border-radius: 10px;
  border: 2px solid rgba(212, 175, 55, 0.2);
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.3);
}

.creds-grid::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.8) 0%, rgba(212, 175, 55, 1) 15%, rgba(255, 215, 0, 0.9) 50%, rgba(212, 175, 55, 1) 85%, rgba(212, 175, 55, 0.8) 100%);
  border-radius: 10px;
  border: 2px solid rgba(212, 175, 55, 0.4);
  box-shadow: 
    0 4px 8px rgba(0, 0, 0, 0.3),
    inset 0 1px 2px rgba(255, 255, 255, 0.2),
    0 0 15px rgba(212, 175, 55, 0.4);
  position: relative;
}

.creds-grid::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(135deg, rgba(212, 175, 55, 1) 0%, rgba(255, 215, 0, 1) 20%, rgba(255, 255, 255, 0.9) 50%, rgba(255, 215, 0, 1) 80%, rgba(212, 175, 55, 1) 100%);
  box-shadow: 
    0 6px 12px rgba(0, 0, 0, 0.4),
    inset 0 2px 4px rgba(255, 255, 255, 0.3),
    0 0 20px rgba(212, 175, 55, 0.6);
  border-color: rgba(212, 175, 55, 0.6);
}

.creds-grid::-webkit-scrollbar-thumb:active {
  background: linear-gradient(135deg, rgba(212, 175, 55, 1) 0%, rgba(255, 215, 0, 1) 100%);
  box-shadow: 
    0 2px 4px rgba(0, 0, 0, 0.5),
    inset 0 1px 2px rgba(255, 255, 255, 0.4),
    0 0 25px rgba(212, 175, 55, 0.8);
  border-color: rgba(212, 175, 55, 0.8);
}

.cred-badge {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(212, 175, 55, 0.08) 100%);
  border: 1px solid rgba(212, 175, 55, 0.25);
  color: var(--silver-mist);
  padding: 0.4rem 0.8rem;
  border-radius: 8px;
  font-size: 0.75rem;
  font-weight: 500;
  transition: all 0.3s ease;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.cred-badge::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.3), transparent);
  transition: left 0.5s ease;
}

.cred-badge:hover {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.25) 0%, rgba(212, 175, 55, 0.15) 100%);
  border-color: rgba(212, 175, 55, 0.5);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.2);
  color: var(--nordic-gold);
}

.cred-badge:hover::before {
  left: 100%;
}

.cred-badge.more-creds {
  background: linear-gradient(135deg, #ff6b35 0%, #ff8c35 100%);
  color: var(--deep-midnight);
  border-color: #ff6b35;
  font-weight: 600;
  animation: moreBadgePulse 2s ease-in-out infinite alternate;
}

@keyframes moreBadgePulse {
  0% { 
    transform: scale(1);
    box-shadow: 0 0 10px rgba(255, 107, 53, 0.3);
  }
  100% { 
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(255, 107, 53, 0.5);
  }
}

@media (max-width: 768px) {
  .category-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-xs);
  }
  
  .category-item {
    padding: var(--spacing-xs) var(--spacing-sm);
    gap: var(--spacing-sm);
    border-width: 1px;
    margin-bottom: var(--spacing-xs);
  }
  
  .category-icon {
    font-size: 1.3rem;
    width: 30px;
    height: 30px;
  }
  
  .category-info {
    gap: 0.1rem;
  }
  
  .category-name {
    font-size: 0.85rem;
    line-height: 1.1;
  }
  
  .category-count {
    font-size: 0.7rem;
  }
  
  .category-creds {
    font-size: 0.65rem;
    line-height: 1.2;
  }
  
  .creds-grid {
    max-height: 120px;
    gap: 0.4rem;
  }
  
  .cred-badge {
    padding: 0.25rem 0.5rem;
    font-size: 0.65rem;
    border-width: 1px;
  }
  
  .templates-breakdown {
    padding: var(--spacing-sm);
  }
  
  .breakdown-title {
    font-size: 1rem;
    margin-bottom: var(--spacing-sm);
  }
  
  .credentials-summary {
    padding: var(--spacing-sm);
    margin-top: var(--spacing-sm);
    padding-top: var(--spacing-sm);
  }
  
  .credentials-summary h5 {
    font-size: 0.95rem;
    margin-bottom: var(--spacing-sm);
  }
}

/* Coinbase Commerce additional styles */
@keyframes slideInFromRight {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.coinbase-success-content {
  text-align: center;
  padding: 1rem 0;
}

.success-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  animation: successPulse 2s ease-in-out infinite alternate;
}

@keyframes successPulse {
  0% { transform: scale(1); }
  100% { transform: scale(1.1); }
}

.payment-details {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 1rem;
  margin: 1rem 0;
  text-align: left;
}

.payment-details p {
  margin: 0.5rem 0;
}

.next-steps {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 1rem;
  margin: 1rem 0;
  text-align: left;
}

.next-steps h4 {
  color: var(--emerald-green);
  margin-bottom: 0.5rem;
}

.next-steps ul {
  list-style: none;
  padding: 0;
}

.next-steps li {
  padding: 0.25rem 0;
  color: var(--silver-mist);
}

.redirect-spinner {
  display: inline-block;
  animation: spin 1s linear infinite;
  font-size: 1.5rem;
  margin-top: 1rem;
}

/* Email Required Modal Styles */
.email-required-content {
  padding: 1rem 0;
}

.email-required-content p {
  text-align: center;
  color: var(--silver-mist);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.modal-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 1.5rem;
}

.btn-secondary {
  padding: 0.75rem 1.5rem;
  background: transparent;
  border: 2px solid var(--stone-gray);
  color: var(--silver-mist);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1rem;
  font-weight: 500;
}

.btn-secondary:hover {
  border-color: var(--silver-mist);
  color: var(--white);
  transform: translateY(-1px);
}

.btn-primary {
  padding: 0.75rem 1.5rem;
  background: var(--emerald-gradient);
  color: var(--deep-midnight);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1rem;
  font-weight: 600;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(70, 178, 157, 0.4);
}

.modal-close-btn {
  background: none;
  border: none;
  color: var(--silver-mist);
  font-size: 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.modal-close-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  transform: scale(1.1);
}

.package-features {
  list-style: none;
  padding: 0;
  margin: var(--spacing-xl) 0;
  text-align: left;
}

.package-features li {
  padding: var(--spacing-sm) 0;
  color: var(--silver-mist);
  opacity: 0.9;
  font-size: 0.95rem;
}

.package-features li::before {
  content: '✓';
  color: #ff6b35;
  font-weight: bold;
  margin-right: var(--spacing-sm);
}

.payment-options {
  display: flex;
  gap: var(--spacing-md);
  margin: var(--spacing-xl) 0;
}

.payment-btn {
  flex: 1;
  padding: var(--spacing-md) var(--spacing-lg);
  border: 2px solid #ff6b35;
  border-radius: 10px;
  background: rgba(255, 107, 53, 0.1);
  color: #ff6b35;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-sm);
}

.payment-btn:hover {
  background: #ff6b35;
  color: var(--deep-midnight);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
}

.payment-icon {
  font-size: 1.2rem;
}

.payment-guarantee {
  color: var(--silver-mist);
  opacity: 0.8;
  font-size: 0.9rem;
  margin-top: var(--spacing-md);
  margin-bottom: 0;
}

.founder-urgency {
  background: rgba(255, 107, 53, 0.1);
  border: 1px solid #ff6b35;
  border-radius: 15px;
  padding: var(--spacing-lg);
}

.urgency-content {
  display: flex;
  align-items: center;
  gap: var(--spacing-lg);
}

.urgency-icon {
  font-size: 2rem;
  color: #ffd23f;
  animation: urgencyPulse 1s ease-in-out infinite alternate;
}

@keyframes urgencyPulse {
  0% { transform: scale(1); }
  100% { transform: scale(1.1); }
}

.urgency-text {
  flex: 1;
}

.urgency-text h4 {
  color: #ff6b35;
  margin-bottom: var(--spacing-xs);
  font-size: 1.2rem;
}

.urgency-text p {
  color: var(--silver-mist);
  opacity: 0.9;
  margin-bottom: 0;
  font-size: 0.9rem;
}

.spots-remaining {
  text-align: center;
}

.spots-number {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: #ff6b35;
  font-family: var(--font-norse);
  text-shadow: 0 0 10px rgba(255, 107, 53, 0.5);
}

.spots-label {
  color: var(--silver-mist);
  opacity: 0.8;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Enhanced Payment Modal */
.payment-modal-content {
  max-width: 650px;
  width: 95%;
  max-height: 90vh;
  overflow-y: auto;
  background: linear-gradient(145deg, #022b3a 0%, #0a2c3d 50%, #0f3a4b 100%);
  border: 3px solid transparent;
  background-clip: padding-box;
  border-radius: 30px;
  padding: var(--spacing-3xl);
  box-shadow: 
    0 0 80px rgba(255, 107, 53, 0.4),
    0 0 160px rgba(212, 175, 55, 0.2),
    inset 0 2px 0 rgba(255, 255, 255, 0.1),
    inset 0 -2px 0 rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(20px);
  transform: scale(0.7) translateY(50px) rotateX(15deg);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.modal.show .payment-modal-content {
  transform: scale(1) translateY(0) rotateX(0deg);
}

/* Enhanced Payment Modal Border Animation */
.payment-modal-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 30px;
  padding: 3px;
  background: linear-gradient(45deg, 
    #ff6b35 0%, 
    var(--nordic-gold) 25%, 
    var(--emerald-green) 50%, 
    var(--nordic-gold) 75%, 
    #ff6b35 100%);
  background-size: 400% 400%;
  animation: paymentBorderGlow 4s ease infinite;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: subtract;
  -webkit-mask-composite: source-out;
  z-index: -1;
}

@keyframes paymentBorderGlow {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: var(--spacing-lg);
  border-bottom: 1px solid rgba(212, 175, 55, 0.3);
  margin-bottom: var(--spacing-lg);
}

.modal-header h3 {
  color: var(--nordic-gold);
  margin-bottom: 0;
  font-size: 1.5rem;
}

.modal-close-btn {
  background: none;
  border: none;
  color: var(--silver-mist);
  font-size: 2rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.modal-close-btn:hover {
  color: #ff6b35;
  transform: scale(1.1);
}

.payment-summary {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 107, 53, 0.3);
  border-radius: 15px;
  padding: var(--spacing-lg);
  margin-bottom: var(--spacing-xl);
  text-align: center;
}

.payment-summary h4 {
  color: #ff6b35;
  margin-bottom: var(--spacing-md);
  font-size: 1.3rem;
}

.summary-pricing {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-md);
}

.summary-original {
  color: var(--silver-mist);
  opacity: 0.6;
  text-decoration: line-through;
  font-size: 1.1rem;
}

.summary-price {
  color: #ff6b35;
  font-size: 2rem;
  font-weight: 700;
  font-family: var(--font-norse);
}

.summary-savings {
  background: var(--emerald-gradient);
  color: var(--deep-midnight);
  padding: 0.2rem 0.6rem;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
}

.payment-form {
  margin-bottom: var(--spacing-xl);
}

.payment-form h4 {
  color: var(--nordic-gold);
  margin-bottom: var(--spacing-lg);
  font-size: 1.2rem;
}

.form-row {
  display: flex;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-md);
}

.form-group {
  flex: 1;
}

.form-group label {
  display: block;
  color: var(--silver-mist);
  margin-bottom: var(--spacing-xs);
  font-size: 0.9rem;
  font-weight: 500;
}

.form-group input {
  width: 100%;
  padding: var(--spacing-md);
  border: 2px solid rgba(212, 175, 55, 0.3);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--silver-mist);
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-group input:focus {
  outline: none;
  border-color: var(--nordic-gold);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
}

.payment-submit-btn {
  width: 100%;
  padding: var(--spacing-lg);
  background: var(--gold-gradient);
  color: var(--deep-midnight);
  border: none;
  border-radius: 10px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  margin-top: var(--spacing-md);
}

.payment-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

.payment-submit-btn.loading .btn-text {
  display: none;
}

.payment-submit-btn.loading .btn-loader {
  display: inline-block;
  animation: spin 1s linear infinite;
}

/* Coinbase Commerce Section */
.coinbase-commerce-section {
  background: linear-gradient(135deg, #0052ff 0%, #0041cc 100%);
  border-radius: 15px;
  padding: 1.5rem;
  margin-bottom: 2rem;
  border: 1px solid #0052ff;
}

.coinbase-header h5 {
  color: white;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
  font-weight: 600;
}

.coinbase-header p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.coinbase-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1rem 1.5rem;
  background: white;
  color: #0052ff;
  border: none;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.coinbase-btn:hover {
  background: #f8f9fa;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.coinbase-logo {
  font-size: 1.2rem;
  color: #f7931a;
}

.coinbase-text {
  flex: 1;
  text-align: center;
}

.coinbase-arrow {
  font-size: 1.1rem;
  color: #0052ff;
  transition: transform 0.3s ease;
}

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

.payment-divider {
  display: flex;
  align-items: center;
  margin: 1.5rem 0;
  text-align: center;
}

.payment-divider::before,
.payment-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: #333;
  margin: 0 1rem;
}

.payment-divider span {
  color: #888;
  font-size: 0.9rem;
  text-transform: uppercase;
  font-weight: 500;
}

.direct-crypto-section h5 {
  color: var(--silver-mist);
  margin-bottom: 1rem;
  font-size: 1rem;
  font-weight: 600;
}

/* Crypto Payment */
.crypto-options {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-xl);
}

.crypto-option {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
  padding: var(--spacing-md);
  border: 2px solid rgba(212, 175, 55, 0.3);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  cursor: pointer;
  transition: all 0.3s ease;
}

.crypto-option:hover {
  border-color: var(--nordic-gold);
  transform: translateY(-2px);
}

.crypto-option.selected {
  border-color: #ff6b35;
  background: rgba(255, 107, 53, 0.1);
}

.crypto-icon {
  font-size: 1.5rem;
  color: var(--nordic-gold);
  width: 40px;
  text-align: center;
}

.crypto-name {
  flex: 1;
  color: var(--silver-mist);
  font-weight: 500;
}

.crypto-price {
  color: var(--emerald-green);
  font-weight: 600;
  font-family: var(--font-norse);
}

.crypto-payment-details {
  padding: var(--spacing-lg);
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  border: 1px solid rgba(212, 175, 55, 0.3);
}

.crypto-payment-details h5 {
  color: var(--nordic-gold);
  margin-bottom: var(--spacing-md);
  font-size: 1.1rem;
}

.crypto-address {
  display: flex;
  gap: var(--spacing-sm);
  margin-bottom: var(--spacing-lg);
}

.crypto-address input {
  flex: 1;
  padding: var(--spacing-md);
  border: 2px solid rgba(212, 175, 55, 0.3);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--silver-mist);
  font-family: monospace;
  font-size: 0.9rem;
}

.copy-btn {
  padding: var(--spacing-md) var(--spacing-lg);
  background: var(--emerald-gradient);
  color: var(--deep-midnight);
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.copy-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 3px 10px rgba(70, 178, 157, 0.4);
}

.crypto-qr {
  display: flex;
  justify-content: center;
  margin-bottom: var(--spacing-lg);
}

.qr-placeholder {
  width: 200px;
  height: 200px;
  border: 2px dashed rgba(212, 175, 55, 0.3);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--silver-mist);
  opacity: 0.6;
  font-size: 0.9rem;
}

.crypto-instructions {
  color: var(--silver-mist);
  opacity: 0.8;
  font-size: 0.9rem;
  text-align: center;
  margin-bottom: 0;
}

.payment-guarantee {
  text-align: center;
  padding: var(--spacing-lg);
  background: rgba(255, 255, 255, 0.03);
  border-radius: 10px;
  border: 1px solid rgba(212, 175, 55, 0.3);
}

.guarantee-icon {
  margin-right: var(--spacing-sm);
  font-size: 1.2rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .founder-content {
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
  }
  
  .payment-options {
    flex-direction: column;
  }
  
  .urgency-content {
    flex-direction: column;
    text-align: center;
    gap: var(--spacing-md);
  }
  
  .form-row {
    flex-direction: column;
  }
  
  .summary-pricing {
    flex-direction: column;
    gap: var(--spacing-sm);
  }
  
  .crypto-address {
    flex-direction: column;
  }
  
  /* Payment Modal Mobile Enhancements */
  .payment-modal-content {
    width: 98%;
    padding: var(--spacing-2xl);
    border-radius: 20px;
    max-height: 95vh;
  }
  
  .modal-header h3 {
    font-size: 1.3rem;
  }
  
  .payment-summary {
    padding: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
  }
  
  .summary-price {
    font-size: 1.8rem;
  }
  
  .payment-form h4 {
    font-size: 1.1rem;
  }
  
  .payment-submit-btn {
    padding: var(--spacing-md);
    font-size: 1rem;
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.2rem;
  }
  
  .logo {
    font-size: 3rem;
  }
  
  .hero-description {
    font-size: 1.1rem;
  }
  
  .benefits-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
  }
  
  .benefit-item {
    padding: var(--spacing-md);
  }
  
  .benefit-item h3 {
    font-size: 1.1rem;
  }
  
  .benefit-item p {
    font-size: 0.9rem;
  }
  
  .social-proof {
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
  }
  
  .proof-item {
    padding: var(--spacing-md);
  }
  
  .proof-number {
    font-size: 2rem;
  }
  
  .proof-label {
    font-size: 0.8rem;
  }
  
  .form-group {
    flex-direction: column;
  }
  
  .timeline::before {
    left: 30px;
  }
  
  .timeline-item:nth-child(odd) .timeline-content,
  .timeline-item:nth-child(even) .timeline-content {
    margin-left: 60px;
    margin-right: 0;
    text-align: left;
  }
  
  .timeline-dot {
    left: 30px;
  }
  
  .footer-content {
    flex-direction: column;
    text-align: center;
  }
  
  .email-capture-section {
    padding: var(--spacing-xl);
  }
  
  .capture-title {
    font-size: 1.5rem;
  }
  
  .launch-benefits-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
  }
  
  .launch-benefits-grid .benefit-card {
    padding: var(--spacing-lg);
  }
  
  .launch-benefits-grid .benefit-card h3 {
    font-size: 1.1rem;
  }
  
  .launch-benefits-grid .benefit-card p {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .content-wrapper {
    padding: 0 var(--spacing-md);
  }
  
  .hero-title {
    font-size: 1.8rem;
  }
  
  .logo {
    font-size: 2.5rem;
  }
  
  .timeline-title {
    font-size: 2rem;
  }
  
  .benefit-item {
    padding: var(--spacing-lg);
  }
  
  .modal-content {
    padding: var(--spacing-xl);
  }
}

/* Enhanced Rune Icon Styles */
.rune-icon {
  font-family: var(--font-norse);
  font-weight: 600;
  display: inline-block;
  vertical-align: middle;
  user-select: none;
  transition: all 0.3s ease;
  position: relative;
}

/* Context-specific rune styling */
.feature-icon.rune-icon,
.step-icon.rune-icon {
  font-size: 20px;
  color: var(--nordic-gold);
  text-shadow: 0 0 10px rgba(212, 175, 55, 0.4);
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.author-avatar.rune-icon {
  font-size: 24px;
  color: var(--nordic-gold);
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(212, 175, 55, 0.05) 100%);
  border: 2px solid rgba(212, 175, 55, 0.2);
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-shadow: 0 0 8px rgba(212, 175, 55, 0.5);
  position: relative;
  overflow: hidden;
}

.author-avatar.rune-icon::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
  opacity: 0;
  transition: all 0.3s ease;
  z-index: -1;
}

.author-avatar.rune-icon:hover::before {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.2);
}

.preview-icon.rune-icon,
.reversal-icon.rune-icon {
  font-size: 32px;
  color: var(--nordic-gold);
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(212, 175, 55, 0.05) 100%);
  border: 2px solid rgba(212, 175, 55, 0.2);
  border-radius: 12px;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-shadow: 0 0 12px rgba(212, 175, 55, 0.5);
  margin-bottom: 16px;
  position: relative;
  overflow: hidden;
}

.preview-icon.rune-icon::before,
.reversal-icon.rune-icon::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 120%;
  height: 120%;
  border-radius: 12px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
  opacity: 0;
  transition: all 0.3s ease;
  z-index: -1;
}

.preview-icon.rune-icon:hover::before,
.reversal-icon.rune-icon:hover::before {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.1);
}

.payment-icon.rune-icon,
.crypto-icon.rune-icon {
  font-size: 18px;
  color: var(--nordic-gold);
  text-shadow: 0 0 8px rgba(212, 175, 55, 0.3);
  margin-right: 8px;
}

.guarantee-icon.rune-icon {
  font-size: 16px;
  color: var(--nordic-gold);
  text-shadow: 0 0 6px rgba(212, 175, 55, 0.3);
  margin-right: 8px;
}

/* Special rune glows and animations */
.glass-rune {
  color: #87ceeb;
  text-shadow: 0 0 15px rgba(135, 206, 235, 0.6);
  animation: glassShimmer 3s ease-in-out infinite;
}

@keyframes glassShimmer {
  0%, 100% { 
    text-shadow: 0 0 15px rgba(135, 206, 235, 0.6);
    color: #87ceeb;
  }
  50% { 
    text-shadow: 0 0 25px rgba(135, 206, 235, 0.8), 0 0 35px rgba(135, 206, 235, 0.4);
    color: #b0e0e6;
  }
}

.starter-rune {
  font-size: 48px;
  color: var(--nordic-gold);
  text-shadow: 0 0 20px rgba(212, 175, 55, 0.7);
  animation: starterRuneFloat 3s ease-in-out infinite;
}

@keyframes starterRuneFloat {
  0%, 100% { 
    transform: translateY(0px);
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.7);
  }
  50% { 
    transform: translateY(-8px);
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.9), 0 0 40px rgba(212, 175, 55, 0.4);
  }
}

.founder-rune {
  font-size: 40px;
  color: #ff6b35;
  text-shadow: 0 0 20px rgba(255, 107, 53, 0.7);
  animation: founderRuneFloat 3s ease-in-out infinite;
}

@keyframes founderRuneFloat {
  0%, 100% { 
    transform: translateY(0px);
    text-shadow: 0 0 20px rgba(255, 107, 53, 0.7);
  }
  50% { 
    transform: translateY(-6px);
    text-shadow: 0 0 30px rgba(255, 107, 53, 0.9), 0 0 40px rgba(255, 107, 53, 0.4);
  }
}

.modal-rune,
.download-rune {
  font-size: 32px;
  color: var(--nordic-gold);
  text-shadow: 0 0 15px rgba(212, 175, 55, 0.6);
  animation: modalRuneGlow 2s ease-in-out infinite alternate;
}

@keyframes modalRuneGlow {
  0% { 
    text-shadow: 0 0 15px rgba(212, 175, 55, 0.6);
  }
  100% { 
    text-shadow: 0 0 25px rgba(212, 175, 55, 0.8), 0 0 35px rgba(212, 175, 55, 0.4);
  }
}

/* Interactive hover effects */
.rune-icon:hover {
  transform: scale(1.1);
  filter: brightness(1.2);
}

.feature-icon.rune-icon:hover,
.step-icon.rune-icon:hover {
  text-shadow: 0 0 15px rgba(212, 175, 55, 0.8);
  transform: scale(1.2);
}

.author-avatar.rune-icon:hover {
  border-color: var(--nordic-gold);
  text-shadow: 0 0 15px rgba(212, 175, 55, 0.8);
  transform: scale(1.05);
}

.preview-icon.rune-icon:hover,
.reversal-icon.rune-icon:hover {
  border-color: var(--nordic-gold);
  text-shadow: 0 0 20px rgba(212, 175, 55, 0.8);
  transform: scale(1.05);
}

/* Category icon enhancements */
.category-icon {
  font-family: var(--font-norse) !important;
  font-weight: 600 !important;
  color: var(--nordic-gold) !important;
  text-shadow: 0 0 10px rgba(212, 175, 55, 0.4) !important;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .starter-rune {
    font-size: 40px;
  }
  
  .founder-rune {
    font-size: 36px;
  }
  
  .preview-icon.rune-icon,
  .reversal-icon.rune-icon {
    font-size: 28px;
    width: 50px;
    height: 50px;
  }
  
  .author-avatar.rune-icon {
    font-size: 20px;
    width: 40px;
    height: 40px;
  }
  
  /* Risk Reversal responsive adjustments */
  .risk-reversal-section {
    padding: var(--spacing-xl);
  }
  
  .risk-reversal-title {
    font-size: 2rem;
  }
  
  .risk-reversal-subtitle {
    font-size: 1rem;
  }
  
  .shield-rune {
    font-size: 3rem;
  }
  
  .risk-reversal-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
  }
  
  .reversal-item {
    padding: var(--spacing-xl);
  }
  
  .reversal-icon {
    font-size: 2.5rem;
    width: 70px;
    height: 70px;
  }
  
  .guarantee-seal {
    flex-direction: column;
    gap: var(--spacing-md);
    text-align: center;
  }
  
  .seal-text {
    text-align: center;
  }
  
  .seal-icon {
    font-size: 2rem;
  }
}

/* Terms and Conditions Modal */
.terms-conditions-section {
  margin: var(--spacing-lg) 0;
  text-align: center;
}

.terms-btn {
  background: transparent;
  border: 2px solid rgba(224, 225, 221, 0.3);
  color: var(--silver-mist);
  padding: var(--spacing-md) var(--spacing-lg);
  border-radius: 8px;
  font-size: 0.9rem;
  font-family: var(--font-body);
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-sm);
  margin: 0 auto;
  max-width: 400px;
  opacity: 0.8;
}

.terms-btn:hover {
  border-color: var(--nordic-gold);
  color: var(--nordic-gold);
  opacity: 1;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.2);
}

.terms-icon {
  font-size: 1.1rem;
  color: var(--nordic-gold);
}

.terms-modal-content {
  max-width: 800px;
  max-height: 90vh;
  overflow-y: auto;
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
  border: 2px solid var(--nordic-gold);
  border-radius: 20px;
  padding: 0;
}

.terms-modal-body {
  padding: var(--spacing-2xl);
  padding-top: var(--spacing-lg);
}

.terms-section {
  margin-bottom: var(--spacing-2xl);
  padding-bottom: var(--spacing-lg);
  border-bottom: 1px solid rgba(224, 225, 221, 0.1);
}

.terms-section:last-child {
  border-bottom: none;
}

.terms-section h4 {
  color: var(--nordic-gold);
  font-size: 1.3rem;
  margin-bottom: var(--spacing-md);
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
}

.terms-section h4 .rune-icon {
  color: var(--emerald-green);
  font-size: 1.2rem;
}

.terms-section p {
  color: var(--silver-mist);
  opacity: 0.9;
  line-height: 1.6;
  margin-bottom: var(--spacing-md);
}

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

.terms-section li {
  color: var(--silver-mist);
  opacity: 0.8;
  padding: var(--spacing-sm) 0;
  position: relative;
  padding-left: var(--spacing-lg);
  line-height: 1.5;
}

.terms-section li:before {
  content: "ᚱ";
  position: absolute;
  left: 0;
  color: var(--emerald-green);
  font-size: 0.9rem;
}

.terms-section li strong {
  color: var(--nordic-gold);
  font-weight: 600;
}

.terms-footer {
  margin-top: var(--spacing-2xl);
  padding-top: var(--spacing-lg);
  border-top: 2px solid rgba(212, 175, 55, 0.3);
  text-align: center;
}

.terms-disclaimer {
  color: var(--silver-mist);
  opacity: 0.7;
  font-size: 0.9rem;
  font-style: italic;
  margin-bottom: var(--spacing-lg);
  line-height: 1.6;
}

.terms-guarantee {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-sm);
  color: var(--nordic-gold);
  font-weight: 600;
  font-size: 0.95rem;
}

.terms-guarantee .guarantee-icon {
  color: var(--emerald-green);
  font-size: 1.2rem;
}

/* Terms modal responsive */
@media (max-width: 768px) {
  .terms-modal-content {
    max-width: 95vw;
    margin: var(--spacing-md);
    max-height: 85vh;
  }
  
  .terms-modal-body {
    padding: var(--spacing-lg);
  }
  
  .terms-section h4 {
    font-size: 1.2rem;
  }
  
  .terms-btn {
    max-width: 100%;
    font-size: 0.85rem;
    padding: var(--spacing-sm) var(--spacing-md);
  }
}

/* Unified Pricing Table Styles */
.pricing-table-container {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}

.pricing-table {
  background: rgba(255, 255, 255, 0.03);
  border: 2px solid rgba(255, 107, 53, 0.4);
  border-radius: 25px;
  padding: var(--spacing-2xl);
  backdrop-filter: blur(15px);
  position: relative;
  overflow: hidden;
}

.pricing-table::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, 
    rgba(255, 107, 53, 0.05) 0%, 
    rgba(255, 171, 0, 0.03) 50%, 
    rgba(70, 178, 157, 0.04) 100%);
  pointer-events: none;
  z-index: 0;
}

.pricing-table-header {
  text-align: center;
  margin-bottom: var(--spacing-xl);
  position: relative;
  z-index: 1;
}

.table-title {
  font-size: 2rem;
  color: #ff6b35;
  margin-bottom: var(--spacing-sm);
  font-family: 'Cinzel', serif;
  text-shadow: 0 0 15px rgba(255, 107, 53, 0.4);
}

.table-subtitle {
  font-size: 1.1rem;
  color: var(--silver-mist);
  opacity: 0.9;
  margin-bottom: 0;
}

.pricing-offers-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-xl);
  margin-bottom: var(--spacing-xl);
  position: relative;
  z-index: 1;
}

.pricing-offer-card {
  background: rgba(255, 255, 255, 0.03);
  border: 2px solid rgba(255, 107, 53, 0.3);
  border-radius: 20px;
  padding: var(--spacing-xl);
  position: relative;
  transition: all 0.3s ease;
  overflow: hidden;
}

.pricing-offer-card:hover {
  transform: translateY(-5px);
  border-color: #ff6b35;
  box-shadow: 0 15px 40px rgba(255, 107, 53, 0.2);
}

.pricing-offer-card.popular {
  border-color: #ffab00;
  box-shadow: 0 10px 30px rgba(255, 171, 0, 0.3);
}

.popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #ffab00, #ff6b35);
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: bold;
  letter-spacing: 0.5px;
  z-index: 2;
}

.offer-header {
  text-align: center;
  margin-bottom: var(--spacing-lg);
}

.offer-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 107, 53, 0.1);
  border: 1px solid rgba(255, 107, 53, 0.3);
  padding: 0.5rem 1rem;
  border-radius: 15px;
  margin-bottom: var(--spacing-md);
  font-size: 0.9rem;
  font-weight: 600;
  color: #ff6b35;
}

.annual-badge {
  background: rgba(255, 171, 0, 0.1);
  border-color: rgba(255, 171, 0, 0.3);
  color: #ffab00;
}

.lifetime-badge {
  background: rgba(70, 178, 157, 0.1);
  border-color: rgba(70, 178, 157, 0.3);
  color: #46b29d;
}

.offer-title {
  font-size: 1.5rem;
  color: #ff6b35;
  margin-bottom: var(--spacing-sm);
  font-family: 'Cinzel', serif;
}

.offer-description {
  color: var(--silver-mist);
  opacity: 0.8;
  font-size: 0.95rem;
  margin-bottom: 0;
}

.offer-pricing {
  text-align: center;
  margin: var(--spacing-lg) 0;
}

.offer-pricing .price-display {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: var(--spacing-sm);
}

.offer-pricing .original-price {
  font-size: 1.1rem;
  color: var(--silver-mist);
  opacity: 0.6;
  text-decoration: line-through;
}

.offer-pricing .founder-price {
  font-size: 2.2rem;
  color: #ff6b35;
  font-weight: bold;
  font-family: 'Cinzel', serif;
}

.offer-pricing .price-period {
  font-size: 1rem;
  color: var(--silver-mist);
  opacity: 0.8;
}

.offer-pricing .savings-badge {
  background: linear-gradient(135deg, #46b29d, #4ecdc4);
  color: white;
  padding: 0.3rem 0.8rem;
  border-radius: 12px;
  font-size: 0.85rem;
  font-weight: 600;
  display: inline-block;
}

.offer-features {
  margin: var(--spacing-lg) 0;
}

.offer-features .feature-item {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  margin-bottom: var(--spacing-sm);
  font-size: 0.95rem;
}

.offer-features .feature-check {
  color: #4ecdc4;
  font-weight: bold;
  font-size: 1.1rem;
}

.offer-payment-buttons {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
  margin-top: var(--spacing-lg);
}

.offer-payment-buttons .payment-btn {
  width: 100%;
  padding: 0.9rem 1.5rem;
  border: none;
  border-radius: 15px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  text-decoration: none;
  color: white;
}

.offer-payment-buttons .primary-payment {
  background: linear-gradient(135deg, #ff6b35, #ffab00);
  box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

.offer-payment-buttons .primary-payment:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

.offer-payment-buttons .crypto-payment {
  background: linear-gradient(135deg, #46b29d, #4ecdc4);
  box-shadow: 0 5px 15px rgba(70, 178, 157, 0.3);
}

.offer-payment-buttons .crypto-payment:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(70, 178, 157, 0.4);
}

.pricing-table-footer {
  text-align: center;
  padding-top: var(--spacing-lg);
  border-top: 1px solid rgba(255, 107, 53, 0.2);
  position: relative;
  z-index: 1;
}

.pricing-table-footer .payment-security {
  margin-bottom: var(--spacing-md);
}

.pricing-table-footer .security-icons {
  display: flex;
  justify-content: center;
  gap: var(--spacing-sm);
  margin-bottom: var(--spacing-xs);
}

.pricing-table-footer .security-text {
  color: var(--silver-mist);
  opacity: 0.8;
  font-size: 0.9rem;
}

.pricing-table-footer .terms-section {
  margin-top: var(--spacing-md);
}

.pricing-table-footer .terms-link {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 107, 53, 0.3);
  color: #ff6b35;
  padding: 0.7rem 1.2rem;
  border-radius: 12px;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.pricing-table-footer .terms-link:hover {
  background: rgba(255, 107, 53, 0.1);
  border-color: #ff6b35;
  transform: translateY(-1px);
}

/* Responsive adjustments for pricing table */
@media (max-width: 768px) {
  .pricing-offers-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
  }
  
  .pricing-offer-card {
    padding: var(--spacing-lg);
  }
  
  .table-title {
    font-size: 1.6rem;
  }
  
  .offer-title {
    font-size: 1.3rem;
  }
  
  .offer-pricing .founder-price {
    font-size: 2rem;
  }
  
  .pricing-table {
    padding: var(--spacing-lg);
  }
}
