:root {
  --navy: #0e2238;
  --slate: #294a66;
  --teal: #00a7a0;
  --aqua: #ddf4f2;
  --sand: #f4efe6;
  --white: #ffffff;
  --text: #17212b;
  --muted: #63717c;
  --line: rgba(14, 34, 56, 0.12);
  --line-strong: rgba(14, 34, 56, 0.22);
  --shadow: 0 24px 60px rgba(14, 34, 56, 0.14);
  --shadow-soft: 0 16px 38px rgba(14, 34, 56, 0.09);
  --radius: 6px;
  --container: min(1180px, calc(100vw - 32px));
  --header-height: 84px;
}

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

html {
  scroll-padding-top: 108px;
}

@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}

body {
  margin: 0;
  min-width: 320px;
  font-family: Inter, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  line-height: 1.65;
  color: var(--text);
  background: var(--sand);
  overflow-x: clip;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(14, 34, 56, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(14, 34, 56, 0.025) 1px, transparent 1px);
  background-size: 48px 48px;
  opacity: 0.6;
  pointer-events: none;
  z-index: -2;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

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

p,
ul,
ol {
  margin: 0;
}

ul,
ol {
  padding: 0;
}

li {
  list-style: none;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  line-height: 1.06;
  letter-spacing: 0;
}

h1,
.display-title {
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 700;
}

h2 {
  font-size: clamp(2.2rem, 4vw, 3.75rem);
  font-weight: 700;
}

h3 {
  font-size: clamp(1.35rem, 2vw, 1.7rem);
  font-weight: 650;
}

.text-large {
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  line-height: 1.8;
}

.text-small {
  font-size: 0.95rem;
}

.muted {
  color: var(--muted);
}

.visually-hidden,
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: 1rem;
  transform: translateY(-180%);
  padding: 0.85rem 1rem;
  border-radius: var(--radius);
  background: var(--teal);
  color: var(--white);
  z-index: 1000;
}

.skip-link:focus {
  transform: translateY(0);
}

:focus-visible {
  outline: 3px solid var(--teal);
  outline-offset: 3px;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.section {
  position: relative;
  padding: clamp(4.75rem, 7vw, 7.25rem) 0;
}

.section-band {
  background: rgba(255, 255, 255, 0.65);
}

.section-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(221, 244, 242, 0.12)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.42), rgba(255, 255, 255, 0.12));
  z-index: -1;
}

.section-angle-top::after,
.footer-shell::before,
.hero::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 72px;
  pointer-events: none;
}

.section-angle-top::after {
  top: -71px;
  background: linear-gradient(175deg, transparent 49%, rgba(255, 255, 255, 0.78) 50%);
}

.section-heading {
  display: grid;
  gap: 1rem;
  margin-bottom: 2.5rem;
  max-width: 42rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--slate);
  text-transform: uppercase;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.eyebrow::before {
  content: "";
  width: 44px;
  height: 1px;
  background: var(--teal);
}

.top-strip {
  background: var(--navy);
  color: var(--white);
  font-size: 0.9rem;
}

.top-strip-inner {
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.55rem 0;
}

.top-strip-copy {
  font-weight: 500;
}

.top-strip-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 1.25rem;
}

.top-strip-links a {
  color: rgba(255, 255, 255, 0.9);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(244, 239, 230, 0.94);
  border-bottom: 1px solid rgba(14, 34, 56, 0.08);
  backdrop-filter: blur(14px);
}

.site-header::after {
  content: "";
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 167, 160, 0.4), transparent);
}

.nav-bar {
  min-height: var(--header-height);
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 1.5rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.95rem;
  min-width: 0;
}

.brand-mark {
  width: clamp(132px, 14vw, 160px);
  height: clamp(72px, 7vw, 84px);
  flex: 0 0 auto;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(14, 34, 56, 0.1);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.78);
  transform-origin: center;
}

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

.brand-text strong {
  display: none;
}

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

.nav-links {
  display: flex;
  justify-content: center;
  gap: clamp(1rem, 1.8vw, 1.5rem);
  font-size: 0.95rem;
  font-weight: 600;
}

.nav-links a {
  color: var(--slate);
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.45rem;
  width: 100%;
  height: 2px;
  background: var(--teal);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.2s ease;
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  transform: scaleX(1);
}

.menu-button {
  display: none;
  place-items: center;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--navy);
  background: var(--white);
}

.menu-button svg,
.icon-inline {
  width: 20px;
  height: 20px;
}

.menu-button .icon-close {
  display: none;
}

body.menu-open .menu-button .icon-menu {
  display: none;
}

body.menu-open .menu-button .icon-close {
  display: block;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  min-height: 52px;
  padding: 0.95rem 1.3rem;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 700;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease,
    background-color 0.2s ease,
    color 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--teal);
  color: var(--white);
  box-shadow: 0 14px 32px rgba(0, 167, 160, 0.22);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: #00918b;
}

.btn-secondary {
  background: transparent;
  border-color: var(--line-strong);
  color: var(--navy);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  border-color: rgba(0, 167, 160, 0.5);
  background: rgba(255, 255, 255, 0.6);
}

.btn-light {
  background: var(--white);
  color: var(--navy);
}

.mobile-panel {
  display: none;
  padding-bottom: 1rem;
}

.mobile-panel nav {
  display: grid;
  gap: 0.35rem;
  padding: 1rem;
  border: 1px solid rgba(14, 34, 56, 0.08);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-soft);
}

.mobile-panel a {
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(14, 34, 56, 0.08);
  color: var(--slate);
  font-weight: 600;
}

.mobile-panel a:last-child {
  border-bottom: 0;
}

.hero {
  overflow: clip;
  padding-top: clamp(3.25rem, 5vw, 5rem);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(244, 239, 230, 0.95)),
    linear-gradient(140deg, rgba(221, 244, 242, 0.8), transparent 42%);
}

.hero::after {
  bottom: 0;
  background: linear-gradient(184deg, transparent 50%, rgba(255, 255, 255, 0.82) 51%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(0, 0.94fr);
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: center;
}

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

.hero-copy p {
  max-width: 38rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 0.5rem;
}

.hero-media {
  position: relative;
  isolation: isolate;
}

.hero-frame {
  position: relative;
  min-height: 560px;
  background: var(--white);
  border: 1px solid rgba(14, 34, 56, 0.08);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(145deg, rgba(14, 34, 56, 0.36), rgba(14, 34, 56, 0) 38%),
    linear-gradient(135deg, rgba(0, 167, 160, 0.18), rgba(0, 167, 160, 0) 54%);
  z-index: 1;
  pointer-events: none;
}

.hero-frame::after {
  content: "";
  position: absolute;
  inset: auto 0 0 auto;
  width: 48%;
  aspect-ratio: 1;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0) 0 30%, rgba(0, 167, 160, 0.16) 30% 31%, transparent 31% 100%),
    linear-gradient(315deg, rgba(255, 255, 255, 0) 0 58%, rgba(14, 34, 56, 0.24) 58% 59%, transparent 59% 100%);
  z-index: 1;
  pointer-events: none;
}

.hero-frame img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
  object-position: center;
}

.vertex-overlay {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  width: min(160px, 26%);
  padding: 0.9rem;
  background: rgba(14, 34, 56, 0.7);
  border: 1px solid rgba(221, 244, 242, 0.2);
  border-radius: var(--radius);
  backdrop-filter: blur(8px);
  z-index: 2;
}

.vertex-overlay svg {
  width: 100%;
  height: auto;
}

.hero-facts {
  position: absolute;
  left: -1.75rem;
  bottom: 1.75rem;
  z-index: 2;
  width: min(320px, calc(100% - 2rem));
  padding: 1.4rem 1.25rem;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(14, 34, 56, 0.1);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.hero-facts strong {
  display: block;
  margin-bottom: 0.9rem;
  font-size: 0.88rem;
  color: var(--slate);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.hero-facts ul {
  display: grid;
  gap: 0.8rem;
}

.hero-facts li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 600;
}

.hero-facts li::before {
  content: "";
  width: 10px;
  height: 10px;
  border: 1px solid var(--teal);
  background: var(--aqua);
}

.intro-grid,
.about-grid,
.area-grid,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(2rem, 4vw, 4rem);
  align-items: start;
}

.callout-panel,
.diagram-panel,
.detail-panel,
.service-panel,
.contact-panel,
.policy-card,
.not-found-card {
  position: relative;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(14, 34, 56, 0.08);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.callout-panel,
.diagram-panel,
.detail-panel,
.service-panel,
.contact-panel {
  padding: clamp(1.4rem, 2vw, 1.8rem);
}

.tech-copy {
  display: grid;
  gap: 1.2rem;
}

.tech-copy .callout-panel {
  border-left: 4px solid var(--teal);
}

.diagram-panel {
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(221, 244, 242, 0.22));
}

.diagram-panel svg {
  width: 100%;
  height: auto;
}

.diagram-legend {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem 1rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(14, 34, 56, 0.08);
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.95rem;
  color: var(--slate);
}

.legend-item svg {
  width: 18px;
  height: 18px;
  color: var(--teal);
}

.assessment-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(2rem, 4vw, 4rem);
}

.assessment-summary {
  position: sticky;
  top: calc(var(--header-height) + 2rem);
  display: grid;
  gap: 1.4rem;
}

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

.assessment-item {
  min-height: 146px;
  padding: 1.2rem;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(14, 34, 56, 0.08);
  border-left: 3px solid var(--teal);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  display: grid;
  gap: 0.85rem;
  align-content: start;
}

.assessment-item svg,
.expertise-icon svg,
.feature-icon svg {
  width: 20px;
  height: 20px;
}

.feature-icon {
  width: 40px;
  height: 40px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(0, 167, 160, 0.24);
  color: var(--teal);
  background: rgba(221, 244, 242, 0.74);
}

.assessment-item h3,
.expertise-item h3 {
  font-size: 1.15rem;
}

.section-note {
  padding: 1.15rem 1.2rem;
  border-left: 4px solid var(--navy);
  background: rgba(14, 34, 56, 0.05);
  color: var(--slate);
}

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

.expertise-item {
  min-height: 236px;
  padding: 1.35rem;
  display: grid;
  gap: 1rem;
  align-content: start;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(14, 34, 56, 0.08);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
}

.expertise-item::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 72px;
  height: 72px;
  background:
    linear-gradient(135deg, transparent 0 44%, rgba(0, 167, 160, 0.08) 44% 47%, transparent 47% 100%);
  pointer-events: none;
}

.expertise-icon {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  border-bottom: 2px solid var(--teal);
  color: var(--navy);
}

.expertise-item:nth-child(1),
.expertise-item:nth-child(4),
.expertise-item:nth-child(6),
.expertise-item:nth-child(7) {
  grid-column: span 5;
}

.expertise-item:nth-child(2),
.expertise-item:nth-child(3),
.expertise-item:nth-child(5),
.expertise-item:nth-child(8) {
  grid-column: span 7;
}

.expertise-item:nth-child(2),
.expertise-item:nth-child(5),
.expertise-item:nth-child(8) {
  margin-top: 2.4rem;
}

.process-section {
  background: var(--navy);
  color: var(--white);
}

.process-section .eyebrow,
.process-section .section-heading p {
  color: rgba(255, 255, 255, 0.78);
}

.process-section .eyebrow::before {
  background: var(--teal);
}

.process-track {
  position: relative;
  display: grid;
  gap: 1.4rem;
  padding: 0.5rem 0;
}

.process-track::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  background:
    linear-gradient(180deg, rgba(221, 244, 242, 0.1), rgba(221, 244, 242, 0.45), rgba(221, 244, 242, 0.1));
}

.process-step {
  width: calc(50% - 1.4rem);
  padding: 1.45rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(221, 244, 242, 0.12);
  border-radius: var(--radius);
  backdrop-filter: blur(6px);
  position: relative;
  display: grid;
  gap: 0.85rem;
}

.process-step:nth-child(odd) {
  justify-self: start;
}

.process-step:nth-child(even) {
  justify-self: end;
}

.process-step::before {
  content: "";
  position: absolute;
  top: 1.6rem;
  width: 16px;
  height: 16px;
  background: var(--teal);
  border: 4px solid rgba(14, 34, 56, 0.9);
  box-shadow: 0 0 0 1px rgba(221, 244, 242, 0.26);
}

.process-step:nth-child(odd)::before {
  right: -1.95rem;
}

.process-step:nth-child(even)::before {
  left: -1.95rem;
}

.process-step-number {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(221, 244, 242, 0.72);
}

.performance-wrap {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.performance-graphic {
  position: relative;
  min-height: 520px;
  padding: 1.5rem;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.96), rgba(221, 244, 242, 0.42));
}

.performance-center {
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  width: min(220px, 54vw);
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid rgba(14, 34, 56, 0.1);
  background: var(--white);
  box-shadow: var(--shadow-soft);
  display: grid;
  place-items: center;
  text-align: center;
  padding: 1.25rem;
}

.performance-center::before,
.performance-center::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(14, 34, 56, 0.09);
}

.performance-center::before {
  inset: -42px;
}

.performance-center::after {
  inset: -92px;
}

.performance-chip {
  position: absolute;
  max-width: 150px;
  padding: 0.85rem 0.95rem;
  background: rgba(14, 34, 56, 0.94);
  color: var(--white);
  border-radius: var(--radius);
  font-size: 0.92rem;
  line-height: 1.4;
  box-shadow: var(--shadow-soft);
}

.performance-chip::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 3px;
  background: var(--teal);
}

.performance-chip:nth-child(2) {
  top: 1.25rem;
  left: 16%;
}

.performance-chip:nth-child(3) {
  top: 15%;
  right: 0;
}

.performance-chip:nth-child(4) {
  top: 40%;
  right: -0.6rem;
}

.performance-chip:nth-child(5) {
  bottom: 14%;
  right: 7%;
}

.performance-chip:nth-child(6) {
  bottom: 0;
  left: 20%;
}

.performance-chip:nth-child(7) {
  bottom: 22%;
  left: -0.5rem;
}

.performance-chip:nth-child(8) {
  top: 33%;
  left: 0;
}

.performance-chip:nth-child(9) {
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.disclaimer-box {
  margin-top: 1.6rem;
  padding: 1.35rem;
  background: rgba(14, 34, 56, 0.06);
  border-left: 4px solid var(--teal);
}

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

.about-copy {
  display: grid;
  gap: 1.15rem;
}

.compliance-notice {
  padding: 1.3rem;
  background: rgba(0, 167, 160, 0.08);
  border: 1px solid rgba(0, 167, 160, 0.16);
  border-radius: var(--radius);
}

.company-rail {
  display: grid;
  gap: 1rem;
  align-content: start;
}

.company-rail-item {
  display: grid;
  gap: 0.3rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(14, 34, 56, 0.08);
}

.company-rail-item:last-child {
  border-bottom: 0;
}

.service-panel {
  display: grid;
  gap: 1.4rem;
}

.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.service-list li {
  padding: 0.72rem 0.95rem;
  border: 1px solid rgba(14, 34, 56, 0.1);
  border-left: 3px solid var(--teal);
  background: rgba(255, 255, 255, 0.86);
  font-weight: 600;
}

.service-map {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(221, 244, 242, 0.26));
}

.service-map svg {
  width: 100%;
  height: auto;
}

.faq-shell {
  display: grid;
  gap: 0.85rem;
}

.faq-item {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(14, 34, 56, 0.08);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.faq-trigger {
  width: 100%;
  padding: 1.1rem 1.2rem;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  align-items: center;
  border: 0;
  background: transparent;
  color: var(--text);
  text-align: left;
  font-weight: 650;
}

.faq-trigger svg {
  width: 18px;
  height: 18px;
  color: var(--teal);
  transition: transform 0.2s ease;
}

.faq-trigger[aria-expanded="true"] svg {
  transform: rotate(180deg);
}

.faq-panel {
  padding: 0 1.2rem 1.2rem;
  color: var(--muted);
}

.contact-panel {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(221, 244, 242, 0.18));
}

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

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

.form-field {
  display: grid;
  gap: 0.45rem;
}

.form-field label {
  font-size: 0.92rem;
  font-weight: 650;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 0.92rem 0.95rem;
  border: 1px solid rgba(14, 34, 56, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  color: var(--text);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.form-field input:hover,
.form-field select:hover,
.form-field textarea:hover {
  border-color: rgba(41, 74, 102, 0.35);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: rgba(0, 167, 160, 0.6);
  box-shadow: 0 0 0 3px rgba(0, 167, 160, 0.16);
  outline: none;
  background: var(--white);
}

.full-width {
  grid-column: 1 / -1;
}

.checkbox-field {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.8rem;
  align-items: start;
  padding: 0.15rem 0;
}

.checkbox-field input {
  width: 18px;
  height: 18px;
  margin-top: 0.2rem;
}

.checkbox-field label {
  font-size: 0.92rem;
  line-height: 1.6;
}

.status-message {
  min-height: 1.6rem;
  font-size: 0.94rem;
}

.status-message[data-state="error"] {
  color: #8a1f1f;
}

.status-message[data-state="success"] {
  color: #11655f;
}

.status-message[data-state="info"] {
  color: var(--slate);
}

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

.detail-row {
  display: grid;
  gap: 0.3rem;
  padding: 0.95rem 0;
  border-bottom: 1px solid rgba(14, 34, 56, 0.08);
}

.detail-row:last-child {
  border-bottom: 0;
}

.detail-row strong {
  font-size: 0.88rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--slate);
}

.detail-row a {
  width: fit-content;
}

.detail-row a:hover {
  color: var(--teal);
}

.footer-shell {
  position: relative;
  background: var(--navy);
  color: rgba(255, 255, 255, 0.86);
  padding-top: 5.5rem;
  margin-top: 2rem;
}

.footer-shell::before {
  top: 0;
  background: linear-gradient(176deg, var(--sand) 50%, transparent 51%);
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr) minmax(0, 0.8fr);
  gap: 2rem;
  padding-bottom: 2rem;
}

.footer-brand {
  display: grid;
  gap: 1rem;
}

.footer-brand .brand {
  align-items: center;
}

.footer-brand .brand-mark {
  width: 176px;
  height: 92px;
  border-color: rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.95);
}

.footer-brand .brand-mark img {
  transform: scale(1.58);
}

.footer-brand .brand-text span {
  color: rgba(255, 255, 255, 0.62);
}

.footer-heading {
  margin-bottom: 0.9rem;
  color: var(--white);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.footer-links,
.footer-details {
  display: grid;
  gap: 0.8rem;
}

.footer-links a:hover,
.footer-details a:hover,
.footer-bottom a:hover {
  color: var(--aqua);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 0 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.68);
}

.back-to-top {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  width: 52px;
  height: 52px;
  border: 0;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  display: inline-grid;
  place-items: center;
  box-shadow: 0 14px 28px rgba(14, 34, 56, 0.3);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  z-index: 80;
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top svg {
  width: 20px;
  height: 20px;
}

.page-hero {
  padding: 3.5rem 0 2.5rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(221, 244, 242, 0.3)),
    linear-gradient(145deg, rgba(14, 34, 56, 0.02), transparent 36%);
}

.page-hero-grid {
  display: grid;
  gap: 1.2rem;
}

.page-hero-grid p {
  max-width: 48rem;
}

.policy-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(0, 1.3fr);
  gap: 2rem;
  align-items: start;
}

.policy-sidebar {
  position: sticky;
  top: calc(var(--header-height) + 2rem);
}

.policy-card,
.not-found-card {
  padding: clamp(1.5rem, 2vw, 2rem);
}

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

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

.policy-links a {
  color: var(--slate);
  font-weight: 600;
}

.policy-links a:hover {
  color: var(--teal);
}

.policy-content {
  display: grid;
  gap: 1.75rem;
  padding: clamp(1.6rem, 2vw, 2rem);
}

.policy-content section {
  display: grid;
  gap: 0.9rem;
}

.policy-content h2 {
  font-size: clamp(1.45rem, 2vw, 1.9rem);
}

.policy-content ul {
  display: grid;
  gap: 0.65rem;
}

.policy-content li {
  position: relative;
  padding-left: 1.05rem;
  color: var(--muted);
}

.policy-content li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72rem;
  width: 0.4rem;
  height: 0.4rem;
  background: var(--teal);
}

.policy-meta {
  color: var(--muted);
  font-size: 0.95rem;
}

.policy-contact-box {
  padding: 1.2rem;
  border-left: 4px solid var(--teal);
  background: rgba(14, 34, 56, 0.05);
}

.not-found-wrap {
  min-height: calc(100vh - 180px);
  display: grid;
  place-items: center;
  padding: 3rem 0 4rem;
}

.not-found-card {
  width: min(720px, 100%);
  text-align: left;
  display: grid;
  gap: 1.2rem;
}

.not-found-code {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--slate);
}

.utility-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.reveal {
  opacity: 1;
  transform: none;
}

html.js-motion .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

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

@media (prefers-reduced-motion: reduce) {
  html.js-motion .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .btn,
  .faq-trigger svg,
  .back-to-top,
  .nav-links a::after {
    transition: none;
  }
}

@media (max-width: 1180px) {
  .hero-frame,
  .hero-frame img {
    min-height: 500px;
  }

  .performance-graphic {
    min-height: 560px;
  }
}

@media (max-width: 1024px) {
  .nav-bar {
    grid-template-columns: auto 1fr auto;
  }

  .nav-links,
  .nav-bar > .btn {
    display: none;
  }

  .menu-button {
    display: inline-grid;
  }

  body.menu-open .mobile-panel {
    display: block;
  }

  .hero-grid,
  .intro-grid,
  .about-grid,
  .area-grid,
  .contact-grid,
  .performance-wrap,
  .assessment-shell,
  .policy-layout {
    grid-template-columns: 1fr;
  }

  .hero-media {
    order: -1;
  }

  .hero-frame,
  .hero-frame img {
    min-height: 440px;
  }

  .hero-facts {
    left: 1rem;
    bottom: 1rem;
  }

  .assessment-summary,
  .policy-sidebar {
    position: static;
  }

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

  .site-footer {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 820px) {
  .top-strip-inner,
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .top-strip-links {
    justify-content: flex-start;
  }

  .expertise-grid,
  .assessment-board,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .expertise-item,
  .expertise-item:nth-child(1),
  .expertise-item:nth-child(2),
  .expertise-item:nth-child(3),
  .expertise-item:nth-child(4),
  .expertise-item:nth-child(5),
  .expertise-item:nth-child(6),
  .expertise-item:nth-child(7),
  .expertise-item:nth-child(8) {
    grid-column: auto;
    margin-top: 0;
    min-height: auto;
  }

  .process-track::before {
    left: 14px;
  }

  .process-step,
  .process-step:nth-child(odd),
  .process-step:nth-child(even) {
    width: calc(100% - 2rem);
    justify-self: end;
  }

  .process-step::before,
  .process-step:nth-child(odd)::before,
  .process-step:nth-child(even)::before {
    left: -1.45rem;
    right: auto;
  }

  .performance-graphic {
    min-height: 660px;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  :root {
    --container: min(1180px, calc(100vw - 24px));
  }

  .hero-actions,
  .utility-row {
    flex-direction: column;
  }

  .btn,
  .hero-actions .btn {
    width: 100%;
  }

  .hero-frame,
  .hero-frame img {
    min-height: 360px;
  }

  .vertex-overlay {
    width: 120px;
    top: 0.85rem;
    right: 0.85rem;
  }

  .hero-facts {
    position: static;
    width: 100%;
    margin-top: 1rem;
  }

  .diagram-legend,
  .assessment-board {
    grid-template-columns: 1fr;
  }

  .performance-graphic {
    min-height: 760px;
    padding: 1rem;
  }

  .performance-center {
    width: min(200px, 62vw);
  }

  .performance-chip {
    max-width: 132px;
    padding: 0.72rem 0.8rem;
    font-size: 0.86rem;
  }

  .performance-chip:nth-child(2) {
    top: 1rem;
    left: 3%;
  }

  .performance-chip:nth-child(3) {
    top: 12%;
    right: 0;
  }

  .performance-chip:nth-child(4) {
    top: 39%;
    right: 0;
  }

  .performance-chip:nth-child(5) {
    bottom: 16%;
    right: 4%;
  }

  .performance-chip:nth-child(6) {
    bottom: 1%;
    left: 22%;
  }

  .performance-chip:nth-child(7) {
    bottom: 23%;
    left: 0;
  }

  .performance-chip:nth-child(8) {
    top: 42%;
    left: 0;
  }

  .performance-chip:nth-child(9) {
    top: 0;
    left: 54%;
  }

  .footer-shell {
    padding-top: 4.5rem;
  }
}
