:root {
  --teal: #5bb8b0;
  --teal-light: #a8dbd7;
  --teal-dark: #3a8f88;
  --purple: #7b5ea7;
  --purple-dark: #5a3f80;
  --pink: #e84393;
  --pink-light: #f472b6;
  --grad: linear-gradient(135deg, #5bb8b0 0%, #7b5ea7 50%, #e84393 100%);
  --grad-btn: linear-gradient(90deg, #7b5ea7 0%, #e84393 100%);
  --bg: #f7f9fc;
  --white: #ffffff;
  --text: #1a1a2e;
  --muted: #6b7280;
  --border: #e5e7eb;
  --surface: #ffffff;
}

*, *::before, *::after {box-sizing: border-box;margin: 0;padding: 0;}
html {scroll-behavior: smooth;}
body {font-family: 'Plus Jakarta Sans', sans-serif;
background: var(--bg);
color: var(--text);
overflow-x: hidden;}

/* ── HERO ── */
.hero {min-height: 92vh;
display: grid;
grid-template-columns: 1fr 1fr;
align-items: center;
position: relative;
overflow: hidden;
padding: 0 6rem;
gap: 3rem;}

.hero-bg-shape {position: absolute;
top: -120px;
right: -120px;
width: 600px;
height: 600px;
border-radius: 50%;
background: radial-gradient(circle, rgba(91,184,176,0.15) 0%, rgba(123,94,167,0.1) 50%, transparent 70%);
pointer-events: none;}

.hero-bg-shape2 {position: absolute;
bottom: -80px;
left: -80px;
width: 400px;
height: 400px;
border-radius: 50%;
background: radial-gradient(circle, rgba(232,67,147,0.08) 0%, transparent 70%);
pointer-events: none;}

.hero-left {position: relative;z-index: 2;}

.badge {display: inline-flex;
align-items: center;
gap: 8px;
padding: 6px 16px;
background: rgba(91,184,176,0.12);
border: 1px solid rgba(91,184,176,0.3);
border-radius: 100px;
font-size: 0.72rem;
font-weight: 600;
letter-spacing: 0.1em;
text-transform: uppercase;
color: var(--teal-dark);
margin-bottom: 1.5rem;}

.badge-dot {width: 6px;
height: 6px;
border-radius: 50%;
background: var(--teal);
animation: blink 2s ease infinite;}

@keyframes blink {
  0%,100%{opacity:1;} 50%{opacity:0.3;}
}

.hero-title {font-family: 'Playfair Display', serif;
font-size: clamp(2.8rem, 4.5vw, 5rem);
font-weight: 900;
line-height: 1.08;
letter-spacing: -0.02em;
margin-bottom: 1.4rem;}

.hero-title .accent {background: var(--grad);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
font-style: italic;}

.hero-desc {font-size: 1.05rem;
color: var(--muted);
line-height: 1.7;
max-width: 460px;
margin-bottom: 2.2rem;
font-weight: 400;}

.hero-actions {display: flex;
gap: 12px;
flex-wrap: wrap;
margin-bottom: 2.5rem;}

.btn-main {background: var(--grad-btn);
color: white !important;
padding: 14px 28px;
border-radius: 10px;
font-weight: 700;
font-size: 0.92rem;
text-decoration: none;
display: inline-flex;
align-items: center;
gap: 8px;
transition: opacity 0.2s, transform 0.2s;
box-shadow: 0 4px 20px rgba(123,94,167,0.3);
border: none;
cursor: pointer;
font-family: 'Plus Jakarta Sans', sans-serif;}

.btn-main:hover {opacity: 0.9;transform: translateY(-2px);}

.btn-outline {background: transparent;
color: var(--purple);
padding: 14px 28px;
border-radius: 10px;
font-weight: 600;
font-size: 0.92rem;
text-decoration: none;
border: 2px solid var(--purple);
display: inline-flex;
align-items: center;
gap: 8px;
transition: all 0.2s;
cursor: pointer;}

.btn-outline:hover {background: var(--purple);
color: white !important;}

.hero-trust {display: flex;
align-items: center;
gap: 1.5rem;
flex-wrap: wrap;}

.trust-chip {display: flex;
align-items: center;
gap: 6px;
font-size: 0.78rem;
color: var(--muted);
font-weight: 500;}

.trust-icon {width: 18px;
height: 18px;
border-radius: 50%;
background: var(--grad);
display: flex;
align-items: center;
justify-content: center;
color: white !important;
font-size: 10px;
flex-shrink: 0;}

/* Hero Right — image mosaic */
.hero-right {position: relative;
z-index: 2;
display: flex;
align-items: center;
justify-content: center;}

.mosaic {position: relative;
width: 420px;
height: 460px;}

.mosaic-img {position: absolute;
border-radius: 16px;
object-fit: cover;
border: 3px solid white;
box-shadow: 0 8px 30px rgba(0,0,0,0.12);}

.mosaic-img:nth-child(1) {width: 260px;
height: 300px;
top: 0;
left: 0;
animation: float1 5s ease-in-out infinite;}

.mosaic-img:nth-child(2) {width: 200px;
height: 200px;
top: 20px;
right: 0;
animation: float2 5s 1s ease-in-out infinite;}

.mosaic-img:nth-child(3) {width: 190px;
height: 200px;
bottom: 0;
left: 50px;
animation: float3 5s 0.5s ease-in-out infinite;}

@keyframes float1 { 0%,100%{transform:translateY(0);} 50%{transform:translateY(-10px);} }
@keyframes float2 { 0%,100%{transform:translateY(0);} 50%{transform:translateY(-7px);} }
@keyframes float3 { 0%,100%{transform:translateY(0);} 50%{transform:translateY(-8px);} }

.mosaic-badge {position: absolute;
bottom: 40px;
right: -10px;
background: white;
border-radius: 14px;
padding: 12px 16px;
box-shadow: 0 8px 30px rgba(0,0,0,0.15);
display: flex;
align-items: center;
gap: 10px;
z-index: 5;
animation: float2 4s ease-in-out infinite;}

.mosaic-badge-icon {width: 40px;
height: 40px;
border-radius: 10px;
background: var(--grad-btn);
display: flex;
align-items: center;
justify-content: center;
font-size: 18px;}

.mosaic-badge-text {font-size: 0.78rem;
line-height: 1.3;}

.mosaic-badge-text strong {display: block;
font-weight: 700;
font-size: 0.85rem;
color: var(--text);}

.mosaic-badge-text span {color: var(--muted);}

/* ── SCROLL TICKER ── */
.ticker-wrap {background: var(--white);
border-top: 1px solid var(--border);
border-bottom: 1px solid var(--border);
padding: 14px 0;
overflow: hidden;}

.ticker-track {display: flex;
gap: 2.5rem;
animation: ticker 25s linear infinite;
width: max-content;}

.ticker-item {display: flex;
align-items: center;
gap: 8px;
font-size: 0.82rem;
font-weight: 600;
color: var(--muted);
white-space: nowrap;
text-transform: uppercase;
letter-spacing: 0.05em;}

.ticker-sep {color: var(--teal);
font-size: 1rem;}

@keyframes ticker {
  0%{transform:translateX(0);} 100%{transform:translateX(-50%);}
}

/* ── SECTION BASE ── */
.section {padding: 5rem 6rem;}

.section-tag {display: inline-block;
font-size: 0.7rem;
font-weight: 700;
letter-spacing: 0.14em;
text-transform: uppercase;
color: var(--pink);
margin-bottom: 0.8rem;}

.section-heading {font-family: 'Playfair Display', serif;
font-size: clamp(2rem, 3vw, 2.8rem);
font-weight: 900;
line-height: 1.15;
margin-bottom: 1rem;}

.section-sub {color: var(--muted);
font-size: 1rem;
line-height: 1.7;
max-width: 520px;
font-weight: 400;}

/* ── STEPS ── */
.steps-section {background: var(--white);}

.steps-grid {display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 1.5rem;
margin-top: 3rem;}

.step-card {background: var(--bg);
border-radius: 16px;
padding: 2rem 1.5rem;
position: relative;
transition: transform 0.25s, box-shadow 0.25s;
border: 1px solid var(--border);}

.step-card:hover {transform: translateY(-4px);
box-shadow: 0 12px 40px rgba(123,94,167,0.12);}

.step-num {width: 36px;
height: 36px;
border-radius: 10px;
background: var(--grad-btn);
color: white !important;
display: flex;
align-items: center;
justify-content: center;
font-weight: 800;
font-size: 0.85rem;
margin-bottom: 1.2rem;}

.step-card h4 {font-weight: 700;
font-size: 1rem;
margin-bottom: 0.6rem;
color: var(--text);}

.step-card p {font-size: 0.85rem;
color: var(--muted);
line-height: 1.6;}

/* ── VIDEO SECTION ── */
.video-section {background: var(--bg);
padding: 5rem 6rem;}

.video-layout {display: grid;
grid-template-columns: 1fr 1fr;
gap: 4rem;
align-items: center;}

.video-frame {border-radius: 20px;
overflow: hidden;
position: relative;
aspect-ratio: 16/9;
background: #000;
box-shadow: 0 20px 60px rgba(0,0,0,0.2);}

.video-frame iframe {width: 100%;
height: 100%;
border: none;
display: block;}

/* ── VIBES/GENRE SECTION ── */
.vibes-section {background: var(--white);}

.vibes-grid {display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 1.2rem;
margin-top: 2.5rem;}

.vibe-card {border-radius: 16px;
padding: 1.8rem;
display: flex;
align-items: flex-start;
gap: 1rem;
border: 1.5px solid var(--border);
background: var(--white);
text-decoration: none;
color: inherit;
transition: all 0.25s;
cursor: pointer;}

.vibe-card:hover {border-color: var(--purple);
background: rgba(123,94,167,0.04);
transform: translateY(-3px);
box-shadow: 0 8px 30px rgba(123,94,167,0.1);}

.vibe-icon {width: 48px;
height: 48px;
border-radius: 12px;
display: flex;
align-items: center;
justify-content: center;
font-size: 1.4rem;
flex-shrink: 0;}

.vibe-card:nth-child(1) .vibe-icon {background: rgba(232,67,147,0.1);}
.vibe-card:nth-child(2) .vibe-icon {background: rgba(91,184,176,0.1);}
.vibe-card:nth-child(3) .vibe-icon {background: rgba(123,94,167,0.1);}
.vibe-card:nth-child(4) .vibe-icon {background: rgba(245,200,66,0.1);}
.vibe-card:nth-child(5) .vibe-icon {background: rgba(232,67,147,0.1);}
.vibe-card:nth-child(6) .vibe-icon {background: rgba(91,184,176,0.1);}

.vibe-info h4 {font-weight: 700;
font-size: 0.95rem;
margin-bottom: 4px;
color: var(--text);}

.vibe-info p {font-size: 0.8rem;
color: var(--muted);
line-height: 1.5;}

/* ── PHOTO GRID ── */
.photo-section {padding: 5rem 6rem;
background: var(--bg);}

.photo-grid {display: grid;
grid-template-columns: 2fr 1fr 1fr;
grid-template-rows: 240px 240px;
gap: 1rem;
margin-top: 2.5rem;
border-radius: 20px;
overflow: hidden;}

.photo-cell {overflow: hidden;
position: relative;}

.photo-cell img {width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.5s ease;}

.photo-cell:hover img {transform: scale(1.05);}
.photo-cell:nth-child(1) {grid-row: span 2;}

/* ── VALUES ── */
.values-section {background: var(--white);}

.values-grid {display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 1.5rem;
margin-top: 2.5rem;}

.value-card {border-radius: 16px;
padding: 2rem;
border: 1.5px solid var(--border);
transition: all 0.25s;}

.value-card:hover {border-color: var(--teal-light);
box-shadow: 0 8px 30px rgba(91,184,176,0.1);}

.value-head {display: flex;
align-items: center;
gap: 12px;
margin-bottom: 0.8rem;}

.value-ico {width: 44px;
height: 44px;
border-radius: 12px;
display: flex;
align-items: center;
justify-content: center;
font-size: 1.2rem;
background: rgba(91,184,176,0.1);}

.value-head h4 {font-weight: 700;
font-size: 1rem;}

.value-card p {font-size: 0.85rem;
color: var(--muted);
line-height: 1.65;}

/* ── CTA SECTION ── */
.cta-section {padding: 5rem 6rem;
background: var(--bg);}

.cta-box {background: var(--grad);
border-radius: 24px;
padding: 4rem;
display: flex;
align-items: center;
justify-content: space-between;
gap: 2rem;
overflow: hidden;
position: relative;}

.cta-box::before {content: '';
position: absolute;
top: -80px;
right: -80px;
width: 300px;
height: 300px;
border-radius: 50%;
background: rgba(255,255,255,0.08);}

.cta-box::after {content: '';
position: absolute;
bottom: -60px;
left: 30%;
width: 200px;
height: 200px;
border-radius: 50%;
background: rgba(255,255,255,0.06);}

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

.cta-text h2 {font-family: 'Playfair Display', serif;
font-size: 2.4rem;
font-weight: 900;
color: white !important;
margin-bottom: 0.8rem;
line-height: 1.2;}

.cta-text p {color: rgba(255,255,255,0.8) !important;
font-size: 1rem;
font-weight: 400;
max-width: 400px;}

.cta-buttons {display: flex;
gap: 12px;
flex-shrink: 0;
position: relative;
z-index: 1;
flex-wrap: wrap;}

.btn-white {background: white;
color: var(--purple);
padding: 14px 28px;
border-radius: 10px;
font-weight: 700;
font-size: 0.92rem;
text-decoration: none;
border: none;
cursor: pointer;
font-family: 'Plus Jakarta Sans', sans-serif;
transition: transform 0.2s, box-shadow 0.2s;
display: inline-flex;
align-items: center;
gap: 8px;
box-shadow: 0 4px 20px rgba(0,0,0,0.15);}

.btn-white:hover {transform: translateY(-2px);box-shadow: 0 8px 30px rgba(0,0,0,0.2);}

.btn-white-outline {background: transparent;
color: white !important;
padding: 14px 28px;
border-radius: 10px;
font-weight: 600;
font-size: 0.92rem;
text-decoration: none;
border: 2px solid rgba(255,255,255,0.6);
cursor: pointer;
font-family: 'Plus Jakarta Sans', sans-serif;
transition: all 0.2s;
display: inline-flex;
align-items: center;
gap: 8px;}

.btn-white-outline:hover {background: rgba(255,255,255,0.15);
border-color: white;}

/* ── REVEAL ANIMATIONS ── */
.reveal {opacity: 0;
transform: translateY(28px);
transition: opacity 0.7s ease, transform 0.7s ease;}

.reveal.on {opacity: 1;transform: translateY(0);}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .hero {grid-template-columns: 1fr;padding: 4rem 3rem;min-height: auto;padding-top: 5rem;}
  .hero-right {display: none;}
  .section, .video-section, .photo-section, .cta-section, .steps-section, .vibes-section, .values-section {padding: 3.5rem 2rem;}
  .steps-grid {grid-template-columns: repeat(2,1fr);}
  .vibes-grid {grid-template-columns: repeat(2,1fr);}
  .video-layout {grid-template-columns: 1fr;}
  .cta-box {flex-direction: column;text-align: center;}
  .cta-text p {max-width: 100%;}
  .photo-grid {grid-template-columns: 1fr 1fr;grid-template-rows: auto;}
  .photo-cell:nth-child(1) {grid-row: span 1;}
}

@media (max-width: 640px) {
  .hero {padding: 4rem 1.5rem;}
  .steps-grid, .vibes-grid, .values-grid {grid-template-columns: 1fr;}
  .photo-grid {grid-template-columns: 1fr;grid-template-rows: 200px;}
  .photo-grid .photo-cell:nth-child(n+3) {display: none;}
}