:root {
  --bg: #00020a;
  --text: #E5E5E5;
  --accent: #F2C94C;
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.16);
  --bg-soft: #030711;
  --bg-soft-2: #00020a;
  --glass: rgba(255, 255, 255, 0.05);
  --font: 'Futura', 'Futura PT', 'Century Gothic', 'Trebuchet MS', sans-serif;
  --divider-width: 540px;
  --bg-gradient: linear-gradient(150deg, #0A0E1A 0%, #050a16 42%, #00020a 100%);
  --bg-overlay-1: radial-gradient(120% 120% at 15% 18%, rgba(58, 101, 220, 0.05), transparent 60%);
  --bg-overlay-2: radial-gradient(120% 120% at 82% 8%, rgba(255, 182, 94, 0.03), transparent 58%);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: var(--font);
  background: var(--bg-overlay-1), var(--bg-overlay-2), var(--bg-gradient);
  color: var(--text);
  line-height: 1.6;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  transition: background 0.4s ease, color 0.4s ease;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
button { font: inherit; }

.page-wrap {
  min-height: 100vh;
}

.hero {
  min-height: 100vh;
  height: 100vh;
  display: grid;
  align-items: center;
  background:
    radial-gradient(120% 140% at 15% 22%, rgba(72, 132, 255, 0.14), transparent 60%),
    radial-gradient(120% 120% at 82% 8%, rgba(255, 200, 120, 0.1), transparent 58%),
    linear-gradient(175deg, #0A0E1A 0%, #0a1228 42%, #060914 100%);
  padding: 60px 4vw 32px 8vw;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(80% 80% at 0% 10%, rgba(10,14,26,0.4), transparent 45%);
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  align-items: center;
  justify-items: center;
  justify-content: center;
  column-gap: 8px;
  width: 100%;
  max-width: 1500px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero-left {
  display: flex;
  flex-direction: column;
  gap: 22px;
  align-items: flex-start;
  min-height: 300px;
  height: 100%;
  justify-content: center;
}

.logo-block {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
  max-width: 1100px;
  min-height: 300px;
  height: 100%;
  justify-content: center;
  transform: translateY(-3%);
}

.hero-copy {
  gap: 14px;
  max-width: 1100px;
}

.hero-copy p {
  margin: 0;
  color: var(--text);
  line-height: 1.72;
  text-align: left;
}

.hero-copy-lead {
  font-weight: 600;
  font-size: clamp(24px, 3vw, 33px);
  letter-spacing: 0.015em;
  color: var(--accent);
}

.hero-copy-body {
  font-size: clamp(16px, 2.25vw, 19px);
  letter-spacing: 0.01em;
  max-width: 900px;
}

.hero-logo {
  width: 100%;
  height: auto;
  display: block;
}

.nav-shell {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  transform: none;
  z-index: 18;
}

.nav-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: rgba(6, 9, 20, 0.94);
  box-shadow: 0 6px 18px rgba(0,0,0,0.28);
  border-radius: 0;
  backdrop-filter: blur(10px);
}

.nav-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: auto 1fr auto;
  grid-template-areas: "brand nav toggle";
  gap: 12px;
  padding: 3px 8vw;
  align-items: center;
  justify-items: center;
  width: 100%;
}

.nav-frame {
  width: 100%;
  border: none;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.nav-brand-small {
  display: flex;
  align-items: center;
  width: 120px;
  justify-self: start;
  cursor: pointer;
  grid-area: brand;
}

.nav-logo-small {
  width: 100%;
  height: auto;
}

.nav-drawer {
  grid-area: nav;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  width: 100%;
  max-width: none;
}

.nav-list {
  display: flex;
  flex-direction: row;
  gap: 14px;
  flex-wrap: nowrap;
  align-items: center;
  justify-self: center;
}

.nav-separator {
  color: var(--text);
  opacity: 0.5;
  font-size: 18px;
  padding: 0 4px;
}

.nav-link {
  background: transparent;
  border: 1px solid transparent;
  color: var(--text);
  text-align: center;
  padding: 2px 11px;
  border-radius: 0;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  font-size: 17px;
  font-weight: 400;
  letter-spacing: 0.03em;
  text-transform: none;
}

.nav-toggle {
  grid-area: toggle;
  width: 44px;
  height: 44px;
  border-radius: 0;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
  display: none;
  align-items: center;
  justify-content: center;
  position: relative;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.nav-toggle:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.18);
  transform: translateY(-1px);
}

.nav-toggle-bar {
  display: block;
  position: absolute;
  left: 50%;
  width: 22px;
  height: 2px;
  border-radius: 0;
  background: #ffffff;
  transition: transform 0.2s ease, opacity 0.2s ease;
  transform-origin: center;
}

.nav-toggle-bar:nth-child(1) {
  transform: translate(-50%, -6px);
}

.nav-toggle-bar:nth-child(2) {
  transform: translate(-50%, 6px);
}

body.nav-open .nav-toggle-bar:nth-child(1) {
  transform: translate(-50%, 0) rotate(45deg);
}

body.nav-open .nav-toggle-bar:nth-child(2) {
  transform: translate(-50%, 0) rotate(-45deg);
}

.nav-backdrop {
  display: none;
}

.nav-link:hover {
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.08);
}

.nav-labs {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid transparent;
  background: transparent;
  padding: 3px 12px;
  border-radius: 0;
  min-width: 0;
  justify-content: center;
  position: relative;
  transition: background 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.nav-labs:hover {
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.08);
}

.power-button {
  position: relative;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.18);
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.12), rgba(255,255,255,0.02));
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.05), 0 6px 14px rgba(0,0,0,0.25);
  transition: box-shadow 0.28s ease, border-color 0.28s ease, background 0.28s ease;
}

.power-button::after {
  content: '';
  position: absolute;
  inset: 8px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.6);
  box-shadow: 0 0 0 rgba(242, 201, 76, 0.0);
  transition: border-color 0.28s ease, box-shadow 0.28s ease;
}

.nav-labs[aria-pressed="true"] .power-button {
  border-color: rgba(242, 201, 76, 0.6);
  box-shadow: 0 0 14px rgba(242, 201, 76, 0.35), inset 0 0 0 1px rgba(242, 201, 76, 0.35);
  background: radial-gradient(circle at 50% 50%, rgba(242,201,76,0.2), rgba(255,255,255,0.04));
}

.nav-labs[aria-pressed="true"] .power-button::after {
  border-color: rgba(242, 201, 76, 0.9);
  box-shadow: 0 0 16px rgba(242, 201, 76, 0.45);
  animation: powerPulse 0.4s ease;
}


.labs-text {
  font-size: 17px;
  font-weight: 400;
  letter-spacing: 0.03em;
  color: #ffffff;
  min-width: 82px;
  text-align: center;
}

.nav-labs[aria-pressed="true"] .labs-text {
  color: #F2C94C;
  text-shadow: 0 0 12px rgba(242, 201, 76, 0.55);
}

@keyframes powerPulse {
  0% { box-shadow: 0 0 0 rgba(242, 201, 76, 0.5); transform: scale(0.95); }
  100% { box-shadow: 0 0 22px rgba(242, 201, 76, 0.0); transform: scale(1); }
}

@media (max-width: 1024px) {
  .nav-content {
    grid-template-columns: auto auto;
    grid-template-areas: "brand toggle";
    justify-content: space-between;
    padding: 10px 5vw;
    align-items: center;
  }

  .nav-drawer {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 5vw 16px;
    background: rgba(6, 9, 20, 0.96);
    border-bottom: 1px solid var(--border-strong);
    box-shadow: 0 16px 32px rgba(0,0,0,0.35);
    z-index: 17;
    max-height: calc(100vh - 72px);
    overflow-y: auto;
    transform: none;
    transition: none;
    pointer-events: auto;
  }

  body.nav-open {
    overflow: hidden;
  }

  body.nav-open .nav-drawer {
    display: flex;
  }

  .nav-frame {
    width: 100%;
    justify-content: flex-start;
  }

  .nav-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    width: 100%;
  }

  .nav-link {
    width: 100%;
    justify-content: flex-start;
    text-align: left;
    padding: 10px 12px;
    border: none;
    border-bottom: 1px solid var(--border-strong);
    border-radius: 0;
    background: transparent;
  }

  .nav-link:hover {
    background: transparent;
    transform: none;
  }

  .nav-list .nav-link:last-child {
    border-bottom: none;
  }

  body.labs-mode-on .nav-link {
    border-bottom-color: rgba(6, 9, 20, 0.4);
  }

  .nav-separator {
    display: none;
  }

  .lang-toggle {
    width: 100%;
    justify-content: flex-start;
    padding-top: 6px;
    margin-top: 2px;
    border-top: 1px solid var(--border);
    gap: 10px;
  }

  .nav-toggle {
    display: inline-flex;
    justify-self: end;
  }

  .nav-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 16;
  }

  body.nav-open .nav-backdrop {
    display: block;
  }
}

.hero-right {
  display: flex;
  justify-content: flex-end;
  width: 100%;
  min-height: 340px;
  align-items: center;
  margin-left: auto;
  flex-shrink: 0;
}

.hero-mascot {
  width: min(431px, 72vw);
  height: auto;
  object-fit: contain;
  transform: translateX(8px);
}

.content {
  background: transparent;
}

.block {
  min-height: 100vh;
  padding: 120px 10vw 72px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 0;
  scroll-margin-top: 0;
  background:
    radial-gradient(120% 120% at 50% 0%, rgba(22, 32, 58, 0.2), transparent 55%),
    radial-gradient(120% 120% at 18% 6%, rgba(72, 132, 255, 0.08), transparent 60%),
    linear-gradient(150deg, #0A0E1A 0%, #0a1126 42%, #060914 100%);
}

.block h1 {
  margin: 0 0 16px;
  font-size: 32px;
  letter-spacing: 0.04em;
  font-family: 'Futura', 'Futura PT', 'Century Gothic', 'Trebuchet MS', sans-serif;
  font-weight: 400;
  color: #F2C94C;
  text-align: center;
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: fit-content;
}

.section-heading {
  display: block;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  width: fit-content;
  margin-top: 0;
}

.section-content {
  flex: 1;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  min-height: 0;
}

.section-content > .subsection,
.section-content > .solutions-layout,
.section-content > .why-hero,
.section-content > .contact-shell,
.section-content > .labs-placeholder {
  margin-top: 0;
}

#about .section-content > .subsection {
  margin-top: 0;
}
#about > h1 {
  text-align: center;
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: fit-content;
  margin-top: 0;
}

#about {
  width: 100%;
  max-width: none;
  margin: 0;
  align-items: center;
  text-align: center;
}

.about-intro {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: min(1000px, 96vw);
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.about-intro p {
  margin: 0;
  color: #E5E5E5;
  line-height: 1.75;
  text-align: center;
}

.about-intro .lead {
  font-weight: 500;
  font-size: 18px;
  letter-spacing: 0.04em;
}

.subsection {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
}
#about .subsection {
  align-items: center;
  width: min(1100px, 96vw);
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.subheading {
  margin: 0;
  font-family: 'Futura', 'Futura PT', 'Century Gothic', 'Trebuchet MS', sans-serif;
  font-weight: 400;
  font-size: 18px;
  letter-spacing: 0.04em;
  color: #F2C94C;
}
#about .subheading {
  text-align: center;
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: fit-content;
}

.subsection p {
  margin: 0;
  color: #E5E5E5;
  line-height: 1.7;
  text-align: left;
}
#about .subsection p {
  text-align: center;
  width: 100%;
}

.story-block {
  width: min(1100px, 96vw);
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-self: center;
  align-items: center;
  text-align: center;
}

.story-block p {
  margin: 0;
  text-align: center;
}

.team-grid {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 40px;
  width: 100%;
  max-width: 1200px;
  margin: 10px auto 0;
  flex-wrap: wrap;
}

#about .our-team-heading {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: fit-content;
  text-align: center;
}

.profile-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
  padding: 10px 14px;
  border-radius: 0;
  background: transparent;
  transition: transform 0.2s ease;
  cursor: pointer;
  width: clamp(220px, 26vw, 260px);
  flex: 0 0 auto;
}

.profile-card:hover {
  transform: translateY(-4px);
}

.profile-avatar {
  width: 122px;
  height: 158px;
  border-radius: 0;
  padding: 6px;
  background: radial-gradient(circle at 50% 40%, rgba(242, 201, 76, 0.18), rgba(255,255,255,0.02));
  display: grid;
  place-items: center;
  box-shadow: 0 0 0 1px rgba(242, 201, 76, 0.6), 0 0 18px rgba(242, 201, 76, 0.28);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.profile-card:hover .profile-avatar {
  transform: scale(1.03);
  box-shadow: 0 0 0 1px rgba(242, 201, 76, 0.9), 0 0 24px rgba(242, 201, 76, 0.38);
}

.profile-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
  display: block;
}

.team-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
  text-align: center;
}

.team-name {
  font-family: 'Futura', 'Futura PT', 'Century Gothic', 'Trebuchet MS', sans-serif;
  font-weight: 500;
  font-size: 17px;
  color: #E5E5E5;
}

.team-role {
  font-family: 'Futura', 'Futura PT', 'Century Gothic', 'Trebuchet MS', sans-serif;
  font-size: 13px;
  color: rgba(229, 229, 229, 0.78);
}

#about .our-team-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.partnerships-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  gap: 14px;
}


.partner-marquee {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  overflow: hidden;
  position: relative;
  padding: 10px 0 12px;
  mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
}

.partner-track {
  display: flex;
  gap: 38px;
  width: max-content;
  align-items: center;
  animation: partnerMarquee 26s linear infinite;
}

.partner-logo {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px 10px;
  background: transparent;
  border: none;
}

.partner-logo img {
  height: 149px;
  width: auto;
  display: block;
  object-fit: contain;
  filter: grayscale(100%) brightness(0.9);
  opacity: 0.85;
  transition: filter 0.2s ease, opacity 0.2s ease;
}

.partner-logo:hover img {
  filter: grayscale(0%) brightness(1);
  opacity: 1;
}

@keyframes partnerMarquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Solutions layout */
.solutions-layout {
  width: 100%;
  max-width: 1200px;
  margin: 18px auto 0;
  display: grid;
  grid-template-columns: minmax(320px, 1.2fr) minmax(0, 1fr);
  gap: 28px;
  align-items: stretch;
  position: relative;
}

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

.solution-card {
  background:
    linear-gradient(135deg, rgba(18, 26, 44, 0.92), rgba(8, 12, 22, 0.9));
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 18px 20px 20px;
  cursor: pointer;
  outline: none;
  box-shadow: 0 10px 22px rgba(0,0,0,0.28);
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease, background 0.3s ease;
  position: relative;
  overflow: hidden;
}

.solution-card::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 2px;
  border-radius: 0;
  background: conic-gradient(
    from 0deg,
    transparent 0deg,
    rgba(255, 255, 255, 0.7) 40deg,
    transparent 90deg,
    transparent 180deg,
    rgba(255, 255, 255, 0.3) 220deg,
    transparent 300deg,
    transparent 360deg
  );
  opacity: 0;
  transition: opacity 0.25s ease;
  z-index: 0;
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

.solution-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(120% 160% at 0% 0%, rgba(255, 255, 255, 0.12), transparent 60%);
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
  z-index: 0;
}

.solution-card:hover {
  transform: translateY(-3px);
  border-color: rgba(242, 201, 76, 0.45);
  box-shadow: 0 16px 32px rgba(0,0,0,0.34);
}

.solution-card.is-active {
  border-color: rgba(242, 201, 76, 0.7);
  box-shadow: 0 22px 40px rgba(0,0,0,0.38);
  background:
    linear-gradient(135deg, rgba(26, 34, 54, 0.96), rgba(10, 12, 22, 0.92));
}

.solution-card.is-active::after {
  opacity: 1;
}

.solution-card.is-active::before {
  opacity: 0;
  animation: none;
}

.solution-card h3 {
  margin: 0;
  font-family: 'Futura', 'Futura PT', 'Century Gothic', 'Trebuchet MS', sans-serif;
  font-size: 17px;
  letter-spacing: 0.03em;
  color: #ffffff;
  font-weight: 400;
  position: relative;
  z-index: 1;
}

.solution-card.is-active h3 {
  color: #F2C94C;
}

.solution-card:focus-visible {
  box-shadow: 0 0 0 2px rgba(242, 201, 76, 0.6), 0 8px 18px rgba(0,0,0,0.24);
}

.solutions-detail {
  background:
    radial-gradient(120% 140% at 10% 0%, rgba(242, 201, 76, 0.12), transparent 55%),
    linear-gradient(160deg, rgba(12, 18, 32, 0.96), rgba(6, 8, 16, 0.92));
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 26px;
  min-height: 240px;
  height: 100%;
  box-shadow: 0 22px 48px rgba(0,0,0,0.4), 0 0 30px rgba(242, 201, 76, 0.08);
  position: relative;
  overflow: hidden;
}

.solutions-detail::before {
  content: none;
}

.solutions-detail::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(80% 120% at 80% 0%, rgba(72, 132, 255, 0.16), transparent 60%);
  opacity: 0.6;
  animation: solutionsGlow 6s ease-in-out infinite;
  pointer-events: none;
}

.solutions-detail-title::before {
  content: "";
  position: absolute;
  top: -14px;
  left: 0;
  width: 56px;
  height: 2px;
  background: rgba(242, 201, 76, 0.7);
  box-shadow: 0 0 16px rgba(242, 201, 76, 0.45);
}

.solutions-detail-title {
  margin: 0 0 14px;
  font-family: 'Futura', 'Futura PT', 'Century Gothic', 'Trebuchet MS', sans-serif;
  font-size: 22px;
  letter-spacing: 0.03em;
  color: #F2C94C;
  font-weight: 400;
  position: relative;
  z-index: 1;
}

.solutions-detail-body {
  margin: 0;
  color: #E5E5E5;
  line-height: 1.7;
  font-size: 18px;
  position: relative;
  z-index: 1;
}

.solutions-console {
  margin-top: 22px;
  padding: 14px 16px;
  background: rgba(6, 10, 20, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-family: "Courier New", Consolas, monospace;
  font-size: 12px;
  line-height: 1.5;
  color: rgba(242, 201, 76, 0.9);
  min-height: 92px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  position: relative;
  z-index: 1;
}

.solutions-console-line {
  opacity: 0.85;
  animation: consoleLineIn 0.35s ease;
}

@keyframes consoleLineIn {
  from { opacity: 0; transform: translateY(4px); }
  to { opacity: 0.85; transform: translateY(0); }
}

@keyframes solutionsGlow {
  0%, 100% { opacity: 0.55; transform: translateY(0); }
  50% { opacity: 0.85; transform: translateY(-6px); }
}

@keyframes snakeBorder {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}


.why-hero {
  position: relative;
  width: 100%;
  max-width: 960px;
  margin: 22px auto 0;
  padding: 36px 18px 30px;
  text-align: center;
}

.why-shell {
  padding: 0;
  margin: 0 auto;
  max-width: 820px;
}


.why-headline {
  margin: 0 0 12px;
  font-family: 'Futura', 'Futura PT', 'Century Gothic', 'Trebuchet MS', sans-serif;
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 1.35;
  color: #E5E5E5;
}

.why-highlight {
  color: #EAC46E;
}

.why-cta {
  margin: 0;
  font-family: 'Futura', 'Futura PT', 'Century Gothic', 'Trebuchet MS', sans-serif;
  font-size: clamp(15px, 2.4vw, 18px);
  font-weight: 400;
  letter-spacing: 0.005em;
  color: rgba(229, 229, 229, 0.9);
  line-height: 1.5;
}

.reveal-on-view {
  opacity: 0;
  transition: opacity 0.4s ease;
}

.reveal-on-view.revealed {
  opacity: 1;
}

@media (max-width: 768px) {
  .why-hero {
    padding: 28px 12px 26px;
  }
}

/* Contact */
.contact-shell {
  max-width: 960px;
  margin: 18px auto 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.contact-shell.revealed {
  opacity: 1;
}

.contact-top {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  text-align: center;
}

.contact-brief {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(229,229,229,0.9);
  font-size: 14px;
  letter-spacing: 0.01em;
}

.contact-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #EAC46E;
}

.contact-details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px 18px;
  width: 100%;
}

.contact-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: center;
}

.contact-social {
  margin-top: 4px;
}

.contact-linkedin {
  display: inline-flex;
  width: 32px;
  height: 32px;
  border-radius: 0;
  background: transparent;
  border: 1px solid rgba(234, 196, 110, 0.6);
  align-items: center;
  justify-content: center;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease, background 0.18s ease;
  box-shadow: 0 6px 12px rgba(0,0,0,0.18);
  color: #EAC46E;
}

.contact-linkedin:hover {
  transform: translateY(-1px);
  border-color: rgba(234, 196, 110, 0.9);
  box-shadow: 0 8px 16px rgba(0,0,0,0.22);
}

.contact-linkedin svg {
  width: 18px;
  height: 18px;
}

.contact-linkedin svg path {
  fill: currentColor;
}

.contact-label {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(229, 229, 229, 0.7);
}

.contact-link {
  color: #F2F2F2;
  text-decoration: none;
  font-size: 15px;
  transition: color 0.2s ease;
}

.contact-link:hover {
  color: #EAC46E;
}

.contact-form {
  background: rgba(255,255,255,0.01);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 0;
  padding: 16px 18px 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px 14px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-field label {
  font-size: 13px;
  letter-spacing: 0.02em;
  color: #F2F2F2;
}

.form-field input,
.form-field textarea {
  width: 100%;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 0;
  padding: 10px 12px;
  color: #E5E5E5;
  font-family: inherit;
  font-size: 15px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-field textarea {
  resize: vertical;
  min-height: 38px;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: rgba(229, 229, 229, 0.5);
}

.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: rgba(234, 196, 110, 0.9);
  box-shadow: 0 0 0 1px rgba(234, 196, 110, 0.35);
}

/* Labs mode inversion */
.labs-only {
  display: none;
}

#vic-labs-section .section-divider {
  display: block;
}

body.labs-mode-on {
  background:
    radial-gradient(120% 120% at 15% 18%, rgba(0, 0, 0, 0.06), transparent 60%),
    radial-gradient(120% 120% at 82% 8%, rgba(0, 0, 0, 0.04), transparent 58%),
    linear-gradient(150deg, #f6f6f6 0%, #ededed 42%, #e5e5e5 100%);
  color: #0A0E1A;
}

body.labs-mode-on .block,
body.labs-mode-on .hero {
  background:
    radial-gradient(120% 120% at 50% 0%, rgba(0,0,0,0.05), transparent 55%),
    radial-gradient(120% 120% at 18% 6%, rgba(0,0,0,0.04), transparent 60%),
    linear-gradient(150deg, #f6f6f6 0%, #ededed 42%, #e5e5e5 100%);
  color: #0A0E1A;
}

body.labs-mode-on .section-divider {
  background: #F2C94C;
}

body.labs-mode-on .section-divider::before {
  background: #F2C94C;
}

body.labs-mode-on h1,
body.labs-mode-on h2,
body.labs-mode-on h3,
body.labs-mode-on p,
body.labs-mode-on label,
body.labs-mode-on .text-default {
  color: #0A0E1A;
}

body.labs-mode-on h1,
body.labs-mode-on h2,
body.labs-mode-on h3 {
  color: #F2C94C;
}

body.labs-mode-on .nav-link {
  color: #0A0E1A;
}

body.labs-mode-on .nav-bg {
  background: rgba(245, 245, 245, 0.95);
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
  border: none;
}

body.labs-mode-on .nav-drawer {
  background: transparent;
  border-color: transparent;
  box-shadow: none;
}

@media (max-width: 1024px) {
  body.labs-mode-on .nav-drawer {
    background: rgba(245, 245, 245, 0.96);
    border-color: rgba(0,0,0,0.08);
    box-shadow: 0 16px 32px rgba(0,0,0,0.15);
  }
}

body.labs-mode-on .nav-toggle {
  border-color: rgba(0,0,0,0.14);
  background: rgba(0,0,0,0.04);
}

body.labs-mode-on .nav-toggle-bar {
  background: #0A0E1A;
}

body.labs-mode-on .nav-link:hover {
  background: rgba(0,0,0,0.05);
}

body.labs-mode-on .contact-form {
  background: rgba(0,0,0,0.02);
  border-color: rgba(0,0,0,0.08);
}

body.labs-mode-on .contact-label,
body.labs-mode-on .contact-link,
body.labs-mode-on .contact-note,
body.labs-mode-on .contact-brief,
body.labs-mode-on .form-field label {
  color: #0A0E1A;
}


body.labs-mode-on .form-field input,
body.labs-mode-on .form-field textarea {
  background: rgba(0,0,0,0.03);
  color: #0A0E1A;
  border-color: rgba(0,0,0,0.12);
}

body.labs-mode-on .form-field input::placeholder,
body.labs-mode-on .form-field textarea::placeholder {
  color: #0A0E1A;
}

body.labs-mode-on #vic-labs-section {
  display: flex;
  flex-direction: column;
  align-items: center;
}

body.labs-mode-on #vic-labs-section .labs-placeholder {
  max-width: 1100px;
  width: 100%;
  --labs-frame-pad: 14px;
  padding: 32px 26px 36px;
  border: none;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.labs-placeholder .labs-line {
  margin: 0;
  color: inherit;
  font-size: 15px;
  line-height: 1.6;
  letter-spacing: 0.01em;
  max-width: none;
}

.labs-placeholder .lead-line {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.labs-orbit {
  position: relative;
  width: 100%;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0;
}

.labs-orbit-ring {
  position: absolute;
  inset: 7%;
  border-radius: 0;
  pointer-events: none;
}

.labs-orbit-center {
  position: relative;
  z-index: 2;
  padding: 18px 22px;
  border-radius: 0;
  border: none;
  background: transparent;
  color: #0A0E1A;
  font-weight: 500;
  letter-spacing: 0.015em;
  text-align: center;
  max-width: 620px;
  box-shadow: none;
}
.labs-orbit-center p {
  margin: 5px 0;
  font-size: 14.5px;
  line-height: 1.55;
}
.labs-orbit-center .orbit-lead {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.labs-orbit-tag {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-size: 13px;
  color: #0A0E1A;
  padding: 6px 10px;
  border-radius: 0;
  border: 1px solid rgba(242, 201, 76, 0.48);
  background: linear-gradient(145deg, rgba(255,255,255,0.96), rgba(255,255,255,0.82));
  box-shadow: 0 10px 22px rgba(0,0,0,0.12), 0 0 0 1px rgba(242, 201, 76, 0.08);
  white-space: normal;
  max-width: 230px;
  text-align: center;
  line-height: 1.35;
  word-break: break-word;
  pointer-events: none;
}

.labs-icons-list {
  display: none;
}

.labs-icon-item {
  font-size: 14px;
  color: #0A0E1A;
  display: inline-flex;
  gap: 6px;
  align-items: center;
  padding: 8px 10px;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 0;
  background: rgba(255,255,255,0.04);
}

.labs-float-cloud {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.labs-float-tag {
  position: absolute;
  font-size: 13px;
  color: rgba(10, 14, 26, 0.55);
  padding: 4px 8px;
  border-radius: 0;
  border: 1px solid rgba(0,0,0,0.08);
  background: rgba(255,255,255,0.14);
  box-shadow: 0 6px 14px rgba(0,0,0,0.08);
}

/* Labs mode: show only VIC Labs + Contact (keep top nav visible) */
body.labs-mode-on .hero-inner {
  display: none;
}

body.labs-mode-on .hero {
  min-height: auto;
  height: auto;
  padding: 0;
  background: transparent;
}

body.labs-mode-on .block {
  display: none;
}

body.labs-mode-on #vic-labs-section,
body.labs-mode-on #contact {
  display: flex;
}

body.labs-mode-on #vic-labs-section .section-divider {
  display: block !important;
  width: min(var(--divider-width), 60vw);
  margin: 0 auto 10px;
}

body.labs-mode-on #vic-labs-section {
  margin-top: 0;
}

#about {
  display: none;
}

/* About-only mode: hide hero and non-target sections, show About + Contact */
body.about-mode-on .hero {
  min-height: auto;
  height: auto;
  padding: 0;
  background: transparent;
}

body.about-mode-on .hero-inner {
  display: none;
}

body.about-mode-on .block {
  display: none;
}

body.about-mode-on #about,
body.about-mode-on #contact {
  display: flex;
}

body.about-mode-on #about {
  margin-top: 0;
}

body.about-mode-on main {
  padding-top: 0;
}

body.about-mode-on #about .subsection {
  margin-top: 8px;
}

body.about-mode-on #about .story-block {
  gap: 8px;
}

body.about-mode-on .team-grid {
  gap: 20px;
  margin-top: 4px;
}

body.labs-mode-on main {
  padding-top: 0;
}

/* Labs mode: language toggle */
body.labs-mode-on .lang-toggle {
  color: #0A0E1A;
}

body.labs-mode-on .lang.active::after {
  background: #F2C94C;
}

/* Labs mode: nav colors */
body.labs-mode-on .nav-frame {
  background: transparent;
  border-color: transparent;
}

body.labs-mode-on .nav-separator {
  color: #0A0E1A;
  opacity: 0.5;
}

@media (max-width: 540px) {
  .nav-content {
    padding: 7px 5vw 6px;
  }

  .nav-list {
    gap: 6px;
  }

  .nav-link {
    font-size: 14px;
  }

  .nav-brand-small {
    width: 78px;
  }

  .hero {
    padding: 96px 5vw 24px;
  }

  #vic-labs-section .labs-placeholder {
    padding: 18px 12px 20px;
  }

  .labs-orbit {
    min-height: 720px;
    margin-top: 0;
  }

  .labs-orbit-ring {
    inset: 0;
  }

  .labs-orbit-center {
    padding: 16px 14px;
    width: 40vw;
    max-width: 220px;
    margin-top: calc(12px - 2%);
  }

  .labs-orbit-center p {
    font-size: 13px;
    line-height: 1.5;
  }

  .labs-orbit-center .orbit-lead {
    font-size: 15px;
  }

  .labs-orbit-tag {
    font-size: 11px;
    padding: 6px 8px;
    max-width: 100px;
  }
}

/* Labs mode: team profiles */
body.labs-mode-on .profile-card {
  color: #0A0E1A;
}

body.labs-mode-on .team-name,
body.labs-mode-on .team-role {
  color: #0A0E1A;
}

body.labs-mode-on .profile-avatar {
  box-shadow: 0 0 0 1px rgba(242, 201, 76, 0.6), 0 0 18px rgba(242, 201, 76, 0.28);
}

/* Labs mode: solutions cards */
body.labs-mode-on .solution-card,
body.labs-mode-on .solutions-detail {
  background: #F7F7F7;
  border-color: rgba(0,0,0,0.08);
  box-shadow: 0 10px 24px rgba(0,0,0,0.12);
}

body.labs-mode-on .solutions-detail::before,
body.labs-mode-on .solutions-detail::after,
body.labs-mode-on .solution-card::after,
body.labs-mode-on .solutions-detail-title::before {
  display: none;
}

body.labs-mode-on .solution-card h3 {
  color: #0A0E1A;
}

body.labs-mode-on .solution-card.is-active h3,
body.labs-mode-on .solutions-detail-title {
  color: #F2C94C;
}

body.labs-mode-on .solutions-detail-body {
  color: #0A0E1A;
}

/* Keep brand assets at original sizing in Labs mode */
body.labs-mode-on .hero-logo {
  width: 100%;
  height: auto;
  max-width: none;
}

body.labs-mode-on .nav-logo-small {
  width: 100%;
  height: auto;
  max-width: none;
}

body.labs-mode-on .hero-mascot {
  width: min(431px, 72vw);
  height: auto;
  max-width: none;
  object-fit: contain;
}

body.labs-mode-on .hero-right {
  min-height: 340px;
}

.form-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.contact-submit {
  background: transparent;
  color: #EAC46E;
  border: 1px solid #EAC46E;
  border-radius: 0;
  padding: 10px 18px;
  font-family: inherit;
  font-size: 14px;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
  box-shadow: 0 6px 12px rgba(0,0,0,0.18);
}

.contact-submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 16px rgba(0,0,0,0.22);
  border-color: rgba(234, 196, 110, 0.9);
}

.form-status {
  font-size: 13px;
  color: rgba(229,229,229,0.9);
}

.form-status.success {
  color: #7ee8a5;
}

.form-status.error {
  color: #f48b8b;
}

@media (max-width: 640px) {
  .contact-shell {
    gap: 16px;
  }

  .contact-details {
    text-align: center;
  }
}

@media (min-width: 900px) {
  .contact-shell {
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    align-items: flex-start;
    gap: 24px 28px;
  }

  .contact-top {
    align-items: flex-start;
    text-align: left;
  }

  .contact-details {
    justify-items: start;
    text-align: left;
  }

  .contact-item {
    align-items: flex-start;
  }
}

@media (max-width: 960px) {
  .team-grid {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 768px) {
  .solutions-layout {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .solutions-list {
    grid-template-columns: 1fr;
  }

  .solution-card {
    padding: 12px 14px;
  }

  .solution-card h3 {
    font-size: 15px;
  }

  .solutions-detail {
    padding: 24px;
  }

  .solutions-detail-title {
    font-size: 22px;
  }

  .solutions-detail-body {
    font-size: 16px;
  }

  .partner-track {
    gap: 24px;
    animation-duration: 22s;
  }

  .partner-logo img {
    height: 115px;
  }
}

.section-divider {
  position: relative;
  height: 1px;
  background: rgba(242, 201, 76, 0.35);
  display: block;
  width: min(var(--divider-width), 60vw);
  margin: 0 auto 10px;
  align-self: center;
  flex: 0 0 auto;
}

.section-divider::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  background: #F2C94C;
  transform: translate(-50%, -50%) rotate(45deg);
}

/* Labs mode */
body.labs-mode {
  background: #0A0E1A;
  color: #D7E2FF;
}

/* Labs overlay */
.labs-overlay {
  position: fixed;
  inset: 0;
  background: rgba(6, 9, 19, 0.92);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  z-index: 20;
}

.labs-overlay.show {
  opacity: 1;
  pointer-events: auto;
}

.overlay-emblem {
  width: 120px;
  height: 120px;
  background-image: url('gecis.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  filter: drop-shadow(0 12px 24px rgba(0,0,0,0.4));
  animation: fadeUp 0.8s ease forwards;
  margin-bottom: 18px;
}

.labs-message {
  position: static;
  font-size: 16px;
  letter-spacing: 0.08em;
  opacity: 0.85;
  color: var(--text);
  text-align: center;
}

@keyframes fadeUp {
  0% { transform: translateY(8px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}

@media (max-width: 960px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }

  .hero-right {
    justify-content: center;
    margin-left: 0;
  }

  .hero-left,
  .logo-block {
    align-items: center;
    text-align: center;
  }

  .hero-copy p {
    text-align: center;
  }

  .hero-copy-body {
    max-width: 680px;
  }

  .hero {
    padding: 120px 6vw 32px;
  }
}

@media (max-width: 640px) {
  .block {
    padding: 96px 16px 56px;
    min-height: 100vh;
  }

  .block h1 {
    font-size: 22px;
    margin-bottom: 12px;
  }

  .hero {
    min-height: auto;
    height: auto;
    padding: 124px 5vw 28px;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .hero-copy-lead {
    font-size: 21px;
  }

  .hero-copy-body {
    font-size: 14px;
  }

  .hero-right {
    min-height: 0;
  }

  .hero-mascot {
    width: min(320px, 78vw);
    transform: none;
  }

  .nav-brand-small {
    width: 80px;
  }

  .nav-link {
    font-size: 15px;
    padding: 10px 12px;
  }

  .lang-toggle {
    gap: 6px;
  }

  .nav-toggle {
    width: 42px;
    height: 42px;
  }

  .nav-drawer {
    padding: 12px 5vw 14px;
    gap: 10px;
  }
}

.lang-toggle {
  position: static;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  letter-spacing: 0.08em;
  color: rgba(229, 229, 229, 0.85);
  justify-self: end;
}

.lang {
  background: transparent;
  border: 1px solid transparent;
  color: inherit;
  cursor: pointer;
  padding: 4px;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease, background 0.2s ease;
}

.lang:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.04);
}

.lang.active {
  border-color: transparent;
  box-shadow: none;
  background: transparent;
}

.lang.active::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -4px;
  width: 70%;
  height: 2px;
  transform: translateX(-50%);
  background: var(--accent);
}

.lang-flag {
  width: 26px;
  height: 18px;
  object-fit: contain;
  border-radius: 0;
  box-shadow: none;
}

.lang-divider {
  opacity: 0.4;
}

.site-footer {
  text-align: center;
  padding: 24px 10vw 32px;
  color: var(--text);
  font-size: 14px;
}
