/* ── WEBINAR — PASTEL LIGHT THEME ───────────────────────────────────────── */

/* ── ROOT OVERRIDES (light theme for this page only) ─────────────────────── */
body {
  background: #FEFCF8;
  color: #1A1410;
  cursor: none; /* keep custom cursor */
}
body::after { opacity: 0; } /* remove grain */

:root {
  --w-bg:      #FEFCF8;
  --w-text:    #1A1410;
  --w-dim:     rgba(26,20,16,0.5);
  --w-border:  rgba(26,20,16,0.09);

  /* pastel zones */
  --w-peach:   #FFF2EE;
  --w-mint:    #EDFAF4;
  --w-sky:     #EEF6FF;
  --w-lav:     #F2EEFF;
  --w-gold:    #FFF8E6;

  /* accents */
  --w-coral:   #FF3520;
  --w-coral-s: rgba(255,53,32,.1);
  --w-green:   #00C47A;
  --w-blue:    #3B82F6;
  --w-purple:  #8B5CF6;
  --w-amber:   #F59E0B;
}

/* ── NAV ─────────────────────────────────────────────────────────────────── */
nav {
  background: rgba(254,252,248,.88) !important;
  border-bottom-color: var(--w-border) !important;
  backdrop-filter: blur(20px);
}
.n-logo { color: var(--w-text) !important; }
.n-links { display: none; }
.n-home-btn {
  text-decoration: none; font-family: var(--font); font-size: 14px; font-weight: 600;
  color: var(--w-text); padding: 8px 16px; border-radius: 8px;
  border: 1.5px solid var(--w-border); transition: border-color .2s, background .2s;
}
.n-home-btn:hover { border-color: var(--w-coral); background: var(--w-coral-s); color: var(--w-coral); }

/* ── ANIMATION UTILITIES ─────────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s cubic-bezier(.22,1,.36,1), transform .65s cubic-bezier(.22,1,.36,1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }

@keyframes float-y {
  0%,100% { transform: translateY(0) rotate(0deg); }
  50%      { transform: translateY(-14px) rotate(3deg); }
}
@keyframes float-y2 {
  0%,100% { transform: translateY(0) rotate(0deg); }
  50%      { transform: translateY(-10px) rotate(-4deg); }
}
@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
@keyframes pulse-ring {
  0%   { transform: scale(.95); opacity: 1; }
  70%  { transform: scale(1.25); opacity: 0; }
  100% { transform: scale(1.25); opacity: 0; }
}
@keyframes badge-pop {
  0%   { opacity: 0; transform: scale(.8) translateY(10px); }
  100% { opacity: 1; transform: scale(1) translateY(0); }
}
@keyframes headline-in {
  0%   { opacity: 0; transform: translateY(32px); }
  100% { opacity: 1; transform: translateY(0); }
}
@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}

/* ── HERO ─────────────────────────────────────────────────────────────────── */
#w-hero {
  min-height: 100svh;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 0 24px 100px; margin-top: -220px;
  background: var(--w-bg);
  position: relative; overflow: hidden;
}

/* Soft radial blobs */
#w-hero::before {
  content: '';
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 50% 40% at 20% 20%, rgba(255,190,11,.13), transparent 60%),
    radial-gradient(ellipse 40% 40% at 80% 80%, rgba(139,92,246,.1), transparent 60%),
    radial-gradient(ellipse 50% 50% at 50% 50%, rgba(255,53,32,.06), transparent 65%);
}

/* Floating doodle blobs */
.w-blob {
  position: absolute; border-radius: 50%; pointer-events: none; z-index: 0;
  opacity: .55; filter: blur(2px);
}
.w-blob-1 {
  width: 120px; height: 120px; top: 12%; left: 8%;
  background: rgba(255,190,11,.22);
  animation: float-y 6s ease-in-out infinite;
}
.w-blob-2 {
  width: 80px; height: 80px; top: 20%; right: 10%;
  background: rgba(139,92,246,.18);
  animation: float-y2 7s ease-in-out infinite 1s;
}
.w-blob-3 {
  width: 60px; height: 60px; bottom: 18%; left: 15%;
  background: rgba(0,196,122,.2);
  animation: float-y 8s ease-in-out infinite 2s;
}
.w-blob-4 {
  width: 90px; height: 90px; bottom: 20%; right: 12%;
  background: rgba(255,53,32,.12);
  animation: float-y2 5.5s ease-in-out infinite .5s;
}

#w-hero > * { position: relative; z-index: 1; }

.w-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,53,32,.08); border: 1.5px solid rgba(255,53,32,.2);
  color: var(--w-coral); font-size: .78rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  padding: 7px 18px; border-radius: 100px; margin-bottom: 28px;
  animation: badge-pop .6s cubic-bezier(.34,1.56,.64,1) both;
}
.w-badge-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--w-coral); position: relative;
}
.w-badge-dot::after {
  content: ''; position: absolute; inset: -4px;
  border-radius: 50%; border: 1.5px solid var(--w-coral);
  animation: pulse-ring 2s ease-out infinite;
}

#w-hero h1 {
  font-size: clamp(2.8rem, 7vw, 5.8rem);
  font-weight: 900; line-height: 1.02; letter-spacing: -.04em;
  color: var(--w-text); max-width: 820px; margin-bottom: 24px;
  animation: headline-in .8s cubic-bezier(.22,1,.36,1) .2s both;
}
#w-hero h1 em {
  font-style: normal;
  background: linear-gradient(135deg, #FF3520, #FF8C00, #FF3520);
  background-size: 200% auto;
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 3s linear infinite;
}
#w-hero .sub {
  font-size: clamp(.95rem, 2vw, 1.15rem);
  color: var(--w-dim); max-width: 520px; margin-bottom: 36px;
  line-height: 1.7;
  animation: headline-in .8s cubic-bezier(.22,1,.36,1) .35s both;
}
.w-chips {
  display: flex; flex-wrap: wrap; gap: 10px;
  justify-content: center; margin-bottom: 36px;
  animation: headline-in .8s cubic-bezier(.22,1,.36,1) .45s both;
}
.w-chip {
  display: flex; align-items: center; gap: 7px;
  background: white; border: 1.5px solid var(--w-border);
  border-radius: 100px; padding: 8px 16px;
  font-size: .82rem; color: var(--w-dim); font-weight: 500;
  box-shadow: 0 2px 8px rgba(0,0,0,.05);
}
.w-chip svg { width: 14px; height: 14px; color: var(--w-coral); flex-shrink: 0; }

/* Hero CTA */
@keyframes cta-glow {
  0%, 100% { box-shadow: 0 8px 32px rgba(255,53,32,.28), 0 0 0 0 rgba(255,53,32,.4); }
  50%       { box-shadow: 0 8px 32px rgba(255,53,32,.38), 0 0 0 10px rgba(255,53,32,0); }
}
.w-hero-cta {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--w-coral); color: white;
  font-family: var(--font); font-size: 1.05rem; font-weight: 700;
  padding: 17px 40px; border-radius: 100px;
  text-decoration: none; border: none; cursor: pointer;
  transition: transform .2s cubic-bezier(.34,1.56,.64,1), box-shadow .2s;
  animation: headline-in .8s cubic-bezier(.22,1,.36,1) .55s both, cta-glow 2s ease-in-out 1.5s infinite;
}
.w-hero-cta:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 14px 40px rgba(255,53,32,.5); animation: none; }
.w-hero-cta:active { transform: scale(.98); }

/* ── HERO TITLE — light theme overrides ──────────────────────────────────── */
#w-hero .hero-hl { color: var(--w-text); }
#w-hero .hl-a,
#w-hero .hl-c { color: var(--w-text); -webkit-text-fill-color: var(--w-text); }

.w-urgency {
  margin-top: 28px; padding: 14px 24px;
  background: var(--w-gold); border: 1.5px solid rgba(245,158,11,.25);
  border-radius: 14px; color: #92400E;
  font-size: .88rem; max-width: 520px; line-height: 1.55;
  animation: headline-in .8s cubic-bezier(.22,1,.36,1) .65s both;
}
.w-urgency strong { color: #92400E; }

/* ── SECTION COMMON ──────────────────────────────────────────────────────── */
.w-section { padding: 72px 24px; }
.w-section.w-peach { background: var(--w-peach); }
.w-section.w-mint  { background: var(--w-mint); }
.w-section.w-sky   { background: var(--w-sky); }
.w-section.w-lav   { background: var(--w-lav); }
.w-section.w-plain { background: var(--w-bg); }
.w-wrap { max-width: 1100px; margin: 0 auto; }

.w-label {
  display: inline-block;
  font-size: .73rem; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--w-coral);
  background: var(--w-coral-s); padding: 4px 12px; border-radius: 100px;
  margin-bottom: 16px;
}
.w-h2 {
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 900; line-height: 1.08; letter-spacing: -.03em;
  color: var(--w-text); margin-bottom: 16px;
}
.w-intro {
  font-size: 1.05rem; color: var(--w-dim);
  max-width: 580px; margin-bottom: 60px; line-height: 1.75;
}

/* Center section headers */
.w-section .w-label,
.w-section .w-h2,
.w-section .w-intro { display: block; text-align: center; margin-left: auto; margin-right: auto; }

/* ── FEATURE CARDS ───────────────────────────────────────────────────────── */
.w-cards {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}
.w-card {
  background: white; border: 1.5px solid var(--w-border);
  border-radius: 24px; padding: 32px 28px;
  box-shadow: 0 4px 20px rgba(0,0,0,.05);
  transition: transform .3s cubic-bezier(.34,1.56,.64,1), box-shadow .3s;
}
.w-card:hover { transform: translateY(-6px); box-shadow: 0 12px 40px rgba(0,0,0,.1); }
.w-card-icon {
  width: 48px; height: 48px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px; font-size: 1.4rem;
}
.w-card-icon.peach  { background: #FFE8E5; }
.w-card-icon.mint   { background: #D6F5E8; }
.w-card-icon.sky    { background: #DCEEFF; }
.w-card-icon.lav    { background: #E8DFFF; }
.w-card h3 { font-size: 1.05rem; font-weight: 700; color: var(--w-text); margin-bottom: 8px; }
.w-card p  { font-size: .9rem; color: var(--w-dim); line-height: 1.65; }

/* ── AGENDA ──────────────────────────────────────────────────────────────── */
.w-agenda { display: flex; flex-direction: column; }
.w-agenda-item {
  display: grid;
  grid-template-columns: 72px 28px 1fr;
  position: relative;
}
.w-agenda-item:not(:last-child)::before {
  content: ''; position: absolute;
  left: 85px; top: 18px; bottom: -1px;
  width: 2px;
  background: linear-gradient(to bottom, rgba(255,53,32,.4), rgba(255,53,32,.05));
}
.w-agenda-time {
  padding-top: 3px; text-align: right;
  font-size: .78rem; font-weight: 700;
  color: var(--w-coral); letter-spacing: .04em; white-space: nowrap;
}
.w-agenda-dot-col {
  display: flex; flex-direction: column; align-items: center; padding-top: 6px;
}
.w-agenda-dot {
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--w-coral); border: 3px solid var(--w-bg);
  box-shadow: 0 0 0 2px var(--w-coral);
  flex-shrink: 0;
}
.w-section.w-sky .w-agenda-dot { border-color: var(--w-sky); }
.w-agenda-body {
  padding: 0 0 40px 20px;
}
.w-agenda-tag {
  display: inline-block; font-size: .72rem; font-weight: 700;
  padding: 3px 10px; border-radius: 100px; margin-bottom: 8px;
  letter-spacing: .06em; text-transform: uppercase;
}
.w-agenda-body h3 { font-size: 1.02rem; font-weight: 700; color: var(--w-text); margin-bottom: 6px; }
.w-agenda-body p  { font-size: .9rem; color: var(--w-dim); line-height: 1.65; }

/* ── AUDIENCE CARDS ──────────────────────────────────────────────────────── */
.w-audience {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}
.w-aud-card {
  background: white; border: 1.5px solid var(--w-border);
  border-radius: 24px; padding: 32px 28px;
  display: flex; flex-direction: column; gap: 10px;
  box-shadow: 0 4px 20px rgba(0,0,0,.04);
  transition: transform .3s cubic-bezier(.34,1.56,.64,1), box-shadow .3s;
  position: relative; overflow: hidden;
}
.w-aud-card::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 4px;
  border-radius: 24px 24px 0 0;
}
.w-aud-card:nth-child(1)::before { background: #FFB4A8; }
.w-aud-card:nth-child(2)::before { background: #A8D5FF; }
.w-aud-card:nth-child(3)::before { background: #A8F0CC; }
.w-aud-card:nth-child(4)::before { background: #C5B4FF; }
.w-aud-card:hover { transform: translateY(-6px); box-shadow: 0 12px 36px rgba(0,0,0,.1); }
.w-aud-num {
  font-size: 2rem; font-weight: 900;
  color: rgba(26,20,16,.08); line-height: 1;
}
.w-aud-card h3 { font-size: 1rem; font-weight: 700; color: var(--w-text); }
.w-aud-card p  { font-size: .9rem; color: var(--w-dim); line-height: 1.65; }

/* ── ABOUT HOST ──────────────────────────────────────────────────────────── */
#w-host {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 72px; align-items: center;
}
.w-host-img {
  aspect-ratio: 4/5; border-radius: 28px;
  background: linear-gradient(135deg, #FFE8E0, #FFD6CC);
  border: 1.5px solid var(--w-border);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; position: relative;
}
.w-host-img img { width: 100%; height: 100%; object-fit: cover; }
.w-host-img-placeholder {
  display: flex; flex-direction: column; align-items: center;
  gap: 12px; color: rgba(26,20,16,.3); font-size: .85rem;
}
.w-host-img-placeholder svg { width: 48px; height: 48px; }
.w-host-text .w-h2 { margin-bottom: 24px; }
.w-host-text p { color: var(--w-dim); line-height: 1.8; margin-bottom: 16px; font-size: 1rem; }
.w-host-sig {
  display: inline-flex; align-items: center; gap: 10px;
  margin-top: 20px; font-size: .95rem; font-weight: 700; color: var(--w-coral);
}
.w-host-sig::before {
  content: ''; display: block; width: 32px; height: 2px; background: var(--w-coral); border-radius: 2px;
}

/* ── FAQ ─────────────────────────────────────────────────────────────────── */
.w-faq { display: flex; flex-direction: column; max-width: 720px; gap: 0; }
.w-faq-item {
  border-bottom: 1.5px solid var(--w-border);
}
.w-faq-q {
  width: 100%; text-align: left; padding: 22px 0;
  background: none; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  font-family: var(--font);
}
.w-faq-q span { font-size: 1rem; font-weight: 600; color: var(--w-text); text-align: left; }
.w-faq-icon {
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--w-coral-s); display: flex; align-items: center;
  justify-content: center; flex-shrink: 0; color: var(--w-coral);
  transition: transform .3s cubic-bezier(.34,1.56,.64,1), background .2s;
}
.w-faq-item.open .w-faq-icon { transform: rotate(45deg); background: var(--w-coral); color: #fff; }
.w-faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height .4s ease, padding .4s ease;
  font-size: .95rem; color: var(--w-dim); line-height: 1.8;
}
.w-faq-item.open .w-faq-a { max-height: 200px; padding-bottom: 20px; }

/* ── REGISTER ────────────────────────────────────────────────────────────── */
#w-register {
  background: linear-gradient(160deg, #FFF2EE 0%, #F2EEFF 50%, #EEF6FF 100%);
  position: relative; overflow: hidden;
}
#w-register::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 40% 40% at 10% 90%, rgba(255,190,11,.12), transparent 60%),
    radial-gradient(ellipse 30% 30% at 90% 10%, rgba(139,92,246,.1), transparent 60%);
}
.w-form-wrap {
  max-width: 640px; margin: 0 auto;
  background: white;
  border: 1.5px solid var(--w-border);
  border-radius: 32px; padding: 56px 48px;
  box-shadow: 0 20px 60px rgba(0,0,0,.08);
  position: relative;
}
.w-form-wrap .w-h2,
.w-form-wrap .w-intro { text-align: center; margin-inline: auto; }
.w-form-wrap .w-label  { display: block; text-align: center; }
.w-form {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 16px; margin-top: 36px;
}
.w-form-full { grid-column: 1 / -1; }
.w-field { display: flex; flex-direction: column; gap: 7px; }
.w-field label {
  font-size: .75rem; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; color: var(--w-dim);
}
.w-field input,
.w-field select {
  background: #FAFAF8;
  border: 1.5px solid rgba(26,20,16,.12);
  border-radius: 12px; padding: 13px 15px;
  color: var(--w-text); font-family: var(--font); font-size: .95rem;
  outline: none; transition: border-color .2s, box-shadow .2s;
  width: 100%; -webkit-appearance: none; appearance: none;
}
.w-field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='rgba(26,20,16,.4)' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; cursor: pointer;
}
.w-field select option { background: white; color: var(--w-text); }
.w-field input:focus,
.w-field select:focus {
  border-color: var(--w-coral);
  box-shadow: 0 0 0 3px rgba(255,53,32,.1);
  background: white;
}
.w-field input::placeholder { color: rgba(26,20,16,.25); }
.w-field input[type="date"]::-webkit-calendar-picker-indicator { cursor: pointer; opacity: .5; }
.w-slot-loading {
  font-size: .82rem; color: var(--w-dim); padding: 13px 15px;
  border: 1.5px dashed rgba(26,20,16,.12); border-radius: 12px;
  text-align: center; background: #FAFAF8;
}
.w-slot-radios {
  display: flex; flex-wrap: wrap; gap: 10px;
  padding: 4px 0;
}
.w-slot-chip {
  font-family: var(--font); font-size: .88rem; font-weight: 600;
  padding: 10px 20px; border-radius: 100px;
  border: 1.5px solid rgba(26,20,16,.15);
  background: #FAFAF8; color: var(--w-text);
  cursor: pointer;
  transition: border-color .2s, background .2s, color .2s,
              transform .2s cubic-bezier(.34,1.56,.64,1), box-shadow .2s;
}
.w-slot-chip:hover {
  border-color: var(--w-coral);
  background: rgba(255,53,32,.05);
  transform: translateY(-2px);
}
.w-slot-chip.selected {
  background: var(--w-coral); color: white;
  border-color: var(--w-coral);
  box-shadow: 0 4px 16px rgba(255,53,32,.28);
  transform: translateY(-1px);
}
.w-submit {
  grid-column: 1 / -1; margin-top: 6px;
  background: var(--w-coral); color: #fff;
  border: none; border-radius: 100px; padding: 17px 32px;
  font-family: var(--font); font-size: 1rem; font-weight: 700;
  cursor: pointer; letter-spacing: .01em;
  box-shadow: 0 8px 28px rgba(255,53,32,.28);
  transition: transform .25s cubic-bezier(.34,1.56,.64,1), box-shadow .2s;
}
.w-submit:hover { transform: translateY(-2px) scale(1.01); box-shadow: 0 12px 36px rgba(255,53,32,.38); }
.w-submit:active { transform: scale(.98); }
.w-submit:disabled { opacity: .5; cursor: not-allowed; transform: none; box-shadow: none; }
.w-form-note {
  grid-column: 1 / -1; text-align: center;
  font-size: .78rem; color: var(--w-dim); margin-top: 4px;
}
.w-success {
  display: none; flex-direction: column; align-items: center;
  gap: 16px; text-align: center; padding: 20px 0;
}
.w-success-icon {
  width: 64px; height: 64px; border-radius: 50%;
  background: #EDFAF4; border: 2px solid rgba(0,196,122,.3);
  display: flex; align-items: center; justify-content: center;
  color: var(--w-green); font-size: 1.8rem;
}
.w-success h3 { font-size: 1.5rem; font-weight: 900; color: var(--w-text); }
.w-success p  { color: var(--w-dim); font-size: .95rem; max-width: 360px; line-height: 1.65; }

/* ── MODAL ───────────────────────────────────────────────────────────────── */
#w-modal-overlay {
  position: fixed; inset: 0; z-index: 8000;
  background: rgba(15,11,9,.55);
  backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  opacity: 0; pointer-events: none;
  transition: opacity .3s ease;
}
#w-modal-overlay.open {
  opacity: 1; pointer-events: auto;
}
#w-modal {
  background: white; border-radius: 28px;
  padding: 48px 44px; width: 100%; max-width: 580px;
  max-height: 90svh; overflow-y: auto;
  position: relative;
  box-shadow: 0 32px 80px rgba(0,0,0,.18);
  transform: translateY(24px) scale(.97);
  transition: transform .35s cubic-bezier(.22,1,.36,1);
}
#w-modal-overlay.open #w-modal {
  transform: translateY(0) scale(1);
}
#w-modal-close {
  position: absolute; top: 18px; right: 18px;
  width: 36px; height: 36px; border-radius: 50%;
  border: none; background: rgba(26,20,16,.07);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; color: var(--w-text);
  transition: background .2s, transform .2s;
}
#w-modal-close:hover { background: rgba(26,20,16,.14); transform: rotate(90deg); }
#w-modal .w-form { grid-template-columns: 1fr 1fr; }

/* ── FOOTER ──────────────────────────────────────────────────────────────── */
footer {
  background: #1A1410 !important;
  position: relative; z-index: 1;
}

/* ── LEAF LOGO ANIMATION ─────────────────────────────────────────────────── */
@keyframes logo-leaf {
  0%   { transform: translate(  0px,   0vh) rotate(  0deg); opacity: .85; }
  12%  { transform: translate( 38px,  10vh) rotate( 13deg); opacity: .80; }
  25%  { transform: translate(-22px,  22vh) rotate( -8deg); opacity: .72; }
  38%  { transform: translate( 52px,  36vh) rotate( 19deg); opacity: .62; }
  52%  { transform: translate(-35px,  52vh) rotate(-13deg); opacity: .48; }
  65%  { transform: translate( 44px,  66vh) rotate( 17deg); opacity: .34; }
  80%  { transform: translate(-18px,  82vh) rotate( -7deg); opacity: .18; }
  100% { transform: translate( 26px, 108vh) rotate( 11deg); opacity:  0;  }
}
.logo-leaf-clone {
  position: fixed;
  pointer-events: none;
  z-index: 0;
  transform-origin: center center;
  will-change: transform, opacity;
  mix-blend-mode: multiply;
}

/* ── RESPONSIVE ──────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  #w-host { grid-template-columns: 1fr; gap: 40px; }
  .w-host-img { aspect-ratio: 3/2; }
  .w-form-wrap { padding: 36px 22px; }
  .w-form { grid-template-columns: 1fr; }
  .w-form-full, .w-submit, .w-form-note { grid-column: 1; }
  #w-modal { padding: 36px 22px; border-radius: 20px; }
  #w-modal .w-form { grid-template-columns: 1fr; }
  .w-section { padding: 72px 20px; }
  nav { padding: 16px 20px !important; }
}
@media (max-width: 480px) {
  .w-agenda-item { grid-template-columns: 52px 24px 1fr; }
  .w-agenda-item::before { left: 63px; }
  .w-blob { display: none; }
}
