/* ==========================================================
   Wroffer – 150 Min Reset Webinar Landing Page
   Brand Guide: brandguide.wroffer.com
   Palette: Soft Blush · Warm Sand · Plum Espresso · White · Sage
   Fonts : DM Serif Display (hero) · Manrope (system)
   ========================================================== */

/* ---------- design tokens ---------- */
:root {
  /* core palette */
  --blush:          #E8C4C0;
  --blush-light:    #F5E6E3;
  --blush-pale:     #FBF3F1;
  --sand:           #F5F0EB;
  --sand-dark:      #E8DFD6;
  --plum:           #6B4856;
  --plum-deep:      #4E2E3E;
  --plum-light:     #8A6878;
  --white:          #FFFFFF;
  --sage:           #8FAE8B;
  --sage-light:     #C5D8C2;
  --sage-pale:      #EAF2E8;

  /* semantic */
  --text-primary:   var(--plum-deep);
  --text-secondary: var(--plum-light);
  --text-inverse:   var(--white);
  --bg-page:        var(--white);
  --bg-section-alt: var(--sand);
  --bg-hero:        var(--blush-pale);
  --accent:         var(--plum);
  --accent-hover:   var(--plum-deep);
  --success:        var(--sage);

  /* typography */
  --font-display:   'DM Serif Display', Georgia, serif;
  --font-body:      'Manrope', system-ui, sans-serif;

  /* spacing */
  --section-pad:    clamp(3rem, 8vw, 6rem);
  --container:      1100px;

  /* misc */
  --radius:         12px;
  --radius-lg:      20px;
  --shadow-soft:    0 4px 24px rgba(75, 46, 62, .08);
  --shadow-card:    0 2px 16px rgba(75, 46, 62, .06);
  --transition:     .3s cubic-bezier(.4, 0, .2, 1);
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-primary);
  background: var(--bg-page);
}

img { display: block; max-width: 100%; height: auto; }
a   { color: inherit; text-decoration: none; }

/* ---------- utility ---------- */
.container {
  width: 90%;
  max-width: var(--container);
  margin: 0 auto;
}

/* ---------- topbar ---------- */
.topbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(107,72,86,.06);
  transition: box-shadow var(--transition);
}
.topbar.scrolled { box-shadow: var(--shadow-soft); }

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.topbar__logo {
  height: 32px;
  width: auto;
  object-fit: contain;
}

.topbar__cta {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .55rem 1.4rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: .85rem;
  letter-spacing: .04em;
  color: var(--text-inverse);
  background: var(--accent);
  border: none;
  border-radius: 100px;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
}
.topbar__cta:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
}

/* ---------- hero ---------- */
.hero {
  position: relative;
  margin-top: 64px;                 /* clear topbar */
  padding: var(--section-pad) 0;
  background: var(--bg-hero);
  overflow: hidden;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .4rem 1rem;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--plum);
  background: var(--blush);
  border-radius: 100px;
  margin-bottom: 1.2rem;
  animation: fadeInUp .6s ease both;
}
.hero__badge::before {
  content: '';
  width: 8px; height: 8px;
  background: var(--sage);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: .5; transform: scale(1.4); }
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  line-height: 1.15;
  color: var(--text-primary);
  margin-bottom: 1.2rem;
  animation: fadeInUp .6s .1s ease both;
}

.hero__subtitle {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 480px;
  margin-bottom: 2rem;
  animation: fadeInUp .6s .2s ease both;
}

.hero__cta {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .9rem 2.2rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: .03em;
  color: var(--text-inverse);
  background: var(--accent);
  border: none;
  border-radius: 100px;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(75,46,62,.2);
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  animation: fadeInUp .6s .3s ease both;
}
.hero__cta:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(75,46,62,.28);
}

.hero__cta-hint {
  display: block;
  margin-top: .6rem;
  font-size: .8rem;
  color: var(--text-secondary);
  animation: fadeInUp .6s .4s ease both;
}

/* event details chips */
.hero__details {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  margin-bottom: 1.4rem;
  animation: fadeInUp .6s .2s ease both;
}

.hero__detail-chip {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .45rem 1rem;
  font-size: .85rem;
  font-weight: 600;
  color: var(--plum);
  background: var(--white);
  border: 1px solid var(--sand-dark);
  border-radius: 100px;
}

/* pricing bar */
.hero__pricing {
  display: flex;
  align-items: center;
  gap: .8rem;
  margin-bottom: 1.8rem;
  padding: .8rem 1.4rem;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  animation: fadeInUp .6s .25s ease both;
  width: fit-content;
}

.hero__price-old {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-secondary);
  text-decoration: line-through;
  opacity: .6;
}

.hero__price-arrow {
  font-size: 1rem;
  color: var(--text-secondary);
  opacity: .4;
}

.hero__price-new {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--sage);
  font-weight: 700;
  line-height: 1;
}

.hero__price-tag {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--plum);
  background: var(--blush-light);
  padding: .3rem .8rem;
  border-radius: 100px;
}

.hero__image-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  animation: fadeInUp .7s .15s ease both;
}
.hero__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 6s ease;
}
.hero__image-wrap:hover img { transform: scale(1.03); }

/* floating accent */
.hero__float {
  position: absolute;
  bottom: -40px; left: -40px;
  width: 200px; height: 200px;
  background: var(--blush);
  border-radius: 50%;
  opacity: .35;
  filter: blur(60px);
  z-index: 0;
  pointer-events: none;
}

/* ---------- problem section ---------- */
.problem {
  padding: var(--section-pad) 0;
  background: var(--bg-page);
}

.problem__header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3rem;
}

.problem__eyebrow {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--plum-light);
  margin-bottom: .6rem;
}

.problem__title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1.25;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.problem__desc {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.problem__cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.problem__card {
  background: var(--sand);
  border-radius: var(--radius);
  padding: 2rem;
  transition: transform var(--transition), box-shadow var(--transition);
}
.problem__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.problem__card-icon {
  width: 48px; height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--blush-light);
  border-radius: 12px;
  margin-bottom: 1.2rem;
  font-size: 1.4rem;
}

.problem__card-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin-bottom: .5rem;
  color: var(--text-primary);
}

.problem__card-text {
  font-size: .93rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ---------- benefits section ---------- */
.benefits {
  padding: var(--section-pad) 0;
  background: var(--bg-section-alt);
}

.benefits__header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3rem;
}

.benefits__eyebrow {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: .6rem;
}

.benefits__title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1.25;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.benefits__list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.benefit {
  display: flex;
  gap: 1.2rem;
  background: var(--white);
  padding: 1.6rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  transition: transform var(--transition);
}
.benefit:hover { transform: translateY(-3px); }

.benefit__icon {
  flex-shrink: 0;
  width: 44px; height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--sage-pale);
  border-radius: 10px;
  font-size: 1.2rem;
}

.benefit__title {
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: .25rem;
  color: var(--text-primary);
}

.benefit__text {
  font-size: .9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ---------- audience section ---------- */
.audience {
  padding: var(--section-pad) 0;
  background: var(--bg-page);
}

.audience__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.audience__eyebrow {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--plum-light);
  margin-bottom: .6rem;
}

.audience__title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  line-height: 1.25;
  color: var(--text-primary);
  margin-bottom: 1.2rem;
}

.audience__items {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.audience__item {
  display: flex;
  align-items: flex-start;
  gap: .8rem;
  font-size: .95rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.audience__check {
  flex-shrink: 0;
  width: 24px; height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--sage-pale);
  color: var(--sage);
  border-radius: 50%;
  font-size: .75rem;
  font-weight: 700;
  margin-top: 2px;
}

.audience__visual {
  position: relative;
  background: var(--blush-pale);
  border-radius: var(--radius-lg);
  padding: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.audience__stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

.audience__stat {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.4rem;
  text-align: center;
  box-shadow: var(--shadow-card);
}

.audience__stat-number {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--plum);
}

.audience__stat-label {
  font-size: .8rem;
  color: var(--text-secondary);
  margin-top: .2rem;
}

/* ---------- form / CTA section ---------- */
.cta-section {
  padding: var(--section-pad) 0;
  background: var(--plum);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 300px; height: 300px;
  background: var(--blush);
  border-radius: 50%;
  opacity: .1;
  filter: blur(80px);
  pointer-events: none;
}

.cta__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.cta__text-side {}

.cta__eyebrow {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--blush);
  margin-bottom: .6rem;
}

.cta__title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  line-height: 1.2;
  color: var(--text-inverse);
  margin-bottom: 1rem;
}

.cta__desc {
  font-size: 1.05rem;
  color: var(--blush-light);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.cta__details {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .6rem;
}

.cta__detail {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .9rem;
  color: var(--blush-light);
}

.cta__detail-icon {
  width: 28px; height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,.1);
  border-radius: 8px;
  font-size: .8rem;
}

.cta__form-side {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: 0 8px 40px rgba(0,0,0,.15);
  position: relative;
  z-index: 1;
}

.cta__form-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--text-primary);
  margin-bottom: .4rem;
  text-align: center;
}

.cta__form-subtitle {
  font-size: .88rem;
  color: var(--text-secondary);
  text-align: center;
  margin-bottom: 1.5rem;
}

/* Zoho form embed placeholder */
.zoho-form-embed {
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px dashed var(--sand-dark);
  border-radius: var(--radius);
  padding: 2rem;
  color: var(--text-secondary);
  font-size: .9rem;
  text-align: center;
  line-height: 1.6;
}

/* ---------- community section ---------- */
.community {
  padding: var(--section-pad) 0;
  background: var(--sage-pale);
  text-align: center;
}

.community__title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.community__desc {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}

.community__cta {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .85rem 2rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: .95rem;
  color: var(--text-inverse);
  background: var(--accent);
  border: none;
  border-radius: 100px;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
}
.community__cta:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
}

/* ---------- footer ---------- */
.footer {
  padding: 2rem 0;
  background: var(--plum-deep);
  text-align: center;
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer__logo {
  height: 26px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.footer__copy {
  font-size: .8rem;
  color: rgba(255,255,255,.5);
}

.footer__links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
}

.footer__link {
  font-size: .8rem;
  color: rgba(255,255,255,.5);
  transition: color var(--transition);
}
.footer__link:hover { color: var(--blush); }

/* ---------- animations ---------- */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* intersection observer reveal */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- responsive ---------- */
@media (max-width: 768px) {
  .hero__grid         { grid-template-columns: 1fr; text-align: center; }
  .hero__subtitle      { margin-left: auto; margin-right: auto; }
  .hero__details       { justify-content: center; }
  .hero__pricing       { margin-left: auto; margin-right: auto; }
  .hero__cta           { margin-left: auto; margin-right: auto; }
  .hero__image-wrap    { margin-top: 2rem; }
  .audience__grid      { grid-template-columns: 1fr; }
  .audience__visual    { order: -1; }
  .cta__inner          { grid-template-columns: 1fr; }
  .cta__text-side      { text-align: center; }
  .cta__details        { align-items: center; }
  .footer__inner       { flex-direction: column; text-align: center; }
  .topbar__cta         { padding: .45rem 1rem; font-size: .8rem; }
}
