*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --ink:    #0e0d0c;
  --paper:  #f5f2ee;
  --mist:   #e8e4df;
  --prima:  #2C1E8A;
  --prima2: #4A35C8;
  --pink:   #C850C0;
  --blue:   #3A7BD5;
  --silver: #9a9590;
  --line:   rgba(44,30,138,0.25);
}
html { scroll-behavior: smooth; }
body {
  font-family: 'Jost', sans-serif;
  background: var(--paper);
  color: var(--ink);
  font-weight: 300;
  letter-spacing: 0.01em;
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: sticky; top: 0; z-index: 100;
  padding: 14px 24px;
  display: flex; justify-content: space-between; align-items: center;
  background: rgba(245,242,238,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav-logo img { height: 32px; width: auto; }
.nav-date { font-size: 12px; letter-spacing: 0.12em; color: var(--silver); }
.nav-cta {
  font-size: 12px; letter-spacing: 0.12em;
  background: var(--prima); color: white;
  padding: 7px 16px; border-radius: 2px;
  text-decoration: none; text-transform: uppercase;
  transition: background 0.2s;
}
.nav-cta:hover { background: var(--prima2); }

/* ── HERO ── */
.hero {
  padding: 48px 24px 40px;
  border-bottom: 1px solid var(--line);
  position: relative; overflow: hidden;
  text-align: center;
}
.hero-orb {
  position: absolute; right: -80px; top: -80px;
  width: 300px; height: 300px; border-radius: 50%;
  background: radial-gradient(circle, rgba(74,53,200,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero-label {
  font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--silver); margin-bottom: 16px;
}
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(38px, 8vw, 68px);
  font-weight: 300; line-height: 1.05;
  letter-spacing: -0.01em; color: var(--ink);
  margin-bottom: 16px;
}
.hero-title em { font-style: italic; color: var(--prima2); }
.hero-sub {
  font-size: 16px; line-height: 1.7; color: var(--ink); opacity: 0.6;
  max-width: 480px; margin: 0 auto 28px; font-weight: 400;
}
.hero-tags {
  display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; justify-content: center;
}
.hero-tag {
  font-size: 13px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--silver); padding: 6px 12px;
  border: 1px solid var(--line); border-radius: 1px;
  display: flex; align-items: center; gap: 6px;
}
.hero-tag.accent {
  color: white; font-size: 14px; font-weight: 500;
  background: linear-gradient(135deg, var(--prima), var(--prima2));
  border-color: transparent;
}
.hero-tag .dot {
  width: 4px; height: 4px; border-radius: 50%;
  background: linear-gradient(135deg, var(--pink), var(--blue));
  flex-shrink: 0;
}
.hero-btn {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--prima); color: white;
  font-size: 13px; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase;
  padding: 14px 28px; border-radius: 2px; text-decoration: none;
  transition: background 0.2s;
}
.hero-btn:hover { background: var(--prima2); }

/* ── SECTION ── */
section { padding: 48px 0; border-top: 1px solid var(--line); }
.container { max-width: 720px; margin: 0 auto; padding: 0 24px; }
.sec-head { display: flex; align-items: baseline; gap: 16px; margin-bottom: 32px; }
.sec-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px; color: var(--pink); letter-spacing: 0.05em;
  flex-shrink: 0;
}
.sec-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(24px, 4vw, 34px);
  font-weight: 300; letter-spacing: -0.01em; line-height: 1.15;
}

/* ── WHOM ── */
.whom-item {
  display: grid; grid-template-columns: 40px 1fr;
  gap: 0 16px; padding: 20px 0;
  border-bottom: 1px solid var(--line); align-items: start;
}
.whom-item:first-child { border-top: 1px solid var(--line); }
.whom-marker {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px; color: var(--prima2); opacity: 0.4;
  font-style: italic; padding-top: 2px;
}
.whom-text { font-size: 16px; line-height: 1.6; color: var(--ink); }
.whom-note { font-size: 14px; color: var(--silver); margin-top: 4px; font-style: italic; }
.pull-quote {
  background: var(--prima); border-radius: 4px;
  padding: 24px 28px; margin: 28px 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px; font-weight: 400; font-style: italic;
  line-height: 1.5; color: rgba(255,255,255,0.75); text-align: center;
}

/* ── AWAIT ── */
.await-intro { font-size: 16px; line-height: 1.75; color: var(--silver); margin-bottom: 28px; }
.await-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  border: 1px solid var(--line); border-radius: 2px; margin-bottom: 24px;
}
@media (max-width: 520px) { .await-grid { grid-template-columns: 1fr; } }
.await-item {
  padding: 22px 24px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  position: relative;
}
.await-item:nth-child(even) { border-right: none; }
.await-item:nth-last-child(-n+2) { border-bottom: none; }
@media (max-width: 520px) {
  .await-item { border-right: none; }
  .await-item:last-child { border-bottom: none; }
}
.await-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px; color: var(--prima2); opacity: 0.1;
  position: absolute; top: 12px; right: 14px; line-height: 1;
}
.await-title { font-size: 15px; font-weight: 500; color: var(--ink); margin-bottom: 6px; line-height: 1.4; }
.await-desc { font-size: 14px; color: var(--silver); line-height: 1.65; }
.await-format {
  background: var(--mist); border-radius: 2px; padding: 18px 20px;
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 15px; color: var(--silver); line-height: 1.65;
  border-left: 2px solid rgba(74,53,200,0.3);
}
.await-format a { color: var(--prima2); text-decoration: none; border-bottom: 0.5px solid rgba(74,53,200,0.3); }

/* ── SPEAKER ── */
.speaker-wrap {
  display: grid; grid-template-columns: 200px 1fr;
  gap: 32px; align-items: start;
}
@media (max-width: 560px) {
  .speaker-wrap { grid-template-columns: 1fr; gap: 24px; }
  .speaker-name, .speaker-role { text-align: center; }
}
.speaker-photo {
  width: 100%;
  border-radius: 2px; overflow: hidden;
}
.speaker-photo img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top; display: block;
}
.speaker-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px; font-weight: 300; line-height: 1.2;
  color: var(--ink); margin-bottom: 4px;
}
.speaker-role {
  font-size: 13px; color: var(--prima2); letter-spacing: 0.12em;
  text-transform: uppercase; opacity: 0.7; margin-bottom: 16px;
}
.speaker-bio { font-size: 15px; line-height: 1.8; color: var(--silver); margin-bottom: 12px; }
.fact {
  display: flex; align-items: baseline; gap: 12px;
  padding: 12px 0; border-bottom: 1px solid var(--line); font-size: 14px;
}
.fact:first-child { border-top: 1px solid var(--line); }
.fact-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px; color: var(--prima2); opacity: 0.5;
  min-width: 36px; font-style: italic;
}
.fact-text { color: var(--silver); line-height: 1.5; }

/* ── FORMAT ── */
.format-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  border: 1px solid var(--line); border-radius: 2px; margin-bottom: 20px;
}
@media (max-width: 520px) { .format-grid { grid-template-columns: 1fr; } }
.format-cell {
  padding: 20px 24px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.format-cell:nth-child(even) { border-right: none; }
.format-cell:nth-last-child(-n+2) { border-bottom: none; }
@media (max-width: 520px) {
  .format-cell { border-right: none; }
  .format-cell:last-child { border-bottom: none; }
}
.format-label { font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--silver); margin-bottom: 6px; }
.format-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px; font-weight: 300; color: var(--ink); line-height: 1.3;
}
.format-value.free { color: var(--prima2); }
.format-offline-note {
  font-size: 14px; color: var(--silver); line-height: 1.7;
  padding: 14px 18px; background: var(--mist); border-radius: 2px;
  border-left: 2px solid rgba(74,53,200,0.25);
}
.format-offline-note a { color: var(--prima2); text-decoration: none; border-bottom: 0.5px solid rgba(74,53,200,0.3); }

/* ── GIFT ── */
.gift-wrap {
  background: linear-gradient(135deg, #5B3FD4 0%, #C850C0 60%, #7B3FC4 100%);
  border-radius: 2px; overflow: hidden; position: relative;
}
.gift-wrap::before {
  content: ''; position: absolute;
  right: -60px; top: -60px;
  width: 200px; height: 200px; border-radius: 50%;
  border: 0.5px solid rgba(200,80,192,0.2); pointer-events: none;
}
.gift-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0; position: relative; z-index: 2;
}
@media (max-width: 560px) { .gift-inner { grid-template-columns: 1fr; } }
.gift-left {
  padding: 36px 32px;
  border-right: 0.5px solid rgba(255,255,255,0.1);
}
.gift-right { padding: 36px 32px; display: flex; flex-direction: column; gap: 20px; justify-content: center; }
.gift-badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 9px; letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(255,255,255,0.45); border: 0.5px solid rgba(255,255,255,0.2);
  padding: 4px 10px; border-radius: 20px; margin-bottom: 16px;
}
.gift-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(20px, 3vw, 28px); font-weight: 400;
  line-height: 1.2; color: #fff; margin-bottom: 12px;
  text-shadow: 0 1px 20px rgba(255,255,255,0.1);
}
.gift-desc { font-size: 15px; line-height: 1.75; color: rgba(255,255,255,0.5); }
.gift-note {
  display: flex; align-items: center; gap: 8px;
  font-size: 11px; color: rgba(255,255,255,0.3); font-style: italic; margin-top: 16px;
}
.gift-note::before { content: ''; width: 16px; height: 0.5px; background: rgba(255,255,255,0.25); }
.gift-feat { display: flex; align-items: flex-start; gap: 12px; }
.gift-feat-num {
  width: 28px; height: 28px; border-radius: 50%;
  border: 0.5px solid rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; color: rgba(255,255,255,0.4); flex-shrink: 0;
}
.gift-feat-text { font-size: 14px; color: rgba(255,255,255,0.75); line-height: 1.6; }
.gift-feat-text strong { display: block; color: #fff; font-weight: 500; font-size: 15px; margin-bottom: 2px; }

/* ── CTA ── */
.cta-section {
  background: linear-gradient(135deg, var(--prima) 0%, var(--prima2) 100%);
  padding: 56px 24px; text-align: center; position: relative; overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute; left: 50%; top: 50%;
  transform: translate(-50%,-50%);
  width: 500px; height: 500px; border-radius: 50%;
  border: 0.5px solid rgba(255,255,255,0.04); pointer-events: none;
}
.cta-eyebrow { font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(255,255,255,0.3); margin-bottom: 18px; }
.cta-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 6vw, 48px); font-weight: 300;
  color: #fff; line-height: 1.15; margin-bottom: 8px;
}
.cta-sub { font-size: 15px; color: rgba(255,255,255,0.3); margin-bottom: 32px; }
.cta-btns {
  display: flex; justify-content: center; gap: 10px;
  flex-wrap: wrap; position: relative; z-index: 2; margin-bottom: 14px;
}
.cta-btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  text-decoration: none; padding: 14px 28px; border-radius: 2px;
  transition: all 0.2s;
}
.cta-btn-icon { height: 18px; width: auto; }
.cta-btn.wa { background: #25D366; color: #fff; }
.cta-btn.wa:hover { background: #1ebe5b; transform: translateY(-1px); }
.cta-btn.tg { background: #2AABEE; color: #fff; }
.cta-btn.tg:hover { background: #229ed9; transform: translateY(-1px); }
.btn-arrow { font-size: 13px; opacity: 0.6; }
.cta-note { font-size: 13px; color: rgba(255,255,255,0.2); font-style: italic; position: relative; z-index: 2; }

/* ── FOOTER ── */
footer {
  padding: 28px 24px;
  display: flex; justify-content: space-between; align-items: center;
  border-top: 1px solid var(--line); flex-wrap: wrap; gap: 12px;
}
.footer-logo img { height: 24px; width: auto; opacity: 0.7; }
.footer-copy { font-size: 13px; color: var(--silver); letter-spacing: 0.05em; }

/* ── REVEAL ── */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 480px) {
  .nav-date { display: none; }
  .hero { padding: 32px 20px 28px; }
  .hero-sub { font-size: 16px; }
  .hero-tag { font-size: 12px; }
  .hero-btn { font-size: 14px; }
  .container { padding: 0 20px; }
  section { padding: 36px 0; }
  .sec-title { font-size: 26px; }
  .whom-text { font-size: 15px; }
  .whom-note { font-size: 13px; }
  .pull-quote { font-size: 20px; }
  .await-intro { font-size: 15px; }
  .await-title { font-size: 14px; }
  .await-desc { font-size: 13px; }
  .await-format { font-size: 14px; }
  .speaker-photo { max-width: 200px; margin: 0 auto; }
  .speaker-name { font-size: 24px; }
  .speaker-bio { font-size: 14px; }
  .fact { font-size: 13px; }
  .format-value { font-size: 18px; }
  .format-label { font-size: 11px; }
  .format-offline-note { font-size: 13px; }
  .gift-title { font-size: 22px; }
  .gift-desc { font-size: 14px; }
  .gift-feat-text { font-size: 13px; }
  .gift-left, .gift-right { padding: 24px 20px; }
  .cta-section { padding: 40px 20px; }
  .cta-note { font-size: 12px; }
  .cta-btns { flex-direction: column; align-items: center; }
  .cta-btn { width: 100%; max-width: 280px; justify-content: center; font-size: 13px; }
}
