:root {
  --green: #1a7a43;
  --green-dark: #0b3d2c;
  --green-soft: #e7f4e6;
  --earth: #b96b2f;
  --cream: #f5efe2;
  --text: #11281f;
  --muted: #5d6d62;
  --white: #ffffff;
  --border: rgba(17, 40, 31, 0.1);
  --panel: #f9f6ed;
  --shadow: 0 20px 60px rgba(17, 40, 31, 0.08);
}

.splash-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('images/launch_image.jpg');
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 1;
  transition: opacity 0.8s ease-out;
}

.splash-screen::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 61, 44, 0) 0%, rgba(11, 61, 44, 0.4) 100%);
  z-index: 1;
}

.splash-screen.hidden {
  opacity: 0;
  pointer-events: none;
}

.splash-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.splash-motto {
  font-family: 'Sora', sans-serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: rgba(255, 255, 255, 0.95);
  margin: 0;
  text-shadow: 0 4px 16px rgba(0, 0, 0, 0.45);
  letter-spacing: -0.5px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Manrope', sans-serif;
  color: var(--text);
  line-height: 1.6;
  background:
    radial-gradient(circle at top left, rgba(185, 107, 47, 0.12), transparent 26%),
    linear-gradient(180deg, #fbf8f0 0%, #ffffff 34%, #f9f7f1 100%);
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

.site-header {
  background: transparent;
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 1.1rem 0;
  transition: padding 0.2s ease;
}

.nav-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  padding: 0.9rem 1.35rem;
  border: 1px solid rgba(17, 40, 31, 0.08);
  border-radius: 1.15rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(255, 250, 242, 0.92));
  box-shadow: 0 14px 34px rgba(17, 40, 31, 0.08);
  backdrop-filter: blur(18px);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.site-header.is-floating {
  padding: 0.7rem 0;
}

.site-header.is-floating .nav-wrap {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(255, 250, 242, 0.96));
  box-shadow: 0 18px 38px rgba(17, 40, 31, 0.12);
  transform: translateY(0.05rem);
}

.site-header.is-hidden {
  transform: translateY(-120%);
  transition: transform 0.28s ease;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0;
  padding: 0.1rem 0.2rem;
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: clamp(1.8rem, 3vw, 2.85rem);
  line-height: 1;
  letter-spacing: -0.06em;
  color: transparent;
  text-transform: none;
  background: linear-gradient(135deg, #6e1f16 0%, #b33a1c 22%, #d76a20 46%, #ffbb68 67%, #9a2a17 100%);
  -webkit-background-clip: text;
  background-clip: text;
  text-shadow:
    0 1px 0 rgba(255, 240, 226, 0.16),
    0 10px 20px rgba(92, 28, 10, 0.14);
}

.brand-logo {
  display: block;
  width: 98px;
  height: 36px;
  object-fit: cover;
  object-position: center 46%;
  border-radius: 999px;
  filter: drop-shadow(0 8px 14px rgba(255, 72, 72, 0.14));
}

.nav-links {
  display: flex;
  gap: 1.1rem;
  flex-wrap: wrap;
  align-items: center;
}

.nav-links a {
  color: #5f6f67;
  font-weight: 600;
  position: relative;
  padding: 0.45rem 0.25rem;
}

.nav-links a.active,
.nav-links a:hover {
  color: var(--green);
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--green), var(--earth));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.nav-links a.active::after,
.nav-links a:hover::after {
  transform: scaleX(1);
}

.hero,
.page-hero {
  position: relative;
  padding: 5rem 0 4rem;
  background-size: cover;
  background-position: center;
  color: var(--white);
  min-height: 420px;
  display: flex;
  align-items: center;
}

.hero::before,
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 61, 44, 0.72), rgba(11, 61, 44, 0.4));
  z-index: 0;
}

.hero .container,
.page-hero .container {
  position: relative;
  z-index: 1;
}

.hero h1,
.page-hero h1,
.hero p,
.page-hero p,
.hero .eyebrow,
.page-hero .eyebrow {
  color: var(--white);
}

.home-hero {
  background-image:
    radial-gradient(circle at top right, rgba(185, 107, 47, 0.3), transparent 28%),
    linear-gradient(135deg, #0b3d2c 0%, #145135 52%, #224d2d 100%);
}

.about-hero {
  background-image: linear-gradient(135deg, #0b3d2c, #1f5c3b);
}

.contact-hero {
  background-image: linear-gradient(135deg, #0b3d2c, #1f5c3b);
}

.contact-hero::before {
  background: linear-gradient(180deg, rgba(11, 61, 44, 0.72), rgba(11, 61, 44, 0.4));
  z-index: 0;
}

.contact-hero::after {
  display: none;
}

.contact-hero .container {
  z-index: 1;
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

.contact-hero .eyebrow {
  margin-bottom: 0.7rem;
  text-align: left;
  font-family: 'Manrope', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-shadow: none;
  font-weight: 700;
}

.contact-hero h1 {
  text-align: left;
  margin: 0 0 1rem;
  width: 100%;
  text-shadow: none;
}

.contact-hero p {
  text-align: left;
  margin: 0;
  max-width: 100%;
  font-style: normal;
  text-shadow: none;
}

.vision-hero {
  background-image: linear-gradient(135deg, #133d31, #2f6749);
}

.products-hero {
  background-image:
    radial-gradient(circle at top right, rgba(185, 239, 205, 0.18), transparent 24%),
    radial-gradient(circle at bottom left, rgba(79, 166, 112, 0.14), transparent 28%),
    linear-gradient(135deg, rgba(8, 53, 34, 0.88), rgba(22, 109, 63, 0.8), rgba(56, 154, 93, 0.7)),
    url('images/SCS-pic.jpg');
  background-size: cover;
  background-position: center;
}

.products-hero::before {
  background: linear-gradient(180deg, rgba(6, 36, 24, 0.36), rgba(6, 36, 24, 0.2));
}

.products-hero-grid {
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2.25rem;
  align-items: center;
}

.products-hero-copy {
  max-width: 38rem;
}

.products-hero-visual {
  position: relative;
  min-height: 20rem;
  border-radius: 1.5rem;
  overflow: hidden;
  border: 1px solid rgba(213, 248, 222, 0.24);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 45px rgba(7, 44, 26, 0.22);
  backdrop-filter: blur(14px);
}

.products-hero-image {
  width: 100%;
  height: 100%;
  min-height: 20rem;
  object-fit: cover;
  object-position: center center;
  display: block;
  opacity: 0.78;
}

.hero-visual {
  position: relative;
  min-height: 20rem;
  border-radius: 1.5rem;
  overflow: hidden;
  border: 1px solid rgba(213, 248, 222, 0.24);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 45px rgba(7, 44, 26, 0.22);
  backdrop-filter: blur(14px);
}

.hero-visual-image {
  width: 100%;
  height: 100%;
  min-height: 20rem;
  object-fit: cover;
  object-position: center center;
  display: block;
  opacity: 0.85;
}

.team-hero {
  background-image: linear-gradient(135deg, #174635, #2c6145);
}

.who-hero {
  background-image: linear-gradient(135deg, #0b3d2c, #1d5c43);
}

.hero-grid,
.content-grid,
.split-section {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1.3fr 0.9fr;
  align-items: center;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--earth);
  margin-bottom: 0.7rem;
}

h1,
h2,
h3 {
  font-family: 'Sora', sans-serif;
  line-height: 1.2;
}

h1 {
  font-size: clamp(2rem, 4vw, 3.3rem);
  margin-bottom: 1rem;
}

h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 0.8rem;
}

.hero-copy,
.section p,
.card p,
.info-card li {
  color: var(--muted);
}

.hero-copy-bright {
  color: rgba(255, 255, 255, 0.82);
}

.page-hero p {
  color: var(--white);
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.btn {
  display: inline-block;
  padding: 0.85rem 1.2rem;
  border-radius: 999px;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--earth), #d18b3b);
  color: var(--white);
  box-shadow: 0 14px 32px rgba(185, 107, 47, 0.28);
}

.btn-secondary {
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: var(--green-dark);
  background: rgba(255, 255, 255, 0.9);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
}

.hero-card,
.info-card,
.quote-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 1.2rem;
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

.hero-logo-frame {
  position: relative;
  margin: 0 auto 1.5rem;
  width: 180px;
  height: 180px;
  display: grid;
  place-items: center;
}

.hero-logo-badge {
  position: relative;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: radial-gradient(circle at top, rgba(255, 255, 255, 0.2), rgba(26, 122, 67, 0.08));
  display: grid;
  place-items: center;
  animation: logo-pop 4s ease-in-out infinite alternate;
}

.hero-logo-img {
  width: 75%;
  height: auto;
  display: block;
  transform: scale(1);
}

.hero-logo-ring {
  position: absolute;
  inset: -8px;
  border: 2px dashed rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  animation: ring-rotate 12s linear infinite;
}

.hero-logo-glow {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.16), transparent 55%);
}

.home-hero-immersive {
  overflow: hidden;
}

.home-hero-immersive::after {
  content: '';
  position: absolute;
  right: -8%;
  bottom: -16%;
  width: 38rem;
  height: 38rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.14), transparent 60%);
  z-index: 0;
}

.hero-grid-home {
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: stretch;
  max-width: 45rem;
  margin: 0 auto;
}

.hero-content {
  max-width: 40rem;
  align-self: center;
}

.hero-microproof {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 1.75rem;
}

.hero-microproof span {
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  font-size: 0.95rem;
}

.hero-rotator {
  display: grid;
  gap: 1rem;
  max-width: 36rem;
  width: 100%;
  margin-left: auto;
  align-content: stretch;
}

.hero-rotator-stage {
  position: relative;
  min-height: 26rem;
}

.hero-rotator-panel {
  position: absolute;
  inset: 0;
  border-radius: 1.5rem;
  padding: 1.6rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background:
    radial-gradient(circle at top right, rgba(185, 107, 47, 0.12), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(248, 244, 235, 0.94));
  box-shadow: 0 18px 44px rgba(17, 40, 31, 0.14);
  backdrop-filter: blur(14px);
  color: var(--text);
  z-index: 1;
  display: grid;
  gap: 1rem;
  align-content: start;
  overflow: hidden;
}

.hero-rotator-panel[hidden] {
  display: none;
}

.hero-rotator-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26, 122, 67, 0.04), transparent 38%);
  pointer-events: none;
}

.hero-rotator-panel h3 {
  color: var(--text);
}

.hero-rotator-panel p {
  color: var(--muted);
}

.hero-rotator-panel .dashboard-label {
  color: var(--earth);
}

.hero-rotator-copy {
  margin: 0;
  max-width: 34rem;
  color: var(--muted);
}

.hero-rotator-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
}

.hero-rotator-card {
  padding: 1rem;
  border-radius: 1rem;
  border: 1px solid rgba(17, 40, 31, 0.08);
  background: rgba(255, 255, 255, 0.86);
  min-height: 8.5rem;
  display: grid;
  gap: 0.35rem;
  align-content: start;
}

.hero-rotator-grid-emphasis .hero-rotator-card {
  background: rgba(244, 251, 247, 0.96);
}

.hero-rotator-card span {
  color: var(--muted);
  font-size: 0.92rem;
}

.hero-rotator-card strong {
  font-family: 'Sora', sans-serif;
  font-size: 1rem;
  line-height: 1.35;
  color: var(--green-dark);
}

.dashboard-label,
.quote-kicker,
.metric-value,
.journey-step {
  display: inline-block;
  margin-bottom: 0.85rem;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.dashboard-label,
.quote-kicker {
  color: var(--earth);
}

.signal-list {
  list-style: none;
  padding: 0;
  margin: 1.1rem 0 0;
  display: grid;
  gap: 0.9rem;
}

.signal-list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0.9rem;
  border-bottom: 1px solid rgba(17, 40, 31, 0.08);
}

.signal-list li:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.signal-list span {
  color: var(--muted);
}

.signal-list strong {
  color: var(--green-dark);
}

.hero-rotator .landing-view-nav {
  margin-top: 0.15rem;
}

.hero-rotator-nav {
  justify-content: start;
}

.landing-views-section {
  padding-top: 2rem;
}

.landing-views {
  display: grid;
  gap: 1.5rem;
}

.landing-view-stage {
  position: relative;
  min-height: 24rem;
}

.landing-view-panel {
  border: 1px solid var(--border);
  border-radius: 1.75rem;
  padding: 2rem;
  background:
    radial-gradient(circle at top right, rgba(185, 107, 47, 0.12), transparent 24%),
    linear-gradient(135deg, rgba(8, 54, 38, 0.98), rgba(19, 88, 56, 0.96));
  color: var(--white);
  box-shadow: 0 24px 60px rgba(11, 61, 44, 0.2);
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 1.5rem;
  align-items: stretch;
}

.landing-view-panel[hidden] {
  display: none;
}

.landing-view-copy {
  align-self: center;
  max-width: 32rem;
}

.landing-view-copy h3 {
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  margin: 0 0 0.85rem;
}

.landing-view-copy p {
  color: rgba(255, 255, 255, 0.82);
  margin: 0;
}

.landing-view-tag {
  display: inline-block;
  margin-bottom: 1rem;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.landing-view-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.landing-view-card {
  padding: 1.25rem;
  border-radius: 1.2rem;
  background: rgba(255, 255, 255, 0.92);
  color: var(--text);
  min-height: 11rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.landing-view-card strong {
  font-family: 'Sora', sans-serif;
  font-size: 1.05rem;
}

.landing-view-card span {
  color: var(--muted);
}

.landing-view-nav {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
  padding: 0.85rem;
  border: 1px solid var(--border);
  border-radius: 1.5rem;
  background: rgba(17, 40, 31, 0.08);
}

.landing-view-tab {
  appearance: none;
  border: none;
  border-radius: 1rem;
  padding: 1.1rem 1rem;
  text-align: left;
  font: inherit;
  font-weight: 700;
  color: var(--text);
  background: transparent;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.landing-view-tab:hover {
  background: rgba(255, 255, 255, 0.65);
}

.landing-view-tab.is-active {
  background: linear-gradient(135deg, #d88a2f, var(--earth));
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 14px 26px rgba(185, 107, 47, 0.2);
}

.flow-rotator-section {
  display: grid;
  gap: 1.5rem;
}

.flow-rotator-shell {
  display: grid;
  gap: 0.75rem;
  padding: 0.75rem;
  border-radius: 1.8rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background:
    radial-gradient(circle at top right, rgba(255, 195, 120, 0.16), transparent 24%),
    linear-gradient(135deg, rgba(13, 70, 48, 0.98), rgba(26, 122, 67, 0.94), rgba(185, 107, 47, 0.9));
  box-shadow: 0 22px 50px rgba(11, 61, 44, 0.18);
}

.flow-rotator-stage {
  position: relative;
  min-height: 15rem;
}

.flow-rotator-panel {
  position: absolute;
  inset: 0;
  display: grid;
  gap: 0.75rem;
  align-content: start;
  padding: 1.25rem;
  border-radius: 1.6rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--white);
  background: rgba(255, 255, 255, 0.02);
  overflow: hidden;
}

.flow-rotator-panel[hidden] {
  display: none;
}

.flow-rotator-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.06), transparent 42%),
    radial-gradient(circle at bottom left, rgba(255, 232, 183, 0.12), transparent 32%);
  pointer-events: none;
}

.flow-rotator-panel h3,
.flow-rotator-panel p {
  position: relative;
  z-index: 1;
}

.flow-rotator-panel h3 {
  margin: 0;
  font-size: clamp(1.25rem, 2.1vw, 1.9rem);
}

.flow-rotator-panel p {
  margin: 0;
  max-width: 38rem;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.98rem;
}

.flow-rotator-nav {
  justify-content: start;
}

.flow-rotator-shell .landing-view-nav {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.1);
  padding: 0.55rem;
  gap: 0.55rem;
}

.flow-rotator-shell .landing-view-tab {
  width: 100%;
  text-align: center;
  color: var(--green-dark);
  padding: 0.8rem 0.85rem;
}

.flow-rotator-shell .landing-view-tab:hover {
  background: rgba(13, 70, 48, 0.08);
}

.flow-rotator-shell .landing-view-tab.is-active {
  background: linear-gradient(135deg, #1b8a51, #d07d2f);
  color: var(--white);
  box-shadow: 0 14px 26px rgba(13, 70, 48, 0.2);
}

.landing-view-card,
.feature-stack-item,
.cta-panel {
  border: 1px solid var(--border);
  border-radius: 1.5rem;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
}

.section-tinted {
  background:
    radial-gradient(circle at right top, rgba(26, 122, 67, 0.08), transparent 22%),
    linear-gradient(180deg, rgba(245, 239, 226, 0.78), rgba(255, 255, 255, 0.35));
}

.section-heading-wide {
  max-width: 48rem;
}

.split-section-featured {
  align-items: start;
}

.privacy-policy-page .section .split-section {
  align-items: start;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 1.3rem;
}

.privacy-policy-page .section .split-section.privacy-intro-stack {
  grid-template-columns: 1fr;
  gap: 1rem;
}

.privacy-policy-page .section .split-section.privacy-intro-stack > article {
  grid-column: 1 / -1;
  margin-top: 0;
}

.privacy-policy-page .section:nth-of-type(odd) .split-section.privacy-intro-stack > article:first-child,
.privacy-policy-page .section:nth-of-type(odd) .split-section.privacy-intro-stack > article:last-child,
.privacy-policy-page .section:nth-of-type(even) .split-section.privacy-intro-stack > article:first-child,
.privacy-policy-page .section:nth-of-type(even) .split-section.privacy-intro-stack > article:last-child {
  grid-column: 1 / -1;
  margin-top: 0;
}

.privacy-policy-page .section {
  padding: 1.35rem 0;
}

.privacy-policy-page .alt-section {
  background: transparent;
}

.privacy-policy-page .section .split-section > article {
  position: relative;
  overflow: hidden;
  border-radius: 1.35rem;
  border: 1px solid rgba(17, 40, 31, 0.14);
  box-shadow: 0 12px 26px rgba(17, 40, 31, 0.1);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease;
  --tile-accent: 86, 140, 108;
}

.privacy-policy-page .section .split-section > article::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, rgba(var(--tile-accent), 0.58), rgba(var(--tile-accent), 0.18));
}

.privacy-policy-page .section:nth-of-type(odd) .split-section > article:first-child {
  --tile-accent: 227, 103, 103;
  grid-column: 1 / span 7;
}

.privacy-policy-page .section:nth-of-type(odd) .split-section > article:last-child {
  --tile-accent: 99, 141, 218;
  grid-column: 8 / span 5;
  margin-top: 0.5rem;
}

.privacy-policy-page .section:nth-of-type(even) .split-section > article:first-child {
  --tile-accent: 92, 170, 121;
  grid-column: 1 / span 5;
  margin-top: 0.5rem;
}

.privacy-policy-page .section:nth-of-type(even) .split-section > article:last-child {
  --tile-accent: 227, 103, 103;
  grid-column: 6 / span 7;
}

.privacy-policy-page .section .split-section > article:hover {
  transform: translateY(-4px);
  border-color: rgba(var(--tile-accent), 0.4);
  box-shadow: 0 18px 34px rgba(var(--tile-accent), 0.24);
  background: linear-gradient(180deg, rgba(var(--tile-accent), 0.08), rgba(255, 255, 255, 0.98) 22%);
}

.privacy-policy-page .section .split-section > article h3 {
  font-weight: 800;
}

.feature-stack {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}

.feature-stack-item {
  padding: 1.35rem 1.4rem;
}

.quote-box-rich {
  background:
    linear-gradient(180deg, rgba(11, 61, 44, 0.98), rgba(21, 81, 53, 0.96)),
    var(--green-dark);
  color: var(--white);
  min-height: 100%;
}

.quote-box-rich p,
.quote-box-rich span,
.quote-box-rich strong {
  color: var(--white);
}

.quote-main {
  font-family: 'Sora', sans-serif;
  font-size: clamp(1.35rem, 3vw, 2rem);
  line-height: 1.45;
  margin: 0 0 2rem;
}

.proof-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.proof-columns div {
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.proof-columns span {
  display: block;
  opacity: 0.72;
  margin-bottom: 0.3rem;
}

.cta-section {
  padding-top: 1rem;
  padding-bottom: 5rem;
}

.cta-panel {
  padding: 2rem;
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  align-items: center;
  background:
    radial-gradient(circle at top right, rgba(185, 107, 47, 0.16), transparent 24%),
    rgba(255, 255, 255, 0.96);
}

.cta-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

@keyframes logo-pop {
  0% {
    transform: scale(0.92);
    box-shadow: 0 0 0 rgba(15, 107, 58, 0.1);
  }
  100% {
    transform: scale(1.05);
    box-shadow: 0 24px 50px rgba(15, 107, 58, 0.14);
  }
}

@keyframes ring-rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.section {
  padding: 4rem 0;
}

.alt-section {
  background: #f7fcf9;
}

.section-heading {
  margin-bottom: 2rem;
}

.cards {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.homepage-cards {
  margin-top: 0.5rem;
}

.homepage-card {
  position: relative;
  padding-top: 2rem;
  border-radius: 1.35rem;
  background:
    radial-gradient(circle at top left, rgba(26, 122, 67, 0.08), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 250, 247, 0.96));
  box-shadow: 0 14px 32px rgba(17, 40, 31, 0.08);
}

.card-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  margin-bottom: 1rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--white);
  background: linear-gradient(135deg, var(--green), #46a56d);
}

.card {
  border: 1px solid var(--border);
  padding: 1.5rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.84);
}

.vision-pillars-section {
  background:
    radial-gradient(circle at left top, rgba(26, 122, 67, 0.08), transparent 24%),
    linear-gradient(180deg, rgba(245, 239, 226, 0.36), rgba(255, 255, 255, 0.62));
}

.vision-pillars .vision-card {
  border-left: 4px solid var(--green);
  border-radius: 1rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 250, 247, 0.9));
  box-shadow: 0 14px 30px rgba(17, 40, 31, 0.07);
}

.vision-pillars .vision-card h3 {
  color: var(--green-dark);
}

.team-grid {
  display: grid;
  gap: 1.5rem;
}

.team-grid.founders {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.team-grid.mentors {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.team-showcase {
  position: relative;
}

.team-section-heading {
  position: relative;
  padding-left: 1rem;
}

.team-section-heading::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.35rem;
  bottom: 0.35rem;
  width: 4px;
  border-radius: 999px;
}

.founders-heading::before {
  background: linear-gradient(180deg, #c77731, #f0b25a);
}

.mentors-heading::before {
  background: linear-gradient(180deg, #1a7a43, #69a97b);
}

.team-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 1.4rem;
  padding: 1.5rem;
  box-shadow: 0 14px 34px rgba(15, 107, 58, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.founder-card {
  padding: 1.4rem;
  border-color: rgba(185, 107, 47, 0.2);
  background:
    radial-gradient(circle at top, rgba(240, 178, 90, 0.16), transparent 30%),
    linear-gradient(180deg, rgba(255, 250, 241, 0.98), rgba(255, 255, 255, 0.96));
}

.founder-card-alt {
  background:
    radial-gradient(circle at top, rgba(56, 124, 93, 0.14), transparent 30%),
    linear-gradient(180deg, rgba(244, 251, 247, 0.98), rgba(255, 255, 255, 0.96));
}

.mentor-card {
  padding: 1.25rem;
  border-color: rgba(11, 61, 44, 0.12);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 250, 248, 0.94));
}

.team-photo {
  width: 100%;
  min-height: 170px;
  border-radius: 1rem;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  position: relative;
  padding: 1.25rem;
}

.team-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.founder-photo {
  min-height: 320px;
  background: linear-gradient(135deg, #123e32, #1d6d49 55%, #d88a2f 140%);
}

.founder-photo img {
  object-position: center 18%;
}

.founder-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 61, 44, 0.06), rgba(11, 61, 44, 0.28));
}

.founder-photo-alt {
  background: linear-gradient(135deg, #8b5127, #cb7b2e 58%, #f1c26b 120%);
}

.mentor-photo {
  min-height: 150px;
}

.mentor-photo-sage {
  background: linear-gradient(135deg, #dcefe4, #bfd8c6);
}

.mentor-photo-sky {
  background: linear-gradient(135deg, #dbeaf7, #c5daf1);
}

.mentor-photo-amber {
  background: linear-gradient(135deg, #f7e7c9, #f1d5a0);
}

.mentor-photo-rose {
  background: linear-gradient(135deg, #f3dfe1, #eac7cf);
}

.team-monogram {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  font-family: 'Sora', sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.founder-photo .team-monogram {
  background: rgba(255, 255, 255, 0.14);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.mentor-photo .team-monogram {
  background: rgba(255, 255, 255, 0.72);
  color: var(--green-dark);
  border: 1px solid rgba(17, 40, 31, 0.08);
}

.team-accent-label {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  z-index: 1;
}

.founder-photo .team-accent-label {
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--white);
}

.mentor-photo .team-accent-label {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(17, 40, 31, 0.08);
  color: var(--green-dark);
}

.team-card h3 {
  margin: 0 0 0.55rem;
  color: var(--green-dark);
}

.founder-card h3 {
  font-size: 1.8rem;
}

.mentor-card h3 {
  font-size: 1.15rem;
}

.team-role,
.team-note,
.section-copy {
  color: var(--muted);
}

.team-role {
  margin: 0 0 0.75rem;
  font-size: 0.95rem;
}

.founder-card .team-role {
  color: #8b5127;
  font-weight: 700;
}

.mentor-card .team-role {
  font-size: 0.92rem;
}

.team-note {
  margin: 0;
  font-size: 0.9rem;
}

.section-copy {
  margin: 0;
  max-width: 48rem;
}

.site-footer {
  margin-top: 2rem;
  border-top: 1px solid rgba(17, 40, 31, 0.1);
  padding: 3.2rem 0 1.6rem;
  color: var(--muted);
  background:
    radial-gradient(circle at top left, rgba(26, 122, 67, 0.06), transparent 20%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(245, 239, 226, 0.92));
}

.footer-shell {
  display: grid;
  gap: 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.8fr 0.8fr 0.95fr;
  gap: 2rem;
  align-items: start;
}

.footer-brand {
  margin-bottom: 1rem;
}

.footer-brand-column,
.footer-links-column,
.footer-contact-column {
  display: grid;
  gap: 0.9rem;
}

.footer-brand-copy {
  margin: 0;
  max-width: 24rem;
}

.footer-links-column h3,
.footer-contact-column h3 {
  margin: 0;
  font-family: 'Sora', sans-serif;
  font-size: 1.05rem;
  color: var(--green-dark);
}

.footer-links-column a {
  color: var(--muted);
  font-weight: 600;
}

.footer-links-column a:hover,
.footer-contact-list span:hover {
  color: var(--green);
}

.footer-contact-list {
  display: grid;
  gap: 0.8rem;
}

.footer-contact-list p {
  margin: 0;
  display: grid;
  gap: 0.2rem;
}

.footer-contact-list strong {
  font-family: 'Sora', sans-serif;
  font-size: 0.9rem;
  color: var(--green-dark);
}

.footer-meta-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.footer-meta-links a,
.footer-meta-links span {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(17, 40, 31, 0.1);
  background: rgba(255, 255, 255, 0.75);
}

.footer-meta-links a:hover {
  border-color: rgba(26, 122, 67, 0.28);
  color: var(--green);
}

.footer-meta {
  padding-top: 1.4rem;
  border-top: 1px solid rgba(17, 40, 31, 0.1);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
}

.footer-meta p {
  margin: 0;
}

.contact-grid {
  align-items: start;
}

.contact-details-panel {
  display: grid;
  gap: 1rem;
}

.contact-detail-card {
  padding: 1.2rem 1.25rem;
  border-radius: 1.1rem;
  border: 1px solid rgba(17, 40, 31, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 250, 247, 0.94));
  box-shadow: 0 14px 32px rgba(17, 40, 31, 0.08);
}

.contact-detail-card-email {
  border-left: 4px solid var(--green);
}

.contact-detail-card-office {
  border-left: 4px solid #d07d2f;
}

.contact-detail-card-meta {
  border-left: 4px solid #5c8f63;
}

.contact-detail-label {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--earth);
}

.contact-detail-value {
  margin: 0;
  font-family: 'Sora', sans-serif;
  font-size: clamp(1.1rem, 2vw, 1.55rem);
  color: var(--text);
}

.contact-detail-value.contact-detail-address {
  font-family: 'Manrope', sans-serif;
  font-size: 1rem;
  line-height: 1.7;
}

.contact-form-kicker {
  margin: 0 0 0.35rem;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--earth);
}

.contact-form {
  display: grid;
  gap: 1rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  font: inherit;
}

.contact-form button {
  border: none;
  cursor: pointer;
}

@media (max-width: 840px) {
  .hero-grid,
  .content-grid,
  .split-section,
  .cards {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .metrics-grid,
  .landing-view-panel,
  .landing-view-grid,
  .landing-view-nav,
  .proof-columns,
  .team-grid.founders,
  .team-grid.mentors {
    grid-template-columns: 1fr;
  }

  .hero-rotator {
    max-width: none;
    margin-left: 0;
  }

  .hero-rotator-stage {
    min-height: auto;
  }

  .hero-rotator-grid {
    grid-template-columns: 1fr;
  }

  .privacy-policy-page .section .split-section {
    grid-template-columns: 1fr;
  }

  .privacy-policy-page .section .split-section > article {
    grid-column: auto;
    margin-top: 0;
  }

  .flow-rotator-stage {
    min-height: auto;
  }

  .flow-rotator-panel {
    position: relative;
    inset: auto;
    min-height: 0;
  }

  .flow-rotator-shell {
    padding: 0.65rem;
  }

  .cta-panel {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .nav-wrap {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.8rem;
  }

  .hero,
  .page-hero {
    padding-top: 3rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-meta {
    align-items: flex-start;
  }

  .hero-actions,
  .cta-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    text-align: center;
  }

  .landing-view-panel {
    padding: 1.4rem;
  }

  .landing-view-tab {
    text-align: center;
  }

  .hero-rotator-panel {
    padding: 1.25rem;
  }

  .flow-rotator-panel {
    padding: 1.4rem;
  }

  .flow-rotator-shell .landing-view-nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
