:root {
  --bg: #f2f1ed;
  --bg-strong: #e8e3d8;
  --surface: rgba(255, 255, 255, 0.58);
  --surface-solid: #faf8f2;
  --surface-soft: rgba(255, 255, 255, 0.38);
  --text: #0b0e14;
  --text-muted: #4f5a63;
  --border: rgba(11, 14, 20, 0.12);
  --accent: #1e3b33;
  --accent-strong: #162d27;
  --accent-soft: rgba(30, 59, 51, 0.08);
  --max-width: 1180px;
  --radius-xl: 18px;
  --radius-lg: 14px;
  --radius-md: 10px;
  --shadow-soft: 0 8px 24px rgba(11, 14, 20, 0.04);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Georgia", "Times New Roman", serif;
  color: var(--text);
  line-height: 1.6;
  background:
    linear-gradient(180deg, #f7f5ef 0%, var(--bg) 58%, #ece7dc 100%);
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

p,
h1,
h2,
h3,
figure {
  margin-top: 0;
}

.site-shell {
  min-height: 100vh;
}

.container {
  width: min(100% - 2rem, var(--max-width));
  margin: 0 auto;
}

.section {
  padding: 6rem 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(242, 241, 237, 0.9);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(11, 14, 20, 0.08);
}

.nav-row,
.footer-row,
.hero-layout,
.editorial-split,
.solution-spotlight,
.cta-panel,
.process-layout {
  display: grid;
  gap: 1.5rem;
}

.nav-row,
.footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-row {
  min-height: 5.2rem;
}

.brand-mark img,
.footer-logo {
  width: auto;
  height: 2rem;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  font-family: Arial, sans-serif;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.site-nav a:hover,
.site-nav a:focus-visible,
.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--accent);
}

.hero {
  padding-top: 7.2rem;
}

.hero-layout,
.solution-spotlight {
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  align-items: center;
}

.hero-home {
  padding-bottom: 1rem;
}

.hero-copy {
  position: relative;
  z-index: 1;
}

.hero-visual {
  position: relative;
  min-height: 460px;
}

.hero-visual-home::before,
.hero-product .hero-visual::before {
  content: "";
  position: absolute;
  inset: 1.4rem 0 0 1.4rem;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(11, 14, 20, 0.08);
}

.hero-photo-card,
.hero-float-card,
.icon-card,
.benefit-card,
.mini-feature,
.horizontal-card,
.process-card,
.governance-card,
.cta-panel,
.story-copy {
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: none;
  backdrop-filter: blur(6px);
}

.hero-photo-card {
  position: absolute;
  inset: 0 3rem 4.5rem 0;
  overflow: hidden;
  border-radius: var(--radius-xl);
}

.hero-photo-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(252, 251, 248, 0.18), rgba(252, 251, 248, 0.42));
}

.hero-photo-card img,
.story-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.82) brightness(1.08);
}

.hero-float-card {
  position: absolute;
  right: 0;
  bottom: 0;
  width: min(320px, 100%);
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  background: rgba(250, 248, 242, 0.9);
}

.eyebrow,
.panel-kicker,
.process-step {
  margin-bottom: 0.9rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.76rem;
  font-family: Arial, sans-serif;
}

h1,
h2,
h3 {
  line-height: 1.08;
  letter-spacing: -0.03em;
  font-weight: 400;
}

h1 {
  max-width: 11ch;
  margin-bottom: 1.35rem;
  font-size: clamp(3.2rem, 7vw, 6.2rem);
}

h2 {
  max-width: 14ch;
  margin-bottom: 1.2rem;
  font-size: clamp(2.25rem, 5vw, 4.3rem);
}

h3 {
  margin-bottom: 0.8rem;
  font-size: 1.4rem;
}

.lead,
.section-intro,
.panel-statement {
  font-size: clamp(1.08rem, 1.8vw, 1.28rem);
}

.lead {
  max-width: 40rem;
}

.section-heading {
  margin-bottom: 2rem;
}

.section-intro,
.story-copy p,
.benefit-card p,
.icon-card p,
.mini-feature p,
.horizontal-card p,
.process-card p,
.governance-card p,
.site-footer p,
.photo-credit {
  color: var(--text-muted);
}

.section-intro,
.story-copy p,
.benefit-card p,
.icon-card p,
.mini-feature p,
.horizontal-card p,
.process-card p,
.governance-card p {
  max-width: 28ch;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.95rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.2rem;
  padding: 0.75rem 1.25rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-family: Arial, sans-serif;
  font-size: 0.95rem;
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease, border-color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--accent);
  color: #f7f4ed;
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--accent-strong);
}

.button-secondary {
  background: transparent;
  border-color: rgba(11, 14, 20, 0.12);
  color: var(--text);
}

.hero-metrics,
.insight-grid,
.benefit-grid,
.horizontal-benefits,
.process-grid,
.governance-grid {
  display: grid;
  gap: 1rem;
}

.hero-metrics {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 2rem;
}

.hero-metrics article {
  padding-top: 1.1rem;
  border-top: 1px solid rgba(11, 14, 20, 0.12);
}

.hero-metrics strong,
.mini-feature strong,
.horizontal-card strong {
  display: block;
  margin-bottom: 0.4rem;
  font-size: 1rem;
}

.hero-metrics span {
  color: var(--text-muted);
  font-size: 0.96rem;
}

.muted-band {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.26), rgba(255, 255, 255, 0.08));
  border-top: 1px solid rgba(11, 14, 20, 0.06);
  border-bottom: 1px solid rgba(11, 14, 20, 0.06);
}

.insight-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.icon-card,
.benefit-card,
.horizontal-card,
.process-card,
.governance-card,
.mini-feature,
.story-copy {
  padding: 1.5rem;
  border-radius: var(--radius-lg);
}

.icon-badge {
  width: 2.1rem;
  height: 2.1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  border-radius: 999px;
  background: transparent;
  border: 1px solid rgba(30, 59, 51, 0.22);
  color: var(--accent);
  font-family: Arial, sans-serif;
  font-size: 0.78rem;
}

.benefit-grid,
.governance-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.image-story {
  padding-top: 1rem;
}

.editorial-split {
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 1fr);
  align-items: center;
  gap: 3rem;
}

.editorial-split-reverse {
  grid-template-columns: minmax(320px, 1fr) minmax(0, 0.82fr);
}

.story-photo,
.story-photo-large {
  min-height: 340px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: none;
}

.story-photo-large {
  min-height: 520px;
}

.story-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.story-copy-plain {
  background: transparent;
  border: 0;
  padding: 0;
  backdrop-filter: none;
}

.story-photo-soft img {
  filter: saturate(0.72) brightness(1.12);
}

.solution-panel {
  display: grid;
  gap: 1rem;
  align-content: start;
}

.horizontal-benefits {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.process-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.cta-section {
  padding-top: 2rem;
}

.cta-panel {
  grid-template-columns: minmax(0, 1.1fr) auto;
  align-items: center;
  padding: 2rem;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.68), rgba(245, 241, 232, 0.76));
}

.site-footer {
  padding: 2.5rem 0 3rem;
  border-top: 1px solid rgba(11, 14, 20, 0.08);
}

.footer-links {
  display: grid;
  gap: 0.55rem;
  justify-items: end;
  font-family: Arial, sans-serif;
  color: var(--text-muted);
}

.photo-credit {
  font-family: Arial, sans-serif;
  font-size: 0.92rem;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .hero-layout,
  .solution-spotlight,
  .editorial-split,
  .editorial-split-reverse,
  .cta-panel,
  .insight-grid,
  .benefit-grid,
  .horizontal-benefits,
  .process-grid,
  .governance-grid,
  .hero-metrics {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 360px;
  }
}

@media (max-width: 720px) {
  .section {
    padding: 4.75rem 0;
  }

  .hero {
    padding-top: 5rem;
  }

  .nav-row,
  .footer-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-links {
    justify-items: start;
  }

  .site-nav,
  .hero-actions,
  .cta-actions {
    width: 100%;
  }

  .button {
    width: 100%;
  }

  .hero-photo-card {
    inset: 0 1rem 4.5rem 0;
  }

  h1,
  h2 {
    max-width: none;
  }
}
