:root {
  --bg-deep: #0a1118;
  --bg-mid: #122030;
  --bg-soft: #e9e1d5;
  --paper: #f7f3ec;
  --paper-strong: #fcfaf6;
  --surface: rgba(255, 251, 245, 0.88);
  --surface-dark: rgba(13, 21, 31, 0.82);
  --line: rgba(11, 20, 31, 0.1);
  --line-strong: rgba(255, 255, 255, 0.12);
  --text: #21303d;
  --text-soft: #5d6975;
  --headline: #0c1722;
  --headline-light: #f8f4ee;
  --gold: #c7a26c;
  --teal: #146c67;
  --copper: #8f5d42;
  --steel: #30485d;
  --shadow: 0 24px 70px rgba(10, 17, 24, 0.09);
  --shadow-deep: 0 26px 80px rgba(0, 0, 0, 0.32);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: min(1200px, calc(100vw - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 12% 0%, rgba(199, 162, 108, 0.24), transparent 30%),
    radial-gradient(circle at 88% 8%, rgba(20, 108, 103, 0.18), transparent 28%),
    linear-gradient(180deg, var(--bg-deep) 0%, #0f1b28 29%, var(--bg-soft) 29%, var(--paper) 100%);
  color: var(--text);
  font-family: "Avenir Next", "Segoe UI", sans-serif;
}

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

p,
li {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.7;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1,
h2,
h3,
strong {
  color: var(--headline);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", serif;
  font-weight: 600;
  letter-spacing: -0.04em;
}

.page-shell {
  position: relative;
  overflow: clip;
}

.ambient {
  pointer-events: none;
  position: fixed;
  z-index: 0;
  border-radius: 999px;
  filter: blur(96px);
  opacity: 0.42;
}

.ambient-a {
  top: -120px;
  left: calc(50% - 520px);
  width: 360px;
  height: 360px;
  background: rgba(199, 162, 108, 0.22);
}

.ambient-b {
  top: 220px;
  right: -90px;
  width: 300px;
  height: 300px;
  background: rgba(20, 108, 103, 0.16);
}

.ambient-c {
  left: -110px;
  bottom: 120px;
  width: 280px;
  height: 280px;
  background: rgba(143, 93, 66, 0.14);
}

.site-header,
.hero,
.section-block,
.contact-panel,
.subpage-hero,
.site-footer {
  position: relative;
  z-index: 1;
}

.site-header {
  position: relative;
  width: var(--container);
  margin: 20px auto 0;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: rgba(7, 14, 22, 0.66);
  backdrop-filter: blur(24px);
  box-shadow: var(--shadow-deep);
}

.brand-lockup {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: linear-gradient(145deg, #f6ead8 0%, var(--gold) 100%);
  color: #0c1520;
  font-size: 0.94rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  box-shadow: 0 14px 32px rgba(199, 162, 108, 0.24);
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand-copy strong {
  color: var(--headline-light);
  font-size: 0.98rem;
}

.brand-copy span {
  color: rgba(248, 244, 238, 0.72);
  font-size: 0.83rem;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
  flex-wrap: wrap;
}

.site-nav a {
  color: rgba(248, 244, 238, 0.82);
  font-size: 0.95rem;
  transition: color 180ms ease, transform 180ms ease, background 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--headline-light);
  transform: translateY(-1px);
}

.nav-cta {
  padding: 10px 16px;
  border: 1px solid rgba(199, 162, 108, 0.22);
  border-radius: 999px;
  background: rgba(199, 162, 108, 0.08);
}

.hero,
.section-block,
.contact-panel,
.subpage-hero,
.site-footer {
  width: var(--container);
  margin: 0 auto;
}

.hero {
  padding: 86px 0 40px;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(330px, 0.98fr);
  gap: 28px;
  align-items: stretch;
}

.subpage-hero {
  padding: 72px 0 36px;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
  gap: 28px;
  align-items: stretch;
}

.subpage-copy h1 {
  margin-top: 22px;
  max-width: 11ch;
  font-size: clamp(3rem, 6vw, 5.8rem);
  line-height: 0.96;
  color: var(--headline-light);
}

.subpage-copy p:not(.eyebrow) {
  max-width: 60ch;
  margin-top: 22px;
  font-size: 1.06rem;
  color: rgba(248, 244, 238, 0.78);
}

.subpage-aside {
  padding: 28px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line-strong);
  background:
    linear-gradient(160deg, rgba(14, 23, 34, 0.96), rgba(22, 34, 48, 0.94)),
    rgba(14, 23, 34, 0.94);
  box-shadow: var(--shadow-deep);
}

.subpage-aside h2 {
  margin-top: 16px;
  font-size: clamp(2rem, 3.2vw, 3rem);
  line-height: 0.99;
  color: var(--headline-light);
}

.summary-stack {
  margin-top: 24px;
  display: grid;
  gap: 12px;
}

.summary-item {
  padding: 18px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(248, 244, 238, 0.05);
}

.summary-label {
  color: rgba(199, 162, 108, 0.9);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.summary-value {
  display: block;
  margin-top: 10px;
  color: var(--headline-light);
  font-size: 1.08rem;
  line-height: 1.45;
}

.hero-copy {
  color: var(--headline-light);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(199, 162, 108, 0.18);
  background: rgba(199, 162, 108, 0.08);
  color: #eed7b7;
  font-size: 0.79rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-copy h1 {
  margin-top: 22px;
  max-width: 10.2ch;
  font-size: clamp(3.6rem, 7vw, 7rem);
  line-height: 0.94;
  color: var(--headline-light);
}

.lede {
  max-width: 60ch;
  margin-top: 24px;
  font-size: 1.08rem;
  color: rgba(248, 244, 238, 0.78);
}

.hero-actions {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-proof {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-proof span {
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid rgba(248, 244, 238, 0.1);
  background: rgba(248, 244, 238, 0.05);
  color: rgba(248, 244, 238, 0.88);
  font-size: 0.92rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 600;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

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

.button-solid {
  background: linear-gradient(145deg, #fbf0df 0%, var(--gold) 100%);
  color: #0c1722;
  box-shadow: 0 18px 34px rgba(199, 162, 108, 0.2);
}

.button-ghost {
  border: 1px solid rgba(248, 244, 238, 0.16);
  background: rgba(248, 244, 238, 0.04);
  color: var(--headline-light);
}

.button-subtle {
  border: 1px solid rgba(20, 108, 103, 0.18);
  background: rgba(20, 108, 103, 0.08);
  color: var(--headline);
}

.button-outline {
  border: 1px solid rgba(12, 23, 34, 0.12);
  background: rgba(255, 255, 255, 0.68);
  color: var(--headline);
}

.button-small {
  min-height: 44px;
  padding: 0 16px;
  font-size: 0.92rem;
}

.hero-board {
  padding: 30px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line-strong);
  background:
    linear-gradient(160deg, rgba(14, 23, 34, 0.96), rgba(22, 34, 48, 0.94)),
    rgba(14, 23, 34, 0.94);
  box-shadow: var(--shadow-deep);
}

.panel-kicker {
  color: rgba(199, 162, 108, 0.9);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-board h2 {
  margin-top: 18px;
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  line-height: 0.98;
  color: var(--headline-light);
}

.panel-copy {
  margin-top: 16px;
  color: rgba(248, 244, 238, 0.74);
}

.board-grid {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.board-card {
  padding: 20px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(248, 244, 238, 0.05);
  backdrop-filter: blur(12px);
}

.board-status {
  color: rgba(199, 162, 108, 0.94);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.board-card strong {
  display: block;
  margin-top: 14px;
  color: var(--headline-light);
  font-size: 1.18rem;
}

.board-card p:last-child {
  margin-top: 8px;
  color: rgba(248, 244, 238, 0.7);
}

.section-block,
.contact-panel {
  margin-top: 24px;
  padding: 46px 42px;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(12, 23, 34, 0.08);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.company-section,
.products-section {
  position: relative;
}

.section-dark {
  background:
    linear-gradient(160deg, rgba(11, 19, 28, 0.98), rgba(19, 33, 48, 0.96)),
    rgba(11, 19, 28, 0.96);
  border-color: rgba(255, 255, 255, 0.08);
}

.section-dark h2,
.section-dark h3,
.section-dark strong {
  color: var(--headline-light);
}

.section-dark p,
.section-dark li {
  color: rgba(248, 244, 238, 0.72);
}

.section-heading {
  max-width: 72ch;
}

.section-heading h2 {
  margin-top: 18px;
  font-size: clamp(2.35rem, 4.2vw, 4.2rem);
  line-height: 0.98;
}

.section-heading p:last-child {
  margin-top: 18px;
  font-size: 1.03rem;
}

.company-grid {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.page-link-grid {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.page-link-card {
  padding: 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: rgba(255, 252, 247, 0.98);
  box-shadow: 0 14px 34px rgba(11, 19, 26, 0.05);
}

.page-link-meta {
  color: var(--copper);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.page-link-card h3 {
  margin-top: 16px;
  font-size: 1.8rem;
  line-height: 1.03;
}

.page-link-card p:last-of-type {
  margin-top: 12px;
}

.company-card,
.feature-card,
.cluster-card,
.principle-card,
.engage-card,
.contact-card {
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  box-shadow: 0 14px 34px rgba(11, 19, 26, 0.05);
}

.company-card {
  padding: 28px;
  background: linear-gradient(145deg, rgba(255, 252, 247, 0.98), rgba(249, 242, 232, 0.95));
}

.card-label {
  display: inline-flex;
  align-items: center;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(20, 108, 103, 0.08);
  color: var(--teal);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.company-card h3 {
  margin-top: 18px;
  font-size: clamp(1.75rem, 2.8vw, 2.35rem);
  line-height: 1.02;
}

.company-card p:last-child {
  margin-top: 14px;
}

.feature-grid {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 18px;
}

.feature-card {
  padding: 26px;
  background: rgba(255, 252, 247, 0.98);
  grid-column: span 6;
}

.feature-primary {
  background:
    linear-gradient(150deg, rgba(11, 21, 30, 0.98), rgba(18, 35, 49, 0.96)),
    rgba(11, 21, 30, 0.96);
  border-color: rgba(255, 255, 255, 0.08);
}

.feature-primary h3,
.feature-primary strong {
  color: var(--headline-light);
}

.feature-primary p {
  color: rgba(248, 244, 238, 0.72);
}

.feature-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.feature-status {
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--steel);
}

.feature-primary .feature-status {
  color: rgba(199, 162, 108, 0.92);
}

.feature-index {
  color: rgba(12, 23, 34, 0.34);
  font-size: 1rem;
  font-weight: 700;
}

.feature-primary .feature-index {
  color: rgba(248, 244, 238, 0.26);
}

.feature-card h3 {
  margin-top: 18px;
  font-size: 1.9rem;
}

.feature-card p {
  margin-top: 12px;
}

.card-actions {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.cluster-grid {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.roster-grid {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.roster-card {
  padding: 24px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: rgba(255, 252, 247, 0.96);
  box-shadow: 0 14px 34px rgba(11, 19, 26, 0.05);
}

.roster-tag {
  color: var(--copper);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.roster-card h3 {
  margin-top: 16px;
  font-size: 1.45rem;
}

.roster-card p:last-child {
  margin-top: 12px;
}

.cluster-card {
  padding: 28px;
  background: rgba(255, 252, 247, 0.96);
}

.cluster-label {
  color: var(--copper);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.cluster-card h3 {
  margin-top: 16px;
  font-size: 1.8rem;
  line-height: 1.02;
}

.cluster-card p:last-of-type {
  margin-top: 12px;
}

.chip-list {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.chip-list li {
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(12, 23, 34, 0.08);
  background: rgba(12, 23, 34, 0.04);
  color: var(--headline);
  font-size: 0.92rem;
  font-weight: 600;
}

.principle-grid {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.principle-card {
  padding: 24px;
  background: rgba(248, 244, 238, 0.05);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

.principle-card h3 {
  font-size: 1.35rem;
}

.principle-card p {
  margin-top: 12px;
}

.engage-grid {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.engage-card {
  padding: 28px;
  background: rgba(255, 252, 247, 0.98);
}

.engage-index {
  color: rgba(12, 23, 34, 0.32);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.engage-card h3 {
  margin-top: 16px;
  font-size: 1.7rem;
  line-height: 1.04;
}

.engage-card p {
  margin-top: 12px;
}

.action-ribbon {
  margin-top: 28px;
  padding: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: rgba(255, 252, 247, 0.96);
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
  gap: 18px;
  align-items: stretch;
}

.contact-card {
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background:
    linear-gradient(150deg, rgba(11, 21, 30, 0.98), rgba(18, 35, 49, 0.96)),
    rgba(11, 21, 30, 0.96);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-deep);
}

.contact-label {
  color: rgba(199, 162, 108, 0.9);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-link {
  margin-top: 18px;
  display: inline-block;
  color: var(--headline-light);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", serif;
  line-height: 1.02;
  word-break: break-word;
}

.contact-card p {
  margin-top: 18px;
  color: rgba(248, 244, 238, 0.72);
}

.contact-card .button {
  margin-top: 26px;
  width: fit-content;
}

.site-footer {
  padding: 26px 0 42px;
}

.footer-shell {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  padding-top: 8px;
}

.footer-brand strong {
  display: block;
  color: var(--headline);
  font-size: 1rem;
}

.footer-brand p {
  margin-top: 8px;
  text-align: left;
  color: rgba(12, 23, 34, 0.6);
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 16px 20px;
}

.footer-nav a {
  color: rgba(12, 23, 34, 0.72);
  font-size: 0.95rem;
}

.footer-note {
  margin-top: 20px;
  text-align: center;
}

.site-footer p {
  text-align: center;
  color: rgba(12, 23, 34, 0.54);
  font-size: 0.94rem;
}

.site-nav a[aria-current="page"] {
  color: var(--headline-light);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 500ms ease, transform 500ms ease;
}

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

@media (max-width: 1120px) {
  .hero,
  .subpage-hero,
  .contact-panel,
  .company-grid,
  .cluster-grid,
  .page-link-grid,
  .engage-grid,
  .principle-grid {
    grid-template-columns: 1fr;
  }

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

  .feature-card,
  .feature-primary {
    grid-column: span 1;
  }

  .board-grid {
    grid-template-columns: 1fr 1fr;
  }

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

  .hero-copy h1 {
    max-width: 11ch;
  }
}

@media (max-width: 760px) {
  .site-header {
    border-radius: 28px;
    align-items: flex-start;
    flex-direction: column;
  }

  .site-nav {
    width: 100%;
    justify-content: flex-start;
  }

  .hero {
    padding-top: 56px;
  }

  .hero-copy h1,
  .subpage-copy h1,
  .hero-board h2,
  .subpage-aside h2,
  .section-heading h2,
  .contact-link {
    max-width: none;
  }

  .board-grid,
  .feature-grid,
  .page-link-grid,
  .principle-grid,
  .engage-grid,
  .roster-grid,
  .footer-shell {
    grid-template-columns: 1fr;
  }

  .feature-card,
  .feature-primary {
    grid-column: auto;
  }

  .hero-proof,
  .action-ribbon,
  .card-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .section-block,
  .contact-panel,
  .subpage-hero {
    padding: 30px 22px;
    border-radius: 28px;
  }

  .hero-board,
  .subpage-aside,
  .company-card,
  .feature-card,
  .page-link-card,
  .cluster-card,
  .roster-card,
  .principle-card,
  .engage-card,
  .contact-card {
    border-radius: 22px;
  }

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

  .footer-note {
    text-align: left;
  }
}
