/* ── WORKSHOP — inherits webinar light-theme styles ─────────────────────── */

body {
  background: #FEFCF8;
  color: #1A1410;
  cursor: none;
}
body::after { opacity: 0; }

:root {
  --w-bg:      #FEFCF8;
  --w-text:    #1A1410;
  --w-dim:     rgba(26,20,16,0.5);
  --w-border:  rgba(26,20,16,0.09);
  --w-peach:   #FFF2EE;
  --w-mint:    #EDFAF4;
  --w-sky:     #EEF6FF;
  --w-lav:     #F2EEFF;
  --w-gold:    #FFF8E6;
  --w-plain:   #FEFCF8;
  --w-coral:   #FF3520;
  --w-coral-s: rgba(255,53,32,.1);
  --w-green:   #00C47A;
}

/* ── 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); }

/* ── ANIMATIONS ──────────────────────────────────────────────────────────── */
.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: none; }
.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 pulse-ring { 0% { transform:scale(.95);opacity:1; } 70%,100% { transform:scale(1.25);opacity:0; } }
@keyframes badge-pop  { 0% { opacity:0;transform:scale(.8) translateY(10px); } 100% { opacity:1;transform:none; } }
@keyframes headline-in { 0% { opacity:0;transform:translateY(32px); } 100% { opacity:1;transform:none; } }
@keyframes shimmer { 0% { background-position:-200% center; } 100% { background-position:200% center; } }
@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); }
}

/* ── 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;
}
#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%);
}
#w-hero > * { position: relative; z-index: 1; }

.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-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; }

.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-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; }

/* ── SECTIONS ────────────────────────────────────────────────────────────── */
.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-plain); }
.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;
}
.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; }

/* ── 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; }

/* ── REGISTER FORM ───────────────────────────────────────────────────────── */
#ws-form { background: linear-gradient(160deg, #FFF2EE 0%, #F2EEFF 50%, #EEF6FF 100%); }
.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);
}
.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-err {
  font-size: .78rem; color: var(--w-coral); display: none; margin-top: 2px;
}
.w-err.show { display: block; }
.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; display: flex; align-items: center;
  justify-content: center; gap: 10px;
  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; font-weight: 700;
}
.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; }

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

/* ── RESPONSIVE ──────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .w-form-wrap { padding: 36px 22px; }
  .w-form { grid-template-columns: 1fr; }
  .w-form-full, .w-submit, .w-form-note { grid-column: 1; }
  .w-section { padding: 72px 20px; }
  nav { padding: 16px 20px !important; }
}
@media (max-width: 480px) {
  .w-blob { display: none; }
}
