:root {
  --ink: #0d2333;
  --navy: #174c6a;
  --navy-2: #0e354f;
  --orange: #f27a0b;
  --green: #3f8f5f;
  --mint: #dff4e8;
  --paper: #fbfcf7;
  --white: #ffffff;
  --muted: #60717b;
  --line: rgba(13, 35, 51, 0.12);
  --shadow: 0 24px 80px rgba(13, 35, 51, 0.14);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(251, 252, 247, 0.86);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.nav-wrap {
  width: min(var(--max), calc(100% - 32px));
  height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  letter-spacing: 0;
}

.brand img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.brand span {
  font-size: 1.08rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  border-radius: 999px;
  color: #2f4858;
  font-weight: 750;
  font-size: 0.94rem;
}

.nav-links a:hover,
.nav-links a.active {
  background: rgba(242, 122, 11, 0.12);
  color: var(--ink);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
  place-items: center;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  width: 18px;
  height: 2px;
  display: block;
  background: currentColor;
  border-radius: 3px;
  content: "";
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle span::before {
  transform: translateY(-6px);
}

.nav-toggle span::after {
  transform: translateY(4px);
}

.menu-open .nav-toggle span {
  transform: rotate(45deg);
}

.menu-open .nav-toggle span::before {
  opacity: 0;
}

.menu-open .nav-toggle span::after {
  transform: translateY(-2px) rotate(-90deg);
}

.hero {
  position: relative;
  min-height: calc(100vh - 76px);
  overflow: hidden;
  display: grid;
  align-items: center;
  border-bottom: 1px solid var(--line);
  isolation: isolate;
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  content: "";
  background:
    linear-gradient(115deg, rgba(13, 35, 51, 0.9) 0%, rgba(23, 76, 106, 0.78) 44%, rgba(251, 252, 247, 0.78) 44.2%),
    radial-gradient(circle at 82% 18%, rgba(242, 122, 11, 0.26), transparent 30%),
    linear-gradient(180deg, #edf6f4, var(--paper));
}

.hero::after {
  position: absolute;
  right: -16vw;
  bottom: -25vw;
  z-index: -1;
  width: 62vw;
  aspect-ratio: 1;
  border: 36px solid rgba(242, 122, 11, 0.28);
  transform: rotate(45deg);
  content: "";
  animation: drift 12s ease-in-out infinite alternate;
}

.hero-inner,
.section-inner,
.footer-inner {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
  gap: 54px;
  align-items: center;
  padding: 64px 0;
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--orange);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.76rem;
}

.eyebrow::before {
  width: 34px;
  height: 2px;
  background: currentColor;
  content: "";
}

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

h1 {
  max-width: 840px;
  font-size: clamp(2.85rem, 7vw, 5.8rem);
}

h2 {
  font-size: clamp(2.15rem, 4.4vw, 4.2rem);
}

h3 {
  font-size: 1.32rem;
}

.lead {
  margin: 24px 0 0;
  max-width: 690px;
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  color: rgba(255, 255, 255, 0.86);
}

.page-hero .lead,
.section-head .lead {
  color: var(--muted);
}

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

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0 22px;
  font-weight: 900;
  color: var(--white);
  background: var(--orange);
  box-shadow: 0 14px 34px rgba(242, 122, 11, 0.3);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 42px rgba(242, 122, 11, 0.36);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.24);
  box-shadow: none;
  color: var(--white);
}

.button.dark {
  background: var(--navy);
  box-shadow: 0 14px 34px rgba(23, 76, 106, 0.24);
}

.button.light {
  color: var(--ink);
  background: var(--white);
  border-color: var(--line);
  box-shadow: none;
}

.visual-stack {
  position: relative;
  min-height: 560px;
}

.logo-orbit {
  position: absolute;
  inset: 0 0 auto auto;
  --float-x: 0;
  width: min(88%, 500px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  box-shadow: var(--shadow);
  animation: float 5s ease-in-out infinite;
}

.logo-orbit::before,
.logo-orbit::after {
  position: absolute;
  inset: 8%;
  border: 2px solid rgba(242, 122, 11, 0.32);
  border-radius: 50%;
  content: "";
  animation: spin 16s linear infinite;
}

.logo-orbit::after {
  inset: 18%;
  border-color: rgba(23, 76, 106, 0.2);
  animation-duration: 24s;
  animation-direction: reverse;
}

.logo-orbit img {
  width: 58%;
  z-index: 1;
}

.metric-panel,
.signal-panel {
  position: absolute;
  width: min(310px, 80%);
  padding: 20px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(13, 35, 51, 0.08);
  box-shadow: 0 18px 55px rgba(13, 35, 51, 0.12);
  backdrop-filter: blur(15px);
}

.metric-panel {
  left: 0;
  bottom: 42px;
}

.signal-panel {
  right: 0;
  bottom: 145px;
}

.panel-label {
  margin: 0 0 7px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.panel-value {
  margin: 0;
  font-size: 1.45rem;
  font-weight: 950;
  line-height: 1.1;
}

.bar {
  height: 8px;
  margin-top: 16px;
  overflow: hidden;
  background: rgba(23, 76, 106, 0.12);
  border-radius: 99px;
}

.bar span {
  display: block;
  width: 76%;
  height: 100%;
  background: linear-gradient(90deg, var(--orange), var(--green));
  border-radius: inherit;
  animation: loadbar 2.4s ease-in-out infinite alternate;
}

.trust-strip {
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.trust-grid {
  width: min(var(--max), calc(100% - 32px));
  min-height: 82px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  align-items: center;
  font-weight: 900;
  color: #294758;
}

.trust-grid span {
  display: flex;
  align-items: center;
  gap: 10px;
}

.trust-grid span::before {
  width: 10px;
  height: 10px;
  background: var(--orange);
  transform: rotate(45deg);
  content: "";
}

section {
  padding: 94px 0;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.75fr);
  gap: 34px;
  align-items: end;
  margin-bottom: 42px;
}

.kicker {
  margin: 0 0 13px;
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

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

.grid-3,
.grid-4,
.service-grid,
.module-grid {
  display: grid;
  gap: 18px;
}

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

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

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

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

.feature-card,
.service-card,
.industry-tile,
.value-tile,
.contact-card,
.timeline-item,
.module-card,
.impact-card {
  min-height: 100%;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 10px 35px rgba(13, 35, 51, 0.06);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.feature-card:hover,
.service-card:hover,
.industry-tile:hover,
.value-tile:hover,
.module-card:hover,
.impact-card:hover {
  transform: translateY(-5px);
  border-color: rgba(242, 122, 11, 0.36);
  box-shadow: 0 18px 50px rgba(13, 35, 51, 0.1);
}

.icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  border-radius: 50%;
  color: var(--white);
  background: var(--navy);
  font-weight: 950;
}

.icon.orange {
  background: var(--orange);
}

.icon.green {
  background: var(--green);
}

.feature-card p,
.service-card p,
.value-tile p,
.module-card p,
.impact-card p {
  margin: 14px 0 0;
  color: var(--muted);
}

.product-band {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(120deg, rgba(14, 53, 79, 0.96), rgba(18, 82, 80, 0.9)),
    radial-gradient(circle at 90% 15%, rgba(242, 122, 11, 0.4), transparent 28%);
  isolation: isolate;
}

.product-band::after {
  position: absolute;
  inset: auto -80px -180px auto;
  z-index: -1;
  width: 430px;
  aspect-ratio: 1;
  border: 34px solid rgba(255, 255, 255, 0.09);
  transform: rotate(45deg);
  content: "";
}

.product-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.85fr);
  gap: 48px;
  align-items: center;
}

.product-band .lead {
  color: rgba(255, 255, 255, 0.82);
}

.product-device {
  min-height: 520px;
  padding: 22px;
  border-radius: 34px;
  background: #0b1d2a;
  box-shadow: 0 34px 80px rgba(0, 0, 0, 0.24);
  transform: rotate(2deg);
}

.device-screen {
  height: 100%;
  min-height: 476px;
  padding: 24px;
  border-radius: 24px;
  color: var(--ink);
  background:
    linear-gradient(rgba(255, 255, 255, 0.68), rgba(255, 255, 255, 0.88)),
    repeating-linear-gradient(45deg, rgba(63, 143, 95, 0.12) 0 14px, rgba(242, 122, 11, 0.1) 14px 28px);
}

.map-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 18px;
}

.map-tile {
  min-height: 120px;
  padding: 16px;
  border: 1px solid rgba(13, 35, 51, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
}

.map-tile strong {
  display: block;
  font-size: 1.6rem;
  line-height: 1;
}

.feature-list {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.feature-list li::before {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  margin-top: 4px;
  border: 4px solid var(--orange);
  border-radius: 50%;
  content: "";
}

.light-section {
  background: var(--white);
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 88px 0 72px;
  background:
    linear-gradient(110deg, rgba(255, 255, 255, 0.9), rgba(223, 244, 232, 0.82)),
    linear-gradient(135deg, rgba(23, 76, 106, 0.08), rgba(242, 122, 11, 0.08));
}

.page-hero::after {
  position: absolute;
  right: min(7vw, 90px);
  bottom: -70px;
  width: 210px;
  aspect-ratio: 1;
  border: 20px solid rgba(242, 122, 11, 0.22);
  transform: rotate(45deg);
  content: "";
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.8fr);
  gap: 46px;
  align-items: center;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.stat {
  padding: 24px;
  border-radius: var(--radius);
  color: var(--white);
  background: var(--navy);
}

.stat:nth-child(2),
.stat:nth-child(3) {
  background: var(--orange);
}

.stat strong {
  display: block;
  font-size: 2rem;
  line-height: 1;
}

.stat span {
  display: block;
  margin-top: 8px;
  font-weight: 800;
}

.offer-list {
  display: grid;
  gap: 10px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.offer-list li {
  padding-left: 24px;
  position: relative;
  color: var(--muted);
}

.offer-list li::before {
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 10px;
  height: 10px;
  background: var(--orange);
  transform: rotate(45deg);
  content: "";
}

.outcome {
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  font-weight: 900;
  color: var(--navy);
}

.timeline {
  display: grid;
  gap: 18px;
  position: relative;
}

.timeline-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 22px;
  align-items: start;
}

.timeline-item strong {
  color: var(--orange);
  font-size: 1.4rem;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1fr);
  gap: 26px;
  align-items: start;
}

.contact-form {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

label {
  display: grid;
  gap: 8px;
  color: #294758;
  font-weight: 850;
}

input,
textarea,
select {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 12px 14px;
  color: var(--ink);
  background: #fbfcfd;
  font: inherit;
}

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

input:focus,
textarea:focus,
select:focus {
  border-color: var(--orange);
  outline: 3px solid rgba(242, 122, 11, 0.12);
}

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

.form-note {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.image-frame {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow);
}

.image-frame img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  transition: transform 600ms ease;
}

.image-frame:hover img {
  transform: scale(1.04);
}

.image-caption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  padding: 16px;
  border-radius: var(--radius);
  color: var(--white);
  background: rgba(11, 29, 42, 0.78);
  backdrop-filter: blur(14px);
}

.image-caption strong {
  display: block;
  font-size: 1.05rem;
  line-height: 1.15;
}

.image-caption span {
  display: block;
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
}

.media-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 18px;
  align-items: stretch;
}

.media-grid .image-frame:first-child {
  min-height: 560px;
}

.media-stack {
  display: grid;
  gap: 18px;
}

.media-stack .image-frame {
  min-height: 271px;
}

.photo-card {
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 14px 42px rgba(13, 35, 51, 0.08);
}

.photo-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.photo-card div {
  padding: 22px;
}

.photo-card p {
  margin: 10px 0 0;
  color: var(--muted);
}

.story-panel {
  padding: 34px;
  border-radius: var(--radius);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(13, 35, 51, 0.96), rgba(23, 76, 106, 0.9)),
    radial-gradient(circle at 90% 15%, rgba(242, 122, 11, 0.32), transparent 30%);
  box-shadow: var(--shadow);
}

.story-panel p {
  color: rgba(255, 255, 255, 0.78);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.process-step {
  padding: 24px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--white);
}

.process-step strong {
  color: var(--orange);
  font-size: 1.25rem;
}

.process-step h3 {
  margin-top: 18px;
}

.process-step p {
  margin-bottom: 0;
  color: var(--muted);
}

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

.deep-list div {
  padding: 18px;
  border-left: 4px solid var(--orange);
  background: rgba(255, 255, 255, 0.68);
}

.deep-list strong {
  display: block;
  margin-bottom: 6px;
}

.source-credit {
  margin-top: 18px;
  color: var(--muted);
  font-size: 0.8rem;
}

.source-credit a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.site-footer .source-credit {
  color: rgba(255, 255, 255, 0.56);
}

.quote-band {
  padding: 44px;
  border-radius: var(--radius);
  color: var(--white);
  background: linear-gradient(115deg, var(--navy-2), var(--green));
}

.quote-band p {
  max-width: 930px;
  margin: 0;
  font-size: clamp(1.45rem, 3vw, 2.55rem);
  font-weight: 900;
  line-height: 1.15;
}

.quote-band span {
  display: block;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 800;
}

.site-footer {
  color: rgba(255, 255, 255, 0.8);
  background: #0b1d2a;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 34px 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-weight: 800;
}

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

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

@keyframes float {
  0%, 100% { transform: translate(var(--float-x), 0); }
  50% { transform: translate(var(--float-x), -16px); }
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

@keyframes drift {
  to { transform: translate(-35px, -22px) rotate(45deg); }
}

@keyframes loadbar {
  to { width: 92%; }
}

@media (max-width: 900px) {
  .nav-toggle {
    display: grid;
  }

  .nav-links {
    position: fixed;
    inset: 76px 0 auto 0;
    display: grid;
    gap: 0;
    padding: 16px;
    background: rgba(251, 252, 247, 0.98);
    border-bottom: 1px solid var(--line);
    transform: translateY(-120%);
    transition: transform 220ms ease;
  }

  .menu-open .nav-links {
    transform: translateY(0);
  }

  .nav-links a {
    border-radius: var(--radius);
  }

  .hero-inner,
  .product-layout,
  .section-head,
  .split,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero::before {
    background:
      linear-gradient(180deg, rgba(13, 35, 51, 0.94) 0%, rgba(23, 76, 106, 0.9) 55%, rgba(251, 252, 247, 0.82) 55.2%),
      radial-gradient(circle at 80% 16%, rgba(242, 122, 11, 0.23), transparent 34%);
  }

  .visual-stack {
    min-height: 500px;
  }

  .logo-orbit {
    left: 50%;
    right: auto;
    --float-x: -50%;
    width: min(88vw, 430px);
  }

  .grid-3,
  .grid-4,
  .service-grid,
  .module-grid,
  .media-grid,
  .process-grid,
  .deep-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .media-grid,
  .process-grid,
  .deep-list {
    grid-template-columns: 1fr;
  }

  .media-grid .image-frame:first-child,
  .image-frame {
    min-height: 380px;
  }

  .trust-grid {
    grid-template-columns: 1fr;
    padding: 18px 0;
  }
}

@media (max-width: 640px) {
  .nav-wrap,
  .hero-inner,
  .section-inner,
  .footer-inner,
  .trust-grid {
    width: min(100% - 24px, var(--max));
  }

  section {
    padding: 68px 0;
  }

  .hero-inner {
    padding: 48px 0;
  }

  .grid-3,
  .grid-4,
  .service-grid,
  .module-grid,
  .field-grid,
  .stat-grid {
    grid-template-columns: 1fr;
  }

  .visual-stack {
    min-height: 470px;
  }

  .metric-panel,
  .signal-panel {
    width: min(92%, 300px);
  }

  .signal-panel {
    bottom: 145px;
  }

  .product-device {
    min-height: 440px;
    padding: 14px;
    border-radius: 24px;
  }

  .device-screen {
    min-height: 410px;
    padding: 18px;
  }

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

  .timeline-item {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .photo-card img {
    height: 210px;
  }

  .quote-band {
    padding: 28px;
  }

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

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
  }

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