/* ============================================
   GUAT — Main Stylesheet
   Fonts: Fredoka 700 (headings) / Helvetica (body)
   Brand: #50D7B7 (teal) / #69BDD9 (blue)
   Accessible text: #25B898 / #2D8FB0
   ============================================ */

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

:root {
  --teal: #50D7B7;
  --blue: #69BDD9;
  --teal-text: #25B898;
  --blue-text: #2D8FB0;
  --black: #111111;
  --gray-1: #444444;
  --gray-2: #888888;
  --gray-3: #aaaaaa;
  --gray-4: #dddddd;
  --gray-5: #f2f2f2;
  --bg: #ffffff;
  --bg-tint: #f9fffe;
  --teal-light: #e8faf6;
  --teal-border: #b2ede0;
  --font-head: 'Fredoka', sans-serif;
  --font-body: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --max-w: 960px;
  --max-w-narrow: 680px;
  --pad: 52px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--black);
  -webkit-font-smoothing: antialiased;
}

/* ---- GRADIENT UTILITY ---- */
.grad {
  background: linear-gradient(90deg, var(--teal) 0%, var(--blue) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ---- SECTION LABEL ---- */
.sec-label {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal-text);
  font-weight: 600;
  margin-bottom: 14px;
}

/* ---- DIVIDER ---- */
.divider {
  height: 1px;
  background: var(--gray-5);
  margin: 0 var(--pad);
}

/* ============================================
   NAV
   ============================================ */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px var(--pad);
  border-bottom: 1px solid var(--gray-5);
  position: sticky;
  top: 0;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
  z-index: 100;
}

.nav-logo {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 26px;
  background: linear-gradient(90deg, var(--teal), var(--blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-decoration: none;
}

.nav-biz {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  cursor: pointer;
  padding: 7px 18px;
  border: 1.5px solid var(--teal);
  border-radius: 100px;
  text-decoration: none;
  transition: background 0.15s;
}
.nav-biz:hover { background: var(--teal-light); }

.nav-biz-en {
  font-size: 10px;
  color: var(--teal-text);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 1.2;
}
.nav-biz-es {
  font-size: 13px;
  color: var(--black);
  font-weight: 600;
  line-height: 1.4;
}

.nav-back {
  font-size: 14px;
  color: var(--gray-2);
  text-decoration: none;
  transition: color 0.15s;
}
.nav-back:hover { color: var(--teal-text); }

/* ============================================
   BUTTONS
   ============================================ */
.btn-primary {
  display: inline-block;
  background: linear-gradient(90deg, var(--teal), var(--blue));
  color: #fff;
  padding: 15px 36px;
  border-radius: 100px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  font-family: var(--font-body);
  text-decoration: none;
  transition: opacity 0.15s, transform 0.1s;
}
.btn-primary:hover { opacity: 0.9; transform: translateY(-1px); }
.btn-primary:active { transform: translateY(0); }

.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--teal-text);
  padding: 14px 36px;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  border: 1.5px solid var(--teal);
  font-family: var(--font-body);
  text-decoration: none;
  transition: background 0.15s;
}
.btn-outline:hover { background: var(--teal-light); }

/* ============================================
   HERO
   ============================================ */
.hero {
  padding: 88px var(--pad) 72px;
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--teal-light);
  border: 1.5px solid var(--teal-border);
  border-radius: 100px;
  padding: 7px 16px;
  font-size: 13px;
  color: var(--teal-text);
  font-weight: 500;
  margin-bottom: 36px;
}
.pill-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--teal);
  flex-shrink: 0;
}

.hero h1 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 60px;
  line-height: 1.1;
  color: var(--black);
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}

.hero-sub {
  font-size: 18px;
  line-height: 1.8;
  color: var(--gray-2);
  max-width: 480px;
  margin: 0 auto 44px;
}

.cta-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.cta-note { color: var(--gray-3); font-size: 14px; }

/* ============================================
   PROOF STRIP
   ============================================ */
.proof {
  display: flex;
  justify-content: center;
  gap: 60px;
  padding: 44px var(--pad);
  border-top: 1px solid var(--gray-5);
  border-bottom: 1px solid var(--gray-5);
  background: var(--bg-tint);
  flex-wrap: wrap;
}
.proof-stat .num {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 36px;
  text-align: center;
  background: linear-gradient(90deg, var(--teal), var(--blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.proof-stat .label {
  font-size: 13px;
  color: var(--gray-3);
  text-align: center;
  margin-top: 4px;
  max-width: 140px;
  line-height: 1.5;
}

/* ============================================
   FREEZE / PROBLEM
   ============================================ */
.freeze {
  padding: 88px var(--pad);
  max-width: var(--max-w-narrow);
  margin: 0 auto;
  text-align: center;
}
.freeze h2 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 42px;
  color: var(--black);
  line-height: 1.15;
  margin-bottom: 20px;
}
.freeze p {
  font-size: 17px;
  color: var(--gray-2);
  line-height: 1.9;
}
.freeze p strong { color: var(--gray-1); font-weight: 600; }
.freeze-p2 { margin-top: 20px; }

/* ============================================
   9 EXPERIENCES
   ============================================ */
.experiences {
  padding: 72px var(--pad);
  max-width: var(--max-w);
  margin: 0 auto;
}
.exp-header {
  text-align: center;
  margin-bottom: 52px;
}
.exp-header h2 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 42px;
  color: var(--black);
  line-height: 1.15;
  margin-bottom: 10px;
}
.exp-sub {
  font-size: 16px;
  color: var(--gray-3);
  margin-top: 8px;
}
.exp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.exp-card {
  background: var(--bg-tint);
  border: 1.5px solid var(--teal-light);
  border-radius: 16px;
  padding: 28px 22px;
  transition: border-color 0.15s;
}
.exp-card:hover { border-color: var(--teal); }
.exp-num {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 13px;
  background: linear-gradient(90deg, var(--teal), var(--blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
}
.exp-moment {
  font-size: 13px;
  color: var(--gray-3);
  margin-bottom: 10px;
  line-height: 1.5;
}
.exp-outcome {
  font-size: 15px;
  color: var(--black);
  line-height: 1.65;
  font-weight: 600;
}

/* ============================================
   HOW IT WORKS
   ============================================ */
.how {
  padding: 88px var(--pad);
  background: var(--bg-tint);
  text-align: center;
}
.how h2 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 42px;
  color: var(--black);
  margin-bottom: 52px;
}
.how-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: var(--max-w);
  margin: 0 auto;
  text-align: left;
}
.step-num {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 64px;
  line-height: 1;
  margin-bottom: 14px;
  background: linear-gradient(90deg, var(--teal), var(--blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.25;
}
.step-time {
  font-size: 11px;
  color: var(--teal-text);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 8px;
  font-weight: 600;
}
.how-step h3 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 22px;
  color: var(--black);
  margin-bottom: 10px;
}
.how-step p {
  font-size: 15px;
  color: var(--gray-2);
  line-height: 1.75;
}

/* ============================================
   QUOTES
   ============================================ */
.quotes {
  padding: 88px var(--pad);
  max-width: var(--max-w-narrow);
  margin: 0 auto;
  text-align: center;
}
.quotes h2 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 42px;
  color: var(--black);
  margin-bottom: 48px;
}
.quotes-grid { display: flex; flex-direction: column; gap: 14px; }
.quote-card {
  border: 1.5px solid var(--gray-5);
  border-radius: 20px;
  padding: 28px 32px;
  text-align: left;
  transition: border-color 0.15s;
}
.quote-card:hover { border-color: var(--teal-border); }
.q-text {
  font-size: 19px;
  color: var(--gray-1);
  line-height: 1.65;
  margin-bottom: 16px;
  font-style: italic;
}
.q-attr {
  font-size: 12px;
  color: var(--gray-3);
  display: flex;
  align-items: center;
  gap: 10px;
}
.q-avatar {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--blue));
  flex-shrink: 0;
}

/* ============================================
   WAITLIST
   ============================================ */
.waitlist {
  background: var(--black);
  padding: 88px var(--pad);
}
.waitlist-inner {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}
.waitlist-label { color: var(--teal); }
.waitlist h2 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 44px;
  color: #fff;
  margin-bottom: 14px;
  line-height: 1.1;
}
.waitlist-sub {
  font-size: 16px;
  color: #666;
  line-height: 1.8;
  margin-bottom: 36px;
}
.waitlist-form {
  display: flex;
  gap: 10px;
  margin-bottom: 16px;
  flex-wrap: wrap;
  justify-content: center;
}
.waitlist-form input[type="tel"] {
  flex: 1;
  min-width: 220px;
  padding: 15px 20px;
  border-radius: 100px;
  border: 1.5px solid #333;
  background: #1a1a1a;
  color: #fff;
  font-size: 15px;
  font-family: var(--font-body);
  outline: none;
  transition: border-color 0.15s;
}
.waitlist-form input[type="tel"]::placeholder { color: #555; }
.waitlist-form input[type="tel"]:focus { border-color: var(--teal); }
.waitlist-fine {
  font-size: 13px;
  color: #555;
  line-height: 1.6;
}
.waitlist-fine strong { color: var(--teal); }
.waitlist-success {
  margin-top: 20px;
  font-size: 16px;
  color: var(--teal);
  font-weight: 500;
}

/* ============================================
   EMPLOYER TEASER (on main page)
   ============================================ */
.employer-teaser {
  padding: 36px var(--pad);
  text-align: center;
  border-top: 1px solid var(--gray-5);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.employer-teaser-text { font-size: 15px; color: var(--gray-2); }
.employer-teaser-link {
  font-size: 15px;
  font-weight: 600;
  color: var(--teal-text);
  text-decoration: none;
  transition: color 0.15s;
}
.employer-teaser-link:hover { color: var(--blue-text); }

/* ============================================
   FOOTER
   ============================================ */
.footer {
  border-top: 1px solid var(--gray-5);
  padding: 32px var(--pad);
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-logo {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 20px;
  background: linear-gradient(90deg, var(--teal), var(--blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.footer-links {
  display: flex;
  gap: 28px;
}
.footer-links a {
  font-size: 14px;
  color: var(--gray-3);
  text-decoration: none;
  transition: color 0.15s;
}
.footer-links a:hover { color: var(--teal-text); }
.footer-copy { font-size: 13px; color: var(--gray-4); }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 700px) {
  :root { --pad: 22px; }

  .hero h1 { font-size: 38px; }
  .hero { padding: 60px var(--pad) 48px; }

  .exp-grid { grid-template-columns: 1fr; }
  .how-steps { grid-template-columns: 1fr; }

  .proof { gap: 28px; padding: 28px var(--pad); }

  .freeze h2,
  .experiences .exp-header h2,
  .how h2,
  .quotes h2,
  .waitlist h2 { font-size: 32px; }

  .waitlist-form { flex-direction: column; }
  .waitlist-form input[type="tel"] { min-width: 100%; }

  .footer-inner { flex-direction: column; align-items: flex-start; }

  .employer-teaser { flex-direction: column; gap: 8px; }
}
