:root {
  --ink: #18362f;
  --text: #263f39;
  --muted: #60746d;
  --line: #d7e2dc;
  --paper: #fbf9f3;
  --surface: #ffffff;
  --green: #235347;
  --green-dark: #163f36;
  --gold: #d7a557;
  --blue: #256d85;
  --red: #c84b31;
  --shadow: 0 24px 70px rgba(24, 54, 47, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--text);
  font-family: Inter, Arial, sans-serif;
  line-height: 1.5;
}

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

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 22px 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex-direction: row;
  gap: 14px;
}

.brand img {
  display: block;
  width: auto;
  max-width: min(245px, 52vw);
  max-height: 68px;
  height: auto;
}

.brand span b {
  display: block;
}

.brand span {
  display: grid;
  gap: 1px;
  max-width: 210px;
  color: var(--ink);
  font-family: Inter, Arial, sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.18;
  text-transform: uppercase;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

.top-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.top-nav a {
  border-radius: 8px;
  padding: 9px 12px;
}
.top-nav a:hover {
  background: rgba(35, 83, 71, 0.08);
  color: var(--ink);
}

.top-nav .nav-register {
  border: 1px solid rgba(35, 83, 71, 0.35);
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
}

.top-nav .nav-register:hover {
  border-color: rgba(35, 83, 71, 0.55);
  background: #fff;
}



.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.72fr);
  align-items: center;
  gap: 42px;
  max-width: 1180px;
  min-height: calc(100svh - 96px);
  margin: 0 auto;
  padding: 38px 24px 84px;
}

.hero-copy {
  max-width: 760px;
}

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

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 760px;
  margin: 0;
  color: var(--ink);
  font-family: "Barlow Condensed", Inter, sans-serif;
  font-size: clamp(54px, 8vw, 104px);
  line-height: 0.9;
  letter-spacing: 0;
}

.hero-text {
  max-width: 640px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 20px;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 12px 18px;
  font-weight: 800;
}

.button.primary {
  background: var(--green);
  color: #fff;
  box-shadow: 0 12px 28px rgba(35, 83, 71, 0.24);
}

.button.primary:visited,
.button.primary:active {
  color: #fff;
}

.button.primary:hover {
  background: var(--green-dark);
}

.button.secondary {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
}

.button.secondary:hover {
  border-color: rgba(35, 83, 71, 0.35);
}

.hero-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 480px;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(215, 165, 87, 0.22), transparent 38%),
    linear-gradient(210deg, rgba(37, 109, 133, 0.16), transparent 42%),
    #ffffff;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-visual::before {
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(35, 83, 71, 0.12);
  border-radius: 8px;
  content: "";
}

.hero-logo {
  position: relative;
  z-index: 1;
  width: auto;
  max-width: min(68%, 380px);
  max-height: 390px;
  height: auto;
}

.score-panel {
  position: absolute;
  right: 22px;
  bottom: 22px;
  left: 22px;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.score-panel div {
  border: 1px solid rgba(24, 54, 47, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  padding: 13px;
  box-shadow: 0 12px 24px rgba(24, 54, 47, 0.08);
}

.score-panel span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.score-panel strong {
  display: block;
  color: var(--ink);
  font-size: 28px;
  line-height: 1.1;
}

.proof-strip,
.section,
.cta,
.site-footer {
  max-width: 1180px;
  margin: 0 auto;
  padding-right: 24px;
  padding-left: 24px;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: -32px;
  margin-bottom: 74px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
  overflow: hidden;
}

.proof-strip div {
  background: var(--surface);
  padding: 22px;
}

.proof-strip strong,
.proof-strip span {
  display: block;
}

.proof-strip strong {
  color: var(--ink);
  font-size: 18px;
}

.proof-strip span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 14px;
}

.section {
  padding-top: 38px;
  padding-bottom: 38px;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(220px, 0.45fr) minmax(0, 1fr);
  gap: 28px;
  align-items: start;
  margin-bottom: 26px;
}

.section h2,
.cta h2 {
  margin: 0;
  color: var(--ink);
  font-family: "Barlow Condensed", Inter, sans-serif;
  font-size: clamp(36px, 5vw, 62px);
  line-height: 0.98;
  letter-spacing: 0;
}

.steps,
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.feature-grid {
  grid-template-columns: repeat(4, 1fr);
}



.steps article {
  display: flex;
  flex-direction: column;
  min-height: 255px;
}

.card-button {
  align-self: flex-start;
  min-height: 40px;
  margin-top: auto;
  border-color: rgba(35, 83, 71, 0.35);
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
  padding: 9px 14px;
  font-size: 14px;
  box-shadow: none;
}

.card-button:hover {
  border-color: rgba(35, 83, 71, 0.55);
  background: #fff;
}

.card-button:visited,
.card-button:active {
  color: var(--ink);
}
article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  padding: 24px;
}

article span {
  color: var(--gold);
  font-weight: 900;
}

article h3 {
  margin: 12px 0 8px;
  color: var(--ink);
  font-size: 20px;
}

article p,
.cta p {
  margin: 0;
  color: var(--muted);
}


.feature-card-pro {
  position: relative;
  border-color: rgba(215, 165, 87, 0.68);
  background: linear-gradient(145deg, #23312d 0%, #181f1d 58%, #271b10 100%);
  color: #fff;
  box-shadow: 0 18px 44px rgba(24, 31, 29, 0.22);
  transform: translateY(-6px);
}

.feature-card-pro::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  pointer-events: none;
  content: "";
}

.feature-card-pro .pro-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  border-radius: 999px;
  background: var(--gold);
  color: #17110a;
  padding: 3px 10px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.feature-card-pro h3,
.feature-card-pro p {
  color: #fff;
}

.feature-card-pro p {
  opacity: 0.84;
}
.feature-section {
  padding-bottom: 76px;
}

.cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 52px;
  border: 1px solid rgba(35, 83, 71, 0.18);
  border-radius: 8px;
  background: var(--green-dark);
  padding-top: 32px;
  padding-bottom: 32px;
  color: #fff;
}

.cta .eyebrow {
  color: var(--gold);
}

.cta h2,
.cta p {
  color: #fff;
}

.cta p {
  max-width: 680px;
  margin-top: 10px;
  opacity: 0.82;
}

.cta .button.primary {
  flex: 0 0 auto;
  background: #fff;
  color: var(--green-dark);
  box-shadow: none;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid var(--line);
  padding-top: 24px;
  padding-bottom: 32px;
  color: var(--muted);
  font-size: 14px;
}

.site-footer span:first-child {
  color: var(--ink);
  font-weight: 900;
}

@media (max-width: 900px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }
  .top-nav {
    flex-wrap: wrap;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 24px;
  }

  .hero-visual {

    min-height: 420px;

  }


  .hero-logo {

    max-height: 330px;

  }

  .proof-strip,
  .steps,
  .feature-grid,
  .section-heading {
    grid-template-columns: 1fr;
  }

  .proof-strip {
    margin-top: 0;
  }

  .cta,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .brand {
  display: inline-flex;
  align-items: center;
  flex-direction: row;
  gap: 14px;
}

  .brand span b {
  display: block;
}

.brand span {
  display: grid;
  gap: 1px;
  max-width: 210px;
  color: var(--ink);
  font-family: Inter, Arial, sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.18;
  text-transform: uppercase;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

  .site-header,
  .hero,
  .proof-strip,
  .section,
  .cta,
  .site-footer {
    padding-right: 18px;
    padding-left: 18px;
  }

  h1 {
    font-size: 50px;
  }

  .hero-text {
    font-size: 17px;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .hero-visual {

    min-height: 360px;

  }


  .brand {
  display: inline-flex;
  align-items: center;
  flex-direction: row;
  gap: 14px;
}

.brand img {

    max-height: 60px;

  }


  .hero-logo {

    max-height: 280px;

  }

  .score-panel {
    grid-template-columns: 1fr;
  }
}




