:root {
  --bg: #f5f1ea;
  --paper: #fffdf8;
  --paper-2: #fff7ef;
  --soft: #f8dfcf;
  --text: #22313c;
  --muted: #69727a;
  --line: rgba(34, 49, 60, 0.1);
  --white: #ffffff;
  --orange: #ea5f10;
  --orange-deep: #c84d08;
  --orange-soft: #f39c63;
  --teal: #137685;
  --teal-deep: #0c5360;
  --navy: #0b1627;
  --container: min(1160px, calc(100vw - 44px));
  --shadow-lg: 0 28px 60px rgba(18, 28, 36, 0.14);
  --shadow-md: 0 14px 32px rgba(18, 28, 36, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(19, 118, 133, 0.08), transparent 24%),
    linear-gradient(180deg, #f7f4ee 0%, #f1ebe3 100%);
}

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

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

button {
  font: inherit;
}

.page-shell {
  overflow: hidden;
}

.site-header,
.hero,
.section {
  width: var(--container);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 0;
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 10px -16px;
  z-index: -1;
  border-radius: 999px;
  background: rgba(255, 252, 248, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.92);
  box-shadow: 0 16px 36px rgba(18, 33, 42, 0.08);
  backdrop-filter: blur(12px);
}

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

.brand img,
.footer-brand img {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  object-fit: cover;
  background: white;
  box-shadow: 0 10px 24px rgba(20, 83, 95, 0.14);
}

.footer-brand img {
  margin-bottom: 16px;
}

.brand strong,
.footer-brand strong {
  display: block;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.98rem;
  letter-spacing: 0.04em;
}

.brand span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.83rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.site-nav a,
.footer-bottom a {
  padding: 10px 13px;
  border-radius: 999px;
  transition:
    transform 180ms ease,
    color 180ms ease,
    background-color 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.footer-bottom a:hover,
.footer-bottom a:focus-visible {
  transform: translateY(-1px);
  color: var(--orange-deep);
  background: rgba(234, 95, 16, 0.08);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 10px;
  border: 0;
  background: transparent;
}

.menu-toggle span {
  width: 24px;
  height: 2px;
  border-radius: 999px;
  background: var(--text);
}

.eyebrow,
.section-tag {
  margin: 0 0 14px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

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

.button:hover,
.button:focus-visible,
.strength-card:hover,
.contact-panel article:hover {
  transform: translateY(-3px);
}

.button-primary {
  color: white;
  background: linear-gradient(135deg, var(--orange), var(--orange-deep));
  box-shadow: 0 16px 30px rgba(234, 95, 16, 0.28);
}

.button-primary:hover,
.button-primary:focus-visible {
  box-shadow: 0 20px 36px rgba(234, 95, 16, 0.36);
}

.button-small {
  min-height: 44px;
  padding: 0 18px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  gap: 40px;
  align-items: center;
  min-height: 680px;
  padding: 76px 0 32px;
}

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

.hero-copy h1,
.hero-copy h2,
.section-copy h2,
.section-heading h2 {
  margin: 0;
}

.hero-copy h1 {
  max-width: 8ch;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(3rem, 7vw, 5.3rem);
  line-height: 0.96;
  letter-spacing: -0.05em;
}

.hero-copy h2 {
  max-width: 10ch;
  margin-top: 22px;
  font-size: clamp(1.9rem, 4vw, 3rem);
  line-height: 1.05;
}

.hero-text,
.section-copy p,
.section-summary,
.feature-list p,
.strength-card p,
.footer-brand p,
.footer-columns p,
.footer-columns a,
.contact-panel article span {
  color: var(--muted);
  line-height: 1.72;
}

.hero-text {
  max-width: 58ch;
  margin: 22px 0 0;
}

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

.hero-visual {
  display: grid;
  gap: 18px;
}

.image-card {
  position: relative;
  overflow: hidden;
  background: var(--paper);
  box-shadow: var(--shadow-md);
}

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

.image-card-hero {
  min-height: 540px;
  border-radius: 28px;
}

.image-card-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(11, 64, 74, 0.18), transparent 40%),
    radial-gradient(circle at top right, rgba(234, 95, 16, 0.16), transparent 24%);
}

.hero-note {
  padding: 22px 24px;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(234, 95, 16, 0.97), rgba(212, 79, 9, 0.95));
  color: white;
  box-shadow: 0 18px 38px rgba(144, 56, 12, 0.26);
}

.hero-note span {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-note strong {
  display: block;
  margin-top: 8px;
  font-size: 1.2rem;
}

.hero-note p {
  margin: 12px 0 0;
  color: rgba(255, 247, 241, 0.88);
  line-height: 1.65;
}

.section {
  padding: 96px 0 0;
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 48px;
  align-items: center;
}

.section-copy h2,
.section-heading h2,
.news-overlay-card h3 {
  max-width: 11ch;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.04;
  letter-spacing: -0.05em;
}

#about .section-copy {
  max-width: 600px;
}

#about .section-copy h2 {
  width: min(600px, 100%);
  max-width: 600px;
  min-height: 200px;
}

#about .section-tag {
  margin-bottom: 20px;
}

.section-copy p {
  max-width: 60ch;
  margin: 18px 0 0;
}

.stats-panel {
  display: grid;
  gap: 18px;
}

.stat-card,
.strength-card,
.contact-panel article {
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-md);
}

.stat-card {
  padding: 24px 24px 22px;
  border-radius: 20px;
}

.stat-card strong {
  display: block;
  color: var(--orange);
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  line-height: 1;
}

.stat-card span {
  display: block;
  margin-top: 10px;
  max-width: 26ch;
  color: var(--muted);
  line-height: 1.65;
}

.section-industry {
  padding-top: 88px;
}

.industry-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 44px;
  align-items: center;
  margin-bottom: 30px;
  padding: 42px;
  border-radius: 32px;
  background: linear-gradient(180deg, #fff7ef 0%, #fffaf4 100%);
  box-shadow: var(--shadow-md);
}

.industry-shell .section-tag {
  color: var(--orange);
}

.industry-shell h2 {
  max-width: 18ch;
}

.industry-shell p {
  max-width: 58ch;
}

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

.industry-metrics article {
  padding: 18px 18px 16px;
  border-radius: 18px;
  background: rgba(234, 95, 16, 0.06);
}

.industry-metrics strong {
  display: block;
  font-size: 0.98rem;
}

.industry-metrics span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  line-height: 1.62;
}

.industry-media {
  display: grid;
  gap: 16px;
}

.image-card-industry {
  min-height: 360px;
  border-radius: 26px;
}

.image-card-industry::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(15, 40, 49, 0.12), rgba(15, 40, 49, 0.02)),
    radial-gradient(circle at top right, rgba(243, 156, 99, 0.18), transparent 26%);
}

.industry-note {
  padding: 18px 20px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(234, 95, 16, 0.94), rgba(212, 79, 9, 0.92));
  color: white;
}

.industry-note span {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.industry-note p {
  margin: 10px 0 0;
  color: rgba(255, 246, 241, 0.88);
  line-height: 1.65;
}

.section-soft {
  padding: 86px 0;
  border-radius: 32px;
  background: linear-gradient(180deg, #f8dccb 0%, #f8dccb 100%);
}

.section-strength {
  padding: 72px 40px;
}

.strength-layout {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 34px;
  align-items: start;
}

.strength-copy {
  position: sticky;
  top: 110px;
}

.section-summary-left {
  max-width: 42ch;
  margin: 16px 0 0;
}

.strength-highlight {
  margin-top: 24px;
  padding: 20px;
  border-left: 4px solid var(--orange);
  border-radius: 0 18px 18px 0;
  background: rgba(255, 255, 255, 0.5);
}

.strength-highlight strong {
  display: block;
  font-size: 0.96rem;
}

.strength-highlight p {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

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

.strength-card {
  min-height: 232px;
  padding: 24px 22px;
  border-radius: 20px;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease;
}

.strength-card-featured {
  color: white;
  background: linear-gradient(180deg, rgba(234, 95, 16, 0.98), rgba(212, 79, 9, 0.98));
}

.strength-card-featured p {
  color: rgba(255, 248, 243, 0.86);
}

.card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: rgba(234, 95, 16, 0.1);
  font-size: 1.15rem;
}

.strength-card-featured .card-icon {
  background: rgba(255, 255, 255, 0.16);
}

.strength-card h3,
.footer-columns h3 {
  margin: 18px 0 10px;
}

.image-card-standard,
.image-card-news {
  min-height: 360px;
  border-radius: 24px;
}

#network .image-card-standard {
  min-height: 390px;
  aspect-ratio: 4 / 3;
  background: transparent;
}

#network .image-card-standard img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 38% center;
}

#network .section-copy p {
  margin-bottom: 10px;
}

.image-card-standard::after,
.image-card-news::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(15, 40, 49, 0.16), rgba(15, 40, 49, 0.02)),
    radial-gradient(circle at top right, rgba(234, 95, 16, 0.14), transparent 26%);
}

.section-news {
  display: block;
  width: var(--container);
  margin-left: auto;
  margin-right: auto;
}

.news-visual-column {
  display: block;
  width: 100%;
}

.image-card-news {
  width: 100%;
  min-height: 540px;
  aspect-ratio: 16 / 9;
  box-shadow: var(--shadow-lg);
}

.news-overlay-card {
  position: absolute;
  left: 28px;
  top: 28px;
  z-index: 1;
  max-width: 340px;
  padding: 24px;
  border-radius: 24px;
  background: rgba(18, 31, 46, 0.34);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(16px);
  color: white;
  box-shadow: 0 18px 36px rgba(13, 22, 39, 0.18);
}

.news-overlay-card span {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 236, 224, 0.92);
}

.news-overlay-card h3 {
  margin: 18px 0 12px;
  max-width: none;
  font-size: clamp(1.55rem, 3vw, 2rem);
  line-height: 1.16;
}

.news-overlay-card p {
  margin: 0;
  color: rgba(255, 247, 241, 0.86);
  line-height: 1.68;
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(240px, 1.35fr) minmax(0, 1fr) minmax(0, 1fr);
  gap: 12px;
  align-items: stretch;
  padding: 24px 0;
  border-radius: 0;
  background: transparent;
}

.contact-panel article {
  min-width: 0;
  padding: 22px 22px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 10px 24px rgba(18, 28, 36, 0.06);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease;
}

.contact-panel-lead {
  color: white;
  background: linear-gradient(135deg, var(--orange), var(--orange-deep)) !important;
  box-shadow: 0 16px 34px rgba(234, 95, 16, 0.2) !important;
}

.contact-panel article span {
  display: block;
  margin-bottom: 10px;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
}

.contact-panel article strong {
  display: block;
  line-height: 1.5;
  overflow-wrap: anywhere;
  word-break: normal;
}

.contact-panel article p {
  margin: 10px 0 0;
  line-height: 1.68;
}

.contact-panel-lead span,
.contact-panel-lead p {
  color: rgba(255, 247, 241, 0.86);
}

.contact-panel-lead strong {
  font-size: 1.1rem;
}

.site-footer {
  margin-top: 0;
  padding: 34px 0 34px;
  border-radius: 0;
  background: linear-gradient(180deg, #0b1628 0%, #091220 100%);
  color: white;
}

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

.footer-main {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 32px;
  align-items: start;
}

.footer-brand p {
  max-width: 56ch;
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.72);
}

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

.footer-columns article:first-child {
  display: none;
}

.footer-columns h3 {
  margin-top: 0;
  margin-bottom: 16px;
}

.footer-columns a,
.footer-columns p {
  display: block;
  margin: 0 0 12px;
  color: rgba(255, 255, 255, 0.72);
  overflow-wrap: anywhere;
}

.footer-columns a:hover,
.footer-columns a:focus-visible {
  color: white;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
}

@media (max-width: 1100px) {
  .hero,
  .section-grid,
  .industry-shell,
  .footer-main {
    grid-template-columns: 1fr;
  }

  .strength-layout,
  .strength-grid,
  .contact-panel,
  .footer-columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .strength-copy {
    position: static;
  }
}

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

  .site-header {
    flex-wrap: wrap;
    gap: 12px;
  }

  .menu-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .site-nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    padding-top: 8px;
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    background: rgba(255, 255, 255, 0.78);
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 28px;
    min-height: auto;
    padding: 74px 0 18px;
  }

  .hero-copy h1,
  .hero-copy h2,
  .section-copy h2,
  .section-heading h2 {
    max-width: none;
  }

  #about .section-copy {
    max-width: none;
  }

  #about .section-copy h2 {
    width: auto;
    min-height: 0;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .section,
  .section-soft {
    padding-top: 72px;
  }

  .section-news {
    width: var(--container);
    margin-left: auto;
    margin-right: auto;
  }

  .section-grid,
  .industry-shell,
  .strength-layout,
  .strength-grid,
  .contact-panel,
  .footer-columns {
    grid-template-columns: 1fr;
  }

  .industry-shell,
  .section-strength {
    padding: 28px 18px;
  }

  .industry-metrics {
    grid-template-columns: 1fr;
  }

  .contact-panel {
    padding: 16px 0 0;
  }

  .news-overlay-card {
    left: 18px;
    right: 18px;
    top: 18px;
    max-width: none;
    padding: 20px;
  }

  .news-overlay-card h3 {
    font-size: 1.5rem;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}
