@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800;900&display=swap");

:root {
  --purple: #56006f;
  --purple-dark: #4b0068;
  --lime: #9be900;
  --green: #00ce65;
  --ink: #2c3a4b;
  --muted: #8290a5;
  --line: #dfe5eb;
  --soft: #f3f6f8;
  --card: #f0f4f7;
  --white: #ffffff;
  --max: 1140px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family: Poppins, Montserrat, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.45;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.site-header {
  height: 88px;
  background: var(--purple);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.14);
  position: sticky;
  top: 0;
  z-index: 30;
}

.nav-wrap {
  width: min(100% - 72px, 1820px);
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand img {
  width: 226px;
  height: auto;
}

.nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 30px;
  color: #fff;
  font-weight: 800;
  font-size: 14px;
}

.nav a {
  white-space: nowrap;
}

.nav a.active {
  color: var(--lime);
}

.nav-dropdown {
  position: relative;
}

.services-trigger {
  border: 0;
  padding: 0;
  background: transparent;
  color: #fff;
  font: inherit;
  font-weight: 800;
  cursor: default;
  white-space: nowrap;
}

.services-trigger span {
  margin-left: 6px;
}

.submenu {
  position: absolute;
  top: calc(100% + 18px);
  left: 50%;
  width: 310px;
  padding: 18px 0;
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  box-shadow: 0 16px 34px rgba(24, 32, 44, 0.18);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 8px);
  transition: 0.18s ease;
}

.submenu::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -20px;
  height: 20px;
}

.submenu span {
  display: block;
  padding: 10px 22px;
  color: #4c596a;
  font-size: 14px;
  font-weight: 700;
}

.nav-dropdown:hover .submenu,
.nav-dropdown:focus-within .submenu {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.login {
  min-width: 96px;
  padding: 14px 26px;
  border: 3px solid var(--lime);
  border-radius: 10px;
  color: var(--lime);
  text-align: center;
  font-weight: 900;
}

.whats-round {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: #22d86f;
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 900;
  font-size: 18px;
}

.wa-icon {
  width: 1.25em;
  height: 1.25em;
  flex: 0 0 auto;
}

.btn .wa-icon {
  margin-left: 7px;
}

.section {
  padding: 90px 0;
}

.section.soft {
  background: var(--soft);
}

.container {
  width: min(100% - 48px, var(--max));
  margin: 0 auto;
}

.narrow {
  width: min(100% - 48px, 920px);
  margin: 0 auto;
}

.hero {
  padding: 128px 0 84px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 76px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--purple);
  font-weight: 800;
  font-size: 18px;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 26px;
  color: var(--ink);
  font-size: 43px;
  line-height: 1.06;
  font-weight: 900;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  color: var(--ink);
  font-size: 34px;
  line-height: 1.15;
  font-weight: 900;
  text-align: center;
}

h3 {
  color: var(--ink);
  font-size: 22px;
  line-height: 1.18;
  font-weight: 900;
}

p {
  color: var(--muted);
}

.lead {
  max-width: 540px;
  font-size: 19px;
  line-height: 1.45;
}

.btn-row {
  display: flex;
  justify-content: center;
  gap: 22px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0 44px;
  border-radius: 8px;
  border: 2px solid var(--purple);
  background: #fff;
  color: var(--purple);
  font-weight: 900;
  font-size: 15px;
}

.btn.primary {
  background: var(--purple);
  color: #fff;
}

.btn.lime {
  width: 100%;
  border-color: var(--lime);
  background: var(--lime);
  color: var(--purple);
  font-size: 17px;
}

.btn .arrow {
  margin-left: 18px;
  font-size: 24px;
  line-height: 0;
}

.hero-actions {
  margin-top: 34px;
  justify-content: flex-start;
}

.hero-actions .btn {
  min-width: 390px;
}

.hero-media {
  display: grid;
  gap: 22px;
}

.proofs {
  display: flex;
  justify-content: center;
  gap: 16px;
  align-items: center;
}

.pill {
  min-height: 45px;
  border: 1px solid #e9eef2;
  border-radius: 8px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: var(--purple);
  font-weight: 800;
}

.pill.safe {
  color: #0acb63;
}

.notice {
  margin: 70px auto 94px;
  width: min(100% - 48px, 1140px);
  min-height: 96px;
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 22px 34px;
  background: #eef3f6;
  border-radius: 16px;
  color: #596779;
  font-size: 17px;
}

.notice .info {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: #fff;
  background: var(--purple);
  font-weight: 900;
}

.notice .market {
  margin-left: auto;
  color: #888;
  font-size: 38px;
  letter-spacing: 16px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: 26px 0 70px;
}

.benefit-card {
  min-height: 290px;
  padding: 30px 24px;
  border: 1px solid #e0e5ea;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(30, 47, 63, 0.08);
}

.benefit-card p {
  font-size: 17px;
  line-height: 1.42;
}

.center-copy {
  margin: 0 auto;
  max-width: 920px;
  text-align: center;
}

.purple-title {
  color: var(--purple);
  font-size: 24px;
  font-weight: 900;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: center;
}

.panel-list ul {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  color: #627083;
}

.panel-list li::before {
  content: "✓";
  color: var(--lime);
  font-weight: 900;
  margin-right: 9px;
}

.logos-section {
  padding: 86px 0 74px;
}

.logos-img {
  width: 100%;
  margin: 54px auto 34px;
}

.feature-row {
  padding: 112px 0;
}

.feature-row .copy {
  max-width: 480px;
}

.feature-row h2 {
  text-align: left;
}

.feature-row p {
  font-size: 17px;
}

.feature-row .btn {
  margin-top: 18px;
  min-width: 470px;
}

.cta-band {
  padding: 78px 0;
  background: var(--soft);
  text-align: center;
}

.cta-band h2 {
  max-width: 620px;
  margin: 0 auto 42px;
}

.about-brand {
  padding: 78px 0 88px;
}

.brand-text .brand-mini {
  width: 250px;
  margin-bottom: 22px;
}

.badges img {
  width: 760px;
  margin: 78px auto 0;
}

.faq {
  padding: 62px 0 82px;
}

.faq-list {
  margin-top: 72px;
  border-top: 1px solid #1f2c39;
}

.faq-item {
  border-bottom: 1px solid #1f2c39;
}

.faq-q {
  width: 100%;
  padding: 17px 8px;
  border: 0;
  background: transparent;
  color: #172333;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  font: inherit;
  font-weight: 500;
  cursor: pointer;
}

.faq-a {
  display: none;
  padding: 0 8px 18px;
  color: var(--muted);
}

.faq-item.open .faq-a {
  display: block;
}

.site-footer {
  position: relative;
  background: var(--purple);
  color: #fff;
}

.footer-main {
  width: min(100% - 48px, 1140px);
  margin: 0 auto;
  padding: 78px 0 84px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 82px;
}

.footer-logo {
  width: 210px;
}

.social {
  display: flex;
  gap: 28px;
  margin: 32px 0 60px;
  font-size: 26px;
  font-weight: 900;
}

.social a {
  color: #fff;
  display: inline-flex;
}

.social-icon {
  width: 1.1em;
  height: 1.1em;
}

.footer-main h3 {
  color: #fff;
  margin-bottom: 20px;
}

.footer-main ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-main li {
  margin: 0 0 14px;
  font-size: 16px;
  font-weight: 700;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding: 36px 0;
  font-weight: 800;
  font-size: 14px;
}

.footer-bottom .container {
  display: flex;
  justify-content: space-between;
}

.floating-whats {
  position: fixed;
  right: 22px;
  bottom: 20px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #00ce19;
  color: #fff;
  font-size: 19px;
  font-weight: 900;
  z-index: 40;
}

.research-main {
  padding: 190px 0 150px;
}

.research-grid {
  display: grid;
  grid-template-columns: 1fr 560px;
  gap: 120px;
}

.research-copy {
  padding-top: 24px;
}

.research-copy h1 {
  font-size: 72px;
  line-height: 1.05;
}

.research-copy p {
  font-size: 23px;
  max-width: 560px;
}

.callout {
  margin-top: 46px;
  padding: 28px 54px;
  border-radius: 18px;
  background: #eef3f6;
  color: #10243a;
  font-size: 22px;
  text-align: center;
}

.form-card h2 {
  text-align: left;
  margin-bottom: 26px;
  font-size: 28px;
}

.field {
  display: block;
  margin-bottom: 12px;
  color: #6d7480;
  font-size: 18px;
}

.field span {
  color: #ff4545;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #3e4b5b;
  border-radius: 4px;
  min-height: 47px;
  padding: 11px 18px;
  color: #626b76;
  background: #fff;
  font: inherit;
  margin-top: 7px;
}

textarea {
  min-height: 103px;
  resize: vertical;
}

.article-hero {
  padding: 82px 0 72px;
}

.article-hero h1 {
  font-size: 40px;
}

.article-intro {
  padding: 34px 0 76px;
  text-align: center;
}

.stat-band {
  padding: 62px 0;
  background: var(--soft);
  text-align: center;
}

.stat-band h2 {
  max-width: 760px;
  margin: 0 auto 18px;
  font-size: 27px;
}

.alert-box {
  margin: 58px auto 0;
  max-width: 760px;
  padding: 28px 36px;
  border-radius: 10px;
  background: #f1f5f7;
  color: #728092;
  text-align: center;
}

.text-block {
  padding: 86px 0;
}

.text-block h2,
.text-block h3 {
  text-align: center;
}

.text-block p,
.text-block li {
  color: var(--muted);
}

.text-block ul {
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.text-block li {
  margin-bottom: 18px;
}

.urgency {
  padding: 94px 0;
  background: var(--soft);
}

.risk-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 28px;
  margin-top: 38px;
}

.risk-grid h3 {
  font-size: 16px;
}

.risk-grid p {
  font-size: 13px;
}

.reason-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-top: 38px;
}

.reason-icon {
  color: var(--purple);
  font-size: 30px;
  font-weight: 900;
}

.timeline-page {
  padding: 74px 0 78px;
}

.video {
  width: min(100%, 750px);
  margin: 0 auto 86px;
  aspect-ratio: 16 / 9;
  background: #101820;
}

.video iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.timeline {
  width: min(100% - 48px, 700px);
  margin: 0 auto;
  position: relative;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 36px;
  top: 10px;
  bottom: 0;
  width: 3px;
  background: var(--green);
}

.step {
  position: relative;
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 18px;
  margin-bottom: 34px;
}

.step-icon {
  width: 38px;
  height: 38px;
  margin-left: 18px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--green);
  color: #fff;
  font-weight: 900;
  z-index: 2;
}

.step.warn .step-icon {
  background: #ffd900;
  color: #605400;
}

.step.gray .step-icon {
  background: #9fa8b3;
}

.step-card {
  padding: 26px 30px;
  background: #eef3f6;
  border-radius: 7px;
}

.step-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.step-card p {
  margin-bottom: 0;
  font-size: 15px;
}

@media (max-width: 980px) {
  .site-header {
    height: auto;
  }

  .nav-wrap {
    width: min(100% - 28px, var(--max));
    padding: 18px 0;
    flex-wrap: wrap;
  }

  .nav {
    width: 100%;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
    font-size: 13px;
  }

  .brand img {
    width: 210px;
  }

  .hero,
  .article-hero,
  .research-main {
    padding-top: 62px;
  }

  .hero-grid,
  .split,
  .research-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  h1,
  .article-hero h1 {
    font-size: 34px;
  }

  .research-copy h1 {
    font-size: 48px;
  }

  .cards,
  .risk-grid,
  .reason-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions .btn,
  .feature-row .btn {
    min-width: 0;
    width: 100%;
  }

  .footer-main {
    grid-template-columns: 1fr;
  }

  .footer-bottom .container {
    gap: 18px;
    flex-direction: column;
  }
}

@media (max-width: 600px) {
  .floating-whats {
    display: none;
  }
}
