:root {
  --bg: #07101c;
  --cyan: #17c6d3;
  --cyan-strong: #11b6bd;
  --ink: #07101c;
  --slate: #607386;
  --muted: #9aa9b8;
  --soft: #edf4f8;
  --line: rgba(11, 31, 48, 0.12);
  --gold: #c49a32;
  --radius-sm: 10px;
  --radius-md: 16px;
  --shadow-soft: 0 18px 46px rgba(3, 10, 20, 0.1);
  --shadow-lift: 0 28px 70px rgba(3, 10, 20, 0.16);
  --font-body: "Manrope", "Noto Sans SC", Arial, sans-serif;
  --font-display: "Rajdhani", "Noto Sans SC", Arial, sans-serif;
  --font-tech: "Orbitron", "Noto Sans SC", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #fff;
  color: var(--ink);
  font-family: var(--font-body);
  line-height: 1.55;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 18px 4vw;
  background: rgba(255, 255, 255, 0.97);
  color: var(--ink);
  backdrop-filter: blur(18px);
  box-shadow: 0 12px 36px rgba(3, 10, 20, 0.08);
  transition: top 0.32s ease, left 0.32s ease, right 0.32s ease, gap 0.32s ease, padding 0.32s ease, border-radius 0.32s ease, box-shadow 0.32s ease;
}

.site-header.is-scrolled {
  left: 18px;
  right: 18px;
  top: 14px;
  gap: 20px;
  padding: 10px 14px;
  border-radius: var(--radius-md);
  box-shadow: 0 16px 42px rgba(3, 10, 20, 0.16);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  display: inline-grid;
  width: 50px;
  height: 50px;
  place-items: center;
  overflow: hidden;
  background: transparent;
  transition: width 0.32s ease, height 0.32s ease;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.site-header.is-scrolled .brand-mark {
  width: 44px;
  height: 44px;
}

.brand strong,
.brand em {
  display: block;
}

.brand strong {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1;
}

.brand em {
  display: none;
}

.nav {
  display: flex;
  justify-content: center;
  align-self: stretch;
  align-items: center;
  gap: clamp(12px, 1.6vw, 26px);
  color: #536176;
  font-size: 13px;
  font-weight: 700;
}

.nav a {
  position: relative;
  display: inline-flex;
  min-height: 34px;
  align-items: center;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -7px;
  height: 3px;
  border-radius: 999px;
  background: var(--cyan);
  opacity: 0;
  transform: scaleX(0.72);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.nav a:hover,
.nav a.is-active {
  color: var(--ink);
}

.nav a:hover::after,
.nav a.is-active::after {
  opacity: 1;
  transform: scaleX(1);
}

.header-cta,
.rfq-strip a,
.footer-contact a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
  transition: transform 0.24s ease, box-shadow 0.24s ease, background 0.24s ease;
}

.header-cta {
  min-width: 112px;
  padding: 0 20px;
  background: var(--ink);
  color: #fff;
}

.header-cta:hover,
.rfq-strip a:hover,
.footer-contact a:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 38px rgba(23, 198, 211, 0.22);
}

.fabric-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(460px, 0.97fr);
  min-height: 620px;
  padding-top: 78px;
  background: var(--bg);
  color: #fff;
}

.fabric-hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 86px 4vw 82px;
  background:
    repeating-linear-gradient(116deg, rgba(23, 198, 211, 0.12) 0 1px, transparent 1px 30px),
    linear-gradient(90deg, #07101c, #071826);
}

.fabric-hero-media {
  min-height: 542px;
  overflow: hidden;
  background: #07101c;
}

.fabric-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--cyan);
  font-family: var(--font-tech);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 720px;
  margin-bottom: 22px;
  font-size: clamp(44px, 5.1vw, 78px);
  line-height: 1.05;
  letter-spacing: 0;
}

.fabric-hero p:not(.eyebrow) {
  max-width: 620px;
  color: #c5d1dc;
  font-size: 18px;
}

.section {
  padding: 104px 4vw;
}

.route-section {
  background: #fff;
}

.route-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 34px 48px;
  width: min(92vw, 1380px);
  margin: 0 auto;
}

.route-grid article,
.route-grid .route-card-link {
  display: grid;
  grid-template-columns: 1fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: #fff;
  box-shadow: 0 14px 34px rgba(3, 10, 20, 0.06);
  transition: transform 0.38s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.38s ease, border-color 0.38s ease;
}

.route-grid article:hover,
.route-grid .route-card-link:hover,
.route-grid .route-card-link:focus-visible {
  transform: translateY(-7px);
  border-color: rgba(23, 198, 211, 0.34);
  box-shadow: var(--shadow-lift);
  outline: none;
}

.route-grid img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.route-grid div {
  padding: 14px 22px 16px;
}

.route-grid h2 {
  margin-bottom: 8px;
  font-size: 18px;
  line-height: 1.15;
}

.route-grid p {
  margin-bottom: 0;
  color: var(--slate);
  font-size: 12px;
  line-height: 1.4;
}

.decision-section {
  padding-top: 82px;
  background: #fff;
}

.section-head {
  width: min(92vw, 1380px);
  margin: 0 auto 42px;
}

.section-head h2,
.support-copy h2 {
  max-width: 780px;
  margin-bottom: 16px;
  font-size: clamp(38px, 4.3vw, 64px);
  line-height: 1.05;
  letter-spacing: 0;
}

.section-head p:not(.eyebrow),
.support-copy p:not(.eyebrow) {
  max-width: 760px;
  color: var(--slate);
  font-size: 17px;
}

.decision-visual {
  position: relative;
  width: min(92vw, 1380px);
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid rgba(11, 31, 48, 0.1);
  border-radius: var(--radius-md) var(--radius-md) 0 0;
  background: #fff;
  box-shadow: 0 22px 58px rgba(3, 10, 20, 0.12);
}

.decision-visual img {
  width: 100%;
  aspect-ratio: 16 / 7.35;
  object-fit: contain;
  object-position: center bottom;
  background: #f4f8fb;
}

.decision-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(7, 16, 28, 0.02), transparent 12%, transparent 88%, rgba(7, 16, 28, 0.06)),
    repeating-linear-gradient(90deg, transparent 0 calc(20% - 1px), rgba(255, 255, 255, 0.7) calc(20% - 1px) 20%);
}

.decision-visual figcaption {
  position: absolute;
  left: 24px;
  right: 24px;
  top: 22px;
  bottom: auto;
  width: fit-content;
  max-width: min(720px, calc(100% - 48px));
  margin: 0;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  background: rgba(7, 16, 28, 0.78);
  color: #dce8ef;
  backdrop-filter: blur(14px);
  font-size: 13px;
  font-weight: 600;
}

.decision-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  width: min(92vw, 1380px);
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid rgba(11, 31, 48, 0.1);
  border-top: 0;
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 22px 58px rgba(3, 10, 20, 0.1);
}

.decision-grid.standalone {
  gap: 22px;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.decision-grid.standalone::before {
  display: none;
}

.decision-grid.standalone article {
  min-height: 154px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: #fff;
  box-shadow: 0 14px 34px rgba(3, 10, 20, 0.055);
}

.decision-grid.standalone article::after {
  display: none;
}

.decision-grid.standalone article > div {
  padding: 24px 24px 22px;
}

.portfolio-section {
  padding-top: 72px;
  background: #fff;
}

.portfolio-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px 70px;
  width: min(92vw, 1380px);
  margin: 0 auto;
  padding: 34px 34px 40px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: #fff;
}

.portfolio-list article {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.portfolio-list span {
  display: inline-grid;
  width: 46px;
  height: 34px;
  place-items: center;
  border-radius: 6px;
  background: var(--ink);
  color: #fff;
  font-family: var(--font-tech);
  font-size: 12px;
  font-weight: 800;
}

.portfolio-list strong {
  display: block;
  margin-bottom: 3px;
  color: var(--ink);
  font-size: 17px;
  line-height: 1.15;
}

.portfolio-list p {
  margin: 0;
  color: var(--slate);
  font-size: 13px;
}

.decision-grid::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 2px;
  background: linear-gradient(90deg, rgba(23, 198, 211, 0.16), rgba(23, 198, 211, 0.72), rgba(196, 154, 50, 0.52));
}

.decision-grid article,
.support-panel article {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 14px 34px rgba(3, 10, 20, 0.055);
}

.decision-grid article {
  position: relative;
  min-height: 238px;
  overflow: hidden;
  padding: 0;
  border: 0;
  border-right: 1px solid rgba(11, 31, 48, 0.1);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  transition: transform 0.38s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.38s ease, border-color 0.38s ease;
}

.decision-grid article::after {
  content: "";
  position: absolute;
  top: 34px;
  right: -8px;
  z-index: 2;
  width: 16px;
  height: 16px;
  border-radius: 3px;
  background: var(--cyan);
  box-shadow: 0 0 0 6px rgba(23, 198, 211, 0.1);
  clip-path: polygon(30% 18%, 76% 50%, 30% 82%, 44% 50%);
}

.decision-grid article:last-child::after {
  display: none;
}

.decision-grid article:last-child {
  border-right: 0;
}

.decision-grid article:hover {
  transform: translateY(-4px);
  background: #fff;
  box-shadow: 0 18px 42px rgba(3, 10, 20, 0.09);
}

.decision-grid article > div {
  padding: 34px 24px 28px;
}

.decision-grid span,
.support-panel span {
  display: block;
  margin-bottom: 12px;
  color: var(--cyan-strong);
  font-family: var(--font-tech);
  font-size: 24px;
  font-weight: 800;
}

.decision-grid h3 {
  margin-bottom: 8px;
  font-size: 19px;
  line-height: 1.15;
}

.decision-grid p,
.support-panel p {
  margin-bottom: 0;
  color: var(--slate);
  font-size: 14px;
}

.support-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(520px, 1.1fr);
  gap: 56px;
  align-items: center;
  background:
    linear-gradient(135deg, rgba(23, 198, 211, 0.13), transparent 42%),
    #07101c;
  color: #fff;
}

.support-copy {
  max-width: 680px;
  margin-left: 4vw;
}

.support-copy p:not(.eyebrow) {
  color: #b7c6d3;
}

.support-panel {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  width: min(100%, 820px);
  margin-right: 4vw;
}

.support-panel article {
  min-height: 230px;
  padding: 26px;
  background: rgba(255, 255, 255, 0.075);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.16);
}

.support-panel strong {
  display: block;
  margin-bottom: 12px;
  color: #fff;
  font-size: 18px;
}

.support-panel p {
  color: #b7c6d3;
}

.rfq-strip {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  width: min(92vw, 1380px);
  margin: 70px auto 34px;
  padding: 22px 26px;
  border-radius: var(--radius-sm);
  background: var(--ink);
  color: #fff;
}

.rfq-strip span {
  justify-self: center;
  color: #aebdcc;
  font-size: 13px;
}

.rfq-strip a {
  min-width: 132px;
  min-height: 38px;
  background: var(--cyan);
  color: #061014;
}

.footer {
  padding: 0 4vw 28px;
  background: #050b12;
  color: #aebdcc;
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(280px, 1.15fr) minmax(420px, 1.45fr) minmax(260px, 0.8fr);
  gap: 56px;
  width: min(92vw, 1380px);
  margin: 0 auto;
  padding: 58px 0 42px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: #fff;
  font-size: 26px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.footer-logo img {
  width: 58px;
  height: 58px;
  object-fit: contain;
  background: #fff;
}

.footer-brand p,
.footer-contact p {
  max-width: 460px;
  margin: 22px 0 0;
  color: #9caebe;
  font-size: 14px;
}

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.footer-badges span {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(23, 198, 211, 0.13);
  color: #70ead9;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
}

.footer-links strong,
.footer-contact strong {
  display: block;
  margin-bottom: 18px;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-links a {
  display: block;
  margin-top: 11px;
  color: #aebdcc;
  font-size: 14px;
  transition: color 0.2s ease, transform 0.2s ease;
}

.footer-links a:hover {
  color: var(--cyan);
  transform: translateX(3px);
}

.footer-contact {
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.04);
}

.footer-contact a {
  min-width: 132px;
  margin-top: 24px;
  background: var(--cyan);
  color: #061014;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px;
  width: min(92vw, 1380px);
  margin: 0 auto;
  padding-top: 22px;
  color: #768797;
  font-size: 12px;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  filter: blur(7px);
  transition: opacity 0.78s ease, transform 0.78s cubic-bezier(0.2, 0.8, 0.2, 1), filter 0.78s ease;
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
    filter: none;
  }
}

@media (max-width: 1100px) {
  .site-header {
    left: 12px;
    right: 12px;
    top: 12px;
    grid-template-columns: 1fr auto;
    gap: 14px;
    padding: 10px 12px;
    border-radius: var(--radius-md);
  }

  .nav {
    display: none;
  }

  .fabric-hero,
  .support-section,
  .rfq-strip {
    grid-template-columns: 1fr;
  }

  .fabric-hero {
    padding-top: 86px;
  }

  .fabric-hero-media {
    min-height: 340px;
  }

  .route-grid {
    grid-template-columns: 1fr;
  }

  .decision-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .portfolio-list {
    grid-template-columns: 1fr;
  }

  .decision-visual img {
    aspect-ratio: 16 / 8.8;
  }

  .decision-grid::before,
  .decision-grid article::after {
    display: none;
  }

  .support-copy,
  .support-panel {
    width: min(92vw, 1380px);
    max-width: none;
    margin: 0 auto;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .footer-links {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .rfq-strip {
    text-align: center;
  }
}

@media (max-width: 700px) {
  .fabric-hero-copy {
    padding: 46px 24px 38px;
  }

  .fabric-hero-media {
    min-height: 250px;
  }

  h1 {
    font-size: 36px;
  }

  .fabric-hero p:not(.eyebrow),
  .section-head p:not(.eyebrow),
  .support-copy p:not(.eyebrow) {
    font-size: 15px;
  }

  .section {
    padding: 72px 20px;
  }

  .route-grid,
  .decision-grid,
  .portfolio-list,
  .support-panel,
  .footer-links {
    grid-template-columns: 1fr;
  }

  .decision-visual img {
    aspect-ratio: 1.2 / 1;
  }

  .decision-visual figcaption {
    position: static;
    max-width: none;
    width: auto;
    border-radius: 0;
    background: #07101c;
  }

  .route-grid article,
  .route-grid .route-card-link {
    grid-template-columns: 1fr;
  }
  .route-grid img {
    height: 180px;
  }
  }

  .section-head h2,
  .support-copy h2 {
    font-size: 32px;
  }

  .rfq-strip {
    width: calc(100% - 40px);
  }

  .footer {
    padding-inline: 0;
  }

  .footer-inner,
  .footer-bottom {
    width: calc(100% - 40px);
  }
}
