/* OM EVENT Landing — Premium Spiritual Style */
:root {
    --gold: #C8963E;
    --gold-light: #D4A94E;
    --gold-dark: #A67A2E;
    --bg: #FAFAF7;
    --bg-section: #F5F4F0;
    --text: #2D2D2D;
    --text-light: #6B6B6B;
    --text-muted: #9A9A9A;
    --white: #FFFFFF;
    --border: #E8E4DC;
    --shadow: rgba(200, 150, 62, 0.08);

    --font-heading: 'Georgia', 'Times New Roman', serif;
    --font-body: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

    --s1: 8px;
    --s2: 16px;
    --s3: 24px;
    --s4: 32px;
    --s5: 40px;
    --s6: 48px;
    --s8: 64px;
    --s10: 80px;

    --max-width: 1080px;
}

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

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--s3);
}

/* ─── Hero ─── */
.hero {
    text-align: center;
    padding: var(--s10) var(--s3) var(--s6);
    background: linear-gradient(180deg, var(--white) 0%, var(--bg) 100%);
    position: relative;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 1px;
    background: var(--gold);
}

.hero-logo {
    max-width: 180px;
    width: 40%;
    height: auto;
    margin-bottom: var(--s3);
}

.hero-tagline {
    font-family: var(--font-heading);
    font-size: 20px;
    color: var(--text-light);
    font-style: italic;
    margin-bottom: var(--s3);
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.hero-categories {
    font-size: 15px;
    color: var(--text-muted);
    letter-spacing: 2px;
    margin-bottom: var(--s5);
}

.hero-categories span {
    color: var(--gold);
    margin: 0 6px;
}

.cta-button {
    display: inline-block;
    background: var(--gold);
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 16px;
    letter-spacing: 1px;
    padding: 14px 40px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.3s, transform 0.2s;
}

.cta-button:hover {
    background: var(--gold-dark);
    transform: translateY(-1px);
}

.cta-button-outline {
    background: transparent;
    color: var(--gold);
    border: 1px solid var(--gold);
}

.cta-button-outline:hover {
    background: var(--gold);
    color: var(--white);
}

/* ─── Sections ─── */
section {
    padding: var(--s8) 0;
}

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

.section-title {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 400;
    text-align: center;
    margin-bottom: var(--s1);
    color: var(--text);
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 16px;
    margin-bottom: var(--s6);
}

.gold-line {
    width: 60px;
    height: 1px;
    background: var(--gold);
    margin: var(--s2) auto var(--s3);
}

/* ─── Audience Cards (3 roles) ─── */
.audience-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--s3);
    max-width: var(--max-width);
    margin: 0 auto;
}

.audience-card {
    background: var(--white);
    border: 1px solid var(--border);
    padding: var(--s4) var(--s3);
    text-align: center;
    transition: box-shadow 0.3s, border-color 0.3s;
    cursor: pointer;
}

.audience-card:hover {
    border-color: var(--gold);
    box-shadow: 0 4px 24px var(--shadow);
}

.audience-card .icon {
    font-size: 40px;
    margin-bottom: var(--s2);
}

.audience-card h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 400;
    margin-bottom: var(--s1);
    color: var(--text);
}

.audience-card p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.5;
}

/* ─── Flow Sections (detailed per audience) ─── */
.flow-section {
    padding: var(--s6) 0;
}

.flow-header {
    display: flex;
    align-items: center;
    gap: var(--s2);
    margin-bottom: var(--s4);
}

.flow-header .icon {
    font-size: 36px;
}

.flow-header h2 {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 400;
}

.flow-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: var(--s3);
    margin-bottom: var(--s4);
}

.flow-step {
    background: var(--white);
    border: 1px solid var(--border);
    padding: var(--s3);
    padding-top: var(--s5);
    position: relative;
}

.flow-step-number {
    position: absolute;
    top: var(--s1);
    right: var(--s2);
    font-family: var(--font-heading);
    font-size: 28px;
    color: var(--border);
    line-height: 1;
}

.flow-step h4 {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 400;
    color: var(--gold);
    margin-bottom: var(--s1);
}

.flow-step p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.5;
}

/* ─── Video Placeholder ─── */
.video-placeholder {
    background: var(--bg-section);
    border: 2px dashed var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: var(--s1);
    padding: var(--s5) var(--s3);
    margin-top: var(--s3);
    color: var(--text-muted);
    font-size: 14px;
}

.video-placeholder .play-icon {
    font-size: 48px;
    color: var(--gold);
    opacity: 0.5;
}

/* ─── Partner Section ─── */
.partner-section {
    background: var(--white);
    padding: var(--s8) 0;
}

.partner-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--s4);
    max-width: var(--max-width);
    margin: 0 auto;
}

.partner-block {
    padding: var(--s3);
    border: 1px solid var(--border);
}

.partner-block h3 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 400;
    color: var(--gold);
    margin-bottom: var(--s2);
}

.partner-block ul {
    list-style: none;
    padding: 0;
}

.partner-block li {
    font-size: 14px;
    color: var(--text-light);
    padding: 6px 0;
    border-bottom: 1px solid var(--bg-section);
    line-height: 1.5;
}

.partner-block li:last-child {
    border-bottom: none;
}

.partner-block li::before {
    content: '·';
    color: var(--gold);
    font-weight: bold;
    margin-right: 8px;
}

.split-visual {
    display: flex;
    align-items: center;
    gap: var(--s2);
    margin: var(--s3) 0;
}

.split-bar {
    height: 8px;
    border-radius: 4px;
    background: var(--gold);
}

.split-bar-platform {
    background: var(--gold-light);
    opacity: 0.6;
}

.split-label {
    font-size: 13px;
    color: var(--text-muted);
    white-space: nowrap;
}

/* ─── Final CTA ─── */
.final-cta {
    text-align: center;
    padding: var(--s8) var(--s3);
    background: linear-gradient(180deg, var(--bg) 0%, var(--white) 100%);
}

.final-cta h2 {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 400;
    margin-bottom: var(--s2);
}

.final-cta p {
    font-size: 16px;
    color: var(--text-light);
    font-style: italic;
    margin-bottom: var(--s4);
}

/* ─── Footer ─── */
footer {
    text-align: center;
    padding: var(--s4) var(--s3);
    border-top: 1px solid var(--border);
    font-size: 13px;
    color: var(--text-muted);
}

footer a {
    color: var(--gold);
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/* ─── Responsive ─── */
@media (max-width: 768px) {
    .hero h1 { font-size: 30px; letter-spacing: 2px; }
    .hero-om { font-size: 48px; }
    .hero-tagline { font-size: 17px; }

    .audience-grid { grid-template-columns: 1fr; }
    .partner-grid { grid-template-columns: 1fr; }
    .flow-steps { grid-template-columns: 1fr; }

    .section-title { font-size: 24px; }
    .flow-header h2 { font-size: 22px; }

    .hero { padding: var(--s6) var(--s2) var(--s5); }
    section { padding: var(--s5) 0; }

    .container { padding: 0 var(--s2); }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 26px; }
    .cta-button { width: 100%; text-align: center; }
}
