:root {
  --sage: #84ab9c;
  --sage-dark: #356456;
  --sage-deep: #214b40;
  --cream: #f8f4eb;
  --paper: #fffdf8;
  --ink: #203029;
  --muted: #68766f;
  --orange: #ee8a13;
  --gold: #f2bd54;
  --line: #e7e1d5;
  --shadow: 0 18px 45px rgba(33,75,64,.12);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
}
a { color: inherit; }
img { max-width: 100%; display: block; }
.container { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }
.site-header {
  position: sticky; top: 0; z-index: 30;
  background: rgba(248,244,235,.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(53,100,86,.12);
}
.navbar { height: 78px; display:flex; align-items:center; justify-content:space-between; gap:24px; }
.brand {
  display:flex;
  align-items:center;
  text-decoration:none;
  background: var(--sage-deep);
  padding: 7px 12px;
  border-radius: 10px;
}
.brand img { width: 158px; height: 52px; object-fit: contain; object-position:left center; }
.nav-links { display:flex; align-items:center; gap:28px; font-size:14px; font-weight:700; }
.nav-links a { text-decoration:none; color:#2f4b42; }
.nav-links a:hover { color: var(--orange); }
.nav-cta { padding:10px 16px; border-radius:999px; background:var(--sage-deep); color:white!important; }
.menu-toggle { display:none; background:none; border:0; font-size:28px; color:var(--sage-deep); }
.hero {
  background:
    radial-gradient(circle at 85% 18%, rgba(242,189,84,.34), transparent 24%),
    linear-gradient(135deg, #7fa99a 0%, #8db3a5 45%, #6d9d8d 100%);
  min-height: 650px;
  display:flex; align-items:center;
  position:relative; overflow:hidden;
}
.hero:after {
  content:""; position:absolute; width:420px; height:420px; right:-100px; bottom:-140px;
  border:1px solid rgba(255,255,255,.22); border-radius:50%;
  box-shadow: 0 0 0 70px rgba(255,255,255,.05), 0 0 0 140px rgba(255,255,255,.035);
}
.hero-grid { display:grid; grid-template-columns: 1.1fr .9fr; gap:70px; align-items:center; padding:88px 0; position:relative; z-index:1; }
.hero-copy { color:white; }
.eyebrow { font-size:13px; letter-spacing:.16em; text-transform:uppercase; font-weight:800; color:#fff3cd; margin-bottom:18px; }
h1 { font-size: clamp(44px, 5.6vw, 76px); line-height:1.02; letter-spacing:-.045em; margin:0 0 24px; max-width:760px; }
.hero-copy p { font-size:20px; max-width:690px; color:rgba(255,255,255,.93); margin:0 0 34px; }
.hero-actions { display:flex; gap:14px; flex-wrap:wrap; }
.button { display:inline-flex; align-items:center; justify-content:center; gap:8px; text-decoration:none; font-weight:800; border-radius:12px; padding:14px 20px; transition:.2s ease; border:1px solid transparent; }
.button.primary { background:#fff; color:var(--sage-deep); }
.button.primary:hover { transform:translateY(-2px); box-shadow:0 12px 24px rgba(0,0,0,.12); }
.button.secondary { border-color:rgba(255,255,255,.5); color:white; background:rgba(255,255,255,.08); }
.hero-logo-card { background:rgba(255,255,255,.12); border:1px solid rgba(255,255,255,.25); border-radius:28px; padding:55px; box-shadow:var(--shadow); }
.hero-logo-card img { width:100%; max-width:470px; margin:auto; }
.hero-note { margin-top:18px; text-align:center; color:rgba(255,255,255,.88); font-size:14px; }
.section { padding:90px 0; }
.section.white { background:var(--paper); }
.section-head { max-width:760px; margin-bottom:42px; }
.section-head .kicker { color:var(--orange); font-size:13px; letter-spacing:.13em; font-weight:850; text-transform:uppercase; }
.section h2 { font-size: clamp(34px, 4vw, 52px); line-height:1.08; letter-spacing:-.035em; margin:10px 0 16px; }
.section-head p { font-size:18px; color:var(--muted); margin:0; }
.tract-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:26px; }
.tract-card { background:white; border:1px solid var(--line); border-radius:22px; overflow:hidden; box-shadow:0 10px 30px rgba(32,48,41,.07); display:flex; flex-direction:column; }
.tract-preview { aspect-ratio: 1.42 / 1; background:#ece7dc; overflow:hidden; border-bottom:1px solid var(--line); }
.tract-preview img { width:100%; height:100%; object-fit:cover; object-position:center; transition:transform .35s ease; }
.tract-card:hover .tract-preview img { transform:scale(1.018); }
.tract-body { padding:26px; display:flex; flex-direction:column; flex:1; }
.badge { display:inline-flex; align-self:flex-start; padding:6px 10px; border-radius:999px; background:#edf4f1; color:var(--sage-deep); font-size:12px; font-weight:800; margin-bottom:14px; }
.tract-body h3 { font-size:25px; line-height:1.15; letter-spacing:-.025em; margin:0 0 12px; }
.tract-body p { margin:0 0 22px; color:var(--muted); }
.card-actions { display:flex; gap:10px; margin-top:auto; flex-wrap:wrap; }
.card-actions .button { padding:11px 15px; font-size:14px; border-radius:10px; }
.button.dark { background:var(--sage-deep); color:white; }
.button.outline { border-color:#cfc7ba; background:#fff; color:var(--ink); }
.promise-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:26px; }
.promise { border-top:3px solid var(--orange); padding-top:20px; }
.promise h3 { font-size:21px; margin:0 0 10px; }
.promise p { color:var(--muted); margin:0; }
.license-box { display:grid; grid-template-columns:.8fr 1.2fr; gap:54px; align-items:start; background:#f0eee6; border-radius:26px; padding:45px; }
.license-box h2 { margin-top:0; }
.rules { display:grid; gap:15px; }
.rule { background:white; border-radius:15px; padding:18px 20px; border:1px solid #e2ddd3; display:flex; gap:13px; align-items:flex-start; }
.rule-mark { width:28px; height:28px; border-radius:50%; flex:0 0 28px; display:grid; place-items:center; font-weight:900; }
.rule.yes .rule-mark { background:#dcece5; color:#2f6a56; }
.rule.no .rule-mark { background:#f8ded7; color:#a74330; }
.rule strong { display:block; margin-bottom:2px; }
.future { background:linear-gradient(120deg,var(--sage-deep),#376c5c); color:white; border-radius:28px; padding:48px; display:grid; grid-template-columns:1fr 1fr; gap:40px; }
.future h2 { margin-top:0; }
.future p { color:rgba(255,255,255,.86); }
.future-list { display:grid; gap:14px; }
.future-item { padding:16px 18px; background:rgba(255,255,255,.09); border:1px solid rgba(255,255,255,.15); border-radius:14px; }
.footer { background:#17382f; color:white; padding:52px 0 30px; }
.footer-grid { display:grid; grid-template-columns:1.2fr .8fr; gap:50px; align-items:start; }
.footer img { width:180px; margin-bottom:18px; }
.footer p { color:rgba(255,255,255,.74); max-width:570px; }
.footer-links { display:grid; gap:10px; justify-self:end; text-align:right; }
.footer-links a { color:white; text-decoration:none; }
.copyright { margin-top:35px; padding-top:22px; border-top:1px solid rgba(255,255,255,.14); color:rgba(255,255,255,.55); font-size:13px; }
.small-note { font-size:13px; color:var(--muted); }
@media (max-width: 900px) {
  .hero-grid, .license-box, .future, .footer-grid { grid-template-columns:1fr; }
  .hero-grid { gap:40px; }
  .tract-grid, .promise-grid { grid-template-columns:1fr; }
  .hero-logo-card { max-width:620px; }
  .footer-links { justify-self:start; text-align:left; }
  .nav-links { display:none; position:absolute; left:20px; right:20px; top:70px; background:var(--paper); box-shadow:var(--shadow); border-radius:16px; padding:20px; flex-direction:column; align-items:flex-start; }
  .nav-links.open { display:flex; }
  .menu-toggle { display:block; }
}
@media (max-width: 560px) {
  .container { width:min(100% - 28px, 1180px); }
  .navbar { height:70px; }
  .brand { padding:6px 9px; }
  .brand img { width:132px; height:46px; }
  .hero { min-height:unset; }
  .hero-grid { padding:65px 0; }
  .hero-copy p { font-size:18px; }
  .hero-logo-card { padding:30px; }
  .section { padding:68px 0; }
  .license-box, .future { padding:28px; }
  .card-actions { flex-direction:column; }
  .card-actions .button { width:100%; }
}

/* Publication terms */
.publication-terms {
  margin-top: 1.15rem;
  padding: 1rem 1.1rem;
  border-radius: 14px;
  background: rgba(255,255,255,.66);
  border: 1px solid rgba(45, 65, 55, .12);
  color: var(--text);
  font-size: .92rem;
  line-height: 1.65;
}
