:root {
  --bg: #fbf8f1;
  --surface: #ffffff;
  --ink: #17253a;
  --muted: #5f6d7b;
  --navy: #10233f;
  --green: #496b55;
  --green-dark: #2f4c3b;
  --gold: #c79a45;
  --gold-soft: #f2dfb4;
  --line: #e7dfd0;
  --shadow: 0 18px 45px rgba(16, 35, 63, 0.12);
  --radius: 8px;
  --max-width: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body,
button,
input {
  font: inherit;
}

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

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

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

h1,
h2,
h3 {
  line-height: 1.12;
  letter-spacing: 0;
}

h1 {
  max-width: 12ch;
  font-size: 2.45rem;
  margin-bottom: 1.25rem;
}

h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.2rem;
  margin-bottom: 0.65rem;
}

p {
  color: var(--muted);
  font-size: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 1rem;
  background: rgba(251, 248, 241, 0.92);
  border-bottom: 1px solid rgba(231, 223, 208, 0.86);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  min-width: 0;
  color: var(--navy);
  font-size: 0.86rem;
  font-weight: 750;
  line-height: 1.25;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  width: 2.25rem;
  height: 2.25rem;
  color: var(--surface);
  background: var(--navy);
  border-radius: 6px;
  font-size: 0.78rem;
  letter-spacing: 0;
}

.header-link {
  flex: 0 0 auto;
  color: var(--green-dark);
  font-weight: 750;
  font-size: 0.92rem;
}

.section {
  padding: 4rem 1rem;
}

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

.hero {
  padding-top: 3rem;
}

.hero-grid,
.founder-grid,
.cta-grid {
  display: grid;
  gap: 2rem;
}

.hero-intro {
  max-width: 42rem;
  color: #3c4b5f;
  font-size: 1.12rem;
}

.eyebrow,
.panel-kicker {
  margin-bottom: 0.85rem;
  color: var(--green-dark);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.trust-list {
  display: grid;
  gap: 0.75rem;
  max-width: 40rem;
  margin: 1.7rem 0 0;
  padding: 0;
  list-style: none;
}

.trust-list li {
  position: relative;
  padding-left: 1.8rem;
  color: #304158;
  font-weight: 650;
}

.trust-list li::before {
  position: absolute;
  top: 0.12rem;
  left: 0;
  width: 1.1rem;
  height: 1.1rem;
  content: "";
  background:
    linear-gradient(135deg, transparent 46%, var(--surface) 47% 53%, transparent 54%),
    var(--green);
  border-radius: 999px;
  box-shadow: 0 0 0 4px rgba(73, 107, 85, 0.12);
}

.optin-panel {
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: var(--radius);
  box-shadow: none;
}

.optin-panel h2 {
  font-size: 1.55rem;
}

.optin-form {
  display: grid;
  gap: 0.7rem;
  margin-top: 1.25rem;
}

.systeme-form {
  margin-top: 0;
  color: var(--ink);
  font-family: inherit;
}

.systeme-form > * {
  max-width: 100% !important;
}

.systeme-form iframe,
.systeme-form form {
  width: 100%;
  max-width: 100%;
  background: transparent;
  border: 0;
}

.systeme-form * {
  font-family: inherit !important;
  letter-spacing: 0 !important;
}

.systeme-form input,
.systeme-form textarea,
.systeme-form select {
  width: 100% !important;
  min-height: 3.25rem !important;
  padding: 0.85rem 0.95rem !important;
  color: var(--ink) !important;
  background: #fffdfa !important;
  border: 1px solid #d9cfbc !important;
  border-radius: 6px !important;
  box-shadow: none !important;
  font-size: 1rem !important;
  font-weight: 500 !important;
}

.systeme-form input::placeholder,
.systeme-form textarea::placeholder {
  color: #87909c !important;
}

.systeme-form input:focus,
.systeme-form textarea:focus,
.systeme-form select:focus {
  border-color: var(--green) !important;
  box-shadow: 0 0 0 4px rgba(73, 107, 85, 0.14) !important;
  outline: none !important;
}

.systeme-form button,
.systeme-form input[type="button"],
.systeme-form input[type="submit"],
.systeme-form [role="button"] {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 100% !important;
  min-height: 3.25rem !important;
  margin-top: 0.85rem !important;
  padding: 0.85rem 1.1rem !important;
  color: var(--surface) !important;
  background: var(--green-dark) !important;
  border: 0 !important;
  border-radius: 6px !important;
  box-shadow: none !important;
  cursor: pointer !important;
  font-size: 1rem !important;
  font-weight: 850 !important;
  line-height: 1.25 !important;
  text-align: center !important;
}

.systeme-form button:hover,
.systeme-form button:focus-visible,
.systeme-form input[type="button"]:hover,
.systeme-form input[type="button"]:focus-visible,
.systeme-form input[type="submit"]:hover,
.systeme-form input[type="submit"]:focus-visible,
.systeme-form [role="button"]:hover,
.systeme-form [role="button"]:focus-visible {
  background: #263f31 !important;
}

.systeme-form label,
.systeme-form p,
.systeme-form span {
  color: var(--ink) !important;
}

.optin-form label {
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 750;
}

.optin-form input {
  width: 100%;
  min-height: 3.25rem;
  padding: 0.85rem 0.95rem;
  color: var(--ink);
  background: #fffdfa;
  border: 1px solid #d9cfbc;
  border-radius: 6px;
  outline: none;
}

.optin-form input:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(73, 107, 85, 0.14);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.25rem;
  padding: 0.85rem 1.1rem;
  border: 0;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 850;
  text-align: center;
}

.button-primary {
  color: var(--surface);
  background: var(--green-dark);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #263f31;
}

.button-light {
  color: var(--navy);
  background: var(--gold-soft);
}

.button-light:hover,
.button-light:focus-visible {
  background: #ead195;
}

.privacy-note {
  margin: 1rem 0 0;
  font-size: 0.9rem;
}

.section-light {
  background: var(--surface);
}

.section-heading {
  max-width: 46rem;
  margin-bottom: 2rem;
}

.card-grid {
  display: grid;
  gap: 1rem;
}

.info-card {
  min-height: 12rem;
  padding: 1.25rem;
  background: #fffdfa;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.info-card p {
  margin-bottom: 0;
}

.founder-section {
  background:
    linear-gradient(90deg, rgba(199, 154, 69, 0.12), transparent 42%),
    var(--bg);
}

.founder-card {
  display: grid;
  place-items: center;
  min-height: 16rem;
  background:
    linear-gradient(135deg, rgba(16, 35, 63, 0.92), rgba(47, 76, 59, 0.9)),
    var(--navy);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.portrait-initials {
  display: grid;
  place-items: center;
  width: 7.5rem;
  height: 7.5rem;
  color: var(--gold-soft);
  border: 2px solid rgba(242, 223, 180, 0.7);
  border-radius: 999px;
  font-size: 2rem;
  font-weight: 850;
}

.founder-copy p {
  font-size: 1.05rem;
}

.credential-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.4rem;
}

.credential-row span {
  padding: 0.55rem 0.7rem;
  color: var(--green-dark);
  background: rgba(73, 107, 85, 0.1);
  border: 1px solid rgba(73, 107, 85, 0.18);
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 800;
}

.section-contrast {
  color: var(--surface);
  background: var(--navy);
}

.section-contrast .eyebrow,
.section-contrast p,
.section-contrast h2 {
  color: var(--surface);
}

.section-contrast p {
  opacity: 0.82;
}

.cta-grid {
  align-items: center;
}

.faq-list {
  display: grid;
  gap: 0.8rem;
}

details {
  padding: 1rem 1.05rem;
  background: #fffdfa;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

summary {
  cursor: pointer;
  color: var(--ink);
  font-weight: 850;
}

details p {
  margin: 0.8rem 0 0;
}

.final-cta {
  text-align: center;
}

.final-cta-inner {
  max-width: 48rem;
}

.final-cta p {
  margin-right: auto;
  margin-left: auto;
  max-width: 38rem;
}

.site-footer {
  padding: 2rem 1rem;
  color: var(--muted);
  background: var(--surface);
  border-top: 1px solid var(--line);
  text-align: center;
}

.site-footer p {
  margin: 0 auto;
  max-width: 42rem;
  font-size: 0.9rem;
}

@media (min-width: 720px) {
  h1 {
    font-size: 3.75rem;
  }

  h2 {
    font-size: 2.65rem;
  }

  .site-header {
    padding: 1rem 1.5rem;
  }

  .section {
    padding: 5.5rem 1.5rem;
  }

  .hero {
    padding-top: 4.5rem;
  }

  .card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cta-grid {
    grid-template-columns: 1fr auto;
  }

  .optin-panel h2 {
    font-size: 2.05rem;
  }
}

@media (min-width: 960px) {
  h1 {
    font-size: 4.75rem;
  }

  h2 {
    font-size: 3.2rem;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) 25rem;
    align-items: center;
  }

  .founder-grid {
    grid-template-columns: 22rem minmax(0, 1fr);
    align-items: center;
  }

  .card-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .optin-panel {
    position: sticky;
    top: 6rem;
    padding: 0;
  }
}
