:root {
  --bg: #07182d;
  --bg-alt: #0d2542;
  --panel: rgba(10, 36, 63, 0.9);
  --panel-strong: #143559;
  --line: rgba(128, 216, 255, 0.24);
  --text: #eff8ff;
  --muted: #b8d5e7;
  --accent: #69c4ef;
  --accent-strong: #9fe9ff;
  --white: #ffffff;
  --success: #9ac3a4;
  --warning: #d1c29b;
  --shadow: 0 24px 60px rgba(1, 10, 22, 0.34);
  --max-width: 1180px;
  --radius: 22px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "IBM Plex Sans", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(105, 196, 239, 0.16), transparent 28%),
    radial-gradient(circle at right 10% top 20%, rgba(255, 255, 255, 0.05), transparent 18%),
    linear-gradient(180deg, #04101f 0%, #08203a 38%, #061428 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(159, 233, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(159, 233, 255, 0.05) 1px, transparent 1px),
    linear-gradient(rgba(159, 233, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(159, 233, 255, 0.018) 1px, transparent 1px);
  background-size: 64px 64px, 64px 64px, 16px 16px, 16px 16px;
  pointer-events: none;
  opacity: 0.62;
}

body::after {
  content: "";
  position: fixed;
  inset: 18px;
  border: 1px solid rgba(159, 233, 255, 0.14);
  pointer-events: none;
  z-index: 0;
}

a {
  color: inherit;
  text-decoration: none;
  text-underline-offset: 0.18em;
}

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

.site-shell {
  position: relative;
  z-index: 1;
}

.topbar {
  border-bottom: 1px solid var(--line);
  background: rgba(4, 13, 24, 0.7);
  backdrop-filter: blur(12px);
}

.topbar-inner,
.nav-inner,
.section-inner,
.footer-inner {
  width: min(var(--max-width), calc(100% - 2rem));
  margin: 0 auto;
}

.topbar-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.5rem;
  justify-content: space-between;
  padding: 0.8rem 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(4, 14, 26, 0.62);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(159, 233, 255, 0.12);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
}

.brand-mark {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(159, 233, 255, 0.28);
  border-radius: 16px;
  background:
    linear-gradient(145deg, rgba(105, 196, 239, 0.3), rgba(255, 255, 255, 0.03)),
    #0d2947;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 0 0 1px rgba(159, 233, 255, 0.05);
  font-family: "Oswald", "Arial Narrow", sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0.12em;
  overflow: hidden;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  padding: 0.2rem;
  filter: saturate(1.05) contrast(1.02);
}

.brand-text strong,
.eyebrow,
h1,
h2,
h3,
.button,
.stat-value,
.service-index {
  font-family: "Oswald", "Arial Narrow", sans-serif;
  letter-spacing: 0.04em;
}

.brand-text {
  display: grid;
  gap: 0.2rem;
}

.brand-text strong {
  font-size: 1.1rem;
  text-transform: uppercase;
}

.brand-text span {
  font-size: 0.76rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.1rem;
}

.nav-links a {
  color: var(--muted);
  font-size: 0.95rem;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
}

.footer-links a,
.signal a {
  transition: color 0.2s ease;
}

.footer-links a:hover,
.signal a:hover {
  color: var(--white);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 50px;
  padding: 0.85rem 1.35rem;
  border-radius: 999px;
  border: 1px solid transparent;
  text-transform: uppercase;
  font-size: 0.92rem;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: #062135;
  background: linear-gradient(135deg, #dff7ff, #71d0f3);
  box-shadow: 0 14px 28px rgba(105, 196, 239, 0.2);
}

.button-secondary {
  border-color: rgba(151, 176, 201, 0.3);
  background: rgba(255, 255, 255, 0.03);
}

.button-ghost {
  border-color: rgba(151, 176, 201, 0.22);
  color: var(--muted);
}

.hero {
  position: relative;
  padding: 6rem 0 3.6rem;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 78% 18%, rgba(105, 196, 239, 0.18), transparent 22%),
    linear-gradient(110deg, rgba(255, 255, 255, 0.02), transparent 45%),
    linear-gradient(180deg, rgba(3, 11, 20, 0.16), rgba(3, 11, 20, 0));
  pointer-events: none;
}

.hero-grid,
.grid-two,
.grid-three,
.service-grid,
.contact-grid,
.footer-grid {
  display: grid;
  gap: 1.5rem;
}

.hero-grid {
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-copy {
  display: grid;
  gap: 1rem;
}

.hero-title {
  max-width: 10.5ch;
}

.hero-note {
  max-width: 64ch;
}

.section-tight {
  padding-top: 0.6rem;
  padding-bottom: 1.8rem;
}

.signal-bar {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  border: 1px solid rgba(159, 233, 255, 0.14);
  border-radius: 20px;
  overflow: hidden;
  background: rgba(6, 20, 36, 0.72);
  box-shadow: var(--shadow);
}

.signal-bar span {
  padding: 1rem 1.1rem;
  color: var(--muted);
  font-size: 0.92rem;
  border-right: 1px solid rgba(159, 233, 255, 0.12);
}

.signal-bar span:last-child {
  border-right: 0;
}

.brief-list,
.matrix-list,
.detail-list {
  display: grid;
  gap: 0.85rem;
}

.brief-item,
.detail-item {
  padding: 1rem 1.1rem;
  border-radius: 18px;
  border: 1px solid rgba(159, 233, 255, 0.14);
  background: rgba(255, 255, 255, 0.03);
}

.brief-item strong,
.detail-item strong {
  display: block;
  margin-bottom: 0.3rem;
  color: var(--white);
  font-size: 0.95rem;
}

.operating-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-top: -0.8rem;
}

.band-card {
  padding: 1.15rem 1.2rem;
  border-radius: 18px;
  border: 1px solid rgba(159, 233, 255, 0.16);
  background: rgba(7, 25, 45, 0.82);
  box-shadow: var(--shadow);
}

.band-card strong {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--white);
  font-family: "Oswald", "Arial Narrow", sans-serif;
  font-size: 1.35rem;
  letter-spacing: 0.04em;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 1rem;
  color: var(--accent-strong);
  font-size: 0.9rem;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 40px;
  height: 1px;
  background: currentColor;
}

h1,
h2,
h3 {
  margin: 0 0 0.85rem;
  font-weight: 500;
  line-height: 1;
}

h1 {
  font-size: clamp(2.8rem, 7vw, 5.5rem);
}

h2 {
  font-size: clamp(2rem, 5vw, 3.2rem);
}

h3 {
  font-size: 1.4rem;
}

p {
  margin: 0 0 1rem;
  color: var(--muted);
  line-height: 1.72;
}

.lead {
  font-size: 1.08rem;
  max-width: 64ch;
}

.button-row,
.meta-row,
.trust-list,
.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.meta-row {
  margin-top: 1.6rem;
}

.meta-chip,
.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.72rem 0.95rem;
  border-radius: 999px;
  border: 1px solid rgba(159, 233, 255, 0.18);
  background: rgba(255, 255, 255, 0.035);
  color: var(--text);
  font-size: 0.9rem;
}

.panel,
.card,
.stat-card,
.contact-card,
.legal-card,
.service-card,
.timeline-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  position: relative;
}

.panel::before,
.card::before,
.stat-card::before,
.contact-card::before,
.legal-card::before,
.service-card::before,
.timeline-card::before {
  content: "";
  position: absolute;
  top: 14px;
  right: 14px;
  width: 26px;
  height: 26px;
  border-top: 1px solid rgba(159, 233, 255, 0.22);
  border-right: 1px solid rgba(159, 233, 255, 0.22);
  border-top-right-radius: 8px;
  pointer-events: none;
}

.panel {
  padding: 1.7rem;
}

.hero-panel {
  padding: 1.8rem;
  background:
    linear-gradient(180deg, rgba(105, 196, 239, 0.08), rgba(255, 255, 255, 0)),
    var(--panel);
}

.hero-panel h3 {
  margin-bottom: 1.2rem;
}

.hero-visual {
  display: grid;
  gap: 1.2rem;
  padding: 1.9rem;
  background:
    linear-gradient(180deg, rgba(105, 196, 239, 0.1), rgba(255, 255, 255, 0)),
    rgba(9, 30, 51, 0.92);
}

.hero-frame {
  display: grid;
  gap: 1.15rem;
  padding: 2rem;
  border-radius: 30px;
  border: 1px solid rgba(159, 233, 255, 0.16);
  background:
    linear-gradient(180deg, rgba(105, 196, 239, 0.12), rgba(255, 255, 255, 0.02) 28%, rgba(255, 255, 255, 0.01)),
    rgba(8, 27, 47, 0.92);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.hero-frame::before {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(159, 233, 255, 0.08);
  border-radius: 22px;
  pointer-events: none;
}

.hero-frame-head,
.hero-frame-mark,
.hero-frame-grid,
.hero-frame-note {
  position: relative;
  z-index: 1;
}

.hero-frame-label,
.manifesto-label {
  display: inline-block;
  margin-bottom: 0.4rem;
  color: var(--accent-strong);
  font-family: "Oswald", "Arial Narrow", sans-serif;
  font-size: 0.86rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-frame-head strong {
  display: block;
  max-width: 18ch;
  font-family: "Oswald", "Arial Narrow", sans-serif;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  line-height: 1.02;
  letter-spacing: 0.04em;
}

.hero-frame-mark {
  width: min(100%, 310px);
  padding: 1rem;
  border-radius: 24px;
  border: 1px solid rgba(159, 233, 255, 0.14);
  background: rgba(255, 255, 255, 0.03);
}

.hero-frame-mark-wide {
  width: 100%;
}

.hero-frame-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.hero-frame-cell {
  padding: 1rem;
  border-radius: 18px;
  border: 1px solid rgba(159, 233, 255, 0.14);
  background: rgba(255, 255, 255, 0.03);
}

.hero-frame-cell span {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--accent-strong);
  font-family: "Oswald", "Arial Narrow", sans-serif;
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-frame-cell strong {
  color: var(--white);
  font-size: 0.96rem;
  line-height: 1.45;
}

.hero-frame-note,
.manifesto-quote {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.7;
}

.hero-visual-mark {
  width: min(100%, 360px);
  margin: 0 auto;
  padding: 1.2rem;
  border-radius: 22px;
  border: 1px solid rgba(159, 233, 255, 0.16);
  background:
    linear-gradient(145deg, rgba(105, 196, 239, 0.08), rgba(255, 255, 255, 0.02)),
    rgba(255, 255, 255, 0.03);
}

.hero-visual-mark img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.hero-visual-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.hero-visual-stat {
  padding: 1rem;
  border-radius: 18px;
  border: 1px solid rgba(159, 233, 255, 0.14);
  background: rgba(255, 255, 255, 0.03);
}

.hero-visual-stat strong {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--white);
  font-family: "Oswald", "Arial Narrow", sans-serif;
  font-size: 1.6rem;
  letter-spacing: 0.05em;
}

.hero-visual-stat span,
.hero-visual-note {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

.hero-visual-note {
  margin: 0;
}

.stats-grid,
.grid-two,
.grid-three,
.service-grid,
.contact-grid,
.footer-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.stats-grid {
  display: grid;
  gap: 1rem;
}

.stat-card {
  padding: 1.2rem;
}

.stat-value {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 2rem;
  color: var(--white);
}

.section {
  padding: 2rem 0 4.6rem;
}

.section-header {
  max-width: 760px;
  margin-bottom: 1.8rem;
}

.architect-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 2rem;
  align-items: start;
}

.architect-intro {
  display: grid;
  gap: 1rem;
}

.architect-stack {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.architect-card {
  padding: 1.55rem;
  border-radius: 22px;
  border: 1px solid rgba(159, 233, 255, 0.16);
  background: rgba(8, 30, 53, 0.82);
  box-shadow: var(--shadow);
}

.architect-card-feature {
  background:
    linear-gradient(160deg, rgba(105, 196, 239, 0.15), rgba(255, 255, 255, 0.02)),
    rgba(8, 30, 53, 0.88);
}

.photo-showcase {
  display: grid;
  gap: 1.35rem;
}

.photo-showcase-copy {
  max-width: 760px;
}

.photo-feature {
  padding: 1rem;
}

.photo-grid {
  display: grid;
  gap: 1rem;
}

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

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

.photo-card {
  padding: 0.95rem;
  border-radius: 22px;
  border: 1px solid rgba(159, 233, 255, 0.16);
  background: rgba(8, 30, 53, 0.82);
  box-shadow: var(--shadow);
}

.photo-image {
  width: 100%;
  border-radius: 18px;
  border: 1px solid rgba(159, 233, 255, 0.18);
  box-shadow: 0 18px 45px rgba(2, 11, 22, 0.28);
  object-fit: cover;
  display: block;
}

.photo-image-wide {
  max-height: 520px;
}

.photo-image-tall {
  aspect-ratio: 4 / 5;
}

.photo-image-medium {
  aspect-ratio: 4 / 3;
}

.photo-caption {
  margin: 0.9rem 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.terrain-photo-card {
  padding: 0.9rem;
}

.manifesto-panel {
  padding: 1.4rem 1.5rem;
  border-left: 2px solid rgba(159, 233, 255, 0.34);
  background: rgba(255, 255, 255, 0.025);
}

.execution-frame {
  padding: 2.2rem;
  border-radius: 28px;
  border: 1px solid rgba(159, 233, 255, 0.16);
  background:
    linear-gradient(125deg, rgba(5, 16, 28, 0.72), rgba(7, 28, 49, 0.96)),
    rgba(8, 27, 47, 0.92);
  box-shadow: var(--shadow);
}

.execution-frame-copy {
  max-width: 720px;
  margin-bottom: 1.5rem;
}

.execution-frame-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.execution-list {
  display: grid;
  gap: 1rem;
}

.execution-item {
  padding: 1.2rem 1.25rem;
  border-radius: 18px;
  border: 1px solid rgba(159, 233, 255, 0.12);
  background: rgba(255, 255, 255, 0.035);
}

.execution-item strong {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--white);
  font-size: 1rem;
}

.journal-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  align-items: stretch;
}

.journal-grid .section-header {
  grid-column: 1 / -1;
  margin-bottom: 0.4rem;
}

.journal-card {
  padding: 1.55rem;
  border-radius: 22px;
  border: 1px solid rgba(159, 233, 255, 0.16);
  background: rgba(8, 30, 53, 0.82);
  box-shadow: var(--shadow);
}

.journal-card-tall {
  background:
    linear-gradient(160deg, rgba(105, 196, 239, 0.12), rgba(255, 255, 255, 0.02)),
    rgba(8, 30, 53, 0.88);
}

.terrain-panel {
  display: grid;
  gap: 1rem;
}

.terrain-map {
  min-height: 260px;
  display: grid;
  align-content: end;
  padding: 1.4rem;
  border-radius: 22px;
  border: 1px dashed rgba(159, 233, 255, 0.26);
  background:
    linear-gradient(rgba(159, 233, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(159, 233, 255, 0.04) 1px, transparent 1px),
    radial-gradient(circle at 75% 20%, rgba(105, 196, 239, 0.12), transparent 22%),
    rgba(5, 18, 32, 0.58);
  background-size: 38px 38px, 38px 38px, auto, auto;
}

.terrain-map strong {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--white);
  font-size: 1.1rem;
}

.terrain-notes {
  display: grid;
  gap: 0.9rem;
  margin-top: 1.2rem;
}

.terrain-note {
  padding: 1rem 1.05rem;
  border-left: 2px solid rgba(159, 233, 255, 0.28);
  background: rgba(255, 255, 255, 0.02);
}

.terrain-note strong {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--white);
}

.card,
.service-card,
.contact-card,
.legal-card,
.timeline-card {
  padding: 1.5rem;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.audience-card {
  padding: 1.35rem;
  border-radius: 20px;
  border: 1px solid rgba(159, 233, 255, 0.16);
  background: rgba(9, 29, 51, 0.78);
  box-shadow: var(--shadow);
  position: relative;
}

.audience-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 72px;
  height: 1px;
  background: rgba(159, 233, 255, 0.34);
}

.audience-index {
  display: inline-block;
  margin-bottom: 0.8rem;
  color: var(--accent-strong);
  font-family: "Oswald", "Arial Narrow", sans-serif;
  font-size: 0.88rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-preview-grid,
.proof-grid,
.experience-grid {
  display: grid;
  gap: 1rem;
}

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

.service-preview-card,
.proof-card,
.experience-card {
  padding: 1.45rem;
  border-radius: 20px;
  border: 1px solid rgba(159, 233, 255, 0.16);
  background: rgba(8, 30, 53, 0.82);
  box-shadow: var(--shadow);
}

.service-preview-index,
.experience-label {
  display: inline-block;
  margin-bottom: 0.8rem;
  color: var(--accent-strong);
  font-family: "Oswald", "Arial Narrow", sans-serif;
  font-size: 0.88rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

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

.matrix-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.matrix-card {
  padding: 1.45rem;
  border-radius: 20px;
  border: 1px solid rgba(159, 233, 255, 0.16);
  background: rgba(8, 30, 53, 0.82);
  box-shadow: var(--shadow);
}

.matrix-card h3 {
  margin-bottom: 0.8rem;
}

.matrix-list {
  padding-left: 1rem;
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.matrix-list li {
  margin-bottom: 0.45rem;
}

.readiness-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 1.5rem;
}

.readiness-panel {
  padding: 1.7rem;
  border-radius: 22px;
  border: 1px solid rgba(159, 233, 255, 0.16);
  background:
    linear-gradient(180deg, rgba(105, 196, 239, 0.08), rgba(255, 255, 255, 0)),
    rgba(8, 30, 53, 0.88);
  box-shadow: var(--shadow);
}

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

.detail-list-single {
  grid-template-columns: 1fr;
}

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

.card ul,
.service-card ul,
.legal-card ul {
  padding-left: 1.1rem;
  margin: 0.65rem 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.card li,
.service-card li,
.legal-card li {
  margin-bottom: 0.5rem;
}

.service-card {
  position: relative;
  overflow: hidden;
}

.service-card::after {
  content: "";
  position: absolute;
  inset: auto -15% -20% auto;
  width: 140px;
  height: 140px;
  background: radial-gradient(circle, rgba(105, 196, 239, 0.18), transparent 72%);
}

.service-index {
  color: var(--accent-strong);
  font-size: 0.95rem;
  text-transform: uppercase;
  margin-bottom: 0.7rem;
}

.cta-band {
  padding: 2rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
  background:
    linear-gradient(135deg, rgba(105, 196, 239, 0.14), rgba(255, 255, 255, 0.03)),
    var(--panel);
}

.split-highlight {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.85fr);
  gap: 1.5rem;
}

.section-split {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 1.5rem;
  align-items: start;
}

.footprint-card,
.about-preview-card {
  height: 100%;
}

.signal-list {
  display: grid;
  gap: 0.85rem;
}

.signal {
  padding: 1rem 1.1rem;
  border-radius: 18px;
  border: 1px solid rgba(151, 176, 201, 0.14);
  background: rgba(255, 255, 255, 0.03);
}

.signal strong,
.contact-label,
.footer-label {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--white);
  font-size: 0.95rem;
}

.contact-grid {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.85fr);
  align-items: start;
}

.contact-card form {
  display: grid;
  gap: 1rem;
}

.form-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

label {
  display: grid;
  gap: 0.45rem;
  color: var(--text);
  font-size: 0.95rem;
}

input,
textarea {
  width: 100%;
  padding: 0.95rem 1rem;
  border-radius: 16px;
  border: 1px solid rgba(159, 233, 255, 0.18);
  background: rgba(4, 16, 29, 0.45);
  color: var(--white);
  font: inherit;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

textarea {
  min-height: 170px;
  resize: vertical;
}

input::placeholder,
textarea::placeholder {
  color: rgba(237, 243, 248, 0.42);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px rgba(105, 196, 239, 0.18);
}

input:focus-visible,
textarea:focus-visible {
  border-color: rgba(159, 233, 255, 0.44);
  background: rgba(4, 16, 29, 0.72);
}

.fine-print,
.placeholder-note {
  font-size: 0.88rem;
  color: rgba(174, 194, 212, 0.82);
}

.placeholder-note {
  display: inline-block;
  margin-top: 0.55rem;
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  background: rgba(209, 194, 155, 0.12);
  color: var(--warning);
}

.map-block,
.image-block {
  min-height: 320px;
  display: grid;
  place-items: center;
  padding: 1.5rem;
  text-align: center;
  border-radius: var(--radius);
  border: 1px dashed rgba(159, 233, 255, 0.26);
  background:
    linear-gradient(135deg, rgba(105, 196, 239, 0.1), rgba(255, 255, 255, 0.03)),
    rgba(6, 19, 34, 0.72);
}

.map-block strong,
.image-block strong {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1.15rem;
}

.feature-logo {
  width: min(100%, 440px);
  margin: 0 auto 1rem;
  border-radius: 20px;
  border: 1px solid rgba(159, 233, 255, 0.24);
  box-shadow: 0 18px 45px rgba(2, 11, 22, 0.32);
}

.feature-logo-panel {
  width: 100%;
  max-width: none;
  margin: 1rem 0 1.15rem;
}

.footer {
  padding: 2rem 0 2.4rem;
  border-top: 1px solid var(--line);
  background: rgba(4, 14, 25, 0.72);
}

.footer-grid {
  grid-template-columns: 1.2fr repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  margin-bottom: 1.4rem;
}

.footer-label {
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.footer-links {
  display: grid;
  gap: 0.55rem;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem 1.5rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(151, 176, 201, 0.12);
  color: var(--muted);
  font-size: 0.9rem;
}

.page-hero {
  padding: 4.2rem 0 2.4rem;
}

.page-hero .lead {
  max-width: 70ch;
}

.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.8fr);
  gap: 1.8rem;
  align-items: end;
}

.page-hero-panel {
  padding: 1.7rem;
  border-radius: 24px;
  border: 1px solid rgba(159, 233, 255, 0.14);
  background:
    linear-gradient(155deg, rgba(105, 196, 239, 0.08), rgba(255, 255, 255, 0.03)),
    rgba(8, 27, 47, 0.88);
  box-shadow: var(--shadow);
}

.page-hero-panel strong {
  display: block;
  margin-bottom: 0.7rem;
  color: var(--white);
  font-family: "Oswald", "Arial Narrow", sans-serif;
  font-size: 1.8rem;
  line-height: 1.04;
  letter-spacing: 0.04em;
}

.founding-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  gap: 1.6rem;
  align-items: start;
}

.founding-panel {
  padding: 1.8rem;
  border-radius: 26px;
  border: 1px solid rgba(159, 233, 255, 0.16);
  background:
    linear-gradient(160deg, rgba(105, 196, 239, 0.1), rgba(255, 255, 255, 0.02)),
    rgba(8, 30, 53, 0.88);
  box-shadow: var(--shadow);
}

.founding-aside {
  display: grid;
  gap: 0.9rem;
}

.leadership-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
}

.leadership-profile {
  padding: 1.7rem;
  border-radius: 24px;
  border: 1px solid rgba(159, 233, 255, 0.16);
  background: rgba(8, 30, 53, 0.82);
  box-shadow: var(--shadow);
}

.principles-list {
  display: grid;
  gap: 1rem;
}

.principle-row {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
  padding: 1.35rem 1.45rem;
  border-radius: 22px;
  border: 1px solid rgba(159, 233, 255, 0.14);
  background: rgba(8, 30, 53, 0.76);
  box-shadow: var(--shadow);
}

.principle-number {
  display: inline-grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  border: 1px solid rgba(159, 233, 255, 0.18);
  background: rgba(255, 255, 255, 0.03);
  color: var(--accent-strong);
  font-family: "Oswald", "Arial Narrow", sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0.08em;
}

.stakeholder-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.stakeholder-card {
  padding: 1.2rem 1.25rem;
  border-radius: 18px;
  border: 1px solid rgba(159, 233, 255, 0.14);
  background: rgba(255, 255, 255, 0.025);
}

.stakeholder-card strong {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--white);
}

.timeline-grid {
  display: grid;
  gap: 1rem;
}

@media (max-width: 980px) {
  .hero-grid,
  .architect-grid,
  .architect-stack,
  .execution-frame-grid,
  .journal-grid,
  .signal-bar,
  .page-hero-grid,
  .founding-grid,
  .leadership-grid,
  .stakeholder-grid,
  .section-split,
  .split-highlight,
  .grid-two,
  .grid-three,
  .audience-grid,
  .service-preview-grid,
  .proof-grid,
  .experience-grid,
  .photo-grid-two,
  .photo-grid-three,
  .matrix-grid,
  .readiness-grid,
  .service-grid,
  .contact-grid,
  .footer-grid,
  .cta-band,
  .stats-grid,
  .operating-band,
  .detail-list {
    grid-template-columns: 1fr;
  }

  .nav-inner {
    align-items: start;
    flex-direction: column;
  }

  .button-row {
    width: 100%;
  }

  .button-row .button {
    flex: 1 1 220px;
  }

  .signal-bar span {
    border-right: 0;
    border-bottom: 1px solid rgba(159, 233, 255, 0.12);
  }

  .signal-bar span:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 640px) {
  .topbar-inner,
  .nav-inner,
  .section-inner,
  .footer-inner {
    width: min(var(--max-width), calc(100% - 1.2rem));
  }

  .hero {
    padding-top: 3.7rem;
  }

  .hero-visual-grid {
    grid-template-columns: 1fr;
  }

  .hero-frame-grid {
    grid-template-columns: 1fr;
  }

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

  h1 {
    line-height: 0.94;
  }

  .principle-row {
    grid-template-columns: 1fr;
  }
}

/* Industrial redesign overrides */

:root {
  --bg: #f3efe7;
  --bg-alt: #ece6db;
  --panel: #ffffff;
  --panel-strong: #ffffff;
  --line: #d9d1c3;
  --text: #17212b;
  --muted: #5d6770;
  --accent: #c98b34;
  --accent-strong: #a86e1d;
  --white: #ffffff;
  --shadow: 0 18px 40px rgba(18, 28, 36, 0.08);
  --radius: 18px;
}

body {
  color: var(--text);
  background:
    linear-gradient(180deg, #f7f4ed 0%, #f2eee6 58%, #ece6db 100%);
}

body::before,
body::after {
  display: none;
}

a {
  color: inherit;
}

.topbar {
  border-bottom: 0;
  background: #1a232c;
}

.topbar-inner {
  padding: 0.85rem 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-header {
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(23, 33, 43, 0.08);
  box-shadow: 0 8px 28px rgba(15, 23, 31, 0.05);
}

.nav-inner {
  padding: 0.9rem 0;
}

.brand-mark {
  width: 58px;
  height: 58px;
  border-radius: 12px;
  border: 1px solid rgba(23, 33, 43, 0.1);
  background: #ffffff;
  box-shadow: none;
}

.brand-mark img {
  padding: 0.25rem;
  filter: none;
}

.brand-text strong {
  color: #17212b;
  letter-spacing: 0.03em;
}

.brand-text span {
  color: #7b8289;
}

.nav-links a {
  color: #3f4750;
  font-size: 0.92rem;
  font-weight: 600;
}

.nav-links {
  gap: 0.85rem 1.2rem;
}

.nav-links .button {
  margin-left: 0.35rem;
}

.nav-links a:hover,
.nav-links a.active {
  color: #17212b;
}

.button {
  min-height: 48px;
  padding: 0.85rem 1.35rem;
  border-radius: 10px;
  font-family: "IBM Plex Sans", "Segoe UI", sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  box-shadow: none;
}

.button-primary {
  color: #ffffff;
  background: linear-gradient(135deg, #ce933f, #b87921);
  box-shadow: 0 14px 28px rgba(185, 125, 35, 0.24);
}

.button-secondary,
.button-ghost {
  color: #17212b;
  border-color: rgba(23, 33, 43, 0.14);
  background: rgba(255, 255, 255, 0.9);
}

.button-secondary:hover,
.button-ghost:hover {
  background: #ffffff;
  box-shadow: 0 12px 24px rgba(18, 28, 36, 0.08);
}

.hero,
.page-hero {
  position: relative;
  overflow: hidden;
  background-color: #1c242c;
}

.hero::before,
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(12, 18, 24, 0.82) 0%, rgba(12, 18, 24, 0.58) 42%, rgba(12, 18, 24, 0.2) 100%);
  pointer-events: none;
}

.hero-home {
  background-image: url("Images/IMG_0510.JPG");
  background-size: cover;
  background-position: center;
}

.hero-home::before {
  background:
    linear-gradient(90deg, rgba(12, 18, 24, 0.9) 0%, rgba(12, 18, 24, 0.7) 42%, rgba(12, 18, 24, 0.34) 100%);
}

.page-hero-about {
  background-image: url("Images/IMG_7868.jpeg");
  background-size: cover;
  background-position: center;
}

.page-hero-services {
  background-image: url("Images/IMG_0618.JPG");
  background-size: cover;
  background-position: center;
}

.page-hero-contact {
  background-image: url("Images/IMG_2475.JPG");
  background-size: cover;
  background-position: center;
}

.hero .section-inner,
.page-hero .section-inner {
  position: relative;
  z-index: 1;
}

.hero {
  padding: 7.25rem 0 4.5rem;
}

.page-hero {
  padding: 5.8rem 0 3.8rem;
}

.hero-copy,
.page-hero h1,
.page-hero .lead,
.hero .lead,
.hero-note,
.hero .eyebrow,
.page-hero .eyebrow {
  color: #ffffff;
}

.hero-title,
.page-hero h1 {
  max-width: 12ch;
  color: #ffffff;
  font-size: clamp(3rem, 6.8vw, 5.75rem);
  line-height: 0.92;
  letter-spacing: 0.02em;
}

.hero-note,
.hero .lead,
.page-hero .lead {
  max-width: 62ch;
  color: rgba(255, 255, 255, 0.84);
}

.hero-home .hero-title {
  color: #f0c78b;
}

.hero-home .lead,
.hero-home .hero-note {
  color: #f2e5d2;
}

.hero-home .eyebrow {
  color: #e0b36a;
}

.hero-home .meta-chip {
  color: #f4ead9;
  background: rgba(23, 33, 43, 0.48);
  border-color: rgba(240, 199, 139, 0.26);
}

.eyebrow {
  color: var(--accent);
  font-size: 0.82rem;
  letter-spacing: 0.12em;
}

.hero .eyebrow,
.page-hero .eyebrow {
  color: #f0c78b;
}

.eyebrow::before {
  width: 54px;
}

.meta-chip {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

.pill {
  border-color: rgba(23, 33, 43, 0.1);
  background: #f4ede2;
  color: #17212b;
}

.hero-frame,
.page-hero-panel {
  padding: 1.7rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 28px 50px rgba(8, 14, 19, 0.22);
}

.hero-frame::before {
  display: none;
}

.hero-frame-label,
.manifesto-label {
  color: var(--accent-strong);
}

.hero-frame-head strong,
.page-hero-panel strong,
.hero-frame-cell strong {
  color: var(--text);
}

.hero-frame-note,
.page-hero-panel p {
  color: var(--muted);
}

.hero-frame-mark,
.hero-frame-cell {
  border-color: rgba(23, 33, 43, 0.08);
  background: #f6f3ed;
}

.hero-frame-cell span {
  color: var(--accent-strong);
}

.section {
  padding: 4.8rem 0;
}

.section-tight {
  padding-top: 0;
  padding-bottom: 2.4rem;
}

.signal-bar,
.operating-band {
  position: relative;
  z-index: 3;
  margin-top: -4rem;
}

.signal-bar {
  border: 0;
  border-radius: 14px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.signal-bar span {
  color: #3f4750;
  font-size: 0.88rem;
  border-right: 1px solid rgba(23, 33, 43, 0.08);
}

.operating-band {
  gap: 1.2rem;
}

.band-card,
.panel,
.card,
.stat-card,
.contact-card,
.legal-card,
.service-card,
.timeline-card,
.architect-card,
.photo-card,
.journal-card,
.matrix-card,
.readiness-panel,
.founding-panel,
.leadership-profile,
.audience-card,
.stakeholder-card,
.detail-item,
.brief-item,
.execution-item {
  border: 1px solid rgba(23, 33, 43, 0.08);
  background: #ffffff;
  box-shadow: var(--shadow);
}

.panel::before,
.card::before,
.stat-card::before,
.contact-card::before,
.legal-card::before,
.service-card::before,
.timeline-card::before,
.audience-card::before,
.service-card::after {
  display: none;
}

.band-card strong,
h1,
h2,
h3,
.service-index,
.experience-label,
.service-preview-index,
.brand-text strong,
.hero-frame-label,
.manifesto-label,
.principle-number {
  letter-spacing: 0.02em;
}

h1,
h2,
h3 {
  color: #17212b;
}

p,
.matrix-list,
.footer-bottom,
.photo-caption,
.hero-frame-note,
.hero-visual-note,
.hero-visual-stat span,
.hero-visual-note,
.fine-print {
  color: var(--muted);
}

.photo-showcase {
  grid-template-columns: minmax(0, 0.7fr) minmax(0, 1.3fr);
  align-items: center;
  gap: 1.8rem;
}

.photo-feature,
.terrain-panel,
.about-preview-card {
  background: #ffffff;
}

.photo-image,
.feature-logo {
  border: 0;
  border-radius: 14px;
  box-shadow: 0 20px 38px rgba(17, 25, 33, 0.16);
}

.architect-card-feature,
.journal-card-tall,
.founding-panel,
.readiness-panel,
.cta-band {
  background:
    linear-gradient(180deg, rgba(201, 139, 52, 0.08), rgba(255, 255, 255, 0.94)),
    #ffffff;
}

.manifesto-panel,
.terrain-note,
.signal {
  border-left: 4px solid rgba(201, 139, 52, 0.72);
  background: #f7f3eb;
}

.execution-frame {
  padding: 2.5rem;
  border: 0;
  border-radius: 20px;
  background:
    linear-gradient(90deg, rgba(19, 27, 34, 0.96), rgba(26, 36, 44, 0.9)),
    #182128;
  box-shadow: 0 24px 50px rgba(9, 14, 19, 0.18);
}

.execution-frame h2,
.execution-frame strong,
.execution-frame .eyebrow {
  color: #ffffff;
}

.execution-frame p {
  color: rgba(255, 255, 255, 0.74);
}

.execution-item {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

.execution-item strong {
  color: #ffffff;
}

.terrain-note,
.signal,
.stakeholder-card,
.detail-item,
.brief-item {
  border-top: 1px solid rgba(23, 33, 43, 0.04);
  border-right: 1px solid rgba(23, 33, 43, 0.04);
  border-bottom: 1px solid rgba(23, 33, 43, 0.04);
}

.principle-row {
  border: 1px solid rgba(23, 33, 43, 0.08);
  background: #ffffff;
}

.principle-number {
  border: 1px solid rgba(23, 33, 43, 0.08);
  background: #f5efe5;
  color: var(--accent-strong);
}

.footer {
  border-top: 0;
  background: #192129;
}

.footer .brand-text strong,
.footer-label,
.footer-links a:hover {
  color: #ffffff;
}

.footer .brand-text span,
.footer p,
.footer-links a,
.footer-links span,
.footer-bottom {
  color: rgba(255, 255, 255, 0.68);
}

.footer-bottom {
  border-top-color: rgba(255, 255, 255, 0.1);
}

.cta-band {
  align-items: center;
}

.cta-band .button-secondary {
  background: #ffffff;
}

.button-row {
  align-items: center;
  gap: 1rem;
}

.hero .button-row .button,
.contact-card .button-row .button,
.cta-band .button {
  min-width: 210px;
}

.contact-hero-grid {
  align-items: end;
}

.contact-hero-panel {
  display: grid;
  gap: 1rem;
}

.contact-quick-list {
  display: grid;
  gap: 0.85rem;
  margin-top: 1.1rem;
}

.contact-quick-item {
  padding: 0.95rem 1rem;
  border-radius: 12px;
  border: 1px solid rgba(23, 33, 43, 0.08);
  background: #f7f3eb;
}

.contact-quick-item p {
  margin-bottom: 0;
}

.contact-hero-panel a {
  color: #8f5d12;
  text-decoration: underline;
}

.contact-label {
  color: #17212b;
}

.signal a,
.contact-card a,
.contact-quick-item a {
  color: #8f5d12;
  font-weight: 600;
  text-decoration: underline;
}

.signal a:hover,
.contact-card a:hover,
.contact-quick-item a:hover {
  color: #5f3c08;
}

.contact-band-section {
  padding-top: 0;
}

.contact-band-section .operating-band {
  margin-top: -2.75rem;
}

.contact-grid {
  align-items: stretch;
}

.contact-card {
  display: grid;
  gap: 1rem;
}

.contact-card .signal-list {
  margin-top: 0.25rem;
}

.contact-card .fine-print {
  margin-top: 0.2rem;
}

.contact-link-button {
  min-width: 0;
  min-height: 42px;
  padding: 0.75rem 1rem;
  text-decoration: none;
}

.about-values .detail-item {
  text-align: center;
}

.about-values .detail-item strong {
  margin-bottom: 0.45rem;
}

.contact-form-card {
  align-content: start;
}

.contact-form {
  display: grid;
  gap: 1rem;
  margin-top: 0.35rem;
}

.contact-form label {
  font-weight: 600;
  color: #17212b;
}

select {
  width: 100%;
  padding: 0.95rem 1rem;
  border-radius: 16px;
  border: 1px solid rgba(23, 33, 43, 0.12);
  background: #fcfbf8;
  color: var(--text);
  font: inherit;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

select:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px rgba(201, 139, 52, 0.18);
  border-color: rgba(201, 139, 52, 0.48);
  background: #ffffff;
}

.form-actions {
  display: grid;
  gap: 0.9rem;
  align-items: start;
}

.form-actions .button {
  min-width: 220px;
}

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

input,
textarea {
  border-color: rgba(23, 33, 43, 0.12);
  background: #fcfbf8;
  color: var(--text);
}

input::placeholder,
textarea::placeholder {
  color: rgba(93, 103, 112, 0.55);
}

input:focus-visible,
textarea:focus-visible,
a:focus-visible,
button:focus-visible {
  box-shadow: 0 0 0 4px rgba(201, 139, 52, 0.18);
}

input:focus-visible,
textarea:focus-visible {
  border-color: rgba(201, 139, 52, 0.48);
  background: #ffffff;
}

@media (max-width: 980px) {
  .hero {
    padding: 6rem 0 3.5rem;
  }

  .page-hero {
    padding: 5rem 0 3rem;
  }

  .signal-bar,
  .operating-band {
    margin-top: -2.2rem;
  }

  .photo-showcase {
    grid-template-columns: 1fr;
  }

  .nav-links .button {
    margin-left: 0;
  }

  .contact-band-section .operating-band {
    margin-top: -1.4rem;
  }

  .form-actions .button {
    min-width: 0;
  }
}

@media (max-width: 640px) {
  .topbar-inner {
    gap: 0.45rem 1rem;
    justify-content: flex-start;
  }

  .hero,
  .page-hero {
    background-position: center;
  }

  .hero-title,
  .page-hero h1 {
    max-width: 100%;
  }

  .button-row {
    gap: 0.75rem;
  }

  .button-row .button,
  .cta-band .button,
  .nav-links .button,
  .button {
    width: 100%;
    min-width: 0;
  }

  .contact-hero-panel {
    margin-top: 0.25rem;
  }
}
