:root {
  --seed-blue: #1f4e79;
  --seed-blue-dark: #16324f;
  --seed-gold: #c9a24d;
  --seed-text: #4b5b6a;
  --seed-border: #d9e2ec;
  --seed-soft: #f8fafc;
  --seed-white: #ffffff;
  --seed-ink-light: #a9bbcb;
  --shadow: 0 16px 45px rgba(22, 50, 79, 0.10);
  --radius: 14px;
  --max-width: 1120px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--seed-text);
  background: var(--seed-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--seed-blue); }
a:hover { color: var(--seed-gold); }
button, input { font: inherit; }

.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
}
.skip-link:focus {
  left: 16px;
  top: 16px;
  z-index: 1000;
  padding: 10px 14px;
  background: var(--seed-white);
  border: 2px solid var(--seed-blue);
}

.site-header {
  border-bottom: 1px solid var(--seed-border);
  background: rgba(255,255,255,0.96);
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(10px);
}
.site-header__inner {
  width: min(var(--max-width), calc(100% - 40px));
  margin: 0 auto;
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  color: var(--seed-blue-dark);
  text-decoration: none;
  letter-spacing: .2px;
  font-size: 1.1rem;
}
.brand-mark {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid var(--seed-gold);
  position: relative;
}
.brand-mark::before,
.brand-mark::after {
  content: "";
  position: absolute;
  background: var(--seed-blue);
  border-radius: 999px;
}
.brand-mark::before { width: 4px; height: 14px; left: 11px; top: 6px; }
.brand-mark::after { width: 14px; height: 4px; left: 6px; top: 11px; opacity: .3; }

.container {
  width: min(var(--max-width), calc(100% - 40px));
  margin: 0 auto;
}
.section { padding: 84px 0; }
.section--soft { background: var(--seed-soft); }
.eyebrow {
  font-size: .86rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--seed-gold);
  margin: 0 0 14px;
}
h1, h2, h3 {
  color: var(--seed-blue-dark);
  line-height: 1.18;
  margin-top: 0;
}
h1 { font-size: clamp(2.4rem, 5vw, 4.7rem); margin-bottom: 24px; }
h2 { font-size: clamp(2rem, 3.3vw, 3.1rem); margin-bottom: 20px; }
h3 { font-size: 1.18rem; margin-bottom: 10px; }
.lead { font-size: 1.08rem; max-width: 680px; }
.center { text-align: center; }
.center .lead { margin-left: auto; margin-right: auto; }

.hero { padding: 74px 0 86px; }
.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr);
  align-items: center;
  gap: 56px;
}
.hero__copy p:not(.eyebrow) { max-width: 600px; font-size: 1.1rem; }
.hero__image {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: var(--shadow);
}
.cta-row { margin-top: 30px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 14px 28px;
  border-radius: 8px;
  border: 0;
  background: var(--seed-blue);
  color: var(--seed-white);
  font-size: 1rem;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: transform .15s ease, background .15s ease;
}
.button:hover { background: var(--seed-blue-dark); color: var(--seed-white); transform: translateY(-1px); }
.button--gold { background: var(--seed-gold); color: var(--seed-blue-dark); }
.button--gold:hover { background: #d6b562; color: var(--seed-blue-dark); }
.trust-line { margin: 14px 0 0; font-size: .88rem; color: #6b7c8c; }
.motto { margin: 26px 0 0; color: var(--seed-blue-dark); font-weight: 800; letter-spacing: .04em; }

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  margin-top: 46px;
}
.card {
  background: var(--seed-white);
  border: 1px solid var(--seed-border);
  border-radius: var(--radius);
  padding: 30px;
}
.card p { margin-bottom: 0; }
.statement {
  max-width: 790px;
  margin: 46px auto 0;
  font-size: 1.16rem;
  font-weight: 750;
  color: var(--seed-blue-dark);
  text-align: center;
}

.method-card { text-align: center; padding: 12px 20px; }
.method-icon {
  width: 58px;
  height: 58px;
  margin: 0 auto 18px;
  border: 2px solid var(--seed-gold);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--seed-gold);
  font-weight: 900;
  font-size: 1.25rem;
}
.note-box {
  max-width: 790px;
  margin: 46px auto 0;
  padding: 28px 32px;
  background: var(--seed-soft);
  border-left: 4px solid var(--seed-gold);
  border-radius: 8px;
  color: var(--seed-blue-dark);
}

.guide-card {
  background: var(--seed-white);
  border: 1px solid var(--seed-border);
  border-top: 4px solid var(--seed-gold);
  border-radius: var(--radius);
  max-width: 840px;
  margin: 46px auto 0;
  padding: 46px;
  box-shadow: 0 10px 30px rgba(22,50,79,.06);
}
.guide-card h3 { font-size: clamp(1.55rem, 2.5vw, 2.15rem); }
.check-list { list-style: none; padding: 0; margin: 24px 0 32px; display: grid; gap: 10px; }
.check-list li::before { content: "✓"; color: var(--seed-gold); font-weight: 900; margin-right: 10px; }
.transparency { margin-top: 36px; text-align: center; font-size: .9rem; color: #6b7c8c; }

.about-grid {
  display: grid;
  grid-template-columns: minmax(260px, .8fr) minmax(0, 1.2fr);
  gap: 56px;
  align-items: center;
}
.author-placeholder {
  min-height: 470px;
  border-radius: 18px;
  background: linear-gradient(145deg, var(--seed-blue-dark), var(--seed-blue));
  color: var(--seed-white);
  display: grid;
  place-items: center;
  text-align: center;
  box-shadow: var(--shadow);
  padding: 30px;
}
.author-placeholder__initials {
  width: 116px;
  height: 116px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 2px solid var(--seed-gold);
  font-size: 2.4rem;
  font-weight: 800;
  margin: 0 auto 18px;
}
.author-placeholder p { margin: 0; color: #d9e2ec; }
.author-portrait {
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--seed-soft);
  aspect-ratio: 4 / 5;
}
.author-portrait img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center 28%;
}
.quote {
  border-left: 3px solid var(--seed-gold);
  padding-left: 18px;
  color: var(--seed-blue-dark);
  font-weight: 800;
  font-size: 1.12rem;
}

.signup {
  background: var(--seed-blue-dark);
  color: var(--seed-white);
}
.signup h2 { color: var(--seed-white); }
.signup .lead { color: var(--seed-border); }
.signup-inner { max-width: 620px; margin: 0 auto; text-align: center; }
.ml-embedded {
  margin-top: 34px;
  text-align: left;
}
.signup .ml-form-embedContainer {
  max-width: 100% !important;
  margin: 0 auto !important;
}
.signup .ml-form-embedWrapper {
  border-radius: 12px !important;
  box-shadow: 0 14px 35px rgba(0,0,0,.18) !important;
}
.signup noscript {
  display: block;
  margin-top: 20px;
  color: var(--seed-border);
  font-size: .9rem;
}
.signup noscript a { color: var(--seed-gold); }
.legal-note { font-size: .8rem; color: var(--seed-ink-light); margin-top: 18px; }

.faq { max-width: 800px; margin: 44px auto 0; }
details { border-bottom: 1px solid var(--seed-border); padding: 0 4px; }
summary {
  list-style: none;
  cursor: pointer;
  color: var(--seed-blue-dark);
  font-size: 1.08rem;
  font-weight: 800;
  padding: 22px 4px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; color: var(--seed-gold); font-size: 1.35rem; }
details[open] summary::after { content: "−"; }
details p { margin: 0 4px 22px; }

.site-footer { background: var(--seed-blue-dark); color: var(--seed-border); padding: 48px 0; }
.footer-grid { display: flex; justify-content: space-between; gap: 32px; }
.footer-links { display: flex; gap: 20px; flex-wrap: wrap; }
.site-footer a { color: var(--seed-border); }
.site-footer a:hover { color: var(--seed-gold); }
.disclaimer {
  border-top: 1px solid #2f4a63;
  margin-top: 30px;
  padding-top: 22px;
  font-size: .82rem;
  color: var(--seed-ink-light);
}

@media (max-width: 860px) {
  .section { padding: 64px 0; }
  .hero { padding: 52px 0 64px; }
  .hero__grid, .about-grid { grid-template-columns: 1fr; gap: 34px; }
  .hero__image { max-height: 620px; }
  .grid-3 { grid-template-columns: 1fr; }
  .guide-card { padding: 32px 24px; }
  .author-placeholder { min-height: 330px; }
  .author-portrait { max-width: 560px; margin-inline: auto; }
  .footer-grid { flex-direction: column; }
}

@media (max-width: 560px) {
  .container, .site-header__inner { width: min(100% - 28px, var(--max-width)); }
  h1 { font-size: clamp(2.25rem, 11vw, 3rem); }
  h2 { font-size: clamp(1.8rem, 8vw, 2.35rem); }
  .hero__image { aspect-ratio: 4 / 5; }
  .button { width: 100%; padding-left: 18px; padding-right: 18px; }
  .card { padding: 24px; }
  .note-box { padding: 24px; }
  .footer-links { flex-direction: column; gap: 10px; }
}
