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

:root {
  --teal: #47b4b6;
  --teal-dark: #3a9a9c;
  --teal-light: #e8f7f7;
  --purple: #b07bac;
  --pink: #d66ba0;
  --text: #545454;
  --text-dark: #2d2d2d;
  --text-light: #7a7a7a;
  --bg: #faf9f4;
  --white: #ffffff;
  --border: #e5e4de;
  --shadow: 0 4px 24px rgba(71,180,182,0.12);
  --shadow-lg: 0 12px 48px rgba(71,180,182,0.18);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Roboto', sans-serif;
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Roboto Condensed', sans-serif;
  color: var(--text-dark);
  line-height: 1.2;
}

a { color: var(--teal); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; display: block; }

/* HEADLINE */
.headline-main {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.25;
  margin-bottom: 18px;
}
.headline-accent { color: var(--teal); }
.headline-sub {
  font-size: 1.05rem;
  color: var(--text-light);
  line-height: 1.75;
  max-width: 860px;
  margin: 0 auto;
}

/* NAV */
nav {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 0 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.nav-logo img { height: 58px; width: auto; }
.nav-right { display: flex; align-items: center; gap: 16px; }

/* HEADLINE BLOCK / HERO */
.headline-block {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  padding: 52px 48px 60px;
}
.hero-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 64px;
  align-items: start;
}
.hero-left { padding-top: 8px; }
.headline-block-inner {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}
.nav-badge {
  background: var(--teal-light);
  color: var(--teal-dark);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 100px;
  font-family: 'Roboto Condensed', sans-serif;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.nav-cta {
  background: var(--teal);
  color: white !important;
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.83rem;
  padding: 10px 22px;
  border-radius: 8px;
  text-decoration: none !important;
  transition: background 0.2s;
  letter-spacing: 0.02em;
}
.nav-cta:hover { background: var(--teal-dark); }

/* HERO */
.hero {
  max-width: 1200px;
  margin: 0 auto;
  padding: 72px 48px 88px;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 72px;
  align-items: start;
}
.hero-left { padding-top: 8px; }
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--teal-light);
  color: var(--teal-dark);
  font-size: 0.76rem;
  font-weight: 700;
  font-family: 'Roboto Condensed', sans-serif;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 24px;
}
.hero-eyebrow::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--teal);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.7); }
}
.hero h1 {
  font-size: clamp(2rem, 3.6vw, 3rem);
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 20px;
  line-height: 1.15;
}
.hero h1 em { font-style: normal; color: var(--teal); display: block; font-size: clamp(1.5rem, 2.8vw, 2.2rem); margin-top: 6px; }
.hero-sub {
  font-size: 1.05rem;
  color: var(--text-light);
  margin-bottom: 32px;
  line-height: 1.75;
  max-width: 500px;
}
.hero-simple { background: var(--bg); padding: 24px 48px 40px; }
.hero-simple-inner { max-width: 1200px; margin: 0 auto; }
.hero-cando-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-bottom: 28px; }
.hero-cando-item {
  display: flex; align-items: flex-start; gap: 12px;
  background: var(--bg); border: 1px solid var(--border);
  border-radius: 10px; padding: 14px 14px;
  transition: box-shadow 0.2s;
}
.hero-cando-item:hover { box-shadow: var(--shadow); }
.hero-cando-item .cando-icon {
  width: 38px; height: 38px; flex-shrink: 0;
}
.hero-cando-item strong { display: block; font-size: 0.82rem; font-weight: 700; color: var(--text-dark); font-family: 'Roboto Condensed', sans-serif; margin-bottom: 2px; }
.hero-cando-item span { display: block; font-size: 0.76rem; color: var(--text-light); line-height: 1.4; }
.hero-proof {
  display: flex; align-items: center; gap: 12px;
  font-size: 0.83rem; color: var(--text-light);
  border-top: 1px solid var(--border);
  padding-top: 24px;
}
.proof-avatars { display: flex; }
.proof-av {
  width: 30px; height: 30px; border-radius: 50%;
  border: 2px solid var(--bg);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.65rem; font-weight: 800; color: white;
  font-family: 'Roboto Condensed', sans-serif;
  margin-left: -8px;
}
.proof-av:first-child { margin-left: 0; }
.proof-av:nth-child(1) { background: var(--teal); }
.proof-av:nth-child(2) { background: var(--purple); }
.proof-av:nth-child(3) { background: var(--pink); }

/* FORM CARD */
.form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px 32px 28px;
  box-shadow: var(--shadow-lg);
  position: sticky;
  top: 84px;
}
.form-card-title {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 4px;
}
.form-card-sub {
  font-size: 0.84rem;
  color: var(--text-light);
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.badge-urgent {
  background: #fef3c7;
  color: #92400e;
  font-weight: 700;
  font-size: 0.72rem;
  padding: 2px 9px;
  border-radius: 100px;
  font-family: 'Roboto Condensed', sans-serif;
  letter-spacing: 0.03em;
}
.form-group { margin-bottom: 10px; }
.form-group label {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 5px;
  font-family: 'Roboto Condensed', sans-serif;
  letter-spacing: 0.02em;
}
.optional { font-weight: 400; color: var(--text-light); font-family: 'Roboto', sans-serif; letter-spacing: 0; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-family: 'Roboto', sans-serif;
  font-size: 0.88rem;
  color: var(--text-dark);
  background: var(--bg);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(71,180,182,0.12);
  background: white;
}
.form-group textarea { height: 76px; resize: vertical; }
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' viewBox='0 0 12 7'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23545454' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 13px center;
  background-color: var(--bg);
  padding-right: 36px;
  cursor: pointer;
}
.btn-submit {
  width: 100%;
  background: var(--teal);
  color: white;
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.92rem;
  padding: 13px 24px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s, box-shadow 0.2s;
  letter-spacing: 0.02em;
  margin-top: 4px;
}
.btn-submit:hover { background: var(--teal-dark); box-shadow: 0 4px 16px rgba(71,180,182,0.35); }
.btn-submit:active { transform: scale(0.99); }
.btn-submit:disabled { opacity: 0.65; cursor: not-allowed; }
.form-note { text-align: center; font-size: 0.76rem; color: var(--text-light); margin-top: 12px; }
.success-msg { display: none; text-align: center; padding: 20px 0; }
.success-check {
  width: 54px; height: 54px;
  background: var(--teal);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px;
  font-size: 1.4rem; color: white;
}
.success-msg h3 { font-size: 1.15rem; margin-bottom: 8px; }
.success-msg p { font-size: 0.88rem; color: var(--text-light); line-height: 1.6; }
.error-msg {
  display: none; margin-top: 12px;
  padding: 10px 14px;
  background: #fef2f2; border: 1px solid #fecaca;
  border-radius: 8px; font-size: 0.82rem; color: #b91c1c; text-align: center;
}

/* VIDEO FORM ROW */
.video-form-row { display: grid; grid-template-columns: 1fr 360px; gap: 32px; align-items: start; }
.video-col .video-placeholder { aspect-ratio: 16/9; }
.form-col .form-card { position: sticky; top: 84px; }

/* SECTIONS */
.section { padding: 56px 48px; }
.section-inner { max-width: 1100px; margin: 0 auto; }
.section-eyebrow {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--teal); margin-bottom: 14px;
}
.section-title {
  font-size: clamp(1.65rem, 2.8vw, 2.3rem);
  font-weight: 800; color: var(--text-dark);
  margin-bottom: 14px;
}
.section-sub {
  font-size: 1rem; color: var(--text-light);
  max-width: 560px; line-height: 1.75; margin-bottom: 48px;
}

/* PROBLEM */
.problem-section { background: #1e2e2e; }
.problem-section .section-eyebrow { color: var(--teal); }
.problem-section .section-title { color: white; max-width: 600px; }
.problem-content { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; margin-top: 48px; }
.problem-text p { font-size: 0.97rem; line-height: 1.8; color: rgba(255,255,255,0.65); margin-bottom: 16px; }
.problem-text p strong { color: white; }
.crash-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 16px; padding: 24px; margin-bottom: 16px;
}
.crash-bar { display: flex; align-items: center; gap: 6px; margin-bottom: 16px; }
.crash-dot { width: 11px; height: 11px; border-radius: 50%; }
.crash-dot.r { background: #ff5f57; }
.crash-dot.y { background: #ffbd2e; }
.crash-dot.g { background: #28c840; }
.crash-win-title { font-size: 0.72rem; color: rgba(255,255,255,0.35); margin-left: 6px; font-family: 'Roboto', sans-serif; }
.crash-code {
  font-family: 'Courier New', monospace;
  font-size: 0.78rem; color: rgba(255,255,255,0.4); line-height: 1.9;
}
.crash-alert {
  background: rgba(220,38,38,0.12);
  border: 1px solid rgba(220,38,38,0.25);
  border-radius: 8px; padding: 13px 15px; margin-top: 14px;
  font-size: 0.83rem; color: #fca5a5; line-height: 1.5;
}
.crash-alert strong { color: #f87171; display: block; margin-bottom: 2px; }
.stat-highlight {
  background: rgba(71,180,182,0.08);
  border: 1px solid rgba(71,180,182,0.2);
  border-radius: 14px; padding: 22px 26px;
}
.stat-number { font-family: 'Roboto Condensed', sans-serif; font-size: 2.8rem; font-weight: 800; color: var(--teal); line-height: 1; margin-bottom: 6px; }
.stat-desc { font-size: 0.84rem; color: rgba(255,255,255,0.5); line-height: 1.55; }

/* HOW IT WORKS */
.how-section { background: var(--bg); }
.steps-container { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; position: relative; }
.steps-connector {
  position: absolute; top: 35px; left: 12.5%; right: 12.5%; height: 2px;
  background: linear-gradient(90deg, var(--teal) 0%, var(--purple) 50%, var(--pink) 100%);
  z-index: 0;
}
.step { text-align: center; padding: 0 20px; position: relative; z-index: 1; }
.step-circle {
  width: 70px; height: 70px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.6rem;
  border: 2px solid var(--teal);
  background: var(--bg);
  transition: background 0.2s;
}
.step:nth-child(1) .step-circle { background: var(--teal); border-color: var(--teal); }
.step h3 { font-size: 0.97rem; font-weight: 700; color: var(--text-dark); margin-bottom: 8px; }
.step p { font-size: 0.84rem; color: var(--text-light); line-height: 1.65; }

/* VIDEO */
.video-section { background: white; }
.video-wrap {
  max-width: 1200px; margin: 0 auto;
  border-radius: 16px; overflow: hidden;
  box-shadow: 0 12px 48px rgba(0,0,0,0.22);
  background: #000;
  line-height: 0;
}
.video-wrap video {
  width: 100%; display: block;
  border-radius: 16px;
}

/* WHO */
.who-section { background: var(--bg); }
.who-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.who-item {
  background: white; border: 1px solid var(--border);
  border-radius: 12px; padding: 20px 22px;
  display: flex; align-items: flex-start; gap: 14px;
}
.who-check {
  width: 28px; height: 28px; background: var(--teal); border-radius: 8px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px;
}
.who-check svg { width: 13px; height: 13px; stroke: white; stroke-width: 2.8; fill: none; }
.who-item p { font-size: 0.88rem; color: var(--text); line-height: 1.6; }
.who-item p strong { color: var(--text-dark); font-family: 'Roboto Condensed', sans-serif; font-size: 0.86rem; display: block; margin-bottom: 3px; }

/* CTA SECTION */
.cta-section {
  background: linear-gradient(135deg, #3a9a9c 0%, #47b4b6 50%, #5abebe 100%);
  padding: 88px 48px; text-align: center;
}
.cta-section h2 { font-size: clamp(1.7rem, 3vw, 2.5rem); font-weight: 800; color: white; margin-bottom: 12px; }
.cta-section > p { font-size: 1rem; color: rgba(255,255,255,0.8); margin-bottom: 32px; max-width: 440px; margin-left: auto; margin-right: auto; }
.cta-btn {
  display: inline-block; background: white;
  color: var(--teal-dark) !important;
  font-family: 'Roboto Condensed', sans-serif; font-weight: 800; font-size: 0.97rem;
  padding: 16px 40px; border-radius: 12px;
  text-decoration: none !important;
  transition: transform 0.18s, box-shadow 0.18s;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.cta-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(0,0,0,0.2); }
.cta-note { margin-top: 16px; font-size: 0.78rem; color: rgba(255,255,255,0.5); }

/* MNC */
.mnc-note { background: var(--bg); border-top: 1px solid var(--border); padding: 28px 48px; text-align: center; }
.mnc-note p { font-size: 0.84rem; color: var(--text-light); }
.mnc-note a { color: var(--teal); font-weight: 600; }

/* FOOTER */
footer {
  background: #1e2e2e; padding: 28px 48px;
  display: flex; align-items: center; justify-content: space-between;
}
.footer-logo img { height: 28px; }
footer p { font-size: 0.78rem; color: rgba(255,255,255,0.35); }
footer a { color: rgba(255,255,255,0.5); }
footer a:hover { color: var(--teal); }

/* WHAT YOU CAN DO */
.cando-section { background: white; }
.cando-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.cando-item {
  display: flex; gap: 18px; align-items: flex-start;
  background: var(--bg); border: 1px solid var(--border);
  border-radius: 14px; padding: 24px 22px;
  transition: transform 0.22s, box-shadow 0.22s;
}
.cando-item:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.cando-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: var(--teal-light); border-radius: 11px;
  display: flex; align-items: center; justify-content: center;
}
.cando-icon svg { width: 20px; height: 20px; stroke: var(--teal); }
.cando-item h3 { font-family: 'Roboto Condensed', sans-serif; font-size: 0.97rem; font-weight: 700; color: var(--text-dark); margin-bottom: 6px; }
.cando-item p { font-size: 0.85rem; color: var(--text-light); line-height: 1.68; }

/* FEATURE LIST */
.features-section { background: var(--bg); }
.feat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.feat-card {
  background: white; border: 1px solid var(--border);
  border-radius: 14px; padding: 28px 24px;
  transition: transform 0.22s, box-shadow 0.22s;
}
.feat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.feat-icon {
  width: 46px; height: 46px; background: var(--teal-light);
  border-radius: 12px; display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.feat-icon svg { width: 22px; height: 22px; stroke: var(--teal); }
.feat-card h3 { font-family: 'Roboto Condensed', sans-serif; font-size: 1rem; font-weight: 700; color: var(--text-dark); margin-bottom: 8px; }
.feat-card p { font-size: 0.85rem; color: var(--text-light); line-height: 1.68; }

/* WHY JOIN BETA */
.beta-reasons-section { background: white; }
.reasons-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.reason-card {
  background: var(--bg); border: 1px solid var(--border);
  border-radius: 14px; padding: 28px 24px; position: relative; overflow: hidden;
  transition: transform 0.22s, box-shadow 0.22s;
}
.reason-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.reason-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--teal); }
.reason-num {
  font-family: 'Roboto Condensed', sans-serif; font-size: 2.4rem; font-weight: 900;
  color: rgba(71,180,182,0.1); position: absolute; top: 12px; right: 16px; line-height: 1;
}
.reason-card h3 { font-family: 'Roboto Condensed', sans-serif; font-size: 1.05rem; font-weight: 700; color: var(--text-dark); margin-bottom: 8px; }
.reason-card p { font-size: 0.85rem; color: var(--text-light); line-height: 1.68; }

/* FADE */
.fade-up { opacity: 0; transform: translateY(22px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; gap: 40px; padding: 56px 32px 64px; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .headline-block { padding: 44px 32px 52px; }
  .form-card { position: static; }
  .problem-content { grid-template-columns: 1fr; gap: 40px; }
  .fails-grid { grid-template-columns: 1fr; gap: 16px; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .steps-connector { display: none; }
  .steps-container { grid-template-columns: 1fr 1fr; gap: 32px; }
  .who-grid { grid-template-columns: 1fr; }
  nav { padding: 0 32px; }
  .section { padding: 44px 32px; }
  .cando-grid { grid-template-columns: 1fr; }
  .feat-grid { grid-template-columns: 1fr 1fr; }
  .reasons-grid { grid-template-columns: 1fr 1fr; }
  .feat-card:last-child { grid-column: 1 / -1; max-width: 380px; margin: 0 auto; }
  .video-form-row { grid-template-columns: 1fr; }
  .form-col .form-card { position: static; }
}
@media (max-width: 640px) {
  .cando-grid { grid-template-columns: 1fr; }
  .feat-grid { grid-template-columns: 1fr; }
  .feat-card:last-child { grid-column: auto; max-width: none; }
  .reasons-grid { grid-template-columns: 1fr; }
  nav { padding: 0 20px; }
  .nav-badge { display: none; }
  .hero { padding: 44px 20px 56px; }
  .headline-block { padding: 36px 20px 44px; }
  .section { padding: 52px 20px; }
  .features-grid { grid-template-columns: 1fr; }
  .steps-container { grid-template-columns: 1fr; }
  footer { flex-direction: column; gap: 12px; text-align: center; padding: 24px 20px; }
  .cta-section { padding: 60px 24px; }
  .mnc-note { padding: 24px 20px; }
}

/* reCAPTCHA badge — keep visible per Google policy */
.grecaptcha-badge {
  bottom: 80px !important;   /* lifts it above any fixed footer */
}
