/* supplyverde.com svd.css
   Palette: ops_black #0B1512, ops_slate #142018, ops_card #1C2D22, ops_border #253629
            stone_white #F7F5F0, stone_surface #FFFFFF, stone_subtle #EEEBe4
            rust_signal #D9622F, forest_ok #2A9D5C, amber_watch #E8A030
            text_on_dark_primary #EDF3EE, text_on_dark_secondary #8DB09A
            text_on_light_primary #0B1512, text_on_light_secondary #3A5245
*/

/* ====================
   0. RESET + BASE
   ==================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { font-size: 16px; scroll-behavior: smooth; }

body {
  font-family: 'Outfit', system-ui, -apple-system, sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.6;
  color: #0B1512;
  background: #F7F5F0;
  -webkit-font-smoothing: antialiased;
}

body.svd-page--dark-top {
  background: #0B1512;
}

body.svd-page--light-top {
  background: #F7F5F0;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
input, textarea, select {
  font-family: 'Outfit', system-ui, sans-serif;
  font-size: 1rem;
}

/* ====================
   1. TYPOGRAPHY TOKENS
   ==================== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Bricolage Grotesque', system-ui, sans-serif;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.svd-display {
  font-family: 'Bricolage Grotesque', system-ui, sans-serif;
  font-size: clamp(2.5rem, 5vw, 3.125rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.svd-h1 {
  font-family: 'Bricolage Grotesque', system-ui, sans-serif;
  font-size: clamp(2rem, 4vw, 2.375rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.015em;
}

.svd-h2 {
  font-family: 'Bricolage Grotesque', system-ui, sans-serif;
  font-size: clamp(1.5rem, 3vw, 1.75rem);
  font-weight: 600;
  line-height: 1.2;
}

.svd-h3 {
  font-family: 'Bricolage Grotesque', system-ui, sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
}

.svd-label {
  font-family: 'Bricolage Grotesque', system-ui, sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.svd-mono {
  font-family: 'JetBrains Mono', 'Courier New', monospace;
  font-size: 0.875rem;
  font-weight: 400;
}

/* ====================
   2. CONTAINER
   ==================== */
.svd-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-inline: clamp(1.25rem, 4vw, 2.5rem);
}

.svd-container--narrow {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  padding-inline: clamp(1.25rem, 4vw, 2.5rem);
}

/* ====================
   3. SECTION CONTEXTS
   ==================== */
.svd-section--dark {
  background: #0B1512;
  color: #EDF3EE;
}

.svd-section--dark-alt {
  background: #142018;
  color: #EDF3EE;
}

.svd-section--light {
  background: #F7F5F0;
  color: #0B1512;
}

.svd-section--light-surface {
  background: #FFFFFF;
  color: #0B1512;
}

/* ====================
   4. NAV
   ==================== */
.svd-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: background 200ms ease, box-shadow 200ms ease;
}

.svd-nav__inner {
  display: flex;
  align-items: center;
  gap: 0;
  height: 64px;
  padding-inline: clamp(1.25rem, 4vw, 2.5rem);
  max-width: 1400px;
  margin: 0 auto;
}

.svd-nav__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  margin-right: auto;
}

.svd-nav__logo img {
  height: 32px;
  width: auto;
  display: block;
}

.svd-nav__logo-light { display: block; }
.svd-nav__logo-dark { display: none; }

.svd-nav__links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
}

.svd-nav__link {
  font-size: 0.9375rem;
  font-weight: 500;
  padding: 0.5rem 0.75rem;
  border-radius: 5px;
  transition: color 160ms ease, background 160ms ease;
  white-space: nowrap;
}

.svd-nav__actions {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  margin-left: 1.5rem;
  flex-shrink: 0;
}

.svd-nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
  margin-left: 1rem;
  cursor: pointer;
  background: none;
  border: none;
}

.svd-nav__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 2px;
  transition: background 160ms ease;
}

/* dark-top nav (transparent on dark hero) */
.svd-page--dark-top .svd-nav {
  background: transparent;
}

.svd-page--dark-top .svd-nav .svd-nav__link {
  color: #EDF3EE;
}

.svd-page--dark-top .svd-nav .svd-nav__link:hover {
  color: #D9622F;
  background: rgba(237, 243, 238, 0.07);
}

.svd-page--dark-top .svd-nav .svd-nav__logo-light { display: block; }
.svd-page--dark-top .svd-nav .svd-nav__logo-dark { display: none; }

.svd-page--dark-top .svd-nav .svd-nav__hamburger span { background: #EDF3EE; }

/* light-top nav (stone white background) */
.svd-page--light-top .svd-nav {
  background: #F7F5F0;
  box-shadow: 0 1px 0 #EEEBe4;
}

.svd-page--light-top .svd-nav .svd-nav__link {
  color: #0B1512;
}

.svd-page--light-top .svd-nav .svd-nav__link:hover {
  color: #B04E22;
  background: rgba(11, 21, 18, 0.05);
}

.svd-page--light-top .svd-nav .svd-nav__logo-light { display: none; }
.svd-page--light-top .svd-nav .svd-nav__logo-dark { display: block; }

.svd-page--light-top .svd-nav .svd-nav__hamburger span { background: #0B1512; }

/* scrolled state: dark -> solid dark nav */
.svd-page--dark-top .svd-nav--scrolled {
  background: #0B1512 !important;
  box-shadow: 0 1px 0 #253629;
}

.svd-page--dark-top .svd-nav--scrolled .svd-nav__link {
  color: #EDF3EE;
}

.svd-page--dark-top .svd-nav--scrolled .svd-nav__link:hover {
  color: #D9622F;
}

.svd-page--dark-top .svd-nav--scrolled .svd-nav__logo-light { display: block !important; }
.svd-page--dark-top .svd-nav--scrolled .svd-nav__logo-dark { display: none !important; }

.svd-page--dark-top .svd-nav--scrolled .svd-nav__hamburger span { background: #EDF3EE; }

/* Ghost btn in dark-top nav */
.svd-page--dark-top .svd-nav .svd-btn--ghost-nav {
  color: #EDF3EE;
  border: 1px solid rgba(237, 243, 238, 0.35);
}

.svd-page--dark-top .svd-nav .svd-btn--ghost-nav:hover {
  border-color: #EDF3EE;
  background: rgba(237, 243, 238, 0.08);
}

.svd-page--dark-top .svd-nav--scrolled .svd-btn--ghost-nav {
  color: #EDF3EE;
  border-color: rgba(237, 243, 238, 0.35);
}

/* Outline btn in light-top nav */
.svd-page--light-top .svd-nav .svd-btn--ghost-nav {
  color: #0B1512;
  border: 1px solid rgba(11, 21, 18, 0.3);
}

.svd-page--light-top .svd-nav .svd-btn--ghost-nav:hover {
  border-color: #0B1512;
  background: rgba(11, 21, 18, 0.05);
}

/* Dropdown */
.svd-nav__dropdown-wrap {
  position: relative;
}

.svd-nav__dropdown-wrap .svd-nav__link {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  cursor: pointer;
  user-select: none;
}

.svd-nav__dropdown-caret {
  font-size: 0.7rem;
  transition: transform 200ms ease;
}

.svd-nav__dropdown-wrap.svd-open .svd-nav__dropdown-caret {
  transform: rotate(180deg);
}

.svd-nav__dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 220px;
  background: #1C2D22;
  border: 1px solid #253629;
  border-radius: 8px;
  padding: 0.5rem;
  display: none;
  box-shadow: 0 8px 24px rgba(0,0,0,0.35);
  z-index: 10;
}

.svd-page--light-top .svd-nav__dropdown {
  background: #FFFFFF;
  border-color: #EEEBe4;
  box-shadow: 0 8px 24px rgba(11,21,18,0.12);
}

.svd-nav__dropdown-wrap.svd-open .svd-nav__dropdown {
  display: block;
}

.svd-nav__dropdown-item {
  display: block;
  padding: 0.625rem 0.875rem;
  font-size: 0.9rem;
  color: #EDF3EE;
  border-radius: 5px;
  transition: background 160ms ease, color 160ms ease;
  white-space: nowrap;
}

.svd-nav__dropdown-item:hover {
  background: rgba(237,243,238,0.08);
  color: #D9622F;
}

.svd-page--light-top .svd-nav__dropdown-item {
  color: #0B1512;
}

.svd-page--light-top .svd-nav__dropdown-item:hover {
  background: rgba(11,21,18,0.05);
  color: #B04E22;
}

/* Mobile nav overlay */
.svd-nav__mobile {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99;
  background: #0B1512;
  padding: 80px 1.5rem 2rem;
  flex-direction: column;
  gap: 0;
  overflow-y: auto;
}

.svd-nav__mobile.svd-open {
  display: flex;
}

.svd-nav__mobile-link {
  display: block;
  padding: 1rem 0;
  font-size: 1.2rem;
  font-weight: 500;
  color: #EDF3EE;
  border-bottom: 1px solid #253629;
  transition: color 160ms ease;
}

.svd-nav__mobile-link:hover { color: #D9622F; }

.svd-nav__mobile-sub {
  padding: 0.5rem 0 0.5rem 1rem;
}

.svd-nav__mobile-sub a {
  display: block;
  padding: 0.625rem 0;
  font-size: 1rem;
  color: #8DB09A;
  border-bottom: 1px solid #1C2D22;
  transition: color 160ms ease;
}

.svd-nav__mobile-sub a:hover { color: #D9622F; }

.svd-nav__mobile-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding-top: 1.5rem;
}

/* ====================
   5. BUTTONS
   ==================== */
.svd-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.625rem 1.375rem;
  font-family: 'Outfit', system-ui, sans-serif;
  font-size: 0.9375rem;
  font-weight: 500;
  border-radius: 5px;
  border: 1px solid transparent;
  transition: background 160ms ease, color 160ms ease, border-color 160ms ease, transform 80ms ease;
  white-space: nowrap;
  cursor: pointer;
  text-decoration: none;
}

.svd-btn:active { transform: scale(0.98); }

.svd-btn--primary {
  background: #D9622F;
  color: #FFFFFF;
  border-color: #D9622F;
}

.svd-btn--primary:hover {
  background: #C05325;
  border-color: #C05325;
  color: #FFFFFF;
}

.svd-btn--ghost-on-dark {
  background: transparent;
  color: #EDF3EE;
  border: 1px solid rgba(237,243,238,0.45);
}

.svd-btn--ghost-on-dark:hover {
  background: rgba(237,243,238,0.08);
  border-color: #EDF3EE;
  color: #EDF3EE;
}

.svd-btn--outline-dark {
  background: transparent;
  color: #0B1512;
  border: 1px solid #0B1512;
}

.svd-btn--outline-dark:hover {
  background: #0B1512;
  color: #EDF3EE;
}

.svd-btn--outline-light {
  background: transparent;
  color: #EDF3EE;
  border: 1px solid rgba(237,243,238,0.45);
}

.svd-btn--outline-light:hover {
  background: rgba(237,243,238,0.08);
  border-color: #EDF3EE;
  color: #EDF3EE;
}

.svd-btn--ghost-nav {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: 5px;
  transition: background 160ms ease, color 160ms ease, border-color 160ms ease;
}

.svd-btn--sm {
  padding: 0.4rem 1rem;
  font-size: 0.875rem;
}

.svd-btn--full { width: 100%; }

/* ====================
   6. HERO SECTION (index)
   ==================== */
#svd-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #0B1512;
  padding-top: 64px;
}

.svd-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.svd-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.35;
}

.svd-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 55fr 45fr;
  align-items: center;
  gap: 4rem;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem clamp(1.25rem, 4vw, 2.5rem);
}

.svd-hero__text {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.svd-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: #D9622F;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.svd-hero__eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #D9622F;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

.svd-hero__h1 {
  font-family: 'Bricolage Grotesque', system-ui, sans-serif;
  font-size: clamp(2.2rem, 4.5vw, 3rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: #EDF3EE;
}

.svd-hero__h1 em {
  font-style: normal;
  color: #D9622F;
}

.svd-hero__sub {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  font-weight: 300;
  color: #8DB09A;
  line-height: 1.65;
  max-width: 520px;
}

.svd-hero__ctas {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.svd-hero__visual {
  position: relative;
}

/* ====================
   7. FORECAST CHART SVG
   ==================== */
.svd-forecast-chart {
  width: 100%;
  background: #142018;
  border: 1px solid #253629;
  border-radius: 8px;
  overflow: visible;
}

.svd-forecast-chart text {
  font-family: 'JetBrains Mono', 'Courier New', monospace;
}

/* ====================
   8. PROBLEM STRIP
   ==================== */
#svd-problem {
  padding: 4rem 0;
  background: #142018;
}

.svd-problem__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.svd-problem__cell {
  padding: 2rem 2.5rem;
  border-right: 1px solid #253629;
}

.svd-problem__cell:last-child {
  border-right: none;
}

.svd-problem__stat {
  font-family: 'Bricolage Grotesque', system-ui, sans-serif;
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  color: #D9622F;
  line-height: 1;
  margin-bottom: 0.625rem;
}

.svd-problem__label {
  font-size: 0.9375rem;
  color: #EDF3EE;
  font-weight: 500;
  margin-bottom: 0.5rem;
  line-height: 1.4;
}

.svd-problem__note {
  font-size: 0.8125rem;
  color: #506658;
  line-height: 1.5;
}

/* ====================
   9. HOW IT WORKS
   ==================== */
#svd-how-it-works {
  padding: 5rem 0;
  background: #F7F5F0;
}

.svd-hiw__heading {
  font-family: 'Bricolage Grotesque', system-ui, sans-serif;
  font-size: clamp(1.6rem, 3vw, 2rem);
  font-weight: 700;
  color: #0B1512;
  text-align: center;
  margin-bottom: 3.5rem;
}

.svd-hiw__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative;
}

.svd-hiw__steps::before {
  content: '';
  position: absolute;
  top: 2.25rem;
  left: calc(16.67% + 1rem);
  right: calc(16.67% + 1rem);
  height: 1px;
  background: linear-gradient(to right, #D9622F, #2A9D5C);
  z-index: 0;
}

.svd-hiw__step {
  position: relative;
  z-index: 1;
  background: #FFFFFF;
  border: 1px solid #EEEBe4;
  border-radius: 8px;
  padding: 1.75rem;
}

.svd-hiw__step-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  font-weight: 400;
  color: #D9622F;
  letter-spacing: 0.04em;
  margin-bottom: 1rem;
  display: block;
}

.svd-hiw__step-heading {
  font-family: 'Bricolage Grotesque', system-ui, sans-serif;
  font-size: 1.0625rem;
  font-weight: 600;
  color: #0B1512;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.svd-hiw__step-body {
  font-size: 0.9rem;
  color: #3A5245;
  line-height: 1.65;
}

/* ====================
   10. USE CASE CARDS
   ==================== */
#svd-use-cases {
  padding: 5rem 0;
  background: #F7F5F0;
  border-top: 1px solid #EEEBe4;
}

.svd-uc__heading {
  font-family: 'Bricolage Grotesque', system-ui, sans-serif;
  font-size: clamp(1.6rem, 3vw, 2rem);
  font-weight: 700;
  color: #0B1512;
  text-align: center;
  margin-bottom: 2.5rem;
}

.svd-uc__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.svd-uc__card {
  background: #FFFFFF;
  border: 1px solid #EEEBe4;
  border-radius: 8px;
  padding: 1.75rem;
  transition: border-color 200ms ease, transform 200ms ease;
}

.svd-uc__card:hover {
  border-color: #2A9D5C;
  transform: translateY(-2px);
}

.svd-uc__role {
  font-family: 'Bricolage Grotesque', system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #0B1512;
  margin-bottom: 0.875rem;
}

.svd-uc__problem {
  font-size: 0.875rem;
  color: #6A8878;
  margin-bottom: 0.875rem;
  line-height: 1.55;
  padding-left: 0.875rem;
  border-left: 2px solid #EEEBe4;
}

.svd-uc__value {
  font-size: 0.9rem;
  color: #3A5245;
  line-height: 1.55;
}

.svd-uc__value-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: #2A9D5C;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  display: block;
  margin-bottom: 0.25rem;
}

/* ====================
   11. DATA SIGNALS SECTION
   ==================== */
#svd-data-signals {
  padding: 5rem 0;
  background: #0B1512;
}

.svd-signals__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.svd-signals__text {
  color: #EDF3EE;
}

.svd-signals__heading {
  font-family: 'Bricolage Grotesque', system-ui, sans-serif;
  font-size: clamp(1.5rem, 2.5vw, 1.875rem);
  font-weight: 700;
  color: #EDF3EE;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.svd-signals__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem 1.5rem;
  list-style: none;
}

.svd-signals__list li {
  font-size: 0.9rem;
  color: #8DB09A;
  line-height: 1.5;
  padding-left: 1rem;
  position: relative;
}

.svd-signals__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 5px;
  height: 5px;
  background: #2A9D5C;
  border-radius: 50%;
}

/* ====================
   12. EARLY ACCESS (CTA)
   ==================== */
#svd-early-access {
  padding: 5rem 0;
  background: #142018;
  text-align: center;
}

.svd-cta__heading {
  font-family: 'Bricolage Grotesque', system-ui, sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  font-weight: 700;
  color: #EDF3EE;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.svd-cta__sub {
  font-size: 1.0625rem;
  color: #8DB09A;
  max-width: 540px;
  margin: 0 auto 2rem;
  line-height: 1.6;
}

.svd-cta__note {
  font-size: 0.8125rem;
  color: #506658;
  margin-top: 1.25rem;
  font-family: 'JetBrains Mono', monospace;
}

/* ====================
   13. FOOTER
   ==================== */
.svd-footer {
  background: #0B1512;
  border-top: 1px solid #253629;
  padding: 3.5rem 0 1.5rem;
  color: #EDF3EE;
}

.svd-footer__inner {
  display: flex;
  align-items: flex-start;
  gap: 4rem;
  margin-bottom: 3rem;
}

.svd-footer__brand-col {
  flex: 0 0 220px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.svd-footer__brand-desc {
  font-size: 0.875rem;
  color: #506658;
  line-height: 1.6;
}

.svd-footer__links {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.svd-footer__col-heading {
  font-family: 'Bricolage Grotesque', system-ui, sans-serif;
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #8DB09A;
  margin-bottom: 1rem;
}

.svd-footer__col ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  list-style: none;
}

.svd-footer__col ul li a {
  font-size: 0.875rem;
  color: #506658;
  transition: color 160ms ease;
}

.svd-footer__col ul li a:hover {
  color: #EDF3EE;
}

.svd-footer__bottom {
  border-top: 1px solid #1C2D22;
  padding-top: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.svd-footer__copy {
  font-size: 0.8125rem;
  color: #506658;
}

.svd-footer__legal-links {
  display: flex;
  gap: 1.25rem;
  list-style: none;
}

.svd-footer__legal-links li a {
  font-size: 0.8125rem;
  color: #506658;
  transition: color 160ms ease;
}

.svd-footer__legal-links li a:hover {
  color: #EDF3EE;
}

/* ====================
   14. PAGE HERO (sub-pages)
   ==================== */
.svd-page-hero {
  padding: 6rem 0 3.5rem;
}

.svd-page-hero--dark {
  background: #0B1512;
  color: #EDF3EE;
  padding-top: 7rem;
}

.svd-page-hero--light {
  background: #F7F5F0;
  color: #0B1512;
  padding-top: 7rem;
}

.svd-page-hero__eyebrow {
  font-family: 'Bricolage Grotesque', system-ui, sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
  display: block;
}

.svd-page-hero--dark .svd-page-hero__eyebrow { color: #D9622F; }
.svd-page-hero--light .svd-page-hero__eyebrow { color: #B04E22; }

.svd-page-hero__h1 {
  font-family: 'Bricolage Grotesque', system-ui, sans-serif;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}

.svd-page-hero--dark .svd-page-hero__h1 { color: #EDF3EE; }
.svd-page-hero--light .svd-page-hero__h1 { color: #0B1512; }

.svd-page-hero__sub {
  font-size: 1.0625rem;
  font-weight: 300;
  line-height: 1.65;
  max-width: 620px;
}

.svd-page-hero--dark .svd-page-hero__sub { color: #8DB09A; }
.svd-page-hero--light .svd-page-hero__sub { color: #3A5245; }

/* Split hero layout */
.svd-page-hero__split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.svd-page-hero__ornament {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ====================
   15. PLATFORM PAGE
   ==================== */
#svd-platform-hero {
  background: #0B1512;
  padding: 7rem 0 3rem;
  text-align: center;
}

.svd-platform-hero__h1 {
  font-family: 'Bricolage Grotesque', system-ui, sans-serif;
  font-size: clamp(1.875rem, 4vw, 2.75rem);
  font-weight: 800;
  color: #EDF3EE;
  max-width: 720px;
  margin: 0 auto 2.5rem;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.svd-platform-hero__sub {
  font-size: 1.0625rem;
  color: #8DB09A;
  max-width: 560px;
  margin: 0 auto 2.5rem;
  line-height: 1.65;
}

.svd-platform-tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  border: 1px solid #253629;
  border-radius: 8px;
  overflow: hidden;
  max-width: fit-content;
  margin: 0 auto;
}

.svd-platform-tab {
  padding: 0.75rem 1.5rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: #8DB09A;
  background: transparent;
  border: none;
  border-right: 1px solid #253629;
  cursor: pointer;
  transition: background 160ms ease, color 160ms ease;
  white-space: nowrap;
  font-family: 'Outfit', system-ui, sans-serif;
}

.svd-platform-tab:last-child { border-right: none; }

.svd-platform-tab:hover {
  background: #1C2D22;
  color: #EDF3EE;
}

.svd-platform-section {
  padding: 5rem 0;
}

.svd-platform-section--dark { background: #142018; }
.svd-platform-section--light { background: #F7F5F0; }

.svd-platform-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.svd-platform-split--reverse {
  direction: rtl;
}

.svd-platform-split--reverse > * {
  direction: ltr;
}

.svd-platform-heading {
  font-family: 'Bricolage Grotesque', system-ui, sans-serif;
  font-size: clamp(1.4rem, 2.5vw, 1.875rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.svd-section--dark .svd-platform-heading { color: #EDF3EE; }
.svd-section--dark-alt .svd-platform-heading { color: #EDF3EE; }
.svd-section--light .svd-platform-heading { color: #0B1512; }
.svd-platform-section--dark .svd-platform-heading { color: #EDF3EE; }
.svd-platform-section--light .svd-platform-heading { color: #0B1512; }

.svd-platform-bullets {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  list-style: none;
}

.svd-platform-bullets li {
  font-size: 0.9375rem;
  line-height: 1.55;
  padding-left: 1.25rem;
  position: relative;
}

.svd-platform-section--dark .svd-platform-bullets li { color: #8DB09A; }
.svd-platform-section--light .svd-platform-bullets li { color: #3A5245; }

.svd-platform-bullets li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #2A9D5C;
}

/* Integrations section */
.svd-integration-methods {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.svd-integration-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.875rem 1.125rem;
  background: #FFFFFF;
  border: 1px solid #EEEBe4;
  border-radius: 5px;
}

.svd-integration-label {
  font-size: 0.9rem;
  color: #0B1512;
  font-weight: 500;
}

.svd-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.625rem;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.svd-badge--available {
  background: rgba(42, 157, 92, 0.12);
  color: #1E7044;
}

.svd-badge--roadmap {
  background: rgba(232, 160, 48, 0.12);
  color: #9A6A10;
}

/* ====================
   16. USE CASE PAGES
   ==================== */
.svd-uc-page-hero {
  padding: 7rem 0 3.5rem;
}

.svd-uc-page-hero--light { background: #F7F5F0; }
.svd-uc-page-hero--dark { background: #0B1512; }

.svd-uc-challenge {
  padding: 4rem 0;
  background: #F7F5F0;
}

.svd-uc-challenge__body {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  max-width: 680px;
}

.svd-uc-challenge__para {
  font-size: 1rem;
  color: #3A5245;
  line-height: 1.75;
}

.svd-uc-steps {
  padding: 5rem 0;
  background: #F7F5F0;
}

.svd-uc-steps--dark-alt { background: #142018; }

.svd-uc-workflow-step {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.75rem;
  background: #FFFFFF;
  border: 1px solid #EEEBe4;
  border-radius: 8px;
}

.svd-uc-workflow-step + .svd-uc-workflow-step {
  margin-top: 1rem;
}

.svd-uc-workflow-num {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 5px;
  background: #0B1512;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.875rem;
  color: #D9622F;
  font-weight: 400;
}

.svd-uc-workflow-content h3 {
  font-family: 'Bricolage Grotesque', system-ui, sans-serif;
  font-size: 1.0625rem;
  font-weight: 600;
  color: #0B1512;
  margin-bottom: 0.5rem;
}

.svd-uc-workflow-content p {
  font-size: 0.9rem;
  color: #3A5245;
  line-height: 1.6;
}

/* UC Outputs grid (procurement page) */
.svd-uc-outputs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.svd-uc-output-card {
  background: #FFFFFF;
  border: 1px solid #EEEBe4;
  border-radius: 8px;
  padding: 1.5rem;
}

.svd-uc-output-card h3 {
  font-family: 'Bricolage Grotesque', system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #0B1512;
  margin-bottom: 0.5rem;
}

.svd-uc-output-card p {
  font-size: 0.875rem;
  color: #3A5245;
  line-height: 1.6;
}

/* Signal list (disruption page) */
.svd-signal-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.svd-signal-item {
  padding: 1rem 1.25rem;
  background: #1C2D22;
  border: 1px solid #253629;
  border-radius: 5px;
}

.svd-signal-item h3 {
  font-family: 'Bricolage Grotesque', system-ui, sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #EDF3EE;
  margin-bottom: 0.3rem;
}

.svd-signal-item p {
  font-size: 0.875rem;
  color: #8DB09A;
  line-height: 1.5;
}

/* ====================
   17. PRICING PAGE
   ==================== */
.svd-pricing-hero {
  padding: 7rem 0 2.5rem;
  background: #F7F5F0;
  text-align: center;
}

.svd-pricing-hero__h1 {
  font-family: 'Bricolage Grotesque', system-ui, sans-serif;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: #0B1512;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.svd-pricing-hero__sub {
  font-size: 1.0625rem;
  color: #3A5245;
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.6;
}

.svd-pricing-tiers {
  padding: 3rem 0 5rem;
  background: #F7F5F0;
}

.svd-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  align-items: start;
}

.svd-pricing-card {
  background: #FFFFFF;
  border: 1px solid #EEEBe4;
  border-radius: 8px;
  padding: 2rem;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.svd-pricing-card--featured {
  border-color: #D9622F;
  box-shadow: 0 0 0 1px #D9622F;
}

.svd-pricing-badge {
  position: absolute;
  top: -0.75rem;
  left: 50%;
  transform: translateX(-50%);
  background: #D9622F;
  color: #FFFFFF;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.3rem 0.875rem;
  border-radius: 20px;
  white-space: nowrap;
}

.svd-pricing-card__name {
  font-family: 'Bricolage Grotesque', system-ui, sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: #0B1512;
}

.svd-pricing-card__price {
  font-family: 'Bricolage Grotesque', system-ui, sans-serif;
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  color: #0B1512;
  line-height: 1;
}

.svd-pricing-card__billing {
  font-size: 0.875rem;
  color: #6A8878;
  margin-top: 0.25rem;
}

.svd-pricing-card__cap {
  font-size: 0.8125rem;
  color: #6A8878;
  padding: 0.625rem 0;
  border-top: 1px solid #EEEBe4;
  border-bottom: 1px solid #EEEBe4;
}

.svd-pricing-card__features {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  list-style: none;
  flex: 1;
}

.svd-pricing-card__features li {
  font-size: 0.875rem;
  color: #3A5245;
  padding-left: 1.375rem;
  position: relative;
  line-height: 1.45;
}

.svd-pricing-card__features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #2A9D5C;
}

.svd-pricing-card__position {
  font-size: 0.8125rem;
  color: #6A8878;
  font-style: italic;
  line-height: 1.5;
}

/* Pricing FAQ */
.svd-pricing-faq {
  padding: 3.5rem 0 5rem;
  background: #F7F5F0;
  border-top: 1px solid #EEEBe4;
}

.svd-faq__heading {
  font-family: 'Bricolage Grotesque', system-ui, sans-serif;
  font-size: clamp(1.4rem, 2.5vw, 1.75rem);
  font-weight: 700;
  color: #0B1512;
  margin-bottom: 2rem;
}

.svd-faq {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid #EEEBe4;
  border-radius: 8px;
  overflow: hidden;
}

.svd-faq__item {
  border-bottom: 1px solid #EEEBe4;
}

.svd-faq__item:last-child { border-bottom: none; }

.svd-faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.125rem 1.375rem;
  background: #FFFFFF;
  font-family: 'Outfit', system-ui, sans-serif;
  font-size: 0.9375rem;
  font-weight: 500;
  color: #0B1512;
  text-align: left;
  cursor: pointer;
  transition: background 160ms ease;
  gap: 1rem;
}

.svd-faq__question:hover { background: #F7F5F0; }

.svd-faq__caret {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6A8878;
  transition: transform 240ms ease;
  font-size: 0.75rem;
}

.svd-faq__item.svd-open .svd-faq__caret {
  transform: rotate(180deg);
  color: #D9622F;
}

.svd-faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 240ms ease;
  background: #FFFFFF;
}

.svd-faq__answer-inner {
  padding: 0 1.375rem 1.125rem;
  font-size: 0.9rem;
  color: #3A5245;
  line-height: 1.7;
  border-top: 1px solid #EEEBe4;
  padding-top: 0.875rem;
}

/* ====================
   18. ABOUT PAGE
   ==================== */
.svd-about-mission {
  padding: 7rem 0 3.5rem;
  background: #F7F5F0;
}

.svd-about-mission__content {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.svd-about-mission__h1 {
  font-family: 'Bricolage Grotesque', system-ui, sans-serif;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: #0B1512;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.svd-about-mission__body {
  font-size: 1.0625rem;
  color: #3A5245;
  line-height: 1.75;
}

.svd-about-founder {
  padding: 4rem 0;
  background: #F7F5F0;
  border-top: 1px solid #EEEBe4;
}

.svd-about-founder__inner {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 3.5rem;
  align-items: start;
}

.svd-about-founder__portrait {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  object-position: top;
  border-radius: 8px;
  background: #EEEBe4;
}

.svd-about-founder__name {
  font-family: 'Bricolage Grotesque', system-ui, sans-serif;
  font-size: 1.375rem;
  font-weight: 700;
  color: #0B1512;
  margin-bottom: 0.25rem;
}

.svd-about-founder__title {
  font-size: 0.875rem;
  color: #B04E22;
  font-weight: 500;
  margin-bottom: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.svd-about-founder__bio {
  font-size: 1rem;
  color: #3A5245;
  line-height: 1.75;
}

.svd-about-team {
  padding: 4rem 0;
  background: #F7F5F0;
  border-top: 1px solid #EEEBe4;
}

.svd-about-team__h2 {
  font-family: 'Bricolage Grotesque', system-ui, sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #0B1512;
  margin-bottom: 2rem;
}

.svd-team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.svd-team-card {
  background: #FFFFFF;
  border: 1px solid #EEEBe4;
  border-radius: 8px;
  overflow: hidden;
}

.svd-team-card__portrait {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  object-position: top;
  background: #EEEBe4;
  display: block;
}

.svd-team-card__info {
  padding: 1.125rem;
}

.svd-team-card__name {
  font-family: 'Bricolage Grotesque', system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #0B1512;
  margin-bottom: 0.2rem;
}

.svd-team-card__role {
  font-size: 0.8125rem;
  color: #6A8878;
}

.svd-about-values {
  padding: 4rem 0;
  background: #F7F5F0;
  border-top: 1px solid #EEEBe4;
}

.svd-about-values__h2 {
  font-family: 'Bricolage Grotesque', system-ui, sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #0B1512;
  margin-bottom: 2rem;
}

.svd-values-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 680px;
}

.svd-value-item__label {
  font-family: 'Bricolage Grotesque', system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #0B1512;
  margin-bottom: 0.5rem;
}

.svd-value-item__body {
  font-size: 0.9375rem;
  color: #3A5245;
  line-height: 1.75;
}

/* ====================
   19. BLOG PAGE
   ==================== */
.svd-blog-hero {
  padding: 7rem 0 2.5rem;
  background: #F7F5F0;
}

.svd-blog-hero__h1 {
  font-family: 'Bricolage Grotesque', system-ui, sans-serif;
  font-size: clamp(1.875rem, 4vw, 2.75rem);
  font-weight: 700;
  color: #0B1512;
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}

.svd-blog-hero__sub {
  font-size: 1.0625rem;
  color: #3A5245;
  max-width: 540px;
  line-height: 1.6;
}

.svd-blog-grid-section {
  padding: 2.5rem 0 5rem;
  background: #F7F5F0;
}

/* Featured card */
.svd-blog-featured {
  background: #FFFFFF;
  border: 1px solid #EEEBe4;
  border-radius: 8px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-bottom: 2rem;
  transition: box-shadow 200ms ease;
}

.svd-blog-featured:hover {
  box-shadow: 0 4px 16px rgba(11,21,18,0.08);
}

.svd-blog-featured__img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  object-position: center;
  background: #EEEBe4;
  display: block;
  height: auto;
  aspect-ratio: 16/9;
}

.svd-blog-featured__body {
  padding: 2rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.875rem;
}

.svd-blog-card__meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.svd-blog-card__date {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  color: #6A8878;
}

.svd-blog-card__cat {
  font-size: 0.75rem;
  font-weight: 600;
  color: #B04E22;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.svd-blog-featured__title {
  font-family: 'Bricolage Grotesque', system-ui, sans-serif;
  font-size: clamp(1.25rem, 2.5vw, 1.625rem);
  font-weight: 700;
  color: #0B1512;
  line-height: 1.25;
}

.svd-blog-featured__excerpt {
  font-size: 0.9375rem;
  color: #3A5245;
  line-height: 1.65;
}

.svd-blog-featured__read {
  font-size: 0.875rem;
  font-weight: 600;
  color: #B04E22;
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  transition: gap 160ms ease;
}

.svd-blog-featured__read:hover {
  gap: 0.625rem;
}

/* Blog card grid */
.svd-blog-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.svd-blog-card {
  background: #FFFFFF;
  border: 1px solid #EEEBe4;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  transition: box-shadow 200ms ease, transform 200ms ease;
}

.svd-blog-card:hover {
  box-shadow: 0 4px 16px rgba(11,21,18,0.08);
  transform: translateY(-2px);
}

.svd-blog-card__cover {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  object-fit: cover;
  object-position: center;
  background: #EEEBe4;
  display: block;
}

.svd-blog-card__body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  flex: 1;
}

.svd-blog-card__title {
  font-family: 'Bricolage Grotesque', system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #0B1512;
  line-height: 1.35;
}

.svd-blog-card__excerpt {
  font-size: 0.875rem;
  color: #6A8878;
  line-height: 1.6;
  flex: 1;
}

/* ====================
   20. ARTICLE PAGE
   ==================== */
.svd-article-hero {
  padding: 7rem 0 3rem;
  background: #F7F5F0;
  text-align: center;
}

.svd-article-hero__meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.svd-article-hero__title {
  font-family: 'Bricolage Grotesque', system-ui, sans-serif;
  font-size: clamp(1.625rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: #0B1512;
  max-width: 720px;
  margin: 0 auto 1.25rem;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.svd-article-hero__byline {
  font-size: 0.875rem;
  color: #6A8878;
  margin-bottom: 2.5rem;
}

.svd-article-hero__cover {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  aspect-ratio: 1.91/1;
  object-fit: cover;
  border-radius: 8px;
  background: #EEEBe4;
  display: block;
  height: auto;
}

.svd-article-body {
  padding: 3.5rem 0 5rem;
  background: #F7F5F0;
}

.svd-article-content {
  max-width: 720px;
  margin: 0 auto;
  padding-inline: clamp(1.25rem, 4vw, 2.5rem);
}

.svd-article-content h2 {
  font-family: 'Bricolage Grotesque', system-ui, sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #0B1512;
  margin-top: 2.5rem;
  margin-bottom: 0.875rem;
}

.svd-article-content h3 {
  font-family: 'Bricolage Grotesque', system-ui, sans-serif;
  font-size: 1.175rem;
  font-weight: 600;
  color: #0B1512;
  margin-top: 2rem;
  margin-bottom: 0.625rem;
}

.svd-article-content p {
  font-size: 1rem;
  color: #3A5245;
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.svd-article-content ul, .svd-article-content ol {
  padding-left: 1.75rem;
  margin-bottom: 1.25rem;
}

.svd-article-content ul { list-style: disc; }
.svd-article-content ol { list-style: decimal; }

.svd-article-content li {
  font-size: 1rem;
  color: #3A5245;
  line-height: 1.7;
  margin-bottom: 0.375rem;
}

.svd-article-content blockquote {
  border-left: 3px solid #D9622F;
  padding-left: 1.25rem;
  margin: 1.5rem 0;
  font-style: italic;
  color: #3A5245;
}

.svd-article-content pre {
  background: #1C2D22;
  border: 1px solid #253629;
  border-radius: 5px;
  padding: 1.25rem;
  overflow-x: auto;
  margin-bottom: 1.25rem;
}

.svd-article-content code {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.875rem;
  color: #EDF3EE;
}

.svd-article-content p code {
  background: #EEEBe4;
  color: #0B1512;
  padding: 0.15em 0.4em;
  border-radius: 3px;
}

.svd-article-content img {
  max-width: 100%;
  border-radius: 5px;
  margin-block: 1.5rem;
  height: auto;
}

/* ====================
   21. CONTACT PAGE
   ==================== */
.svd-contact-hero {
  padding: 7rem 0 2.5rem;
  background: #F7F5F0;
}

.svd-contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.svd-contact__h1 {
  font-family: 'Bricolage Grotesque', system-ui, sans-serif;
  font-size: clamp(1.75rem, 3.5vw, 2.25rem);
  font-weight: 700;
  color: #0B1512;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.svd-contact__sub {
  font-size: 1.0625rem;
  color: #3A5245;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.svd-contact-details {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.svd-contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9375rem;
  color: #3A5245;
}

.svd-contact-detail i {
  color: #B04E22;
  margin-top: 0.2rem;
  width: 16px;
  flex-shrink: 0;
}

.svd-contact-detail a {
  color: #3A5245;
  transition: color 160ms ease;
}

.svd-contact-detail a:hover { color: #B04E22; }

/* Contact form */
.svd-form {
  background: #FFFFFF;
  border: 1px solid #EEEBe4;
  border-radius: 8px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.125rem;
}

.svd-form-group {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.svd-form-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: #0B1512;
}

.svd-form-input {
  padding: 0.625rem 0.875rem;
  border: 1px solid #EEEBe4;
  border-radius: 5px;
  font-size: 0.9375rem;
  color: #0B1512;
  background: #F7F5F0;
  transition: border-color 160ms ease, box-shadow 160ms ease;
  width: 100%;
}

.svd-form-input:focus {
  outline: none;
  border-color: #2A9D5C;
  box-shadow: 0 0 0 3px rgba(42, 157, 92, 0.12);
  background: #FFFFFF;
}

.svd-form-textarea {
  resize: vertical;
  min-height: 120px;
}

.svd-contact-address {
  padding: 3rem 0 5rem;
  background: #F7F5F0;
  border-top: 1px solid #EEEBe4;
}

.svd-address-card {
  background: #FFFFFF;
  border: 1px solid #EEEBe4;
  border-radius: 8px;
  padding: 1.75rem 2rem;
  max-width: 420px;
}

.svd-address-card__name {
  font-family: 'Bricolage Grotesque', system-ui, sans-serif;
  font-size: 1.0625rem;
  font-weight: 700;
  color: #0B1512;
  margin-bottom: 1rem;
}

.svd-address-card address {
  font-style: normal;
  font-size: 0.9375rem;
  color: #3A5245;
  line-height: 1.9;
}

.svd-address-card address a {
  color: #B04E22;
  transition: opacity 160ms ease;
}

.svd-address-card address a:hover { opacity: 0.75; }

/* ====================
   22. SECURITY PAGE
   ==================== */
.svd-security-hero {
  padding: 7rem 0 2.5rem;
  background: #F7F5F0;
  text-align: center;
}

.svd-security-hero__h1 {
  font-family: 'Bricolage Grotesque', system-ui, sans-serif;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: #0B1512;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.svd-security-hero__intro {
  font-size: 1.0625rem;
  color: #3A5245;
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.65;
}

.svd-security-practices {
  padding: 3.5rem 0;
  background: #F7F5F0;
  border-top: 1px solid #EEEBe4;
}

.svd-security-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.svd-security-card {
  background: #FFFFFF;
  border: 1px solid #EEEBe4;
  border-radius: 8px;
  padding: 1.625rem;
}

.svd-security-card h3 {
  font-family: 'Bricolage Grotesque', system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #0B1512;
  margin-bottom: 0.5rem;
}

.svd-security-card p {
  font-size: 0.9rem;
  color: #3A5245;
  line-height: 1.65;
}

.svd-security-disclosure {
  padding: 3.5rem 0 5rem;
  background: #F7F5F0;
  border-top: 1px solid #EEEBe4;
}

.svd-security-disclosure__heading {
  font-family: 'Bricolage Grotesque', system-ui, sans-serif;
  font-size: 1.375rem;
  font-weight: 700;
  color: #0B1512;
  margin-bottom: 0.875rem;
}

.svd-security-disclosure__body {
  font-size: 0.9375rem;
  color: #3A5245;
  line-height: 1.7;
}

.svd-security-disclosure__body a {
  color: #B04E22;
  transition: opacity 160ms ease;
}

.svd-security-disclosure__body a:hover { opacity: 0.75; }

/* ====================
   23. CHANGELOG PAGE
   ==================== */
.svd-changelog-hero {
  padding: 7rem 0 2.5rem;
  background: #F7F5F0;
}

.svd-changelog-hero__h1 {
  font-family: 'Bricolage Grotesque', system-ui, sans-serif;
  font-size: clamp(1.875rem, 4vw, 2.75rem);
  font-weight: 700;
  color: #0B1512;
  margin-bottom: 0.625rem;
  letter-spacing: -0.02em;
}

.svd-changelog-hero__sub {
  font-size: 1.0625rem;
  color: #3A5245;
}

.svd-changelog-entries {
  padding: 2.5rem 0 5rem;
  background: #F7F5F0;
}

.svd-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  max-width: 720px;
}

.svd-timeline::before {
  content: '';
  position: absolute;
  left: 88px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: #EEEBe4;
}

.svd-timeline-entry {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 2rem;
  padding-bottom: 3rem;
  position: relative;
}

.svd-timeline-entry::before {
  content: '';
  position: absolute;
  left: calc(88px + 2rem - 5px);
  top: 0.4rem;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #D9622F;
  border: 2px solid #F7F5F0;
}

.svd-timeline-tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.8125rem;
  color: #D9622F;
  font-weight: 400;
  text-align: right;
  padding-top: 0.15rem;
}

.svd-timeline-content h2 {
  font-family: 'Bricolage Grotesque', system-ui, sans-serif;
  font-size: 1.125rem;
  font-weight: 600;
  color: #0B1512;
  margin-bottom: 0.875rem;
  line-height: 1.3;
}

.svd-timeline-content ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  list-style: none;
}

.svd-timeline-content ul li {
  font-size: 0.9rem;
  color: #3A5245;
  padding-left: 1.125rem;
  position: relative;
  line-height: 1.55;
}

.svd-timeline-content ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #2A9D5C;
}

/* ====================
   24. SITEMAP PAGE
   ==================== */
.svd-sitemap-section {
  padding: 7rem 0 5rem;
  background: #F7F5F0;
}

.svd-sitemap-section__h1 {
  font-family: 'Bricolage Grotesque', system-ui, sans-serif;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: #0B1512;
  margin-bottom: 2.5rem;
  letter-spacing: -0.02em;
}

.svd-sitemap-groups {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.svd-sitemap-group h2 {
  font-family: 'Bricolage Grotesque', system-ui, sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  color: #0B1512;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #D9622F;
}

.svd-sitemap-group ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  list-style: none;
}

.svd-sitemap-group ul li a {
  font-size: 0.9rem;
  color: #3A5245;
  transition: color 160ms ease;
}

.svd-sitemap-group ul li a:hover { color: #B04E22; }

/* ====================
   25. 404 PAGE
   ==================== */
.svd-404-section {
  min-height: 100vh;
  background: #0B1512;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  padding-top: 64px;
}

.svd-404-inner {
  max-width: 520px;
}

.svd-404-code {
  font-family: 'JetBrains Mono', monospace;
  font-size: clamp(4rem, 12vw, 8rem);
  font-weight: 400;
  color: #253629;
  line-height: 1;
  margin-bottom: 1.5rem;
}

.svd-404-heading {
  font-family: 'Bricolage Grotesque', system-ui, sans-serif;
  font-size: clamp(1.375rem, 3vw, 1.875rem);
  font-weight: 700;
  color: #EDF3EE;
  margin-bottom: 1rem;
}

.svd-404-body {
  font-size: 1rem;
  color: #8DB09A;
  margin-bottom: 2rem;
  line-height: 1.65;
}

/* ====================
   26. AUTH PAGES
   ==================== */
.svd-auth-page {
  min-height: 100vh;
  background: #0B1512;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  position: relative;
}

.svd-auth-bg-pattern {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.svd-auth-card {
  position: relative;
  z-index: 1;
  background: #F7F5F0;
  border-radius: 12px;
  padding: 2.5rem;
  width: 100%;
  max-width: 420px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.svd-auth-logo {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
}

.svd-auth-logo img {
  height: 32px;
  width: auto;
}

.svd-auth-card__title {
  font-family: 'Bricolage Grotesque', system-ui, sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #0B1512;
  text-align: center;
  margin-bottom: 0.5rem;
}

.svd-auth-card__sub {
  font-size: 0.9rem;
  color: #6A8878;
  text-align: center;
  margin-bottom: 2rem;
  line-height: 1.5;
}

.svd-auth-form {
  display: flex;
  flex-direction: column;
  gap: 1.125rem;
}

.svd-auth-form .svd-form-group { gap: 0.375rem; }
.svd-auth-form .svd-form-label { font-size: 0.875rem; font-weight: 500; color: #0B1512; }
.svd-auth-form .svd-form-input {
  padding: 0.625rem 0.875rem;
  border: 1px solid #EEEBe4;
  border-radius: 5px;
  font-size: 0.9375rem;
  color: #0B1512;
  background: #FFFFFF;
  width: 100%;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.svd-auth-form .svd-form-input:focus {
  outline: none;
  border-color: #2A9D5C;
  box-shadow: 0 0 0 3px rgba(42,157,92,0.12);
}

.svd-auth-card__links {
  margin-top: 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.625rem;
}

.svd-auth-link {
  font-size: 0.875rem;
  color: #6A8878;
}

.svd-auth-link a {
  color: #B04E22;
  font-weight: 500;
  transition: opacity 160ms ease;
}

.svd-auth-link a:hover { opacity: 0.75; }

.svd-auth-card__footer {
  margin-top: 2rem;
  padding-top: 1.25rem;
  border-top: 1px solid #EEEBe4;
  text-align: center;
}

.svd-auth-card__footer p {
  font-size: 0.8rem;
  color: #6A8878;
}

.svd-auth-card__footer a {
  color: #B04E22;
  transition: opacity 160ms ease;
}

.svd-auth-card__footer a:hover { opacity: 0.75; }

/* ====================
   27. LEGAL PAGES
   ==================== */
.svd-legal-page {
  background: #F7F5F0;
  min-height: 100vh;
}

.svd-legal-hero {
  padding: 7rem 0 2.5rem;
  background: #F7F5F0;
  border-bottom: 1px solid #EEEBe4;
}

.svd-legal-hero__h1 {
  font-family: 'Bricolage Grotesque', system-ui, sans-serif;
  font-size: clamp(1.75rem, 3.5vw, 2.25rem);
  font-weight: 700;
  color: #0B1512;
  margin-bottom: 0.5rem;
  letter-spacing: -0.015em;
}

.svd-legal-hero__meta {
  font-size: 0.875rem;
  color: #6A8878;
}

.svd-legal-body {
  padding: 3rem 0 5rem;
  background: #F7F5F0;
}

.svd-legal-content {
  max-width: 720px;
  margin: 0 auto;
  padding-inline: clamp(1.25rem, 4vw, 2.5rem);
  background: #FFFFFF;
  border: 1px solid #EEEBe4;
  border-radius: 8px;
  padding: 2.5rem 3rem;
}

.svd-legal-content h2 {
  font-family: 'Bricolage Grotesque', system-ui, sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #0B1512;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.svd-legal-content h3 {
  font-family: 'Bricolage Grotesque', system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #0B1512;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}

.svd-legal-content p {
  font-size: 0.9375rem;
  color: #3A5245;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.svd-legal-content ul, .svd-legal-content ol {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.svd-legal-content ul { list-style: disc; }
.svd-legal-content ol { list-style: decimal; }

.svd-legal-content li {
  font-size: 0.9375rem;
  color: #3A5245;
  line-height: 1.75;
  margin-bottom: 0.375rem;
}

.svd-legal-content a {
  color: #B04E22;
  transition: opacity 160ms ease;
}

.svd-legal-content a:hover { opacity: 0.75; }

/* ====================
   28. DATA TABLE MOCK
   ==================== */
.svd-data-table-wrap {
  overflow-x: auto;
  border-radius: 8px;
  border: 1px solid #EEEBe4;
  background: #FFFFFF;
}

.svd-data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}

.svd-data-table thead tr {
  background: #0B1512;
}

.svd-data-table thead th {
  padding: 0.75rem 1rem;
  text-align: left;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  font-weight: 400;
  color: #8DB09A;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.svd-data-table tbody tr {
  border-bottom: 1px solid #EEEBe4;
}

.svd-data-table tbody tr:last-child { border-bottom: none; }

.svd-data-table tbody tr:hover { background: #F7F5F0; }

.svd-data-table tbody td {
  padding: 0.75rem 1rem;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.8125rem;
  color: #0B1512;
  white-space: nowrap;
}

.svd-risk-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.svd-risk-pill--high { background: rgba(217,98,47,0.12); color: #8B3A1A; }
.svd-risk-pill--medium { background: rgba(232,160,48,0.12); color: #9A6A10; }
.svd-risk-pill--low { background: rgba(42,157,92,0.12); color: #1E7044; }

/* ====================
   29. SECTION HEADINGS (reusable)
   ==================== */
.svd-section-heading {
  font-family: 'Bricolage Grotesque', system-ui, sans-serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0.875rem;
}

.svd-section-heading--dark { color: #EDF3EE; }
.svd-section-heading--light { color: #0B1512; }

.svd-section-sub {
  font-size: 1.0625rem;
  line-height: 1.65;
  margin-bottom: 2.5rem;
}

.svd-section-sub--dark { color: #8DB09A; }
.svd-section-sub--light { color: #3A5245; }

/* ====================
   30. WORLD MAP SVG WRAPPER
   ==================== */
.svd-world-map-wrap {
  width: 100%;
  background: #0D1C14;
  border: 1px solid #253629;
  border-radius: 8px;
  overflow: hidden;
  padding: 1rem;
}

/* ====================
   31. ALERT CARD MOCK
   ==================== */
.svd-alert-card {
  background: #1C2D22;
  border: 1px solid #253629;
  border-radius: 8px;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.svd-alert-card__level {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  color: #D9622F;
  font-weight: 400;
}

.svd-alert-card__level-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #D9622F;
}

.svd-alert-card__sku {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.875rem;
  color: #EDF3EE;
}

.svd-alert-card__signal {
  font-size: 0.875rem;
  color: #8DB09A;
  line-height: 1.5;
}

.svd-alert-card__impact {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-top: 0.5rem;
  border-top: 1px solid #253629;
}

.svd-alert-card__impact-label {
  font-size: 0.75rem;
  color: #506658;
}

.svd-alert-card__impact-value {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.875rem;
  color: #E8A030;
}

/* ====================
   32. SECTION PAD UTIL
   ==================== */
.svd-section-pad {
  padding: 5rem 0;
}

.svd-section-pad--sm {
  padding: 3.5rem 0;
}

/* ====================
   33. COOKIE BANNER
   ==================== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: #142018;
  border-top: 1px solid #253629;
}

.cookie-banner__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.875rem clamp(1.25rem, 4vw, 2.5rem);
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.cookie-banner__text {
  font-size: 0.875rem;
  color: #8DB09A;
  flex: 1;
  min-width: 220px;
  line-height: 1.5;
}

.cookie-banner__text a {
  color: #D9622F;
  transition: opacity 160ms ease;
}

.cookie-banner__text a:hover { opacity: 0.75; }

.cookie-banner__actions {
  flex-shrink: 0;
}

.cookie-banner__btn {
  padding: 0.5rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #EDF3EE;
  background: transparent;
  border: 1px solid rgba(237,243,238,0.35);
  border-radius: 5px;
  cursor: pointer;
  transition: background 160ms ease, border-color 160ms ease;
  font-family: 'Outfit', system-ui, sans-serif;
}

.cookie-banner__btn:hover {
  background: rgba(237,243,238,0.08);
  border-color: #EDF3EE;
  color: #EDF3EE;
}

/* ====================
   34. FADE-IN ANIMATION
   ==================== */
.svd-fade-in {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 400ms ease, transform 400ms ease;
}

.svd-fade-in.svd-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ====================
   35. RESPONSIVE
   ==================== */
@media (max-width: 1024px) {
  .svd-hero__inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: center;
  }

  .svd-hero__sub { margin-inline: auto; }
  .svd-hero__ctas { justify-content: center; }

  .svd-platform-split {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .svd-platform-split--reverse { direction: ltr; }

  .svd-pricing-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin-inline: auto;
  }

  .svd-blog-featured {
    grid-template-columns: 1fr;
  }

  .svd-contact-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .svd-about-founder__inner {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .svd-about-founder__portrait {
    max-width: 260px;
  }

  .svd-signals__inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .svd-footer__inner {
    flex-direction: column;
    gap: 2rem;
  }

  .svd-page-hero__split {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .svd-nav__links,
  .svd-nav__actions {
    display: none;
  }

  .svd-nav__hamburger {
    display: flex;
    margin-left: auto;
  }

  .svd-problem__grid {
    grid-template-columns: 1fr;
  }

  .svd-problem__cell {
    border-right: none;
    border-bottom: 1px solid #253629;
  }

  .svd-problem__cell:last-child { border-bottom: none; }

  .svd-hiw__steps {
    grid-template-columns: 1fr;
  }

  .svd-hiw__steps::before { display: none; }

  .svd-uc__grid {
    grid-template-columns: 1fr;
  }

  .svd-team-grid {
    grid-template-columns: 1fr 1fr;
  }

  .svd-blog-cards {
    grid-template-columns: 1fr;
  }

  .svd-sitemap-groups {
    grid-template-columns: 1fr;
  }

  .svd-footer__links {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .svd-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .svd-timeline {
    padding-left: 0;
  }

  .svd-timeline::before { left: 72px; }

  .svd-timeline-entry {
    grid-template-columns: 72px 1fr;
    gap: 1.25rem;
  }

  .svd-timeline-entry::before {
    left: calc(72px + 1.25rem - 5px);
  }

  .svd-security-grid {
    grid-template-columns: 1fr;
  }

  .svd-uc-outputs-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .svd-hero__h1 { font-size: 1.875rem; }

  .svd-hero__ctas {
    flex-direction: column;
    align-items: stretch;
  }

  .svd-auth-card {
    padding: 1.75rem 1.5rem;
  }

  .svd-legal-content {
    padding: 1.75rem 1.5rem;
  }

  .svd-team-grid {
    grid-template-columns: 1fr;
  }
}

.svd-contact-form {}
