:root {
  color-scheme: dark;
  --bg: #1c2b48;
  --bg-2: #263a5c;
  --surface: rgba(38, 52, 78, .84);
  --surface-strong: #253853;
  --surface-warm: #303651;
  --ink: #f8f6f1;
  --ink-soft: #dadee8;
  --muted: #cbd2df;
  --line: rgba(248, 246, 241, .15);
  --line-strong: rgba(248, 246, 241, .3);
  --accent: #2f6dff;
  --accent-2: #ff4f8b;
  --accent-3: #f0b84f;
  --dark: #142139;
  --radius: 8px;
  --radius-pill: 999px;
  --shadow: 0 32px 90px rgba(9, 13, 23, .34);
  --container: min(1240px, calc(100% - 48px));
  --wide: min(1440px, calc(100% - 48px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 18% 8%, rgba(71, 132, 255, .24), transparent 30rem),
    radial-gradient(circle at 82% 18%, rgba(255, 79, 139, .16), transparent 25rem),
    radial-gradient(circle at 50% 100%, rgba(240, 184, 79, .1), transparent 34rem),
    linear-gradient(180deg, #283d63 0%, #203553 48%, #1a2a46 100%);
  color: var(--ink);
  font-family: Outfit, "Aptos Display", Aptos, "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, Arial, sans-serif;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, .052) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .042) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, .92), rgba(0, 0, 0, .16));
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: .1;
  background-image:
    repeating-linear-gradient(0deg, rgba(255, 255, 255, .04) 0 1px, transparent 1px 4px),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, .022) 0 1px, transparent 1px 5px);
  mix-blend-mode: overlay;
}

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

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

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

.site-main {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

.topbar-inner,
.header-inner,
.container,
.hero-content {
  width: var(--container);
  margin-inline: auto;
}

.topbar {
  position: relative;
  z-index: 35;
  color: rgba(248, 246, 241, .82);
  background: rgba(22, 32, 52, .94);
  border-bottom: 1px solid rgba(248, 246, 241, .12);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.topbar-inner {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 12px;
  font-weight: 680;
}

.topbar-left,
.topbar-right {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.top-item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
}

.top-label {
  color: var(--accent-2);
  font-size: 11px;
  font-weight: 780;
}

.language-flags {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.lang-flag {
  display: inline-flex;
  min-height: 24px;
  align-items: center;
  gap: 6px;
  padding: 0 9px 0 5px;
  border: 1px solid rgba(245, 240, 230, .16);
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, .04);
  color: rgba(245, 240, 230, .78);
  font-size: 11px;
  font-weight: 760;
  transition: transform .22s ease, border-color .22s ease, background .22s ease;
}

.lang-flag:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 79, 139, .5);
  background: rgba(255, 79, 139, .1);
}

.lang-flag img {
  width: 22px;
  height: 15px;
  object-fit: cover;
  border-radius: 3px;
}

.site-header {
  position: sticky;
  top: 12px;
  z-index: 34;
  width: var(--container);
  margin: 14px auto 0;
  border: 1px solid rgba(248, 246, 241, .14);
  border-radius: var(--radius-pill);
  background: rgba(26, 39, 62, .92);
  box-shadow: 0 20px 58px rgba(7, 12, 24, .26);
  backdrop-filter: blur(24px) saturate(160%);
  -webkit-backdrop-filter: blur(24px) saturate(160%);
}

.header-inner {
  width: 100%;
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 8px 12px 8px 16px;
}

.brand {
  min-width: 214px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-logo {
  width: 106px;
  height: auto;
  flex: 0 0 auto;
  padding: 7px 8px;
  border: 1px solid rgba(245, 240, 230, .14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .94);
}

.brand-title,
.brand-subtitle {
  display: block;
  line-height: 1.1;
}

.brand-title {
  color: var(--ink);
  font-size: 15px;
  font-weight: 820;
}

.brand-subtitle {
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 680;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
  min-width: 0;
  overflow-x: auto;
  scrollbar-width: none;
  white-space: nowrap;
}

.nav::-webkit-scrollbar {
  display: none;
}

.nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 13px;
  border-radius: var(--radius-pill);
  color: rgba(245, 240, 230, .68);
  font-size: 13px;
  font-weight: 720;
  transition: color .22s ease, background .22s ease, transform .22s ease;
}

.nav a:hover,
.nav a.active {
  color: var(--ink);
  background: rgba(245, 240, 230, .14);
}

.nav a:active,
.btn:active,
.card:active,
.bento-card:active,
.accordion-panel:active {
  transform: translateY(1px);
}

.btn,
.quote-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  width: fit-content;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 820;
  line-height: 1;
  white-space: nowrap;
  cursor: pointer;
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease, color .22s ease, border-color .22s ease;
}

.btn-primary,
.quote-btn {
  color: #ffffff;
  background: var(--accent);
  box-shadow: 0 18px 48px rgba(47, 109, 255, .32);
}

.btn-primary:hover,
.quote-btn:hover {
  transform: translateY(-2px);
  background: #1d57dc;
  box-shadow: 0 22px 60px rgba(47, 109, 255, .42);
}

.btn-outline {
  color: var(--ink);
  border-color: rgba(245, 240, 230, .34);
  background: rgba(245, 240, 230, .08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.btn-outline:hover {
  transform: translateY(-2px);
  color: #0e1320;
  border-color: var(--ink);
  background: var(--ink);
}

.page-hero {
  position: relative;
  isolation: isolate;
  min-height: clamp(410px, 56dvh, 620px);
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 76px 0 70px;
  background-image: url("assets/hero-factory.png");
  background-position: center;
  background-size: cover;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(18, 22, 31, .76) 0%, rgba(33, 37, 47, .54) 28%, rgba(33, 37, 47, .16) 58%, rgba(33, 37, 47, .04) 100%),
    linear-gradient(180deg, rgba(18, 22, 31, .22) 0%, rgba(18, 22, 31, .04) 48%, rgba(18, 22, 31, .5) 100%);
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: 0;
  pointer-events: none;
  height: 24%;
  background: linear-gradient(180deg, transparent, rgba(18, 22, 31, .52));
}

.home-hero {
  min-height: clamp(620px, 86dvh, 820px);
  padding: 88px 0 56px;
  text-align: center;
  background-image: url("assets/hero-factory.png");
}

.home-hero::before {
  background:
    linear-gradient(90deg, rgba(18, 22, 31, .64) 0%, rgba(33, 37, 47, .3) 34%, rgba(33, 37, 47, .08) 66%, rgba(18, 22, 31, .18) 100%),
    linear-gradient(180deg, rgba(18, 22, 31, .24) 0%, rgba(18, 22, 31, .05) 48%, rgba(18, 22, 31, .56) 100%);
}

.page-hero.compact {
  min-height: clamp(320px, 40dvh, 460px);
  padding: 66px 0 54px;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.home-hero .hero-content {
  width: min(1180px, calc(100% - 48px));
}

.hero-kicker {
  display: none;
}

.hero-title {
  max-width: 1180px;
  margin: 0 auto;
  color: var(--ink);
  font-size: clamp(46px, 7.4vw, 112px);
  line-height: .9;
  font-weight: 880;
  letter-spacing: 0;
  text-wrap: balance;
}

.page-hero.compact .hero-title {
  max-width: 980px;
  margin-inline: 0;
  font-size: clamp(38px, 5vw, 70px);
  line-height: .94;
}

.home-hero .hero-title {
  text-align: center;
}

.hero-title strong {
  color: var(--accent-2);
  font-weight: inherit;
}

.inline-image {
  display: inline-block;
  width: clamp(78px, 10vw, 156px);
  height: .52em;
  margin-inline: .08em;
  border: 1px solid rgba(245, 240, 230, .34);
  border-radius: var(--radius-pill);
  vertical-align: middle;
  background-position: center;
  background-size: cover;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .16), 0 20px 52px rgba(0, 0, 0, .35);
}

.inline-image-pcba {
  background-image:
    linear-gradient(90deg, rgba(12, 16, 28, .2), rgba(12, 16, 28, .08)),
    url("assets/hero-factory.png");
  background-position: center 58%;
  filter: contrast(1.06) saturate(1.08);
}

.hero-text {
  max-width: 720px;
  margin: 20px auto 0;
  color: rgba(255, 252, 244, .88);
  font-size: clamp(16px, 1.55vw, 20px);
  line-height: 1.58;
  font-weight: 520;
}

.page-hero.compact .hero-text {
  margin-inline: 0;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.page-hero.compact .hero-actions {
  justify-content: flex-start;
}

.hero-stage {
  position: relative;
  z-index: 1;
  width: min(940px, calc(100% - 48px));
  margin: 34px auto 0;
  overflow: hidden;
  border: 1px solid rgba(245, 240, 230, .18);
  border-radius: var(--radius);
  background: rgba(245, 240, 230, .1);
  box-shadow: var(--shadow);
}

.hero-stage-image {
  height: clamp(140px, 16vw, 220px);
  background-image:
    linear-gradient(180deg, rgba(12, 16, 28, .08), rgba(12, 16, 28, .42)),
    url("assets/hero-factory.png");
  background-position: center 58%;
  background-size: cover;
  filter: contrast(1.06) saturate(1.08);
  transform-origin: center;
}

.hero-stage-caption {
  position: absolute;
  right: 16px;
  bottom: 16px;
  left: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  color: rgba(245, 240, 230, .82);
  font-size: 12px;
  font-weight: 760;
}

.section {
  position: relative;
  padding: clamp(64px, 7vw, 112px) 0;
}

.site-main:not(.home-main) .section {
  padding: clamp(50px, 5.6vw, 92px) 0;
}

.section.soft {
  background:
    radial-gradient(circle at 10% 20%, rgba(240, 184, 79, .14), transparent 25rem),
    linear-gradient(180deg, rgba(245, 240, 230, .075), rgba(245, 240, 230, .035));
  border-block: 1px solid rgba(245, 240, 230, .09);
}

.section-head {
  max-width: 860px;
  margin-bottom: 34px;
}

.home-interest .section-head {
  max-width: 980px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  margin-bottom: 12px;
  color: var(--accent-2);
  font-size: 13px;
  line-height: 1.4;
  font-weight: 820;
}

.section-title {
  max-width: 1040px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(32px, 4.4vw, 64px);
  line-height: 1;
  font-weight: 860;
  letter-spacing: 0;
  text-wrap: balance;
}

.section-desc {
  max-width: 760px;
  margin: 16px 0 0;
  color: rgba(245, 240, 230, .72);
  font-size: clamp(15.5px, 1.35vw, 18px);
  line-height: 1.62;
  font-weight: 500;
}

.grid {
  display: grid;
  gap: 16px;
}

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

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

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

.card {
  position: relative;
  min-height: 100%;
  overflow: hidden;
  border: 1px solid rgba(245, 240, 230, .14);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 18% 0%, rgba(47, 109, 255, .16), transparent 18rem),
    rgba(245, 240, 230, .085);
  box-shadow: 0 20px 64px rgba(0, 0, 0, .2);
  transition: transform .36s ease, border-color .36s ease, background .36s ease, box-shadow .36s ease;
}

.card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 79, 139, .46);
  background:
    radial-gradient(circle at 18% 0%, rgba(255, 79, 139, .12), transparent 18rem),
    rgba(245, 240, 230, .085);
  box-shadow: 0 28px 86px rgba(0, 0, 0, .34);
}

.card-pad {
  padding: clamp(24px, 3vw, 38px);
}

.card-title {
  position: relative;
  margin: 0;
  color: var(--ink);
  font-size: clamp(21px, 2.2vw, 30px);
  line-height: 1.08;
  font-weight: 820;
  letter-spacing: 0;
}

.card-text {
  position: relative;
  margin: 16px 0 0;
  color: rgba(245, 240, 230, .66);
  font-size: 15.5px;
  line-height: 1.72;
  font-weight: 500;
}

.tag {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 16px;
  padding: 7px 10px;
  border: 1px solid rgba(245, 240, 230, .16);
  border-radius: var(--radius-pill);
  background: rgba(245, 240, 230, .055);
  color: rgba(245, 240, 230, .68);
  font-size: 12px;
  font-weight: 760;
}

.tag-title {
  margin-top: 0;
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  grid-auto-flow: dense;
  gap: 0;
  overflow: hidden;
  border: 1px solid rgba(245, 240, 230, .14);
  border-radius: var(--radius);
  background: rgba(245, 240, 230, .045);
  box-shadow: var(--shadow);
}

.bento-card {
  position: relative;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  padding: clamp(24px, 3vw, 38px);
  border-right: 1px solid rgba(245, 240, 230, .12);
  border-bottom: 1px solid rgba(245, 240, 230, .12);
  color: var(--ink);
  background: rgba(20, 25, 37, .82);
  transition: flex .7s ease, transform .45s ease, background .45s ease, filter .45s ease;
}

.bento-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .5;
  background:
    radial-gradient(circle at 16% 14%, rgba(47, 109, 255, .26), transparent 18rem),
    linear-gradient(180deg, transparent, rgba(0, 0, 0, .42));
  transition: opacity .45s ease;
}

.bento-card:hover::before {
  opacity: .82;
}

.bento-card:hover .bento-media {
  transform: scale(1.05);
}

.bento-card:nth-child(1) {
  grid-column: span 4;
}

.bento-card:nth-child(2) {
  grid-column: span 2;
}

.bento-card:nth-child(3),
.bento-card:nth-child(4) {
  grid-column: span 3;
}

.bento-card:nth-child(5) {
  grid-column: span 6;
  min-height: 220px;
}

.bento-tall {
  background:
    linear-gradient(180deg, rgba(12, 16, 28, .1), rgba(12, 16, 28, .76)),
    url("assets/hero-factory.png");
  background-position: 70% 46%;
  background-size: cover;
  filter: contrast(1.05) saturate(1.08);
}

.bento-accent {
  background:
    linear-gradient(180deg, rgba(12, 16, 28, .12), rgba(12, 16, 28, .78)),
    url("assets/hero-factory.png");
  background-position: 28% 62%;
  background-size: cover;
  filter: contrast(1.05) saturate(1.08);
}

.bento-wide {
  background:
    radial-gradient(circle at 0% 0%, rgba(255, 122, 69, .18), transparent 24rem),
    radial-gradient(circle at 90% 20%, rgba(255, 79, 139, .11), transparent 22rem),
    rgba(245, 240, 230, .07);
}

.bento-media {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  filter: contrast(1.06) saturate(1.08);
  transition: transform .8s ease;
}

.bento-media-factory {
  background-image:
    linear-gradient(180deg, rgba(12, 16, 28, .08), rgba(12, 16, 28, .78)),
    url("assets/hero-factory.png");
}

.bento-body,
.bento-title,
.bento-text {
  position: relative;
  z-index: 1;
}

.bento-title {
  display: block;
  max-width: 640px;
  color: var(--ink);
  font-size: clamp(25px, 3.4vw, 52px);
  line-height: .95;
  font-weight: 860;
  letter-spacing: 0;
}

.bento-text {
  display: block;
  max-width: 740px;
  margin-top: 18px;
  color: rgba(245, 240, 230, .72);
  font-size: 15.5px;
  line-height: 1.66;
  font-weight: 540;
}

.pin-layout {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
  gap: clamp(36px, 6vw, 86px);
  align-items: start;
}

.pin-copy {
  padding-top: 10px;
}

.scrub-copy .scrub-word {
  display: inline-block;
  opacity: .12;
  will-change: opacity;
}

.pin-track {
  display: grid;
  gap: 18px;
}

.media-panel {
  min-height: 620px;
  display: grid;
  align-content: end;
  gap: 24px;
  overflow: hidden;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid rgba(245, 240, 230, .15);
  border-radius: var(--radius);
  background: rgba(245, 240, 230, .055);
  box-shadow: var(--shadow);
}

.media-visual {
  min-height: 380px;
  margin: calc(clamp(22px, 3vw, 34px) * -1) calc(clamp(22px, 3vw, 34px) * -1) 0;
  background-position: center;
  background-size: cover;
  filter: contrast(1.06) saturate(1.08);
  transform-origin: center;
}

.visual-pcba {
  background-image:
    linear-gradient(180deg, rgba(12, 16, 28, .02), rgba(12, 16, 28, .46)),
    url("assets/hero-factory.png");
  background-position: 64% 48%;
}

.visual-wire {
  background-image:
    linear-gradient(180deg, rgba(12, 16, 28, .02), rgba(12, 16, 28, .5)),
    url("assets/hero-factory.png");
  background-position: 32% 58%;
}

.visual-logistics {
  background-image:
    linear-gradient(180deg, rgba(12, 16, 28, .02), rgba(12, 16, 28, .5)),
    url("assets/hero-factory.png");
  background-position: 78% 52%;
}

.media-panel h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1;
  font-weight: 850;
  letter-spacing: 0;
}

.media-panel p {
  max-width: 560px;
  margin: 14px 0 0;
  color: rgba(245, 240, 230, .7);
  font-size: 16px;
  line-height: 1.68;
}

.accordion-section {
  padding-top: clamp(72px, 9vw, 140px);
}

.accordion-panels {
  display: flex;
  height: clamp(440px, 48vw, 620px);
  overflow: hidden;
  border: 1px solid rgba(245, 240, 230, .14);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.accordion-panel {
  position: relative;
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  padding: clamp(22px, 3vw, 36px);
  border-right: 1px solid rgba(245, 240, 230, .14);
  background-position: center;
  background-size: cover;
  transition: flex .72s cubic-bezier(.2, .8, .2, 1), filter .5s ease;
}

.accordion-panel:last-child {
  border-right: 0;
}

.accordion-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(12, 16, 28, .06), rgba(12, 16, 28, .82)),
    radial-gradient(circle at 50% 20%, rgba(47, 109, 255, .18), transparent 20rem);
}

.accordion-panel:hover {
  flex: 2.45;
}

.accordion-panel span,
.accordion-panel p {
  position: relative;
  z-index: 1;
}

.accordion-panel span {
  color: var(--ink);
  font-size: clamp(28px, 3vw, 46px);
  line-height: 1;
  font-weight: 860;
}

.accordion-panel p {
  max-width: 480px;
  margin: 16px 0 0;
  color: rgba(245, 240, 230, .72);
  font-size: 15px;
  line-height: 1.66;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .42s ease, transform .42s ease;
}

.accordion-panel:hover p {
  opacity: 1;
  transform: translateY(0);
}

.panel-pcba {
  background-image: url("assets/hero-factory.png");
  background-position: 18% 48%;
}

.panel-wire {
  background-image: url("assets/hero-factory.png");
  background-position: 42% 54%;
}

.panel-career {
  background-image: url("assets/hero-factory.png");
  background-position: 68% 48%;
}

.panel-news {
  background-image: url("assets/hero-factory.png");
  background-position: 88% 58%;
}

.metrics-section {
  padding-top: clamp(72px, 10vw, 150px);
}

.metric-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  overflow: hidden;
  border: 1px solid rgba(245, 240, 230, .14);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 10% 10%, rgba(47, 109, 255, .16), transparent 22rem),
    rgba(245, 240, 230, .055);
}

.metric {
  min-height: 220px;
  display: grid;
  align-content: end;
  padding: clamp(24px, 3vw, 36px);
  border-right: 1px solid rgba(245, 240, 230, .12);
}

.metric:last-child {
  border-right: 0;
}

.metric-value {
  margin: 0;
  color: var(--ink);
  font-size: clamp(36px, 4.2vw, 70px);
  line-height: .9;
  font-weight: 880;
  letter-spacing: 0;
}

.metric-label {
  margin: 16px 0 0;
  color: rgba(245, 240, 230, .62);
  font-size: 14px;
  font-weight: 720;
}

.marquee-section {
  overflow: hidden;
  border-block: 1px solid rgba(245, 240, 230, .12);
  background: var(--ink);
  color: #0e1320;
}

.marquee-track {
  display: flex;
  width: max-content;
  align-items: center;
  gap: clamp(26px, 5vw, 72px);
  padding: 24px 0;
  animation: marquee 28s linear infinite;
  will-change: transform;
}

.marquee-track span {
  font-size: clamp(26px, 4vw, 58px);
  line-height: 1;
  font-weight: 900;
  white-space: nowrap;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(245, 240, 230, .14);
  border-radius: var(--radius);
  list-style: none;
}

.feature-list li {
  min-height: 150px;
  display: grid;
  align-content: end;
  padding: 28px;
  border-right: 1px solid rgba(245, 240, 230, .12);
  background: rgba(245, 240, 230, .055);
  color: var(--ink);
  font-size: clamp(18px, 2vw, 26px);
  line-height: 1.2;
  font-weight: 760;
}

.feature-list li:last-child {
  border-right: 0;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid rgba(245, 240, 230, .14);
  border-radius: var(--radius);
  background: rgba(245, 240, 230, .075);
  box-shadow: var(--shadow);
}

.table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  font-size: 15.5px;
}

.table th,
.table td {
  padding: 24px 28px;
  vertical-align: top;
  text-align: left;
  border-bottom: 1px solid rgba(245, 240, 230, .1);
}

.table tr:last-child th,
.table tr:last-child td {
  border-bottom: 0;
}

.table th {
  width: 32%;
  color: var(--accent-2);
  font-weight: 820;
}

.table td {
  color: rgba(245, 240, 230, .72);
  line-height: 1.7;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.timeline-item {
  min-height: 190px;
  display: grid;
  align-content: space-between;
  gap: 22px;
  padding: 24px;
}

.timeline-item strong {
  color: var(--ink);
  font-size: clamp(18px, 2vw, 25px);
  line-height: 1.16;
}

.step-no {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: #0e1320;
  font-size: 14px;
  font-weight: 860;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr);
  gap: 18px;
  align-items: start;
}

.contact-form,
.contact-info {
  border: 1px solid rgba(245, 240, 230, .14);
  border-radius: var(--radius);
  background: rgba(245, 240, 230, .055);
  box-shadow: var(--shadow);
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: clamp(24px, 4vw, 44px);
}

.form-heading {
  margin-bottom: 8px;
}

.form-heading p {
  margin: 0;
  color: var(--ink);
  font-size: clamp(25px, 3vw, 42px);
  line-height: 1;
  font-weight: 860;
}

.form-heading span {
  display: block;
  margin-top: 12px;
  color: rgba(245, 240, 230, .64);
  line-height: 1.62;
}

.field {
  display: grid;
  gap: 8px;
}

.field label {
  color: rgba(245, 240, 230, .7);
  font-size: 13px;
  font-weight: 780;
}

.input {
  width: 100%;
  min-height: 54px;
  padding: 0 16px;
  border: 1px solid rgba(245, 240, 230, .16);
  border-radius: var(--radius);
  outline: none;
  background: rgba(0, 0, 0, .22);
  color: var(--ink);
  transition: border-color .22s ease, background .22s ease, box-shadow .22s ease;
}

textarea.input {
  min-height: 132px;
  padding-block: 16px;
  resize: vertical;
}

.input::placeholder {
  color: rgba(245, 240, 230, .34);
}

.input:focus {
  border-color: rgba(255, 79, 139, .66);
  background: rgba(0, 0, 0, .32);
  box-shadow: 0 0 0 4px rgba(255, 79, 139, .08);
}

.contact-info {
  display: grid;
  overflow: hidden;
}

.contact-item {
  padding: 24px 28px;
  border-bottom: 1px solid rgba(245, 240, 230, .1);
}

.contact-label {
  margin: 0 0 8px;
  color: var(--accent-2);
  font-size: 12px;
  font-weight: 820;
}

.contact-value {
  margin: 0;
  color: rgba(245, 240, 230, .78);
  line-height: 1.62;
  font-size: 16px;
  font-weight: 650;
}

.company-name {
  color: var(--ink);
}

.follow-us {
  padding: 24px 28px;
}

.follow-us p {
  margin: 0 0 12px;
  color: rgba(245, 240, 230, .68);
  font-weight: 760;
}

.socials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.socials span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 0 12px;
  border: 1px solid rgba(245, 240, 230, .14);
  border-radius: var(--radius-pill);
  color: rgba(245, 240, 230, .74);
  font-size: 13px;
  font-weight: 760;
}

.map-section {
  padding: 0 0 clamp(96px, 13vw, 180px);
}

.map-card {
  overflow: hidden;
  border: 1px solid rgba(245, 240, 230, .14);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.map-card iframe {
  width: 100%;
  height: min(58vw, 520px);
  min-height: 360px;
  display: block;
  border: 0;
  filter: grayscale(.88) invert(.9) contrast(1.05);
}

.footer {
  position: relative;
  overflow: hidden;
  padding: clamp(46px, 6vw, 76px) 0 34px;
  color: var(--ink);
  background:
    radial-gradient(circle at 15% 0%, rgba(71, 132, 255, .2), transparent 26rem),
    radial-gradient(circle at 85% 12%, rgba(255, 79, 139, .2), transparent 22rem),
    #1d2433;
  border-top: 1px solid rgba(245, 240, 230, .12);
}

.footer-cta {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: clamp(36px, 5vw, 58px);
  padding-bottom: clamp(28px, 4vw, 42px);
  border-bottom: 1px solid rgba(245, 240, 230, .12);
}

.footer-cta h2 {
  max-width: 820px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(34px, 5vw, 64px);
  line-height: .94;
  font-weight: 880;
  letter-spacing: 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 1.05fr) minmax(0, .8fr) auto;
  gap: clamp(22px, 4vw, 54px);
  align-items: start;
}

.footer-col h3 {
  margin: 0;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.35;
  font-weight: 820;
}

.footer-line {
  display: block;
  width: 44px;
  height: 2px;
  margin: 14px 0;
  background: var(--accent-2);
}

.footer-col p {
  margin: 0 0 11px;
  color: rgba(245, 240, 230, .74);
  font-size: 14px;
  line-height: 1.68;
}

.footer-col a {
  color: rgba(245, 240, 230, .84);
  transition: color .2s ease;
}

.footer-col a:hover {
  color: var(--accent-2);
}

.cert-logos {
  display: grid;
  grid-template-columns: repeat(3, 92px);
  gap: 8px;
  justify-content: end;
  align-items: start;
}

.cert-logos img {
  width: 100%;
  max-width: 92px;
  padding: 7px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .92);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s ease, transform .8s ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

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

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

@media (max-width: 1180px) {
  .site-header {
    width: min(100% - 24px, 1000px);
  }

  .header-inner {
    padding-right: 8px;
  }

  .brand {
    min-width: 190px;
  }

  .brand-logo {
    width: 92px;
  }

  .nav a {
    padding: 0 11px;
    font-size: 12px;
  }

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

@media (max-width: 920px) {
  :root {
    --container: min(100% - 32px, 720px);
    --wide: min(100% - 32px, 720px);
  }

  .topbar-inner {
    justify-content: center;
  }

  .topbar-left {
    justify-content: center;
  }

  .site-header {
    border-radius: 28px;
  }

  .header-inner {
    align-items: flex-start;
    flex-direction: column;
    padding: 12px;
  }

  .nav {
    width: 100%;
    justify-content: flex-start;
  }

  .page-hero,
  .home-hero {
    min-height: auto;
    padding-top: 74px;
  }

  .hero-title {
    font-size: clamp(42px, 12vw, 76px);
  }

  .hero-stage-caption {
    position: static;
    padding: 14px 16px;
    background: rgba(25, 32, 46, .82);
  }

  .grid-2,
  .grid-3,
  .contact-layout,
  .pin-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

  .bento-card,
  .bento-card:nth-child(1),
  .bento-card:nth-child(2),
  .bento-card:nth-child(3),
  .bento-card:nth-child(4),
  .bento-card:nth-child(5) {
    grid-column: span 2;
    min-height: 230px;
  }

  .media-panel {
    min-height: 520px;
  }

  .media-visual {
    min-height: 300px;
  }

  .accordion-panels {
    height: auto;
    flex-direction: column;
  }

  .accordion-panel {
    min-height: 260px;
    border-right: 0;
    border-bottom: 1px solid rgba(245, 240, 230, .14);
  }

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

  .accordion-panel p {
    opacity: 1;
    transform: none;
  }

  .timeline,
  .feature-list {
    grid-template-columns: 1fr;
  }

  .feature-list li {
    border-right: 0;
    border-bottom: 1px solid rgba(245, 240, 230, .12);
  }

  .feature-list li:last-child {
    border-bottom: 0;
  }

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

  .cert-logos {
    justify-content: start;
  }
}

@media (max-width: 620px) {
  :root {
    --container: min(100% - 24px, 520px);
  }

  .topbar-inner {
    min-height: auto;
    padding: 8px 0;
  }

  .topbar-left {
    gap: 8px 12px;
  }

  .topbar-right {
    display: none;
  }

  .site-header {
    top: 8px;
    margin-top: 8px;
  }

  .brand {
    width: 100%;
    min-width: 0;
  }

  .brand-logo {
    width: 86px;
  }

  .nav a {
    min-height: 38px;
    padding: 0 10px;
  }

  .page-hero,
  .page-hero.compact,
  .home-hero {
    padding: 58px 0 50px;
  }

  .hero-title,
  .page-hero.compact .hero-title {
    font-size: clamp(38px, 14vw, 58px);
    line-height: .94;
  }

  .hero-text {
    font-size: 16px;
  }

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

  .btn {
    width: 100%;
  }

  .inline-image {
    width: clamp(64px, 23vw, 98px);
  }

  .section {
    padding: 60px 0;
  }

  .section-title {
    font-size: clamp(30px, 10vw, 46px);
  }

  .bento-grid,
  .metric-strip {
    grid-template-columns: 1fr;
  }

  .bento-card,
  .bento-card:nth-child(1),
  .bento-card:nth-child(2),
  .bento-card:nth-child(3),
  .bento-card:nth-child(4),
  .bento-card:nth-child(5),
  .metric {
    grid-column: span 1;
  }

  .metric,
  .metric:last-child {
    border-right: 0;
    border-bottom: 1px solid rgba(245, 240, 230, .12);
  }

  .metric:last-child {
    border-bottom: 0;
  }

  .hero-stage,
  .hero-content {
    width: var(--container);
  }

  .hero-stage-image {
    height: 170px;
  }

  .cert-logos {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: 320px;
  }

  .cert-logos img {
    max-width: 96px;
  }

  .media-panel {
    min-height: auto;
  }

  .media-visual {
    min-height: 240px;
  }

  .table {
    min-width: 640px;
  }

  .map-card iframe {
    min-height: 320px;
  }
}
