:root {
  --green-950: #18300f;
  --green-900: #24471a;
  --green-800: #305b22;
  --green-700: #3e722b;
  --green-100: #edf6e7;
  --green-50: #f7fbf4;
  --gold: #d6b44c;
  --ink: #172116;
  --muted: #62705e;
  --white: #ffffff;
  --line: rgba(36, 71, 26, 0.14);
  --shadow: 0 24px 70px rgba(24, 48, 15, 0.14);
  --radius: 28px;
}

* { box-sizing: border-box; }
html { scroll-behaviour: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--green-50);
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.section-pad { padding: 92px 0; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px min(6vw, 72px);
  background: rgba(247, 251, 244, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}

.brand img { width: 138px; height: auto; }

.top-nav {
  display: flex;
  align-items: centre;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--green-900);
}

.top-nav a {
  padding: 10px 14px;
  border-radius: 999px;
}

.top-nav a:hover { background: var(--green-100); }
.nav-linkedin {
  background: var(--green-900);
  color: var(--white);
}
.nav-linkedin:hover { background: var(--green-800) !important; }

.hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: radial-gradient(circle at 82% 15%, rgba(214, 180, 76, 0.35), transparent 28%), linear-gradient(135deg, var(--green-950), var(--green-800));
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, rgba(255,255,255,0.08) 0 1px, transparent 1px 100%),
    radial-gradient(circle at 15% 90%, rgba(255,255,255,0.16), transparent 24%);
  background-size: 42px 42px, auto;
  opacity: 0.7;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 52px;
  align-items: center;
  min-height: 620px;
}

.eyebrow {
  margin: 0 0 16px;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--gold);
}

h1, h2, h3, p { margin-top: 0; }
h1 {
  max-width: 820px;
  margin-bottom: 24px;
  font-size: clamp(3rem, 7vw, 6.8rem);
  line-height: 0.94;
  letter-spacing: -0.08em;
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.02;
  letter-spacing: -0.055em;
  color: var(--green-950);
}

h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
  line-height: 1.2;
  color: var(--green-950);
}

.lead {
  max-width: 720px;
  margin-bottom: 32px;
  font-size: clamp(1.08rem, 1.8vw, 1.35rem);
  color: rgba(255,255,255,0.86);
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.button-primary, .button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 700;
}
.button-primary {
  background: var(--gold);
  color: var(--green-950);
  box-shadow: 0 16px 34px rgba(0,0,0,0.18);
}
.button-secondary {
  border: 1px solid rgba(255,255,255,0.42);
  color: var(--white);
}

.hero-card {
  padding: 30px;
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}
.card-logo {
  width: 210px;
  margin-bottom: 32px;
  border-radius: 18px;
}
.hero-card p {
  margin: 0;
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.04em;
}
.hero-card span {
  display: block;
  width: 100%;
  height: 1px;
  margin: 18px 0;
  background: rgba(255,255,255,0.2);
}

.two-col {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
  align-items: start;
}
.body-copy p {
  font-size: 1.08rem;
  color: var(--muted);
}

.focus-section { background: var(--white); }
.section-title { max-width: 800px; margin-bottom: 42px; }
.centred { text-align: center; margin-left: auto; margin-right: auto; }
.card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.focus-card {
  min-height: 280px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: linear-gradient(180deg, #ffffff, #f8fbf5);
  box-shadow: 0 14px 34px rgba(24, 48, 15, 0.07);
}
.focus-card p { color: var(--muted); }
.icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 34px;
  border-radius: 50%;
  background: var(--green-100);
  color: var(--green-900);
  font-weight: 800;
}

.interest-section {
  background:
    radial-gradient(circle at 100% 0%, rgba(214, 180, 76, 0.17), transparent 32%),
    var(--green-50);
}
.split-panel {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 44px;
  padding: 46px;
  border: 1px solid var(--line);
  border-radius: 34px;
  background: rgba(255,255,255,0.74);
  box-shadow: var(--shadow);
}
.muted { color: var(--muted); font-size: 1.05rem; }
.interest-list {
  display: grid;
  gap: 14px;
}
.interest-list div {
  padding: 22px 24px;
  border-radius: 22px;
  background: var(--white);
  border: 1px solid var(--line);
}
.interest-list p { margin-bottom: 0; color: var(--muted); }

.community-section { background: var(--green-50); }
.community-box {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 34px;
  align-items: center;
  padding: 44px;
  border-radius: 34px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.community-box h2 { margin-bottom: 14px; }
.community-box p:not(.eyebrow) {
  max-width: 760px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.08rem;
}
.community-cta { white-space: nowrap; }
.closing-cta { margin-top: 28px; }

.closing { background: var(--white); }
.closing-box {
  max-width: 920px;
  padding: 54px;
  border-radius: 34px;
  background: linear-gradient(135deg, var(--green-950), var(--green-700));
  color: var(--white);
  text-align: center;
  box-shadow: var(--shadow);
}
.closing-box h2 { color: var(--white); }
.closing-box p:last-child {
  max-width: 720px;
  margin: 0 auto;
  color: rgba(255,255,255,0.82);
  font-size: 1.1rem;
}

.site-footer {
  padding: 34px 0;
  background: var(--green-950);
  color: rgba(255,255,255,0.72);
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}
.footer-inner img { width: 96px; border-radius: 10px; }
.footer-inner p { margin: 0; }

@media (max-width: 960px) {
  .section-pad { padding: 72px 0; }
  .hero-grid, .two-col, .split-panel, .community-box { grid-template-columns: 1fr; }
  .hero-grid { min-height: auto; }
  .card-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 680px) {
  .container { width: min(100% - 28px, 1120px); }
  .site-header {
    position: relative;
    padding: 16px 18px;
    align-items: flex-start;
  }
  .brand img { width: 112px; }
  .top-nav { display: none; }
  h1 { font-size: clamp(2.7rem, 15vw, 4.3rem); }
  h2 { font-size: 2.15rem; }
  .hero { padding-top: 0; }
  .hero-card, .split-panel, .closing-box, .community-box { padding: 28px; }
  .card-grid { grid-template-columns: 1fr; }
  .community-cta { width: 100%; }
  .footer-inner { align-items: flex-start; flex-direction: column; }
}
