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

:root {
  --green: #059669;
  --green-mid: #10b981;
  --green-dark: #065f46;
  --green-light: #d1fae5;
  --green-xlight: #ecfdf5;
  --border: rgba(5, 150, 105, 0.18);
  --border-light: rgba(5, 150, 105, 0.1);
  --text: #111827;
  --muted: #6b7280;
  --muted-light: #9ca3af;
  --bg: #f8fffe;
  --white: #ffffff;
  --font-head: 'Bebas Neue', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --radius: 14px;
  --radius-sm: 10px;
}

html {
  scroll-behavior: smooth
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased
}

.pitch-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(transparent 49.5%, rgba(5, 150, 105, 0.035) 49.5%, rgba(5, 150, 105, 0.035) 50.5%, transparent 50.5%),
    linear-gradient(90deg, transparent 49.5%, rgba(5, 150, 105, 0.035) 49.5%, rgba(5, 150, 105, 0.035) 50.5%, transparent 50.5%);
  background-size: 100px 100px;
  pointer-events: none;
}

.pitch-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 10%, rgba(255, 255, 255, 0.7) 0%, transparent 80%)
}

/* NAV */
#site-header {
  position: fixed;
  top: 1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 92%;
  max-width: 1280px;
  z-index: 50;
  transition: all 0.3s;
}

#header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  border: 1px solid var(--border-light);
  border-radius: 100px;
  padding: 0.6rem 1.5rem;
  box-shadow: 0 4px 24px rgba(5, 150, 105, 0.08), 0 1px 4px rgba(0, 0, 0, 0.05);
  transition: all 0.3s;
}

#header-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

#header-title {
  font-family: var(--font-head);
  font-size: 1.3rem;
  letter-spacing: 0.04em;
  color: var(--text);
  white-space: nowrap;
}

#desktop-menu {
  display: none;
  align-items: center;
  gap: 2rem;
}

@media(min-width:768px) {
  #desktop-menu {
    display: flex;
  }
}

#desktop-menu a {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}

#desktop-menu a:hover {
  color: var(--green);
}

#header-cta {
  display: none;
  background: var(--green);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 500;
  padding: 8px 20px;
  border-radius: 100px;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s, transform 0.2s;
}

@media(min-width:640px) {
  #header-cta {
    display: inline-flex;
    align-items: center;
  }
}

#header-cta:hover {
  background: #047857;
  transform: translateY(-1px);
}

#mobile-menu-button {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text);
  padding: 4px;
  display: flex;
  align-items: center;
}

@media(min-width:768px) {
  #mobile-menu-button {
    display: none;
  }
}

#mobile-menu {
  margin-top: 0.5rem;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(14px);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(5, 150, 105, 0.1);
}

#mobile-menu.hidden {
  display: none;
}

#mobile-menu nav {
  display: flex;
  flex-direction: column;
  padding: 0.75rem;
}

#mobile-menu a {
  padding: 0.75rem 1rem;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

#mobile-menu a:hover {
  background: var(--green-xlight);
  color: var(--green);
}


/* PAGE */
.page {
  position: relative;
  z-index: 1
}

.page-wrapper {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 5vw, 3rem)
}

/* HERO */
.hero {
  padding: clamp(7rem, 12vw, 10rem) 0 clamp(3rem, 5vw, 5rem);
  text-align: center
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--green);
  border: 1px solid var(--border);
  background: var(--green-xlight);
  padding: 5px 16px;
  border-radius: 100px;
  margin-bottom: 1.8rem
}

.hero-badge .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green)
}

.handbook-tag {
  display: inline-block;
  background: var(--green);
  color: #fff;
  font-family: var(--font-head);
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  letter-spacing: .28em;
  padding: .45rem 1.8rem;
  border-radius: var(--radius-sm);
  margin-bottom: 1.8rem
}

.hero h1 {
  font-family: var(--font-head);
  font-size: clamp(2.4rem, 6vw, 4.4rem);
  letter-spacing: .02em;
  line-height: 1.05;
  color: var(--text);
  margin-bottom: 1rem
}

.hero h1 span {
  color: var(--green)
}

.hero-sub {
  max-width: 520px;
  margin: 0 auto 2rem;
  font-size: clamp(.9rem, 1.8vw, 1rem);
  color: var(--muted);
  font-weight: 300;
  line-height: 1.75
}

/* SECTION */
section {
  padding: clamp(2.5rem, 6vw, 5rem) 0
}

.section-header {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem)
}

.section-label {
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--green);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: .6rem
}

.section-label::before {
  content: '';
  display: inline-block;
  width: 22px;
  height: 1px;
  background: var(--green)
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  letter-spacing: .02em;
  color: var(--text);
  line-height: 1.08
}

.section-divider {
  width: 40px;
  height: 3px;
  background: var(--green);
  border-radius: 10px;
  margin: .75rem auto 0
}

/* RULES */
.rules-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px
}

.rule-card {
  background: var(--white);
  border: 1px solid rgba(5, 150, 105, 0.11);
  border-radius: var(--radius);
  padding: 1.6rem 1.4rem;
  position: relative;
  overflow: hidden;
  transition: border-color .3s, box-shadow .3s, transform .3s
}

.rule-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green), var(--green-mid));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .38s cubic-bezier(.4, 0, .2, 1);
  border-radius: 3px 3px 0 0
}

.rule-card:hover {
  border-color: rgba(5, 150, 105, .32);
  box-shadow: 0 10px 36px rgba(5, 150, 105, .09), 0 2px 6px rgba(0, 0, 0, .04);
  transform: translateY(-4px)
}

.rule-card:hover::before {
  transform: scaleX(1)
}

.rule-icon {
  font-size: 1.8rem;
  margin-bottom: .85rem;
  display: block
}

.rule-title {
  font-family: var(--font-head);
  font-size: 1.1rem;
  letter-spacing: .04em;
  color: var(--text);
  margin-bottom: .45rem
}

.rule-desc {
  font-size: .85rem;
  color: var(--muted);
  line-height: 1.6;
  font-weight: 300
}

.ack-card {
  margin-top: 1.6rem;
  background: var(--green-xlight);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.3rem 1.7rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem
}

.ack-icon {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  background: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: .1rem
}

.ack-icon svg {
  width: 16px;
  height: 16px;
  color: #fff
}

.ack-text {
  font-size: .88rem;
  color: var(--muted);
  line-height: 1.65;
  font-weight: 300
}

.ack-text strong {
  display: block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: .3rem
}

/* FAQ */
.faq-groups {
  display: flex;
  flex-direction: column;
  gap: 2.5rem
}

.faq-group-title {
  font-family: var(--font-head);
  font-size: 1rem;
  letter-spacing: .12em;
  color: var(--green);
  text-transform: uppercase;
  margin-bottom: .75rem;
  padding-left: .75rem;
  border-left: 3px solid var(--green)
}

.accordion {
  border: 1px solid rgba(5, 150, 105, .11);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 2px 8px rgba(5, 150, 105, .05)
}

.accordion-item {
  border-bottom: 1px solid rgba(5, 150, 105, .08)
}

.accordion-item:last-child {
  border-bottom: none
}

.accordion-btn {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  padding: 1.05rem 1.4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  text-align: left;
  font-family: var(--font-body);
  font-size: .93rem;
  font-weight: 500;
  color: var(--text);
  transition: background .15s
}

.accordion-btn:hover {
  background: var(--green-xlight)
}

.accordion-btn.open {
  color: var(--green);
  background: var(--green-xlight)
}

.accordion-chevron {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border: 1px solid rgba(5, 150, 105, .2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .2s, background .15s, border-color .15s
}

.accordion-btn.open .accordion-chevron {
  transform: rotate(180deg);
  background: var(--green);
  border-color: var(--green)
}

.accordion-btn.open .accordion-chevron svg {
  stroke: #fff
}

.accordion-chevron svg {
  width: 10px;
  height: 10px;
  stroke: var(--muted);
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height .28s cubic-bezier(.4, 0, .2, 1)
}

.accordion-body.open {
  max-height: 400px
}

.accordion-content {
  padding: .3rem 1.4rem 1.1rem;
  font-size: .87rem;
  color: var(--muted);
  line-height: 1.7;
  border-top: 1px solid rgba(5, 150, 105, .07);
  font-weight: 300
}

/* CTA */
.cta-section {
  padding: clamp(3rem, 6vw, 5rem) 0;
  text-align: center
}

.cta-box {
  background: var(--green);
  border-radius: 20px;
  padding: clamp(2.5rem, 5vw, 4rem);
  max-width: 680px;
  margin: 0 auto;
  position: relative;
  overflow: hidden
}

.cta-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(transparent 49.5%, rgba(255, 255, 255, 0.04) 49.5%, rgba(255, 255, 255, 0.04) 50.5%, transparent 50.5%), linear-gradient(90deg, transparent 49.5%, rgba(255, 255, 255, 0.04) 49.5%, rgba(255, 255, 255, 0.04) 50.5%, transparent 50.5%);
  background-size: 60px 60px;
  pointer-events: none
}

.cta-emoji {
  font-size: 2.2rem;
  margin-bottom: .9rem;
  display: block;
  position: relative;
  z-index: 1
}

.cta-title {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  letter-spacing: .02em;
  color: #fff;
  margin-bottom: .5rem;
  position: relative;
  z-index: 1
}

.cta-sub {
  color: rgba(255, 255, 255, .75);
  font-size: .93rem;
  margin-bottom: 2rem;
  font-weight: 300;
  position: relative;
  z-index: 1
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: .85rem;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: #fff;
  color: var(--green);
  font-family: var(--font-body);
  font-size: .93rem;
  font-weight: 600;
  padding: .8rem 1.8rem;
  border-radius: 100px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background .18s, transform .18s, box-shadow .18s;
  box-shadow: 0 4px 16px rgba(0, 0, 0, .12)
}

.btn-primary:hover {
  background: #ecfdf5;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, .15)
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  color: rgba(255, 255, 255, .85);
  font-family: var(--font-body);
  font-size: .93rem;
  font-weight: 500;
  padding: .78rem 1.5rem;
  border-radius: 100px;
  text-decoration: none;
  border: 1.5px solid rgba(255, 255, 255, .3);
  cursor: pointer;
  transition: border-color .18s, color .18s, transform .18s;
  background: transparent
}

.btn-secondary:hover {
  border-color: rgba(255, 255, 255, .8);
  color: #fff;
  transform: translateY(-2px)
}

.cta-divider {
  font-size: .78rem;
  color: rgba(255, 255, 255, .5);
  font-weight: 500
}

/* FOOTER NOTE */
.footer-note {
  text-align: center;
  padding: 1.5rem 0 3rem;
  font-size: .79rem;
  color: var(--muted-light)
}


.wa-container {
  position: fixed;
  bottom: 28px;
  right: 28px;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 9999;
}

.wa-tooltip {
  background: #fff;
  color: #111;
  font-size: 13px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.10);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 6px;
}

.wa-dot {
  width: 7px;
  height: 7px;
  background: #22c55e;
  border-radius: 50%;
  flex-shrink: 0;
}

.wa-btn {
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  flex-shrink: 0;
  transition: transform 0.15s ease, background 0.15s ease;
}

.wa-btn:hover {
  background: #1ebe5d;
  transform: scale(1.07);
}


@media (max-width: 640px) {
  .wa-tooltip {
    display: none;
  }

  .wa-btn {
    width: 50px;
    height: 50px;
  }
}

/* REVEAL */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(16px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

.reveal {
  opacity: 0
}

.reveal.visible {
  animation: fadeUp .45s ease forwards
}

@media(prefers-reduced-motion:reduce) {
  .reveal {
    opacity: 1
  }

  .rule-card {
    transition: none
  }
}

@media(max-width:800px) {
  .rules-grid {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media(max-width:520px) {
  .rules-grid {
    grid-template-columns: 1fr
  }

  #desktop-menu,
  #header-cta {
    display: none
  }

  .cta-buttons {
    flex-direction: column;
    align-items: stretch
  }

  .btn-primary,
  .btn-secondary {
    justify-content: center
  }
}