:root {
  --navy-deep: #180F3E;
  --navy: #241951;
  --violet: #3A2B8F;
  --royal: #2447D6;
  --red: #E02334;
  --orange: #F37021;
  --yellow: #F9B233;
  --turq: #00B4C9;

  --white: #FFFFFF;
  --bg-light: #F5F4FB;
  --border-light: #E6E3F4;
  --border-dashed: #C9C3E8;
  --divider: #F0EEF9;
  --muted: #8B82BF;
  --body-muted: #5A5190;
  --hero-copy: #C9C3E8;
}

html, body { margin: 0; padding: 0; background: var(--white); overflow-x: hidden; }
body { font-family: 'Montserrat', sans-serif; color: var(--navy); }
* { box-sizing: border-box; border-radius: 0; }
a { color: var(--violet); text-decoration: none; }
a:hover { color: var(--turq); }
img { max-width: 100%; }

@keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@keyframes spinrev { from { transform: rotate(360deg); } to { transform: rotate(0deg); } }
@keyframes sqpulse { 0%, 100% { transform: scale(1); opacity: 1; } 12% { transform: scale(1.35); opacity: .75; } 24% { transform: scale(1); opacity: 1; } }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes popin { from { opacity: 0; transform: scale(.4); } to { opacity: 1; transform: scale(1); } }

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .01ms !important; animation-iteration-count: 1 !important; animation-delay: 0ms !important; transition: none !important; }
}

/* ---------- Header ---------- */
.site-header { position: sticky; top: 0; z-index: 60; background: var(--white); border-bottom: 1px solid var(--border-light); }
.header-inner { max-width: 1360px; margin: 0 auto; padding: 0 24px; height: 96px; display: flex; align-items: center; gap: 28px; }

.logo { display: flex; align-items: center; gap: 18px; flex: none; }
.logo-mark { position: relative; display: block; width: 62px; height: 62px; flex: none; }
.logo-mark img { width: 100%; height: 100%; display: block; border-radius: 50%; animation: popin .5s ease-out .2s both; }
.logo-ring-outer { position: absolute; inset: -5px; border: 2px solid transparent; border-top-color: var(--turq); border-radius: 50%; animation: spin 8s linear infinite; pointer-events: none; }
.logo-ring-inner { position: absolute; inset: -10px; border: 2px solid transparent; border-bottom-color: var(--red); border-radius: 50%; animation: spinrev 13s linear infinite; pointer-events: none; }
.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo-kicker { font-weight: 800; font-size: 11px; letter-spacing: .3em; color: var(--violet); }
.logo-title { font-weight: 800; font-style: italic; font-size: 24px; letter-spacing: .01em; color: var(--navy); margin-top: 5px; }

.nav-links { display: flex; gap: 22px; margin-left: auto; align-items: center; }
.nav-links a { font-weight: 700; font-size: 12px; letter-spacing: .14em; color: var(--navy); }
.nav-links a:hover { color: var(--turq); }

.cta-btn { flex: none; margin-left: 12px; display: inline-block; transform: skewX(-12deg); background: var(--turq); padding: 13px 26px; box-shadow: 5px 5px 0 var(--navy); transition: background .2s, box-shadow .2s; }
.cta-btn:hover { background: var(--violet); box-shadow: 5px 5px 0 var(--turq); }
.cta-btn span { display: inline-block; transform: skewX(12deg); color: var(--white); font-weight: 800; font-size: 13px; letter-spacing: .12em; }

#hamb { display: none; flex: none; align-items: center; justify-content: center; width: 44px; height: 44px; background: var(--navy); border: none; cursor: pointer; flex-direction: column; gap: 5px; }
.hamb-bar { display: block; width: 20px; height: 2px; background: var(--white); }
.hamb-bar.mid { background: var(--turq); }

.mobile-nav { display: none; flex-direction: column; background: var(--white); border-top: 1px solid var(--border-light); padding: 12px 24px 20px; gap: 2px; }
.mobile-nav.is-open { display: flex; }
.mobile-nav a { font-weight: 800; font-size: 15px; letter-spacing: .12em; color: var(--navy); padding: 11px 0; border-bottom: 1px solid var(--divider); }
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a.mobile-nav-cta { color: var(--turq); }

.nav-links a.is-current, .mobile-nav a.is-current { color: var(--turq); }

@media (max-width: 940px) {
  .nav-links { display: none !important; }
  .cta-btn { display: none !important; }
  #hamb { display: inline-flex !important; }
  .hero-photo { width: 100% !important; opacity: .32 !important; }
}

/* ---------- Hero ---------- */
.hero { position: relative; background: var(--navy-deep); overflow: hidden; }

.hero-photo { position: absolute; top: 0; right: 0; height: 100%; width: 52%; clip-path: polygon(22% 0, 100% 0, 100% 100%, 0 100%); overflow: hidden; }
.hero-photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity .6s; }
.hero-photo img.is-active { opacity: 1; }
.hero-photo-overlay { position: absolute; inset: 0; mix-blend-mode: color; opacity: .72; transition: background .6s; pointer-events: none; }

.hero-photo-nav { position: absolute; right: 30px; bottom: 40px; z-index: 6; display: flex; gap: 12px; }
.hero-photo-nav button { width: 22px; height: 22px; border: 3px solid rgba(255, 255, 255, .25); cursor: pointer; padding: 0; transform: skewX(-12deg); transition: border-color .2s; }
.hero-photo-nav button.is-active { border-color: var(--white); }

.hero-gradient { position: absolute; inset: 0; background: linear-gradient(100deg, var(--navy-deep) 44%, rgba(24, 15, 62, .55) 62%, rgba(24, 15, 62, .15) 100%); }

.hero-inner { position: relative; max-width: 1360px; margin: 0 auto; padding: 110px 24px 180px; display: grid; grid-template-columns: minmax(300px, 700px); gap: 32px; align-items: center; }
.hero-content { min-width: 0; }

.eyebrow-row { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.eyebrow-bar { display: inline-block; width: 34px; height: 3px; background: var(--turq); }
.eyebrow-text { font-weight: 800; font-size: 13px; letter-spacing: .35em; color: var(--turq); }

.hero-title { margin: 26px 0 0; font-style: italic; font-weight: 900; text-transform: uppercase; line-height: .92; font-size: clamp(52px, 8.2vw, 118px); color: var(--white); letter-spacing: -.01em; text-wrap: balance; overflow-wrap: break-word; }
.hero-title .dot { color: var(--turq); }

.hero-copy { margin: 26px 0 0; max-width: 520px; font-size: 17px; line-height: 1.65; color: var(--hero-copy); font-weight: 600; }

.hero-actions { display: flex; gap: 20px; margin-top: 36px; flex-wrap: wrap; }
.btn-primary { display: inline-block; transform: skewX(-12deg); background: var(--turq); padding: 17px 34px; box-shadow: 6px 6px 0 var(--royal); transition: background .2s, box-shadow .2s; }
.btn-primary:hover { background: var(--white); box-shadow: 6px 6px 0 var(--turq); }
.btn-primary span { display: inline-block; transform: skewX(12deg); color: var(--navy-deep); font-weight: 800; font-size: 14px; letter-spacing: .12em; }
.btn-outline { display: inline-block; transform: skewX(-12deg); border: 2px solid var(--white); padding: 15px 32px; transition: border-color .2s, background .2s; }
.btn-outline:hover { border-color: var(--turq); background: rgba(0, 180, 201, .12); }
.btn-outline span { display: inline-block; transform: skewX(12deg); color: var(--white); font-weight: 800; font-size: 14px; letter-spacing: .12em; }

.hero-meta { display: flex; align-items: center; gap: 22px; margin-top: 44px; flex-wrap: wrap; }
.pulse-squares { display: flex; gap: 8px; }
.pulse-squares span { width: 13px; height: 13px; animation: sqpulse 3.2s ease-in-out infinite; }
.pulse-squares span:nth-child(1) { background: var(--royal); animation-delay: 0s; }
.pulse-squares span:nth-child(2) { background: var(--red); animation-delay: .25s; }
.pulse-squares span:nth-child(3) { background: var(--orange); animation-delay: .5s; }
.pulse-squares span:nth-child(4) { background: var(--yellow); animation-delay: .75s; }
.pulse-squares span:nth-child(5) { background: var(--turq); animation-delay: 1s; }
.hero-meta-text { font-family: 'JetBrains Mono', monospace; font-size: 12px; letter-spacing: .18em; color: var(--muted); }

.hero-skyline { position: absolute; left: 0; right: 0; bottom: 0; color: var(--white); opacity: .18; pointer-events: none; }
.hero-skyline svg { display: block; width: 100%; height: 120px; }

/* ---------- Ticker ---------- */
.ticker { background: var(--turq); overflow: hidden; padding: 14px 0; position: relative; z-index: 5; }
.ticker-track { display: inline-flex; white-space: nowrap; animation: ticker var(--ticker-duration, 38s) linear infinite; }
.ticker-track span { display: inline-block; font-weight: 800; font-style: italic; font-size: 16px; letter-spacing: .14em; color: var(--navy-deep); }

/* ---------- Section shared ---------- */
.section-inner { max-width: 1360px; margin: 0 auto; padding: 0 24px; }
.section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.section-eyebrow { font-weight: 800; font-size: 12px; letter-spacing: .35em; color: var(--turq); }
.section-title { margin: 12px 0 0; font-style: italic; font-weight: 800; text-transform: uppercase; line-height: .95; font-size: clamp(36px, 4.6vw, 60px); color: var(--navy); overflow-wrap: break-word; }
.section-link { font-weight: 800; font-size: 13px; letter-spacing: .14em; color: var(--violet); border-bottom: 3px solid var(--turq); padding-bottom: 4px; }
.section-link:hover { color: var(--turq); }

/* ---------- News ---------- */
.news-section { background: var(--bg-light); padding: 96px 0 110px; clip-path: polygon(0 34px, 100% 0, 100% 100%, 0 100%); margin-top: -1px; }
.news-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 34px; margin-top: 52px; }
.news-card { background: var(--white); box-shadow: 8px 8px 0 var(--navy); transition: transform .25s, box-shadow .25s; }
.news-card:hover { transform: translateY(-8px); box-shadow: 8px 8px 0 var(--turq); }
.news-card img { width: 100%; height: 210px; object-fit: cover; display: block; clip-path: polygon(0 0, 100% 0, 100% 84%, 0 100%); }
.news-card-body { padding: 6px 26px 30px; }
.news-card-meta { display: flex; align-items: center; gap: 14px; }
.news-badge { display: inline-block; transform: skewX(-12deg); padding: 6px 14px; }
.news-badge span { display: inline-block; transform: skewX(12deg); color: var(--white); font-weight: 800; font-size: 11px; letter-spacing: .14em; }
.news-date { font-family: 'JetBrains Mono', monospace; font-size: 11px; letter-spacing: .14em; color: var(--muted); }
.news-card-title { margin: 16px 0 0; font-style: italic; font-weight: 800; text-transform: uppercase; font-size: 21px; line-height: 1.05; color: var(--navy); }
.news-card-excerpt { margin: 12px 0 0; font-size: 14px; line-height: 1.6; color: var(--body-muted); font-weight: 600; }
.news-card-cta { display: inline-block; margin-top: 16px; font-weight: 800; font-size: 12px; letter-spacing: .14em; color: var(--violet); }
.news-card-cta:hover { color: var(--turq); }

/* ---------- Secții ---------- */
.sections-section { background: var(--white); padding: 96px 0 110px; }
.sections-counter { font-family: 'JetBrains Mono', monospace; font-size: 12px; letter-spacing: .16em; color: var(--muted); }
.sections-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 26px; margin-top: 52px; }

.section-card { display: block; padding: 30px 28px 26px; }
.section-card-top { display: flex; justify-content: space-between; align-items: baseline; }
.section-card-nr { font-family: 'JetBrains Mono', monospace; font-size: 12px; letter-spacing: .2em; color: inherit; }
.section-card-title { margin: 34px 0 0; font-style: italic; font-weight: 800; text-transform: uppercase; font-size: 30px; line-height: 1; color: inherit; }
.section-card-subtitle { margin: 10px 0 0; font-size: 13px; font-weight: 700; letter-spacing: .06em; color: inherit; opacity: .75; }

.section-card.is-activa {
  border: 2px solid var(--navy);
  color: var(--navy);
  background: linear-gradient(115deg, var(--turq) 50%, var(--white) 50%);
  background-size: 260% 100%;
  background-position: 99% 0;
  transition: background-position .35s, color .35s;
}
.section-card.is-activa:hover { background-position: 0 0; color: var(--white); }
.section-badge-activa { display: inline-block; transform: skewX(-12deg); background: var(--navy); padding: 4px 12px; }
.section-badge-activa span { display: inline-block; transform: skewX(12deg); color: var(--turq); font-weight: 800; font-size: 10px; letter-spacing: .16em; }
.section-card-cta { display: inline-block; margin-top: 22px; font-weight: 800; font-size: 13px; letter-spacing: .14em; color: inherit; }

.section-card.is-evaluare { border: 2px dashed var(--border-dashed); color: var(--muted); background: var(--white); }
.section-badge-evaluare { display: inline-block; transform: skewX(-12deg); border: 1px solid var(--border-dashed); padding: 4px 12px; }
.section-badge-evaluare span { display: inline-block; transform: skewX(12deg); font-weight: 800; font-size: 10px; letter-spacing: .16em; }
.section-card-tbd { display: inline-block; margin-top: 22px; font-family: 'JetBrains Mono', monospace; font-size: 12px; letter-spacing: .16em; }

/* ---------- Calendar ---------- */
.calendar-section { background: var(--bg-light); padding: 96px 0 110px; }
.calendar-list { display: flex; flex-direction: column; margin-top: 52px; border-top: 1px solid var(--border-light); }
.calendar-row { display: flex; align-items: center; gap: 24px; padding: 22px 0; border-bottom: 1px solid var(--border-light); flex-wrap: wrap; }
.calendar-date { font-family: 'JetBrains Mono', monospace; font-size: 13px; letter-spacing: .14em; color: var(--muted); flex: none; min-width: 110px; }
.calendar-tag { display: inline-block; transform: skewX(-12deg); background: var(--turq); padding: 6px 14px; flex: none; }
.calendar-tag span { display: inline-block; transform: skewX(12deg); color: var(--white); font-weight: 800; font-size: 11px; letter-spacing: .14em; }
.calendar-title { flex: 1; min-width: 220px; font-style: italic; font-weight: 800; font-size: 18px; text-transform: uppercase; color: var(--navy); }
.calendar-note { margin: 28px 0 0; font-family: 'JetBrains Mono', monospace; font-size: 12px; letter-spacing: .08em; color: var(--muted); }

/* ---------- Club ---------- */
.club-section { background: var(--bg-light); padding: 96px 0 110px; }
.club-copy { margin-top: 24px; max-width: 760px; }
.club-copy p { margin: 18px 0 0; font-size: 15px; line-height: 1.7; color: var(--body-muted); font-weight: 600; }
.club-copy p:first-child { margin-top: 0; }
.club-facts { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); max-width: 760px; margin-top: 34px; border: 1px solid var(--border-light); }
.club-fact { padding: 18px 22px; border: 1px solid var(--border-light); font-family: 'JetBrains Mono', monospace; font-weight: 700; font-size: 13px; letter-spacing: .12em; color: var(--navy); }
.club-legal { margin: 34px 0 0; font-family: 'JetBrains Mono', monospace; font-size: 11px; letter-spacing: .06em; line-height: 1.7; color: var(--muted); max-width: 760px; }
.club-hashtags { margin: 8px 0 0; font-family: 'JetBrains Mono', monospace; font-size: 11px; letter-spacing: .08em; color: var(--turq); }

/* ---------- Înscrieri ---------- */
.enroll-section { background: var(--navy-deep); padding: 96px 0 110px; }
.enroll-section .section-title { color: var(--white); }
.enroll-copy { margin: 22px 0 0; max-width: 560px; font-size: 16px; line-height: 1.65; color: var(--hero-copy); font-weight: 600; }
.enroll-actions { display: flex; gap: 20px; margin-top: 36px; flex-wrap: wrap; }

/* ---------- Magazin ---------- */
.kit-section { background: var(--navy-deep); padding: 120px 0 110px; clip-path: polygon(0 0, 100% 44px, 100% 100%, 0 100%); }
.kit-inner { max-width: 1360px; margin: 0 auto; padding: 0 24px; display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 56px; align-items: center; }
.kit-image img { width: 100%; display: block; clip-path: polygon(0 0, 100% 4%, 100% 100%, 0 96%); box-shadow: 12px 12px 0 var(--turq); }
.kit-eyebrow { font-weight: 800; font-size: 12px; letter-spacing: .35em; color: var(--turq); }
.kit-title { margin: 14px 0 0; font-style: italic; font-weight: 800; text-transform: uppercase; line-height: .95; font-size: clamp(38px, 4.8vw, 64px); color: var(--white); overflow-wrap: break-word; }
.kit-copy { margin: 22px 0 0; font-size: 16px; line-height: 1.65; color: var(--hero-copy); font-weight: 600; max-width: 520px; }
.kit-features { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); margin-top: 34px; border: 1px solid rgba(255, 255, 255, .22); }
.kit-feature { padding: 22px 24px; border: 1px solid rgba(255, 255, 255, .22); }
.kit-feature-nr { font-family: 'JetBrains Mono', monospace; font-size: 11px; letter-spacing: .2em; color: var(--turq); }
.kit-feature-label { margin-top: 8px; font-style: italic; font-weight: 800; font-size: 19px; letter-spacing: .04em; color: var(--white); }

/* ---------- Stripe divider ---------- */
.stripe-divider { height: 18px; background: var(--white); overflow: hidden; position: relative; }
.stripe-divider-inner { position: absolute; inset: -6px 0; display: flex; transform: skewX(-24deg) scaleX(1.06); }
.stripe-divider-inner span { flex: 1; }
.stripe-divider-inner span:nth-child(1) { background: var(--royal); }
.stripe-divider-inner span:nth-child(2) { background: var(--red); }
.stripe-divider-inner span:nth-child(3) { background: var(--orange); }
.stripe-divider-inner span:nth-child(4) { background: var(--yellow); }
.stripe-divider-inner span:nth-child(5) { background: var(--turq); }
.stripe-divider-inner span:nth-child(6) { background: var(--violet); }

/* ---------- Footer ---------- */
.site-footer { background: var(--violet); color: var(--white); }
.footer-inner { max-width: 1360px; margin: 0 auto; padding: 60px 24px 0; }
.footer-top { display: flex; align-items: center; justify-content: space-between; gap: 28px; flex-wrap: wrap; }
.footer-brand { display: flex; align-items: center; gap: 16px; }
.footer-brand img { width: 46px; height: 46px; display: block; }
.footer-brand-name { font-weight: 800; font-size: 13px; letter-spacing: .12em; color: var(--white); }
.footer-brand-sub { font-family: 'JetBrains Mono', monospace; font-size: 10px; letter-spacing: .3em; color: rgba(255, 255, 255, .55); margin-top: 5px; }
.footer-nav { display: flex; gap: 26px; flex-wrap: wrap; }
.footer-nav a { font-weight: 700; font-size: 11px; letter-spacing: .16em; color: rgba(255, 255, 255, .8); }
.footer-nav a:hover { color: var(--turq); }
.footer-divider { height: 1px; background: rgba(255, 255, 255, .14); margin-top: 40px; }
.footer-divider.tight { margin-top: 0; }
.footer-mid { display: flex; justify-content: space-between; align-items: center; gap: 24px; flex-wrap: wrap; padding: 24px 0; }
.footer-email { font-weight: 700; font-size: 13px; color: var(--white); }
.footer-email:hover { color: var(--turq); }
.footer-social { display: flex; gap: 22px; }
.footer-social a { font-weight: 700; font-size: 12px; color: rgba(255, 255, 255, .8); }
.footer-social a:hover { color: var(--turq); }
.footer-legal { display: flex; gap: 22px; flex-wrap: wrap; }
.footer-legal a { font-weight: 600; font-size: 12px; color: rgba(255, 255, 255, .65); }
.footer-legal a:hover { color: var(--turq); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; padding: 20px 0 26px; }
.footer-copyright { font-family: 'JetBrains Mono', monospace; font-size: 11px; letter-spacing: .14em; color: rgba(255, 255, 255, .5); }
.footer-url { font-family: 'JetBrains Mono', monospace; font-size: 11px; letter-spacing: .2em; color: var(--turq); }

/* ---------- Transparență ---------- */
.transparency-hero { background: var(--bg-light); padding: 96px 0 60px; }
.transparency-title { margin: 14px 0 0; font-style: italic; font-weight: 900; text-transform: uppercase; line-height: .98; font-size: clamp(34px, 5vw, 58px); color: var(--navy); overflow-wrap: break-word; }
.transparency-intro-note { margin: 20px 0 0; max-width: 720px; font-size: 15px; line-height: 1.7; color: var(--body-muted); font-weight: 600; }

.transparency-section { background: var(--white); padding: 70px 0 100px; }

.transparency-group { margin-top: 56px; }
.transparency-group:first-child { margin-top: 0; }
.transparency-group-title { margin: 0 0 20px; font-style: italic; font-weight: 800; text-transform: uppercase; font-size: clamp(22px, 2.8vw, 30px); color: var(--navy); }

.transparency-list { border-top: 1px solid var(--border-light); }
.transparency-row { border-bottom: 1px solid var(--border-light); }
.transparency-row-head, div.transparency-row { display: flex; align-items: center; gap: 18px; padding: 20px 0; flex-wrap: wrap; }
.transparency-row-head { cursor: pointer; list-style: none; }
.transparency-row-head::-webkit-details-marker { display: none; }
.transparency-nr { flex: none; width: 30px; font-family: 'JetBrains Mono', monospace; font-size: 13px; letter-spacing: .14em; color: var(--muted); }
.transparency-title-text { flex: 1; min-width: 220px; font-weight: 700; font-size: 15px; color: var(--navy); }
.transparency-badge { flex: none; display: inline-block; transform: skewX(-12deg); padding: 5px 12px; font-weight: 800; font-size: 10px; letter-spacing: .14em; }
.transparency-badge.is-disponibil { background: var(--turq); color: var(--white); }
.transparency-badge.is-curand { border: 1px dashed var(--border-dashed); color: var(--muted); }
.transparency-toggle { flex: none; width: 22px; height: 22px; display: flex; align-items: center; justify-content: center; border: 2px solid var(--navy); font-weight: 800; font-size: 15px; line-height: 1; color: var(--navy); transition: transform .2s; }
details[open] .transparency-toggle { transform: rotate(45deg); }

.transparency-details { list-style: none; margin: 0; padding: 2px 0 22px 48px; }
.transparency-details li { position: relative; padding: 8px 0 8px 18px; font-size: 14px; line-height: 1.6; color: var(--body-muted); font-weight: 600; border-bottom: 1px dashed var(--border-light); }
.transparency-details li:last-child { border-bottom: none; }
.transparency-details li::before { content: "—"; position: absolute; left: 0; color: var(--turq); }

.transparency-contact-strip { background: var(--bg-light); border-top: 1px solid var(--border-light); padding: 44px 0; }
.transparency-contact-inner { display: flex; flex-wrap: wrap; gap: 14px 32px; font-family: 'JetBrains Mono', monospace; font-size: 13px; letter-spacing: .06em; color: var(--navy); }
.transparency-contact-inner a { color: var(--navy); font-weight: 700; }
.transparency-contact-inner a:hover { color: var(--turq); }
