:root {
  --bg: #06142a;
  --bg-elevated: rgba(7, 28, 58, 0.84);
  --panel: rgba(13, 44, 92, 0.34);
  --panel-strong: rgba(255, 120, 20, 0.14);
  --panel-border: rgba(112, 170, 255, 0.2);
  --text: #f4f7fb;
  --muted: #b7c6dc;
  --accent: #ff7416;
  --accent-strong: #ff9736;
  --accent-soft: #ffb36a;
  --brand-blue: #175ab3;
  --brand-blue-deep: #0a2d61;
  --ink: #091120;
  --success: #90f0c0;
  --shadow-lg: 0 32px 80px rgba(0, 0, 0, 0.28);
  --shadow-md: 0 22px 56px rgba(0, 0, 0, 0.2);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --container: 1180px;
  --header-height: 88px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(255, 116, 22, 0.24), transparent 24%),
    radial-gradient(circle at 85% 12%, rgba(23, 90, 179, 0.36), transparent 28%),
    radial-gradient(circle at 50% 100%, rgba(10, 45, 97, 0.36), transparent 30%),
    linear-gradient(180deg, #06142a 0%, #0a2348 42%, #08162b 100%);
  color: var(--text);
  font-family: "Manrope", "Segoe UI", sans-serif;
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
  -webkit-user-drag: none;
  user-select: none;
}

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

body[data-protect-site="true"] img,
body[data-protect-site="true"] .brand,
body[data-protect-site="true"] .footer-brand {
  -webkit-user-select: none;
  user-select: none;
}

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

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

.site-shell::before,
.site-shell::after {
  content: "";
  position: fixed;
  inset: auto;
  pointer-events: none;
  z-index: 0;
  filter: blur(18px);
}

.site-shell::before {
  top: 120px;
  left: -120px;
  width: 320px;
  height: 320px;
  border-radius: 999px;
  background: rgba(255, 116, 22, 0.22);
}

.site-shell::after {
  right: -80px;
  bottom: 120px;
  width: 240px;
  height: 240px;
  border-radius: 999px;
  background: rgba(23, 90, 179, 0.24);
}

.protection-toast {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 50;
  max-width: 320px;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(112, 170, 255, 0.2);
  border-radius: 16px;
  background: rgba(6, 20, 42, 0.92);
  color: #eef4ff;
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(14px);
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
}

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

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.section {
  padding: 6.5rem 0;
}

.section-tight {
  padding-top: 4rem;
}

.section-accent {
  position: relative;
}

.section-accent::before,
.section-dark::before {
  content: "";
  position: absolute;
  inset: 24px 1rem;
  border-radius: 36px;
  background: linear-gradient(145deg, rgba(23, 90, 179, 0.16), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(112, 170, 255, 0.15);
  z-index: 0;
}

.section-dark::before {
  background: linear-gradient(160deg, rgba(23, 90, 179, 0.14), rgba(255, 116, 22, 0.12));
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(5, 17, 36, 0.48);
  border-bottom: 1px solid rgba(112, 170, 255, 0.12);
  transition: background-color 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.site-header.is-scrolled {
  background: rgba(5, 17, 36, 0.9);
  border-color: rgba(112, 170, 255, 0.2);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
}

.nav-bar {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

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

.brand-mark,
.footer-logo {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  object-fit: cover;
  box-shadow: var(--shadow-md);
}

.brand-copy {
  display: grid;
  gap: 0.1rem;
}

.brand-name {
  font-size: 0.98rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand-tag {
  color: var(--muted);
  font-size: 0.85rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.35rem;
}

.site-nav a {
  color: var(--muted);
  font-size: 0.95rem;
  transition: color 180ms ease, transform 180ms ease;
}

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

.nav-cta {
  color: var(--brand-blue-deep);
  margin-left: 0.25rem;
}

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

.menu-toggle {
  display: none;
  width: 52px;
  height: 52px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.3rem;
}

.menu-toggle span {
  width: 19px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

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

.hero {
  padding-top: 4.75rem;
  padding-bottom: 5rem;
}

.hero-grid,
.split-layout,
.contact-grid,
.footer-layout {
  display: grid;
  gap: 2rem;
}

.hero-grid {
  grid-template-columns: minmax(0, 1.1fr) minmax(340px, 0.9fr);
  align-items: center;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--accent-soft);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.eyebrow-copy {
  margin: 0 0 1rem;
  color: var(--accent-soft);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  text-align: center;
}

.eyebrow-dark {
  margin: 0 0 1rem;
  color: var(--accent-strong);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p,
ul,
ol {
  margin: 0;
}

h1,
h2,
h3 {
  line-height: 1.02;
}

h1,
h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  letter-spacing: -0.02em;
}

h1 {
  max-width: 12ch;
  font-size: clamp(3.6rem, 6vw, 6.4rem);
}

h2 {
  font-size: clamp(2.3rem, 4vw, 4.1rem);
  max-width: 50ch;
}

h2.c {
  font-size: clamp(2.3rem, 4vw, 4.1rem);
  max-width: 50ch;
  text-align: center;
  justify-content: center;
  align-items: center;
}

h3 {
  font-size: 1.35rem;
  font-weight: 700;
}

.hero-text,
.lead,
.section-heading p:last-child,
.split-copy p:not(.eyebrow),
.contact-copy p,
.footer-copy,
.footer-meta p {
  color: var(--muted);
  font-size: 1.02rem;
}

.section-copy {
  color: var(--muted);
  font-size: 1.02rem;
  text-align: center;
}

.hero-text {
  max-width: 58ch;
  margin-top: 1.35rem;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.9rem 1.35rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

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

.button-primary {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-strong) 100%);
  color: #fff6ed;
  box-shadow: 0 18px 30px rgba(255, 116, 22, 0.3);
}

.button-secondary {
  border-color: rgba(112, 170, 255, 0.2);
  background: rgba(18, 69, 140, 0.16);
  color: var(--text);
}

.hero-points {
  list-style: none;
  padding: 0;
  margin-top: 1.75rem;
  display: grid;
  gap: 0.75rem;
}

.hero-points li,
.detail-list li {
  position: relative;
  padding-left: 1.3rem;
  color: var(--muted);
}

.hero-points li::before,
.detail-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7rem;
  width: 0.52rem;
  height: 0.52rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-soft));
  box-shadow: 0 0 0 4px rgba(255, 116, 22, 0.16);
}

.hero-visual {
  display: grid;
  gap: 1.25rem;
}

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

.presence-card {
  padding: 1rem 1.05rem;
  border-radius: var(--radius-md);
  background:
    linear-gradient(180deg, rgba(23, 90, 179, 0.16), rgba(255, 116, 22, 0.06)),
    rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(112, 170, 255, 0.18);
  box-shadow: var(--shadow-md);
}

.presence-label {
  display: inline-block;
  margin-bottom: 0.55rem;
  color: var(--accent-soft);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.presence-card p + p {
  margin-top: 0.25rem;
}

.hero-card,
.feature-card,
.statement-card,
.metric-panel,
.form-panel,
.contact-card,
.sector-card {
  background: var(--panel);
  border: 1px solid var(--panel-border);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(14px);
}

.hero-image-card,
.feature-card,
.statement-card,
.metric-panel,
.form-panel {
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.hero-image-card {
  position: relative;
  min-height: 540px;
}

.hero-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-image-overlay {
  position: absolute;
  inset: auto 1.25rem 1.25rem;
  padding: 1.4rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(360deg, rgba(7, 24, 49, 0.18), rgba(7, 24, 49, 0.82));
}

.hero-image-title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.05;
}

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

.stat-card {
  padding: 1.2rem 1rem;
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, rgba(12, 49, 101, 0.38), rgba(255, 116, 22, 0.08));
  border: 1px solid rgba(112, 170, 255, 0.18);
  text-align: center;
}

.stat-value {
  display: block;
  color: var(--accent-soft);
  font-size: 1.7rem;
  font-weight: 800;
}

.stat-label {
  display: block;
  margin-top: 0.45rem;
  color: var(--muted);
  font-size: 0.84rem;
}

.section-heading {
  display: grid;
  gap: 1rem;
  margin-bottom: 2.3rem;
}

.about-grid,
.statement-grid,
.sector-grid,
.metrics-grid,
.contact-cards {
  display: grid;
  gap: 1.3rem;
}

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

.feature-card,
.statement-card {
  padding: 1rem 1rem 1.4rem;
}

.statement-card {
  padding: 0;
  background: linear-gradient(180deg, rgba(11, 40, 83, 0.68), rgba(7, 22, 45, 0.96));
  border: 1px solid rgba(112, 170, 255, 0.22);
}

.card-image {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: calc(var(--radius-xl) - 10px);
  margin-bottom: 1.15rem;
}

.statement-card .card-image {
  height: 220px;
  margin-bottom: 0;
  border-radius: 0;
}

.feature-card p,
.statement-card p,
.sector-card span,
.contact-label {
  color: var(--muted);
}

.feature-card h3,
.statement-card h3,
.metric-panel h2 {
  margin-bottom: 0.85rem;
}

.statement-content {
  position: relative;
  display: grid;
  gap: 0.75rem;
  padding: 1.4rem 1.35rem 1.5rem;
}

.statement-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 1.35rem;
  width: 72px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--accent-soft));
  transform: translateY(-1px);
}

.statement-index {
  color: rgba(255, 179, 106, 0.9);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.statement-kicker {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 0.38rem 0.7rem;
  border-radius: 999px;
  background: rgba(23, 90, 179, 0.22);
  border: 1px solid rgba(112, 170, 255, 0.2);
  color: #dce9ff;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.statement-card h3 {
  margin-bottom: 0;
  color: var(--text);
  font-size: 1.75rem;
  line-height: 1.05;
}

.statement-card p {
  color: rgba(244, 247, 251, 0.82);
  font-size: 1rem;
  line-height: 1.72;
  max-width: 34ch;
}

.split-layout {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
}

.split-layout-reverse .split-media {
  order: 1;
}

.split-layout-reverse .split-copy {
  order: 2;
}

.detail-list {
  display: grid;
  gap: 1rem;
  margin-top: 1.75rem;
  padding: 0;
  list-style: none;
}

.detail-list-bullets li::before {
  top: 0.72rem;
}

.panel-image {
  width: 100%;
  min-height: 420px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

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

.sector-card {
  min-height: 340px;
  border-radius: 28px;
  display: grid;
  align-items: stretch;
  position: relative;
  overflow: hidden;
}

.sector-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sector-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 24, 49, 0.04) 0%, rgba(7, 24, 49, 0.26) 34%, rgba(7, 24, 49, 0.96) 100%),
    linear-gradient(135deg, rgba(255, 116, 22, 0.16), rgba(23, 90, 179, 0.18));
}

.sector-content {
  position: relative;
  z-index: 1;
  align-self: end;
  display: grid;
  gap: 0.85rem;
  margin: auto 1rem 1rem;
  padding: 1rem 1rem 1.1rem;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(7, 24, 49, 0.22), rgba(7, 24, 49, 0.84));
  border: 1px solid rgba(112, 170, 255, 0.14);
  backdrop-filter: blur(10px);
}

.sector-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
}

.sector-order {
  color: rgba(255, 179, 106, 0.92);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.sector-kicker {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 0.34rem 0.68rem;
  border-radius: 999px;
  background: rgba(23, 90, 179, 0.24);
  border: 1px solid rgba(112, 170, 255, 0.18);
  color: #dce9ff;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.sector-title {
  margin: 0;
  color: var(--text);
  font-size: 1.5rem;
  line-height: 1.08;
  max-width: 16ch;
}

.sector-card p {
  color: rgba(244, 247, 251, 0.82);
  font-size: 0.96rem;
  line-height: 1.68;
  max-width: 30ch;
}

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

.metric-panel {
  padding: 2rem;
}

.accent-copy {
  color: var(--muted);
  font-weight: 700;
}

.contact-grid {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: start;
}

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

.contact-card {
  padding: 1.2rem 1.3rem;
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, rgba(11, 43, 90, 0.32), rgba(255, 116, 22, 0.07));
}

.contact-card a {
  color: var(--text);
  font-weight: 600;
}

.contact-card-wide {
  grid-column: 1 / -1;
}

.contact-label {
  display: block;
  margin-bottom: 0.4rem;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.form-panel {
  padding: 1.5rem;
}

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

.form-row {
  display: grid;
  gap: 0.5rem;
}

.select-wrap {
  position: relative;
}

.select-wrap::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 1.05rem;
  width: 0.75rem;
  height: 0.5rem;
  pointer-events: none;
  transform: translateY(-50%);
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23dce9ff' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E")
    center / contain no-repeat;
}

.form-row-full {
  grid-column: 1 / -1;
}

label {
  font-size: 0.92rem;
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(112, 170, 255, 0.18);
  border-radius: 16px;
  background: rgba(8, 30, 63, 0.38);
  color: var(--text);
  padding: 0.95rem 1rem;
  transition: border-color 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

select {
  appearance: none;
  padding-right: 3rem;
}

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

input::placeholder,
textarea::placeholder {
  color: rgba(255, 255, 255, 0.42);
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: rgba(255, 151, 54, 0.8);
  background: rgba(9, 35, 73, 0.5);
  box-shadow: 0 0 0 4px rgba(255, 116, 22, 0.14);
}

.form-button {
  justify-self: start;
}

.form-button:disabled {
  cursor: wait;
  opacity: 0.8;
  transform: none;
}

.form-note {
  grid-column: 1 / -1;
  color: var(--muted);
  font-size: 0.92rem;
}

.form-note.is-success {
  color: var(--success);
}

.form-note.is-error {
  color: #ffb0a5;
}

.site-footer {
  padding: 2rem 0 3.5rem;
}

.footer-layout {
  grid-template-columns: 1.1fr 0.4fr 1fr;
  align-items:center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-title {
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.footer-links a,
.footer-meta p {
  color: var(--muted);
}

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

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

.reveal-delay {
  transition-delay: 100ms;
}

.reveal-delay-2 {
  transition-delay: 180ms;
}

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

@media (max-width: 1080px) {
  .hero-grid,
  .contact-grid,
  .footer-layout,
  .split-layout,
  .metrics-grid,
  .about-grid,
  .statement-grid {
    grid-template-columns: 1fr;
  }

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

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

  h1,
  h2 {
    max-width: none;
  }

  .hero-image-card {
    min-height: 460px;
  }
}

@media (max-width: 820px) {
  :root {
    --header-height: 78px;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 0.8rem);
    left: 1rem;
    right: 1rem;
    display: grid;
    gap: 0.3rem;
    padding: 1rem;
    border-radius: 24px;
    background: rgba(5, 17, 36, 0.97);
    border: 1px solid rgba(112, 170, 255, 0.14);
    box-shadow: var(--shadow-lg);
    transform: scale(0.96) translateY(-10px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  }

  .site-nav.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: scale(1) translateY(0);
  }

  .site-nav a {
    padding: 0.75rem 0.65rem;
    border-radius: 14px;
  }

  .site-nav a:hover,
  .site-nav a:focus-visible {
    background: rgba(23, 90, 179, 0.16);
    transform: none;
  }

  .nav-cta {
    margin-top: 0.4rem;
  }

  .hero {
    padding-top: 3.25rem;
  }

  .hero-stats,
  .contact-form,
  .contact-cards {
    grid-template-columns: 1fr;
  }

  .form-row-full {
    grid-column: auto;
  }

  .button,
  .form-button {
    width: 100%;
  }
}

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

  .container {
    width: min(calc(100% - 2rem), var(--container));
  }

  .site-shell::before,
  .site-shell::after {
    display: none;
  }

  .hero {
    padding-top: 2.5rem;
    padding-bottom: 3.75rem;
  }

  .hero-grid {
    gap: 1.35rem;
  }

  .hero-copy {
    padding-inline: 0.1rem;
  }

  .brand {
    gap: 0.7rem;
  }

  .brand-mark,
  .footer-logo {
    width: 48px;
    height: 48px;
    border-radius: 14px;
  }

  .brand-name {
    font-size: 0.8rem;
  }

  .brand-tag {
    font-size: 0.76rem;
  }

  h1 {
    font-size: clamp(2.55rem, 13.5vw, 3.7rem);
    line-height: 1.08;
  }

  h2 {
    font-size: clamp(2rem, 11vw, 3rem);
  }

  .hero-card,
  .hero-image-overlay,
  .stat-card,
  .presence-card {
    backdrop-filter: none;
    box-shadow: none;
  }

  .hero-image-overlay,
  .stat-card,
  .presence-card {
    border-color: rgba(112, 170, 255, 0.08);
  }

  .hero-image-card {
    min-height: 360px;
  }

  .card-image {
    height: 210px;
  }

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

  .sector-card {
    min-height: 300px;
  }

  .metric-panel,
  .form-panel,
  .feature-card,
  .statement-card {
    padding: 1.2rem;
  }
}
