/* --- Start Starry & Glow Background --- */
.stars-container {
    position: fixed; top: 0; left: 0; right: 0; bottom: 0;
    width: 100vw; height: 100%;
    z-index: -10; overflow: hidden; pointer-events: none;
    background: transparent;
}
.ambient-glow {
    position: absolute; border-radius: 50%; filter: blur(120px); opacity: 0.6;
    animation: fadeGlow 10s infinite alternate cubic-bezier(0.4, 0, 0.2, 1);
}
.glow-1 { top: -20%; left: -10%; width: 60vw; height: 60vw; background: rgba(91, 103, 255, 0.15); animation-delay: 0s; }
.glow-2 { bottom: -20%; right: -10%; width: 70vw; height: 70vw; background: rgba(120, 50, 255, 0.12); animation-delay: -5s; }
.glow-3 { top: 30%; left: 40%; width: 40vw; height: 40vw; background: rgba(0, 150, 255, 0.08); animation-duration: 15s; }

@keyframes fadeGlow {
    0% { opacity: 0.4; transform: scale(0.9) translate(0, 0); }
    100% { opacity: 0.8; transform: scale(1.1) translate(3%, 3%); }
}

.stars {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
}
.stars-layer1 {
    background-image: 
        radial-gradient(1.5px 1.5px at 15% 20%, rgba(255,255,255,0.7) 50%, transparent),
        radial-gradient(1px 1px at 35% 10%, rgba(255,255,255,0.9) 50%, transparent),
        radial-gradient(2px 2px at 80% 50%, rgba(255,255,255,0.5) 50%, transparent),
        radial-gradient(1px 1px at 50% 80%, rgba(255,255,255,0.8) 50%, transparent),
        radial-gradient(2.5px 2.5px at 85% 15%, rgba(255,255,255,0.4) 50%, transparent),
        radial-gradient(1px 1px at 10% 70%, rgba(255,255,255,0.9) 50%, transparent),
        radial-gradient(2px 2px at 60% 30%, rgba(255,255,255,1) 50%, transparent),
        radial-gradient(1px 1px at 70% 90%, rgba(255,255,255,0.6) 50%, transparent),
        radial-gradient(2px 2px at 20% 95%, rgba(255,255,255,0.5) 50%, transparent),
        radial-gradient(1px 1px at 95% 40%, rgba(255,255,255,0.4) 50%, transparent);
    background-size: 250px 250px;
    animation: twinkle 6s infinite alternate ease-in-out;
}
.stars-layer2 {
    background-image: 
        radial-gradient(1px 1px at 25% 30%, rgba(255,255,255,0.8) 50%, transparent),
        radial-gradient(2px 2px at 45% 60%, rgba(255,255,255,0.5) 50%, transparent),
        radial-gradient(1px 1px at 85% 85%, rgba(255,255,255,0.9) 50%, transparent),
        radial-gradient(1.5px 1.5px at 10% 40%, rgba(255,255,255,0.7) 50%, transparent),
        radial-gradient(2px 2px at 75% 25%, rgba(255,255,255,0.4) 50%, transparent);
    background-size: 180px 180px;
    animation: twinkle 4s infinite alternate-reverse ease-in-out;
    opacity: 0.6;
}

@keyframes twinkle {
    0% { opacity: 0.3; }
    50% { opacity: 0.8; }
    100% { opacity: 0.4; }
}
/* --- End Starry Background --- */

/* --- Global Settings --- */
:root {
    --bg-color: transparent; /* Changed to transparent so fixed stars show behind */
    --text-primary: #FFFFFF;
    --text-secondary: #c0c4d6; /* Brighter, slightly bluish gray for better visibility */
    --btn-outline-border: #333333;
    --btn-outline-bg: #1A1A1A;
    --accent-color: #5b67ff;
    --font-main: 'Inter', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html {
    background-color: #030303;
    -webkit-text-size-adjust: 100%;
}
body {
    background-color: transparent;
    color: var(--text-primary);
    font-family: var(--font-main);
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

em, .highlight {
    font-style: italic;
    color: #e2e6ff;
    text-shadow: 0 0 12px rgba(184, 193, 255, 0.6);
    font-weight: 500;
}

.container { max-width: 1300px; margin: 0 auto; width: 100%; padding: 0 5%; }
.text-center { text-align: center; }
.max-w-800 { max-width: 800px; margin-left: auto; margin-right: auto; }
.max-w-600 { max-width: 600px; margin-left: auto; margin-right: auto; }
.mb-40 { margin-bottom: 40px; }
.mt-40 { margin-top: 40px; }
.justify-center { justify-content: center; }
.center-block { margin-left: auto; margin-right: auto; }

/* HEADER */
.header { width: 100%; padding-top: 32px; position: absolute; top: 0; z-index: 100; }
.navbar { display: flex; justify-content: space-between; align-items: center; }
.nav-btn {
    background-color: transparent; color: var(--text-primary); border: 1px solid var(--btn-outline-border);
    padding: 10px 24px; border-radius: 40px; font-size: 13px; font-weight: 600; cursor: pointer;
    font-family: var(--font-main); letter-spacing: 0.5px; transition: all 0.3s ease;
}
.nav-btn-primary { background-color: #fff; color: #000; border: none; }
.nav-btn:hover { transform: scale(1.02); }

.logo { display: flex; align-items: center; gap: 12px; position: relative; }
.svg-logo { width: 36px; height: 36px; color: #fff; filter: drop-shadow(0 0 6px rgba(184, 193, 255, 0.6)); flex-shrink: 0; }
.side-svg { width: 24px; height: 24px; margin-bottom: 24px; filter: drop-shadow(0 0 4px rgba(184, 193, 255, 0.6)); }
.footer-svg { width: 28px; height: 28px; }

.logo-text {
    font-size: 22px; font-weight: 800; color: #fff;
    letter-spacing: -0.05em; cursor: pointer;
    background: linear-gradient(135deg, #ffffff 0%, #b8c1ff 100%);
    -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
    text-shadow: 0 0 20px rgba(91, 103, 255, 0.3);
}

/* MAIN */
.main-content { flex: 1; display: flex; flex-direction: column; }

/* HERO */
.hero { min-height: 100vh; display: flex; align-items: center; position: relative; width: 100%; padding-top: 80px; }
.hero-inner { display: flex; align-items: center; justify-content: space-between; gap: 60px; }
.hero-content { max-width: 650px; z-index: 10; }
.headline {
    font-size: clamp(36px, 8vw, 76px); font-weight: 700; line-height: 1.05; letter-spacing: -0.04em; margin-bottom: 24px;
    background: linear-gradient(135deg, #ffffff 0%, #b8c1ff 100%); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
    text-shadow: 0 0 40px rgba(91, 103, 255, 0.4);
}
.subheadline { font-size: 18px; color: var(--text-secondary); line-height: 1.6; margin-bottom: 48px; max-width: 550px; }
.cta-group { display: flex; gap: 16px; flex-wrap: wrap; }
.btn {
    display: flex; align-items: center; gap: 16px; padding: 8px 10px 8px 28px; border-radius: 40px;
    font-family: var(--font-main); font-size: 13px; font-weight: 600; cursor: pointer; letter-spacing: 0.5px;
    transition: all 0.3s ease; text-decoration: none;
}
.btn-outline { background-color: transparent; border: 1px solid var(--btn-outline-border); color: var(--text-primary); }
.btn-outline .icon-wrapper { background-color: var(--btn-outline-bg); border: 1px solid var(--btn-outline-border); color: #fff; width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 16px; }
.btn-primary { background-color: #fff; color: #000; border: 1px solid #fff; }
.btn-primary .icon-wrapper { background-color: #000; color: #fff; width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 16px; }
.btn:hover { transform: translateY(-2px); }
.btn-outline:hover { border-color: #666; background-color: rgba(255,255,255,0.05); }
.btn-primary:hover { box-shadow: 0 4px 20px rgba(255,255,255,0.2); opacity: 0.95; }

.pay-btn-sm {
    display: flex; align-items: center; gap: 8px;
    padding: 8px 16px; border-radius: 30px;
    font-family: var(--font-main); font-size: 12px; font-weight: 600; cursor: pointer; letter-spacing: 0.5px;
    background-color: transparent; border: 1px solid var(--btn-outline-border); color: var(--text-primary);
    transition: all 0.3s ease; text-decoration: none;
}
.pay-btn-sm:hover {
    border-color: #666; background-color: rgba(255,255,255,0.05); transform: translateY(-2px);
}

.pulse-btn { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4); animation: pulse 2s infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(255, 255, 255, 0); } 100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); } }

/* HERO VISUAL */
.hero-visual { position: relative; width: 550px; height: 550px; display: flex; align-items: center; justify-content: center; margin-right: 2%; }
@keyframes orbitPlay {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}
.disc-ring {
    width: 100%; height: 100%; position: relative;
    animation: orbitPlay 40s linear infinite;
}
.disc {
    position: absolute; width: 140px; height: 140px; border-radius: 50%; top: 50%; left: 50%; transform: translate(-50%, -50%);
    box-shadow: inset -15px -15px 25px rgba(0,0,0,0.9), inset 5px 5px 15px rgba(255,255,255,0.05), 0 15px 35px rgba(0,0,0,0.8);
}
@keyframes lightGlow {
    0% {
        box-shadow: inset -15px -15px 25px rgba(0,0,0,0.9), inset 10px 10px 20px rgba(255,255,255,0.2), 0 0 20px var(--glow-color, rgba(184, 193, 255, 0.6));
        filter: brightness(1.2);
    }
    100% {
        box-shadow: inset -15px -15px 25px rgba(0,0,0,0.9), inset 10px 10px 40px rgba(255,255,255,0.6), 0 0 40px var(--glow-color, rgba(184, 193, 255, 0.8)), 0 0 60px var(--glow-color, rgba(184, 193, 255, 0.6));
        filter: brightness(1.8);
    }
}
.disc:hover {
    animation: lightGlow 0.8s infinite alternate;
    cursor: pointer;
}
.hero-visual .disc { margin-top:-70px; margin-left:-70px; transform:none; }
.hero-visual .disc-1 { transform: rotate(20deg) translateY(-210px) rotate(-20deg); background: radial-gradient(circle at 35% 35%, #2a2a2a, #050505 70%); --glow-color: rgba(91, 103, 255, 0.7); }
.hero-visual .disc-2 { transform: rotate(65deg) translateY(-210px) rotate(-65deg); background: radial-gradient(circle at 35% 35%, #222222, #020202 70%); --glow-color: rgba(130, 91, 255, 0.7); }
.hero-visual .disc-3 { transform: rotate(110deg) translateY(-210px) rotate(-110deg); background: radial-gradient(circle at 35% 35%, #1f1f1f, #000000 70%); --glow-color: rgba(184, 193, 255, 0.7); }
.hero-visual .disc-4 { transform: rotate(155deg) translateY(-210px) rotate(-155deg); background: radial-gradient(circle at 35% 35%, #151515, #000000 70%); --glow-color: rgba(91, 203, 255, 0.7); }
.hero-visual .disc-5 { transform: rotate(200deg) translateY(-210px) rotate(-200deg); background: radial-gradient(circle at 35% 35%, #262626, #040404 70%); --glow-color: rgba(151, 103, 255, 0.7); }
.hero-visual .disc-6 { transform: rotate(245deg) translateY(-210px) rotate(-245deg); background: radial-gradient(circle at 35% 35%, #1c1c1c, #000000 70%); --glow-color: rgba(200, 200, 255, 0.7); }
.hero-visual .disc-7 { transform: rotate(290deg) translateY(-210px) rotate(-290deg); background: radial-gradient(circle at 35% 35%, #2d2d2d, #060606 70%); --glow-color: rgba(60, 80, 255, 0.7); }
.hero-visual .disc-8 { transform: rotate(335deg) translateY(-210px) rotate(-335deg); background: radial-gradient(circle at 35% 35%, #202020, #010101 70%); --glow-color: rgba(140, 140, 255, 0.7); }

/* Center Display for Chapters */
.center-display {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    text-align: center; width: 220px; pointer-events: none; z-index: 10;
}
.center-display strong {
    display: block; font-size: 18px; color: #fff; margin-bottom: 6px; font-weight: 700;
    animation: fadeText 0.4s ease forwards; opacity: 0;
}
.center-display span {
    font-size: 14px; color: var(--text-secondary); line-height: 1.4; display: block;
    animation: fadeText 0.4s ease 0.1s forwards; opacity: 0;
}
.center-display .hover-text {
    font-style: italic; color: rgba(255,255,255,0.3); font-size: 14px; margin: 0;
    animation: fadeText 0.4s ease forwards; opacity: 0;
}
@keyframes fadeText {
    from { opacity: 0; transform: translateY(6px); }
    to { opacity: 1; transform: translateY(0); }
}

.side-badge { position: absolute; right: 0; top: 50%; transform: translateY(-50%); display: flex; flex-direction: column; align-items: center; padding: 24px 12px; gap: 32px; z-index: 20; border-left: 1px solid rgba(255,255,255,0.05); }
.w-logo { font-weight: 800; font-size: 16px; color: #fff; cursor: pointer; writing-mode: vertical-rl; transform: rotate(180deg); letter-spacing: 1px; }
.vertical-text { writing-mode: vertical-rl; transform: rotate(180deg); font-size: 13px; color: var(--text-secondary); letter-spacing: 2px; text-transform: uppercase; font-weight: 500; }

/* SECTIONS */
.section { padding: 120px 0; position: relative; border-top: 1px solid rgba(255,255,255,0.05); }
.section-dark { background: radial-gradient(circle at center, rgba(30,30,35,0.6) 0%, transparent 70%); }
.section-alt { background-color: rgba(8, 8, 8, 0.5); backdrop-filter: blur(4px); }
.overflow-hidden { overflow: hidden; }

.tag { color: var(--text-secondary); font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 16px; display: inline-block; padding: 4px 12px; border: 1px solid rgba(255,255,255,0.15); border-radius: 20px; }

.section-title { font-size: clamp(28px, 6vw, 48px); font-weight: 700; margin-bottom: 32px; line-height: 1.1; letter-spacing: -0.02em; }
.section-text { font-size: 18px; color: var(--text-secondary); line-height: 1.6; margin-bottom: 24px; }
.large-text { font-size: 24px; color: #fff; font-weight: 500; margin-bottom: 32px; }
.italic-text { font-style: italic; color: var(--text-secondary); font-size: 20px; }

.two-col { display: flex; align-items: center; gap: 80px; }
.reverse-col { flex-direction: row-reverse; }
.col-content { flex: 1; }
.col-visual { flex: 1; display: flex; justify-content: center; align-items: center; }

/* FEATURES LIST */
.feature-list { list-style: none; display: flex; flex-direction: column; gap: 16px; background: rgba(255,255,255,0.02); padding: 40px; border-radius: 24px; border: 1px solid rgba(255,255,255,0.08); width: 100%; box-shadow: 0 20px 40px rgba(0,0,0,0.5); }
.feature-list li { display: flex; align-items: center; gap: 16px; font-size: 17px; color: #f0f0f0; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.05); }
.feature-list li:last-child { border-bottom: none; }
.check-box { background: rgba(255,255,255,0.1); width: 32px; height: 32px; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.check-icon { font-size: 16px; color: #fff; }

/* BENEFITS GRID */
.benefits-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 40px; }
.benefit-card { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.05); padding: 24px; border-radius: 16px; transition: transform 0.3s ease, background 0.3s ease; }
.benefit-card:hover { transform: translateY(-5px); background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.15); box-shadow: 0 10px 30px rgba(0,0,0,0.4); }
.benefit-card h3 { font-size: 18px; margin-bottom: 8px; color: #fff; font-weight: 600; }
.benefit-card p { font-size: 14px; color: var(--text-secondary); line-height: 1.5; margin: 0; }

/* LAYERS VISUAL */
.layer-visual { position: relative; height: 400px; width: 100%; perspective: 1200px; }
.layer { position: absolute; width: 300px; height: 200px; border-radius: 20px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); backdrop-filter: blur(8px); left: 50%; top: 50%; transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1); display: flex; align-items: center; justify-content: center; }
.layer::after { content: ''; width: 40%; height: 40%; border-radius: 12px; border: 2px dashed rgba(255,255,255,0.1); }
.layer-1 { transform: translate(-50%, -30%) rotateX(60deg) rotateZ(-45deg) translateZ(80px); background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.25); box-shadow: -20px 20px 40px rgba(0,0,0,0.8); z-index: 3; }
.layer-2 { transform: translate(-50%, -40%) rotateX(60deg) rotateZ(-45deg) translateZ(0px); background: rgba(255,255,255,0.08); box-shadow: -20px 20px 40px rgba(0,0,0,0.6); z-index: 2; }
.layer-3 { transform: translate(-50%, -50%) rotateX(60deg) rotateZ(-45deg) translateZ(-80px); background: rgba(255,255,255,0.03); box-shadow: -20px 20px 40px rgba(0,0,0,0.4); z-index: 1; }
.layer-visual:hover .layer-1 { transform: translate(-50%, -30%) rotateX(60deg) rotateZ(-45deg) translateZ(120px); box-shadow: -20px 20px 40px rgba(0,0,0,0.8), 0 0 50px rgba(91, 103, 255, 0.6); border-color: rgba(184, 193, 255, 0.8); }
.layer-visual:hover .layer-2 { transform: translate(-50%, -40%) rotateX(60deg) rotateZ(-45deg) translateZ(10px); box-shadow: -20px 20px 40px rgba(0,0,0,0.6), 0 0 35px rgba(91, 103, 255, 0.4); border-color: rgba(184, 193, 255, 0.6); }
.layer-visual:hover .layer-3 { transform: translate(-50%, -50%) rotateX(60deg) rotateZ(-45deg) translateZ(-100px); box-shadow: -20px 20px 40px rgba(0,0,0,0.4), 0 0 20px rgba(91, 103, 255, 0.2); border-color: rgba(184, 193, 255, 0.4); }

/* RELIEF CARDS */
.relief-cards { display: flex; flex-direction: column; gap: 16px; margin-top: 40px; }
.r-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); padding: 24px; border-radius: 16px; font-size: 20px; font-weight: 500; color: #fff; transition: transform 0.3s; }
.r-card:hover { transform: scale(1.02); background: rgba(255,255,255,0.08); }

/* CTA BOX */
.cta-box { background: linear-gradient(180deg, rgba(255,255,255,0.05) 0%, rgba(0,0,0,0) 100%); border: 1px solid rgba(255,255,255,0.1); padding: 80px 40px; border-radius: 32px; position: relative; }
.cta-box::before { content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%; background: radial-gradient(circle at center, rgba(255,255,255,0.05) 0%, transparent 60%); pointer-events: none; }
.final-statement { font-size: 32px; font-weight: 700; margin-bottom: 24px; letter-spacing: -0.01em; color: #fff; }

/* FOOTER */
.footer { width: 100%; padding: 40px 0; border-top: 1px solid rgba(255,255,255,0.05); }
.footer-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 20px; }
.footer-text { color: var(--text-secondary); font-size: 14px; }
.footer-links { display: flex; gap: 24px; }
.footer-links a { color: var(--text-secondary); text-decoration: none; font-size: 14px; transition: color 0.3s; }
.footer-links a:hover { color: #fff; }

/* RESPONSIVE */
@media (max-width: 1024px) {
    .two-col { flex-direction: column; text-align: center; }
    .col-visual { width: 100%; }
    .hero-inner { flex-direction: column; justify-content: center; text-align: center; padding-top: 40px; gap: 40px; }
    .hero-content { margin: 0 auto; display: flex; flex-direction: column; align-items: center; }
    .hero-visual { width: 400px; height: 400px; margin: 0; }
    .hero-visual .disc { width: 100px; height: 100px; margin-top:-50px; margin-left:-50px; }
    .hero-visual .disc-1 { transform: rotate(20deg) translateY(-150px) rotate(-20deg); }
    .hero-visual .disc-2 { transform: rotate(65deg) translateY(-150px) rotate(-65deg); }
    .hero-visual .disc-3 { transform: rotate(110deg) translateY(-150px) rotate(-110deg); }
    .hero-visual .disc-4 { transform: rotate(155deg) translateY(-150px) rotate(-155deg); }
    .hero-visual .disc-5 { transform: rotate(200deg) translateY(-150px) rotate(-200deg); }
    .hero-visual .disc-6 { transform: rotate(245deg) translateY(-150px) rotate(-245deg); }
    .hero-visual .disc-7 { transform: rotate(290deg) translateY(-150px) rotate(-290deg); }
    .hero-visual .disc-8 { transform: rotate(335deg) translateY(-150px) rotate(-335deg); }
    .side-badge { display: none; }
    .feature-list { text-align: left; }
    .tag { margin: 0 auto 16px auto; }
}

@media (max-width: 768px) {
    .benefits-grid { grid-template-columns: 1fr; }
    .section { padding: 80px 0; }
    .cta-box { padding: 40px 20px; border-radius: 20px; }
    .r-card { font-size: 16px; padding: 16px; }
    .layer-visual { display: none; }
    .stars-layer2 { display: none; }
    .hero-visual { width: 300px; height: 300px; }
    .hero-visual .disc { width: 80px; height: 80px; margin-top:-40px; margin-left:-40px; }
    .hero-visual .disc-1 { transform: rotate(20deg) translateY(-120px) rotate(-20deg); }
    .hero-visual .disc-2 { transform: rotate(65deg) translateY(-120px) rotate(-65deg); }
    .hero-visual .disc-3 { transform: rotate(110deg) translateY(-120px) rotate(-110deg); }
    .hero-visual .disc-4 { transform: rotate(155deg) translateY(-120px) rotate(-155deg); }
    .hero-visual .disc-5 { transform: rotate(200deg) translateY(-120px) rotate(-200deg); }
    .hero-visual .disc-6 { transform: rotate(245deg) translateY(-120px) rotate(-245deg); }
    .hero-visual .disc-7 { transform: rotate(290deg) translateY(-120px) rotate(-290deg); }
    .hero-visual .disc-8 { transform: rotate(335deg) translateY(-120px) rotate(-335deg); }
}

@media (max-width: 480px) {
    .hero-visual { width: 250px; height: 250px; }
    .hero-visual .disc { width: 70px; height: 70px; margin-top:-35px; margin-left:-35px; }
    .hero-visual .disc-1 { transform: rotate(20deg) translateY(-100px) rotate(-20deg); }
    .hero-visual .disc-2 { transform: rotate(65deg) translateY(-100px) rotate(-65deg); }
    .hero-visual .disc-3 { transform: rotate(110deg) translateY(-100px) rotate(-110deg); }
    .hero-visual .disc-4 { transform: rotate(155deg) translateY(-100px) rotate(-155deg); }
    .hero-visual .disc-5 { transform: rotate(200deg) translateY(-100px) rotate(-200deg); }
    .hero-visual .disc-6 { transform: rotate(245deg) translateY(-100px) rotate(-245deg); }
    .hero-visual .disc-7 { transform: rotate(290deg) translateY(-100px) rotate(-290deg); }
    .hero-visual .disc-8 { transform: rotate(335deg) translateY(-100px) rotate(-335deg); }
    
    .center-display { width: 160px; }
    .center-display strong { font-size: 16px; }
    .center-display span { font-size: 12px; }

    .layer { width: 220px; height: 160px; }
    .closing-punch { font-size: 24px !important; line-height: 1.2; }
    .logo-text { font-size: 18px; }
    .cta-group { flex-direction: column; width: 100%; align-items: stretch; }
    .btn { justify-content: center; }
}
