/* ============================================
   MARCO AURÉLIO — O HIPNOTERAPEUTA
   Premium Dark Theme Design System
   ============================================ */

/* --- CSS Variables / Design Tokens --- */
:root {
    --clr-bg: #050505; /* Deep luxury black */
    --clr-bg-card: #0d0d0d;
    --clr-bg-card-hover: #151515;
    --clr-bg-section-alt: #080808;
    --clr-surface: #111111;
    --clr-border: rgba(212, 175, 55, 0.15); /* Gold border */
    --clr-border-hover: rgba(212, 175, 55, 0.4);

    --clr-text: #f5f5f5;
    --clr-text-muted: #a3a3a3;
    --clr-text-subtle: #737373;

    --clr-accent-1: #d4af37; /* Metallic Gold */
    --clr-accent-2: #f3e5ab; /* Champagne Gold / Highlight */
    --clr-accent-3: #996515; /* Dark Gold / Bronze */

    --gradient-primary: linear-gradient(135deg, var(--clr-accent-2) 0%, var(--clr-accent-1) 50%, var(--clr-accent-3) 100%);
    --gradient-subtle: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(243, 229, 171, 0.05) 100%);
    --gradient-glow: linear-gradient(135deg, rgba(212, 175, 55, 0.3) 0%, rgba(153, 101, 21, 0.1) 100%);

    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;

    --shadow-card: 0 4px 24px rgba(0,0,0,0.6), 0 1px 4px rgba(0,0,0,0.4);
    --shadow-glow: 0 0 40px rgba(212, 175, 55, 0.15), 0 0 80px rgba(212, 175, 55, 0.1);
    --shadow-btn: 0 4px 20px rgba(212, 175, 55, 0.3), 0 0 60px rgba(212, 175, 55, 0.1);

    --transition: 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-fast: 0.2s ease;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-body);
    background: var(--clr-bg);
    color: var(--clr-text);
    line-height: 1.7;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

/* --- Text Gradient Utility --- */
.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: var(--radius-xl);
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    position: relative;
    overflow: hidden;
    white-space: normal;
    text-align: center;
    justify-content: center;
}

.btn-primary {
    background: var(--gradient-primary);
    color: #0a0a0f;
}

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

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

.btn-glow::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: var(--gradient-primary);
    border-radius: inherit;
    z-index: -1;
    filter: blur(20px);
    opacity: 0.5;
    transition: var(--transition);
}

.btn-glow:hover::before {
    opacity: 0.8;
    filter: blur(30px);
}

.btn-secondary {
    background: transparent;
    color: var(--clr-accent-1);
    border: 1px solid rgba(212, 175, 55, 0.4);
}

.btn-secondary:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: rgba(212, 175, 55, 0.8);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 20px 44px;
    font-size: 1.1rem;
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: var(--transition);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(5, 5, 5, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--clr-border);
    padding: 10px 0;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-brand {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 600;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-links a {
    font-size: 0.9rem;
    color: var(--clr-text-muted);
    transition: var(--transition-fast);
    font-weight: 500;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition);
}

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

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    padding: 10px 24px;
    border-radius: var(--radius-xl);
    background: var(--gradient-primary);
    color: #0a0a0f;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
}

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

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--clr-text);
    border-radius: 2px;
    transition: var(--transition);
}

/* ============================================
   HERO
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 120px 0 80px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 50%, rgba(212, 175, 55, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 70% 30%, rgba(153, 101, 21, 0.06) 0%, transparent 50%),
                radial-gradient(circle at 50% 80%, rgba(243, 229, 171, 0.05) 0%, transparent 40%);
    animation: heroGlow 15s ease-in-out infinite alternate;
}

@keyframes heroGlow {
    0% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-5%, 3%) scale(1.05); }
    100% { transform: translate(3%, -2%) scale(1); }
}

.hero-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero-particle {
    position: absolute;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: var(--clr-accent-1);
    opacity: 0;
    animation: particleFloat 8s infinite;
}

@keyframes particleFloat {
    0% { opacity: 0; transform: translateY(100vh) scale(0); }
    20% { opacity: 0.6; }
    80% { opacity: 0.4; }
    100% { opacity: 0; transform: translateY(-20vh) scale(1); }
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.hero-badge {
    display: inline-block;
    padding: 8px 20px;
    border-radius: var(--radius-xl);
    background: var(--gradient-subtle);
    border: 1px solid var(--clr-border);
    color: var(--clr-accent-1);
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 28px;
    letter-spacing: 0.02em;
}

.hero h1 {
    font-size: clamp(2.4rem, 5.5vw, 4rem);
    margin-bottom: 24px;
    line-height: 1.15;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--clr-text-muted);
    margin-bottom: 16px;
    max-width: 640px;
    line-height: 1.8;
}

.hero-lead {
    font-size: 1.05rem;
    color: var(--clr-text);
    margin-bottom: 36px;
}

.hero-session-info {
    margin-top: 16px;
    font-size: 0.85rem;
    color: var(--clr-text-subtle);
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--clr-text-subtle);
    font-size: 0.8rem;
    animation: bounce 2s infinite;
}

.scroll-arrow {
    width: 20px;
    height: 20px;
    border-right: 2px solid var(--clr-text-subtle);
    border-bottom: 2px solid var(--clr-text-subtle);
    transform: rotate(45deg);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(10px); }
    60% { transform: translateX(-50%) translateY(5px); }
}

/* ============================================
   SECTIONS (Generic)
   ============================================ */
.section {
    padding: 100px 0;
    position: relative;
}

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

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

.section-label {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--clr-accent-1);
    margin-bottom: 16px;
}

.section-header h2 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    margin-bottom: 12px;
}

.section-desc {
    font-size: 1.1rem;
    color: var(--clr-text-muted);
}

/* ============================================
   SYMPTOMS
   ============================================ */
.symptoms-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.symptom-card {
    background: var(--clr-bg-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    padding: 36px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.symptom-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    opacity: 0;
    transition: var(--transition);
}

.symptom-card:hover {
    background: var(--clr-bg-card-hover);
    border-color: var(--clr-border-hover);
    transform: translateY(-4px);
    box-shadow: var(--shadow-card);
}

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

.symptom-icon {
    margin-bottom: 20px;
}

.symptom-card h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    font-family: var(--font-body);
    font-weight: 600;
}

.symptom-card p {
    color: var(--clr-text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

.symptoms-footer {
    text-align: center;
}

.highlight-text {
    font-size: 1.1rem;
    color: var(--clr-text);
    margin-bottom: 28px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* ============================================
   METHOD
   ============================================ */
.method-intro {
    max-width: 750px;
    margin: 0 auto 56px;
    text-align: center;
}

.method-intro p {
    color: var(--clr-text-muted);
    font-size: 1.05rem;
    margin-bottom: 20px;
    line-height: 1.8;
}

.method-highlight {
    color: var(--clr-text) !important;
    font-size: 1.2rem !important;
    font-weight: 600;
}

.method-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.method-card {
    background: var(--clr-bg-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    transition: var(--transition);
    position: relative;
}

.method-card:hover {
    background: var(--clr-bg-card-hover);
    border-color: var(--clr-border-hover);
    transform: translateY(-4px);
    box-shadow: var(--shadow-card);
}

.method-number {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.5;
    margin-bottom: 20px;
    line-height: 1;
}

.method-card h3 {
    font-size: 1.15rem;
    margin-bottom: 12px;
    font-family: var(--font-body);
    font-weight: 600;
}

.method-card p {
    color: var(--clr-text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonial-card {
    background: var(--clr-bg-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    padding: 36px;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    background: var(--clr-bg-card-hover);
    border-color: var(--clr-border-hover);
    transform: translateY(-4px);
    box-shadow: var(--shadow-card);
}

.testimonial-quote {
    font-family: var(--font-display);
    font-size: 4rem;
    line-height: 1;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.testimonial-card p {
    color: var(--clr-text-muted);
    font-size: 0.95rem;
    line-height: 1.8;
    flex: 1;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid var(--clr-border);
}

.author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    color: #0a0a0f;
}

.author-name {
    font-weight: 600;
    font-size: 0.95rem;
}

/* ============================================
   ABOUT
   ============================================ */
.about-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 64px;
    align-items: center;
}

.about-image-frame {
    position: relative;
    display: flex;
    justify-content: center;
}

.about-image-placeholder {
    width: 280px;
    height: 340px;
    border-radius: var(--radius-lg);
    background: var(--gradient-subtle);
    border: 1px solid var(--clr-border);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.about-image-placeholder span {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-image-glow {
    position: absolute;
    top: 20px;
    left: 20px;
    right: -20px;
    bottom: -20px;
    border-radius: var(--radius-lg);
    background: var(--gradient-glow);
    filter: blur(40px);
    z-index: 0;
}

.about-content h2 {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    margin-bottom: 8px;
}

.about-content h3 {
    font-size: 1.1rem;
    color: var(--clr-text-muted);
    font-family: var(--font-body);
    font-weight: 400;
    margin-bottom: 24px;
}

.about-content p {
    color: var(--clr-text-muted);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 16px;
}

.about-credentials {
    display: flex;
    gap: 32px;
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px solid var(--clr-border);
}

.credential {
    text-align: center;
}

.credential-number {
    display: block;
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 4px;
}

.credential-label {
    font-size: 0.8rem;
    color: var(--clr-text-subtle);
}

/* ============================================
   MYTHS
   ============================================ */
.myths-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.myth-card {
    background: var(--clr-bg-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    padding: 36px;
    transition: var(--transition);
    text-align: center;
}

.myth-card:hover {
    background: var(--clr-bg-card-hover);
    border-color: var(--clr-border-hover);
    transform: translateY(-4px);
    box-shadow: var(--shadow-card);
}

.myth-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.4rem;
    font-weight: 700;
}

.myth-false {
    background: rgba(239, 68, 68, 0.15);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.myth-card h3 {
    font-size: 1.1rem;
    margin-bottom: 12px;
    font-family: var(--font-body);
    font-weight: 600;
}

.myth-card p {
    color: var(--clr-text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    text-align: left;
}

.myths-cta {
    text-align: center;
}

/* ============================================
   FAQ
   ============================================ */
.faq-list {
    max-width: 720px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--clr-border);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0;
    background: none;
    border: none;
    color: var(--clr-text);
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-fast);
    text-align: left;
}

.faq-question:hover {
    color: var(--clr-accent-1);
}

.faq-chevron {
    flex-shrink: 0;
    transition: var(--transition);
    color: var(--clr-text-subtle);
}

.faq-item.open .faq-chevron {
    transform: rotate(180deg);
    color: var(--clr-accent-1);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.open .faq-answer {
    max-height: 300px;
    padding-bottom: 24px;
}

.faq-answer p {
    color: var(--clr-text-muted);
    font-size: 0.95rem;
    line-height: 1.8;
}

/* ============================================
   CTA FINAL
   ============================================ */
.section-cta {
    background: var(--clr-bg-section-alt);
    text-align: center;
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.section-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(110,231,183,0.06) 0%, transparent 60%),
                radial-gradient(circle at 30% 70%, rgba(129,140,248,0.04) 0%, transparent 50%);
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: clamp(1.6rem, 3.5vw, 2.6rem);
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 1.15rem;
    color: var(--clr-text-muted);
    margin-bottom: 40px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    padding: 40px 0;
    border-top: 1px solid var(--clr-border);
    background: var(--clr-bg);
}

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

.footer-brand {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-legal {
    font-size: 0.8rem;
    color: var(--clr-text-subtle);
}

/* ============================================
   ANIMATIONS
   ============================================ */
[data-animate] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-animate].visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .symptoms-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .method-grid,
    .testimonials-grid,
    .myths-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .method-grid > :last-child {
        grid-column: 1 / -1;
        max-width: 500px;
        margin: 0 auto;
    }

    .myths-grid > :last-child {
        grid-column: 1 / -1;
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .nav-links,
    .nav-cta {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-links.open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(5, 5, 5, 0.98);
        backdrop-filter: blur(20px);
        padding: 24px;
        gap: 16px;
        border-bottom: 1px solid var(--clr-border);
    }

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

    .hero h1 {
        font-size: 2rem;
    }

    .hero-scroll-indicator {
        display: none;
    }

    .section {
        padding: 64px 0;
    }

    .symptoms-grid,
    .method-grid,
    .testimonials-grid,
    .myths-grid {
        grid-template-columns: 1fr;
    }

    .method-grid > :last-child,
    .myths-grid > :last-child {
        max-width: none;
    }

    .symptom-card,
    .myth-card,
    .testimonial-card {
        padding: 24px;
    }

    .method-card {
        padding: 28px 20px;
    }

    .about-layout {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .about-credentials {
        justify-content: center;
    }

    .btn-lg {
        padding: 16px 32px;
        font-size: 1rem;
    }

    .section-cta {
        padding: 80px 0;
    }
}

@media (max-width: 480px) {
    .about-credentials {
        flex-direction: column;
        gap: 20px;
    }

    .hero-badge {
        font-size: 0.75rem;
    }
}

/* Hypnotic 3D Effect for Hero Background */
.hypno-mandala-wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100vw;
  height: 100%;
  display: grid;
  place-items: center;
  overflow: hidden;
  perspective: 80vh;
  transform-style: preserve-3d;
  z-index: 1;
  opacity: 0.15; /* Subtle blending */
  pointer-events: none;
}

.hypno-mandala {
  height: 80vmin;
  aspect-ratio: 1;
  transform-style: preserve-3d;
  animation: twirlAnim 15s linear infinite;
  color: var(--clr-primary);
}

@keyframes twirlAnim {
  to {
    transform: rotate(360deg);
  }
}

.hypno-mandala span {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  height: 40%;
  aspect-ratio: 1;
  background: var(--clr-bg);
  border: 1px solid var(--clr-primary);
  transform-origin: 0 0;  
  /* Modern CSS approach using CSS variables */
  transform: rotate(calc(var(--i) * (360deg / var(--total)))) rotateX(1deg);
  border-radius: 25%;
  border-bottom-right-radius: 100%;
  animation: spAnim 5s ease-in-out infinite;
}

.hypno-mandala span:nth-child(odd) {
  background: var(--clr-primary);
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

@keyframes spAnim {
  50% {
    transform: rotate(calc(var(--i) * (360deg / var(--total)))) rotateX(75deg);
  }
}

/* Infinity Marquee Tape Effect */
.tape-wrapper {
  overflow: hidden;
  white-space: nowrap;
  display: flex;
  background: var(--clr-primary, #D4AF37);
  color: #050505;
  padding: 12px 0;
  margin: 0;
  transform: rotate(-1.5deg) scale(1.05) translateY(10px); /* Brutalist tilted tape effect */
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: 2px;
  z-index: 5;
  width: 105vw; /* Overshoot to prevent seeing edges */
  left: -2vw !important; /* Offset scaling */
}

.tape-text {
  display: inline-block;
  animation: marquee 20s linear infinite;
  white-space: nowrap;
  padding-right: 50px;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-33.3333%); } /* Translating exactly one third to loop seamlessly since text is triplicated */
}

/* --- Mobile Fixes --- */
html, body {
  overflow-x: hidden;
  max-width: 100vw;
  width: 100%;
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: clamp(1.8rem, 8vw, 2.5rem);
    word-break: break-word;
    word-wrap: break-word;
    hyphens: auto;
  }
}
