:root {
  color-scheme: light;
  --ink: #17202a;
  --muted: #5a6675;
  --paper: #f7f9fb;
  --surface: #ffffff;
  --surface-soft: #eef5f3;
  --line: #dbe4ea;
  --green: #13735c;
  --green-dark: #0d4f42;
  --orange: #b94d00;
  --blue: #246b8f;
  --blue-soft: #e7f2f7;
  --shadow: 0 18px 50px rgba(23, 32, 42, 0.08);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.55;
}

a {
  color: var(--blue);
}

.site-shell {
  min-height: 100vh;
}

.public-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px clamp(18px, 4vw, 56px);
  border-bottom: 1px solid var(--line);
  background: rgba(247, 249, 251, 0.94);
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  font-size: 22px;
  text-decoration: none;
  color: var(--ink);
  white-space: nowrap;
}

.brand img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
  flex-wrap: wrap;
}

.nav-links a {
  color: var(--ink);
  text-decoration: none;
  font-weight: 750;
  font-size: 14px;
}

.nav-links a:hover {
  color: var(--green);
}

.nav-links .cta-small {
  color: #fff;
  background: var(--green);
  padding: 10px 14px;
  border-radius: 999px;
}

.hero {
  position: relative;
  min-height: min(760px, calc(100vh - 74px));
  display: flex;
  align-items: center;
  padding: clamp(52px, 8vw, 96px) clamp(18px, 6vw, 84px);
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(247, 249, 251, 0.98) 0%, rgba(247, 249, 251, 0.92) 48%, rgba(231, 242, 247, 0.64) 100%),
    url("../MASCOTTE/GenioBox.png") right clamp(18px, 7vw, 90px) center / min(42vw, 520px) auto no-repeat;
}

.hero::after {
  content: "";
  position: absolute;
  left: clamp(18px, 6vw, 84px);
  right: clamp(18px, 6vw, 84px);
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(19, 115, 92, 0.34), transparent);
}

.hero-copy {
  position: relative;
  z-index: 1;
  max-width: 820px;
}

.hero h1 {
  font-size: clamp(42px, 7vw, 82px);
  line-height: 0.98;
  margin: 0 0 22px;
  letter-spacing: 0;
  max-width: 880px;
}

.hero-lede {
  font-size: clamp(18px, 2.2vw, 23px);
  color: var(--muted);
  max-width: 760px;
  margin: 0;
}

.microcopy {
  max-width: 680px;
  color: var(--muted);
  font-size: 14px;
  margin: 18px 0 0;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 900;
  text-decoration: none;
  border: 1px solid var(--line);
}

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

.btn-secondary {
  background: var(--surface);
  color: var(--ink);
  border-color: #c9d6de;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}

.eyebrow {
  color: var(--orange);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 13px;
  margin: 0 0 12px;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border-bottom: 1px solid var(--line);
}

.trust-strip div {
  background: var(--surface);
  padding: 22px clamp(18px, 4vw, 46px);
}

.trust-strip strong {
  display: block;
  color: var(--green-dark);
  font-size: 16px;
  margin-bottom: 4px;
}

.trust-strip span {
  display: block;
  color: var(--muted);
  font-size: 14px;
}

.band {
  padding: 56px clamp(18px, 6vw, 84px);
  border-top: 1px solid rgba(219, 228, 234, 0.7);
}

.band.alt {
  background: var(--surface-soft);
}

.section-heading {
  max-width: 880px;
}

.section-title {
  font-size: clamp(30px, 4.4vw, 52px);
  line-height: 1.04;
  margin: 0 0 16px;
  letter-spacing: 0;
}

.section-lede {
  max-width: 900px;
  color: var(--muted);
  font-size: clamp(17px, 1.8vw, 20px);
  margin: 0;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.info-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  box-shadow: 0 10px 30px rgba(23, 32, 42, 0.04);
}

.step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--blue-soft);
  color: var(--blue);
  font-weight: 900;
  margin-bottom: 14px;
}

.info-card h3 {
  margin: 0 0 8px;
  font-size: 21px;
}

.info-card p,
.principles li,
.page p,
.page li {
  color: var(--muted);
}

.category-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.category-list span,
.guide-strip a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 14px;
  font-weight: 850;
  color: var(--ink);
  text-decoration: none;
}

.guide-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.method-band {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: start;
}

.principles {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.principles li {
  background: var(--surface);
  border: 1px solid var(--line);
  border-left: 5px solid var(--green);
  border-radius: 8px;
  padding: 16px 18px;
}

.notice {
  border-left: 5px solid var(--orange);
  background: var(--surface);
  padding: 18px 20px;
  border-radius: 8px;
  color: var(--muted);
  max-width: 980px;
}

.final-cta {
  text-align: center;
  padding: 64px clamp(18px, 6vw, 84px);
  background: var(--green-dark);
  color: #fff;
}

.final-cta h2 {
  margin: 0 auto 12px;
  max-width: 820px;
  font-size: clamp(30px, 4.5vw, 54px);
  line-height: 1.04;
}

.final-cta p {
  margin: 0 auto 24px;
  max-width: 680px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
}

.final-cta .btn-primary {
  background: #fff;
  color: var(--green-dark);
  border-color: #fff;
}

.guide-list {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.guide-list a {
  display: grid;
  gap: 4px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  text-decoration: none;
  color: var(--ink);
}

.guide-list span {
  color: var(--muted);
}

.page {
  max-width: 900px;
  padding: 48px clamp(18px, 5vw, 72px);
  margin: 0 auto;
}

.page h1 {
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1;
  letter-spacing: 0;
}

.page h2 {
  margin-top: 34px;
}

.footer {
  padding: 28px clamp(18px, 6vw, 84px);
  border-top: 1px solid var(--line);
  color: var(--muted);
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  background: var(--surface);
}

.footer a {
  color: var(--muted);
  margin-right: 14px;
}

@media (max-width: 920px) {
  .public-nav {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-links {
    justify-content: flex-start;
  }

  .hero {
    min-height: auto;
    background:
      linear-gradient(180deg, rgba(247, 249, 251, 0.98) 0%, rgba(247, 249, 251, 0.94) 100%),
      url("../MASCOTTE/GenioBox.png") right 18px bottom 18px / 210px auto no-repeat;
    padding-bottom: 180px;
  }

  .trust-strip,
  .grid-3,
  .method-band {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .nav-links {
    gap: 10px;
  }

  .nav-links a {
    font-size: 13px;
  }

  .hero h1 {
    font-size: clamp(38px, 13vw, 58px);
  }

  .hero-actions .btn {
    width: 100%;
  }

  .category-list span,
  .guide-strip a {
    width: 100%;
    text-align: center;
  }
}
