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

html.register-landing-page {
  scroll-behavior: smooth;
  --g: #147575;
  --gd: #002B2A;
  --gl: #F1EDDE;
  --gm: #126363;
  --gold: #C9A227;
  --ink: #212B36;
  --muted: #637381;
  --line: #E3DDC9;
  --bg: #FAF8F2;
  --white: #FFFFFF;
  --r: 14px;
  --r2: 22px;
  min-height: 100%;
}

html.register-landing-page,
body.register-landing {
  min-height: 100vh;
  min-height: 100dvh;
}

body.register-landing {
  display: flex;
  flex-direction: column;
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.register-landing.admin-bar nav {
  top: 32px;
}

@media (max-width: 782px) {
  body.register-landing.admin-bar nav {
    top: 46px;
  }
}

body.register-landing h1,
body.register-landing h2,
body.register-landing h3,
body.register-landing h4,
body.register-landing p {
  visibility: visible;
  opacity: 1;
}

body.register-landing h1,
body.register-landing h2,
body.register-landing h3,
body.register-landing h4 {
  font-family: 'Manrope', sans-serif;
  line-height: 1.15;
}

body.register-landing a { text-decoration: none; color: inherit; }

/* NAV */
body.register-landing nav {
  position: sticky;
  top: 0;
  z-index: 99;
  background: rgba(250, 248, 242, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  padding: 0 20px;
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin: 0;
}

body.register-landing .nlogo { display: flex; align-items: center; }

body.register-landing .nlogo img {
  display: block;
  height: 48px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

body.register-landing .ncta {
  background: var(--g);
  color: white;
  padding: 8px 18px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 13px;
  transition: background 0.18s;
  flex-shrink: 0;
}

body.register-landing .ncta:hover { background: var(--gd); }

body.register-landing .wrap {
  flex: 1 0 auto;
  max-width: 1060px;
  margin: 0 auto;
  padding: 32px 20px 50px;
  width: 100%;
}

body.register-landing .bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 14px;
}

body.register-landing .card {
  background: var(--white);
  border-radius: var(--r2);
  border: 1px solid var(--line);
  overflow: hidden;
  padding: 26px;
}

body.register-landing .c-hero {
  grid-column: 1 / 13;
  background: var(--g);
  color: white;
  padding: 44px 44px 40px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 36px;
  align-items: center;
  border: none;
}

body.register-landing .hero-eye {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.9);
  padding: 5px 12px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 16px;
}

body.register-landing .hero-eye-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: white;
  animation: rl-blink 2s infinite;
}

@keyframes rl-blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

body.register-landing .c-hero h1 {
  font-size: clamp(26px, 3.6vw, 40px);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

body.register-landing .c-hero p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 18px;
  max-width: 460px;
}

body.register-landing .hero-trust {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
}

body.register-landing .hero-trust b { color: white; }

body.register-landing .hero-form {
  background: white;
  border-radius: var(--r);
  padding: 22px;
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.25);
}

body.register-landing .hero-form h3 {
  font-size: 16px;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 14px;
}

body.register-landing .ff { margin-bottom: 10px; position: relative; }

body.register-landing .ff input {
  width: 100%;
  padding: 11px 13px;
  border: 1.5px solid var(--line);
  border-radius: 8px;
  font-size: 14px;
  font-family: inherit;
  background: var(--bg);
  color: var(--ink);
  outline: none;
  transition: border-color 0.18s;
  display: block;
  margin: 0;
  appearance: none;
  -webkit-appearance: none;
}

body.register-landing .ff input:focus { border-color: var(--g); }

body.register-landing .ff input::placeholder { color: #A8AEB4; }

body.register-landing .ff.notValid input { border-color: #D94040; }

body.register-landing .ff .error {
  display: block;
  font-size: 11px;
  color: #D94040;
  margin-top: 4px;
}

body.register-landing .btn-green {
  width: 100%;
  padding: 13px;
  background: var(--g);
  color: white;
  border: none;
  border-radius: 8px;
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 14.5px;
  cursor: pointer;
  margin-top: 4px;
  transition: background 0.18s, transform 0.15s;
}

body.register-landing .btn-green:hover {
  background: var(--gd);
  transform: translateY(-1px);
}

body.register-landing .btn-green:disabled,
body.register-landing .hero-form.disabled .btn-green {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

body.register-landing .fine {
  text-align: center;
  font-size: 11px;
  color: var(--muted);
  margin-top: 8px;
}

body.register-landing .c-pain {
  display: flex;
  flex-direction: column;
  gap: 8px;
  justify-content: center;
  background: var(--white);
  padding: 22px 24px;
}

body.register-landing .c-pain-1 { grid-column: 1 / 5; }
body.register-landing .c-pain-2 { grid-column: 5 / 9; }
body.register-landing .c-pain-3 { grid-column: 9 / 13; }

body.register-landing .pain-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 7px;
  background: #FEE9E8;
  color: #D94040;
  font-size: 13px;
  margin-bottom: 8px;
}

body.register-landing .c-pain h4 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 4px;
}

body.register-landing .c-pain p {
  font-size: 12.5px;
  color: var(--muted);
}

body.register-landing .c-benefit {
  grid-column: span 4;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 24px;
}

body.register-landing .c-benefit .ico {
  font-size: 28px;
  margin-bottom: 4px;
}

body.register-landing .c-benefit h3 {
  font-size: 15px;
  font-weight: 800;
}

body.register-landing .c-benefit p {
  font-size: 13px;
  color: var(--muted);
}

body.register-landing .c-proof {
  grid-column: 1 / 13;
  background: var(--gl);
  border-color: var(--line);
  padding: 22px 28px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 16px;
}

body.register-landing .proof-item { text-align: center; }

body.register-landing .proof-num {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 26px;
  color: var(--g);
}

body.register-landing .proof-lbl {
  font-size: 12px;
  color: var(--muted);
}

body.register-landing .c-final {
  grid-column: 1 / 13;
  background: var(--ink);
  border: none;
  color: white;
  padding: 36px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

body.register-landing .c-final h2 {
  font-size: clamp(20px, 2.6vw, 28px);
  font-weight: 800;
  margin-bottom: 6px;
}

body.register-landing .c-final p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
}

body.register-landing .btn-light {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--gd);
  padding: 13px 26px;
  border-radius: 9px;
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 14.5px;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: transform 0.15s, box-shadow 0.15s;
}

body.register-landing .btn-light:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

body.register-landing footer {
  flex-shrink: 0;
  margin-top: auto;
  background: var(--ink);
  color: white;
  padding: 22px 20px;
}

body.register-landing .foot-in {
  max-width: 1060px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
}

body.register-landing .flogo { display: flex; align-items: center; }

body.register-landing .flogo img {
  display: block;
  height: 36px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

body.register-landing .fcopy {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.35);
}

body.register-landing .hero-form-col { min-width: 0; }

body.register-landing #checkEmail.actionTemplate__innerPopUp {
  background: white;
  border-radius: var(--r);
  padding: 28px 22px;
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.25);
  text-align: center;
  color: var(--ink);
}

body.register-landing #checkEmail.actionTemplate__innerPopUp img {
  width: 64px;
  height: auto;
  margin-bottom: 16px;
}

body.register-landing #checkEmail .actionTemplate__innerPopUp__title {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 10px;
  color: var(--ink);
}

body.register-landing #checkEmail .actionTemplate__innerPopUp__info {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 16px;
  line-height: 1.5;
}

body.register-landing #checkEmail .actionTemplate__resend {
  font-size: 13px;
  margin-bottom: 12px;
}

body.register-landing #checkEmail .actionTemplate__resend span {
  color: var(--g);
  cursor: pointer;
  text-decoration: underline;
}

body.register-landing #checkEmail .actionTemplate__backLink {
  color: var(--g);
  font-weight: 600;
  font-size: 13px;
}

body.register-landing .hidden { display: none !important; }

/* Toast messages (minimal, no main.css) */
body.register-landing .messageWrapper {
  position: fixed;
  top: 90px;
  right: 20px;
  z-index: 9999;
  max-width: 360px;
}

body.register-landing .messageWrapper .message {
  padding: 12px 16px;
  border-radius: 8px;
  margin-bottom: 8px;
  font-size: 14px;
  background: white;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

@media (max-width: 820px) {
  body.register-landing .bento { grid-template-columns: 1fr 1fr; gap: 10px; }
  body.register-landing .c-hero,
  body.register-landing .c-pain-1,
  body.register-landing .c-pain-2,
  body.register-landing .c-pain-3,
  body.register-landing .c-proof,
  body.register-landing .c-final { grid-column: 1 / -1; }
  body.register-landing .c-benefit { grid-column: span 1; }
  body.register-landing .c-hero {
    grid-template-columns: 1fr;
    padding: 30px 24px;
  }
  body.register-landing .c-final {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }
}

@media (max-width: 480px) {
  body.register-landing .bento { grid-template-columns: 1fr; }
  body.register-landing .c-proof { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  body.register-landing * {
    animation: none !important;
    transition: none !important;
  }
}
