:root {
  --bg: #05090d;
  --bg-2: #091119;
  --panel: rgba(12, 23, 32, 0.78);
  --panel-solid: #0c1720;
  --line: rgba(125, 211, 252, 0.16);
  --line-strong: rgba(50, 214, 255, 0.42);
  --text: #f4f8fb;
  --muted: #9eb0bd;
  --cyan: #31d7ff;
  --cyan-2: #74e7ff;
  --amber: #ffb454;
  --success: #55e6a5;
  --danger: #ff7c87;
  --radius: 22px;
  --radius-sm: 13px;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.38);
  --max: 1220px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  color-scheme: dark;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 18% 8%, rgba(49, 215, 255, 0.08), transparent 27rem),
    radial-gradient(circle at 86% 32%, rgba(255, 180, 84, 0.055), transparent 25rem),
    var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

body::before {
  position: fixed;
  z-index: -2;
  inset: 0;
  background-image:
    linear-gradient(rgba(125, 211, 252, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(125, 211, 252, 0.035) 1px, transparent 1px);
  background-size: 52px 52px;
  content: "";
  mask-image: linear-gradient(to bottom, black, transparent 86%);
}

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

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid rgba(49, 215, 255, 0.82);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 200;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  border-radius: 8px;
  background: white;
  color: #071019;
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.shell {
  width: min(calc(100% - 40px), var(--max));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  border-bottom: 1px solid transparent;
  transition: background 220ms ease, border-color 220ms ease, backdrop-filter 220ms ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  background: rgba(5, 9, 13, 0.86);
  backdrop-filter: blur(18px);
}

.nav {
  display: flex;
  min-height: 84px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

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

.brand img {
  width: 168px;
  height: auto;
}

.brand small {
  display: none;
  max-width: 150px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

.nav-links a {
  position: relative;
  padding: 10px 12px;
  border-radius: 9px;
  color: #c9d5dc;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: color 180ms ease, background 180ms ease;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  background: rgba(49, 215, 255, 0.08);
  color: white;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #bdccd5;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.status-pill::before {
  width: 7px;
  height: 7px;
  border-radius: 99px;
  background: var(--success);
  box-shadow: 0 0 18px var(--success);
  content: "";
}

.btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 19px;
  border: 1px solid transparent;
  border-radius: 11px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.02em;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  border-color: rgba(116, 231, 255, 0.45);
  background: linear-gradient(135deg, var(--cyan), #1598ff);
  box-shadow: 0 14px 34px rgba(21, 152, 255, 0.2);
  color: #001018;
}

.btn-primary:hover {
  box-shadow: 0 18px 42px rgba(49, 215, 255, 0.3);
}

.btn-secondary {
  border-color: var(--line-strong);
  background: rgba(9, 17, 25, 0.72);
  color: var(--text);
}

.btn-ghost {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.025);
  color: #d8e5eb;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: rgba(7, 14, 20, 0.85);
  color: white;
  cursor: pointer;
  font-size: 22px;
}

.hero {
  position: relative;
  display: grid;
  min-height: 820px;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(3, 7, 10, 0.98) 0%, rgba(3, 7, 10, 0.89) 34%, rgba(3, 7, 10, 0.42) 65%, rgba(3, 7, 10, 0.18) 100%),
    linear-gradient(0deg, var(--bg) 0%, transparent 32%);
  content: "";
}

.hero-media {
  position: absolute;
  z-index: -1;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  animation: heroDrift 18s ease-in-out infinite alternate;
}

@keyframes heroDrift {
  from { transform: scale(1.01); }
  to { transform: scale(1.055); }
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(760px, 100%);
  padding-top: 122px;
  padding-bottom: 100px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  color: var(--cyan-2);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 30px;
  height: 1px;
  background: var(--cyan);
  box-shadow: 0 0 12px var(--cyan);
  content: "";
}

.hero h1,
.page-hero h1 {
  margin: 0;
  max-width: 920px;
  font-family: "Arial Narrow", "Roboto Condensed", ui-sans-serif, sans-serif;
  font-size: clamp(48px, 7vw, 92px);
  font-weight: 900;
  line-height: 0.94;
  letter-spacing: -0.055em;
  text-wrap: balance;
}

.gradient-text {
  background: linear-gradient(95deg, #ffffff 5%, var(--cyan-2) 54%, var(--cyan) 100%);
  background-clip: text;
  color: transparent;
}

.hero-lead {
  max-width: 660px;
  margin: 28px 0 0;
  color: #b9c9d2;
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.65;
}

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

.hero-console {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  width: min(780px, 100%);
  margin-top: 58px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--line);
  box-shadow: var(--shadow);
}

.console-item {
  min-height: 95px;
  padding: 17px 18px;
  background: rgba(7, 15, 21, 0.84);
  backdrop-filter: blur(12px);
}

.console-item strong {
  display: block;
  margin-bottom: 6px;
  color: white;
  font-size: 16px;
}

.console-item span {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.45;
}

.signal-bar {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: hidden;
  border-top: 1px solid var(--line);
  background: rgba(4, 9, 13, 0.86);
}

.signal-track {
  display: flex;
  width: max-content;
  animation: marquee 32s linear infinite;
}

.signal-track span {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 28px;
  color: #afc0ca;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.signal-track span::before {
  width: 6px;
  height: 6px;
  border-radius: 99px;
  background: var(--cyan);
  box-shadow: 0 0 12px var(--cyan);
  content: "";
}

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

.section {
  position: relative;
  padding: 112px 0;
}

.section-tight {
  padding: 78px 0;
}

.section-dark {
  border-block: 1px solid var(--line);
  background: rgba(7, 14, 20, 0.68);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(300px, 1.2fr);
  gap: 64px;
  align-items: end;
  margin-bottom: 52px;
}

.section-heading h2 {
  margin: 0;
  font-family: "Arial Narrow", "Roboto Condensed", ui-sans-serif, sans-serif;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1;
  letter-spacing: -0.04em;
}

.section-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

.kicker {
  display: block;
  margin-bottom: 14px;
  color: var(--cyan);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
}

.capability-card {
  position: relative;
  grid-column: span 4;
  min-height: 310px;
  overflow: hidden;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(49, 215, 255, 0.055), transparent 45%),
    var(--panel);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.16);
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.capability-card:hover {
  border-color: var(--line-strong);
  background:
    linear-gradient(145deg, rgba(49, 215, 255, 0.1), transparent 48%),
    var(--panel);
  transform: translateY(-6px);
}

.capability-card.wide {
  grid-column: span 8;
}

.capability-card .number {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  color: var(--cyan);
  font-size: 12px;
  font-weight: 900;
}

.capability-card h3 {
  margin: 64px 0 12px;
  font-size: 26px;
  line-height: 1.05;
}

.capability-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.capability-card a {
  position: absolute;
  right: 28px;
  bottom: 26px;
  color: var(--cyan-2);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.capability-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 25px;
}

.tag {
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.025);
  color: #b8c8d1;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 54px;
  align-items: center;
}

.visual-frame {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  border: 1px solid var(--line-strong);
  border-radius: 28px;
  background: var(--panel-solid);
  box-shadow: var(--shadow);
}

.visual-frame img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.visual-frame::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: inherit;
  background: linear-gradient(180deg, transparent 56%, rgba(2, 6, 9, 0.86));
  content: "";
}

.visual-label {
  position: absolute;
  z-index: 2;
  right: 24px;
  bottom: 24px;
  left: 24px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
}

.visual-label strong {
  display: block;
  font-size: 19px;
}

.visual-label span {
  color: #afc0c9;
  font-size: 12px;
}

.copy-block h2 {
  margin: 0 0 22px;
  font-family: "Arial Narrow", "Roboto Condensed", sans-serif;
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.copy-block > p {
  color: var(--muted);
  font-size: 17px;
}

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

.feature-list li {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 14px;
  align-items: start;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
}

.feature-list b {
  display: block;
  margin-bottom: 3px;
  font-size: 14px;
}

.feature-list small {
  color: var(--muted);
  font-size: 12px;
}

.feature-icon {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  color: var(--cyan);
  font-size: 11px;
  font-weight: 900;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

.process-step {
  position: relative;
  min-height: 260px;
  padding: 24px;
  background: #081119;
}

.process-step::after {
  position: absolute;
  top: 35px;
  right: -8px;
  z-index: 2;
  width: 14px;
  height: 14px;
  border-top: 1px solid var(--cyan);
  border-right: 1px solid var(--cyan);
  background: #081119;
  content: "";
  transform: rotate(45deg);
}

.process-step:last-child::after {
  display: none;
}

.process-step span {
  color: var(--cyan);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.15em;
}

.process-step h3 {
  margin: 70px 0 12px;
  font-size: 19px;
}

.process-step p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
}

.project-card {
  position: relative;
  grid-column: span 6;
  min-height: 420px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel-solid);
}

.project-card:first-child {
  grid-column: span 7;
}

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

.project-card img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  filter: saturate(0.72) contrast(1.08);
  transition: transform 600ms ease, filter 300ms ease;
}

.project-card:hover img {
  filter: saturate(1) contrast(1.05);
  transform: scale(1.035);
}

.project-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(2, 6, 9, 0.95));
  content: "";
}

.project-info {
  position: absolute;
  z-index: 2;
  right: 26px;
  bottom: 25px;
  left: 26px;
}

.project-info span {
  color: var(--cyan);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.project-info h3 {
  margin: 8px 0 0;
  max-width: 480px;
  font-size: 24px;
  line-height: 1.1;
}

.project-info p {
  margin: 9px 0 0;
  color: #b6c5cd;
  font-size: 12px;
}

.stella-section {
  overflow: hidden;
}

.stella-core {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 70px;
  align-items: center;
}

.orb-stage {
  position: relative;
  display: grid;
  min-height: 470px;
  place-items: center;
}

.orb {
  position: relative;
  width: 230px;
  height: 230px;
  border: 1px solid rgba(116, 231, 255, 0.55);
  border-radius: 50%;
  background:
    radial-gradient(circle at 42% 40%, rgba(255,255,255,0.9) 0 2%, transparent 3%),
    radial-gradient(circle, rgba(49, 215, 255, 0.8), rgba(21, 152, 255, 0.18) 30%, rgba(3, 9, 14, 0.6) 62%, transparent 70%);
  box-shadow:
    inset 0 0 48px rgba(49, 215, 255, 0.3),
    0 0 40px rgba(49, 215, 255, 0.18),
    0 0 120px rgba(21, 152, 255, 0.16);
  animation: orbPulse 3.4s ease-in-out infinite;
}

.orb::before,
.orb::after {
  position: absolute;
  border: 1px solid rgba(49, 215, 255, 0.28);
  border-radius: 50%;
  content: "";
}

.orb::before {
  inset: -34px;
  border-style: dashed;
  animation: spin 18s linear infinite;
}

.orb::after {
  inset: -72px;
  border-color: rgba(255, 180, 84, 0.18);
  animation: spin 28s linear infinite reverse;
}

@keyframes spin { to { transform: rotate(360deg); } }
@keyframes orbPulse {
  50% { transform: scale(1.025); filter: brightness(1.12); }
}

.orb-caption {
  position: absolute;
  bottom: 24px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.cta-panel {
  position: relative;
  overflow: hidden;
  padding: 58px;
  border: 1px solid var(--line-strong);
  border-radius: 30px;
  background:
    linear-gradient(115deg, rgba(49, 215, 255, 0.14), transparent 42%),
    #09141d;
  box-shadow: var(--shadow);
}

.cta-panel::after {
  position: absolute;
  right: -120px;
  bottom: -160px;
  width: 400px;
  height: 400px;
  border: 1px solid rgba(49, 215, 255, 0.22);
  border-radius: 50%;
  box-shadow: 0 0 80px rgba(49, 215, 255, 0.08);
  content: "";
}

.cta-panel h2 {
  position: relative;
  z-index: 2;
  max-width: 830px;
  margin: 0;
  font-size: clamp(38px, 6vw, 72px);
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.cta-panel p {
  position: relative;
  z-index: 2;
  max-width: 680px;
  color: var(--muted);
}

.cta-panel .hero-actions {
  position: relative;
  z-index: 2;
}

.page-hero {
  position: relative;
  display: grid;
  min-height: 620px;
  align-items: end;
  overflow: hidden;
  padding: 170px 0 88px;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 76% 25%, rgba(49, 215, 255, 0.11), transparent 28rem),
    linear-gradient(135deg, #060b10, #0b1720);
}

.page-hero.has-image::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(3, 7, 10, 0.97), rgba(3, 7, 10, 0.45) 65%, rgba(3, 7, 10, 0.28)),
    linear-gradient(0deg, var(--bg), transparent 42%);
  content: "";
}

.page-hero-image {
  position: absolute;
  z-index: -1;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

.page-hero p {
  max-width: 700px;
  margin: 26px 0 0;
  color: #bdcbd3;
  font-size: 18px;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.info-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
}

.info-card strong {
  display: block;
  margin-bottom: 12px;
  color: var(--cyan-2);
  font-size: 18px;
}

.info-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

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

.trend-card {
  position: relative;
  min-height: 280px;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(49, 215, 255, 0.07), transparent 44%),
    var(--panel);
}

.trend-card .trend-status {
  color: var(--amber);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.trend-card h3 {
  margin: 48px 0 12px;
  font-size: 25px;
}

.trend-card p {
  color: var(--muted);
  font-size: 13px;
}

.trend-card footer {
  position: absolute;
  right: 30px;
  bottom: 26px;
  left: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 13px;
  border-top: 1px solid var(--line);
  color: #9fb1bc;
  font-size: 10px;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 44px;
}

.contact-stack {
  display: grid;
  gap: 13px;
}

.contact-item {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--panel);
}

.contact-item small {
  display: block;
  margin-bottom: 5px;
  color: var(--cyan);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.contact-item strong {
  font-size: 15px;
}

.form-panel {
  padding: 34px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

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

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

.field label {
  color: #c4d2da;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(3, 9, 13, 0.72);
  color: white;
  padding: 13px 14px;
}

.field textarea {
  min-height: 130px;
  resize: vertical;
}

.form-note {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 11px;
}

.consent {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  align-items: start;
  margin-top: 16px;
  color: var(--muted);
  font-size: 11px;
}

.consent input {
  width: 16px;
  height: 16px;
  margin: 2px 0 0;
  accent-color: var(--cyan);
}

.consent a {
  color: var(--cyan-2);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.site-footer {
  padding: 70px 0 30px;
  border-top: 1px solid var(--line);
  background: #04080b;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 42px;
}

.footer-brand img {
  width: 180px;
}

.footer-brand p {
  max-width: 380px;
  color: var(--muted);
  font-size: 13px;
}

.footer-col h3 {
  margin: 0 0 16px;
  color: white;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-col a,
.footer-col span {
  display: block;
  margin: 9px 0;
  color: #91a4b0;
  font-size: 12px;
}

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

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 52px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: #748994;
  font-size: 10px;
}

.stella-launcher {
  position: fixed;
  z-index: 120;
  right: 22px;
  bottom: 22px;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 10px 14px 10px 10px;
  border: 1px solid rgba(49, 215, 255, 0.5);
  border-radius: 999px;
  background: rgba(5, 12, 17, 0.9);
  box-shadow: 0 16px 42px rgba(0,0,0,0.4), 0 0 28px rgba(49, 215, 255, 0.12);
  color: white;
  cursor: pointer;
  backdrop-filter: blur(14px);
}

.stella-mini-orb {
  width: 39px;
  height: 39px;
  border-radius: 50%;
  background: radial-gradient(circle, white 0 3%, var(--cyan) 8%, rgba(21,152,255,.35) 38%, #081119 68%);
  box-shadow: 0 0 18px rgba(49, 215, 255, 0.5);
  animation: orbPulse 2.8s ease-in-out infinite;
}

.stella-launcher span {
  text-align: left;
  font-size: 11px;
  font-weight: 850;
  line-height: 1.2;
}

.stella-launcher small {
  display: block;
  color: var(--success);
  font-size: 8px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.stella-panel {
  position: fixed;
  z-index: 150;
  top: 18px;
  right: 18px;
  bottom: 18px;
  display: grid;
  width: min(430px, calc(100vw - 36px));
  grid-template-rows: auto 1fr auto;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 24px;
  background: rgba(6, 14, 20, 0.97);
  box-shadow: 0 30px 100px rgba(0,0,0,0.58), 0 0 50px rgba(49,215,255,0.1);
  backdrop-filter: blur(22px);
  opacity: 0;
  pointer-events: none;
  transform: translateX(32px) scale(.98);
  transition: opacity 200ms ease, transform 240ms ease;
}

.stella-panel.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0) scale(1);
}

.stella-header {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 18px;
  border-bottom: 1px solid var(--line);
}

.stella-header .stella-mini-orb {
  flex: 0 0 auto;
}

.stella-header strong {
  display: block;
}

.stella-header small {
  color: var(--muted);
  font-size: 9px;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.stella-close {
  width: 38px;
  height: 38px;
  margin-left: auto;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  color: white;
  cursor: pointer;
}

.stella-messages {
  display: flex;
  flex-direction: column;
  gap: 11px;
  overflow-y: auto;
  padding: 19px;
}

.message {
  max-width: 88%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 14px 14px 14px 3px;
  background: rgba(255,255,255,.035);
  color: #d7e2e8;
  font-size: 12px;
}

.message.user {
  align-self: flex-end;
  border-color: rgba(49,215,255,.32);
  border-radius: 14px 14px 3px 14px;
  background: rgba(49,215,255,.1);
  color: white;
}

.quick-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 4px;
}

.quick-actions button {
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(49,215,255,.055);
  color: #c9d8df;
  cursor: pointer;
  font-size: 10px;
}

.stella-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 9px;
  padding: 14px;
  border-top: 1px solid var(--line);
}

.stella-form input {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: #03090d;
  color: white;
  padding: 12px;
}

.stella-form button {
  border: 0;
  border-radius: 11px;
  background: var(--cyan);
  color: #001017;
  padding: 0 15px;
  cursor: pointer;
  font-weight: 900;
}

.legal-copy {
  max-width: 850px;
}

.legal-copy h2 {
  margin-top: 40px;
  font-size: 25px;
}

.legal-copy p,
.legal-copy li {
  color: var(--muted);
  font-size: 14px;
}

@media (min-width: 1080px) {
  .brand small { display: block; }
}

@media (max-width: 1080px) {
  .nav-links {
    position: fixed;
    top: 78px;
    right: 16px;
    left: 16px;
    display: grid;
    gap: 2px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: rgba(5, 11, 16, 0.98);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .nav-links.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-links a { padding: 13px 14px; }
  .status-pill { display: none; }
  .menu-toggle { display: grid; }
  .capability-card { grid-column: span 6; }
  .capability-card.wide { grid-column: span 12; }
  .process-grid { grid-template-columns: repeat(3, 1fr); }
  .process-step::after { display: none; }
  .process-step:nth-child(4),
  .process-step:nth-child(5) { grid-column: span 1; }
}

@media (max-width: 820px) {
  .shell { width: min(calc(100% - 28px), var(--max)); }
  .nav { min-height: 74px; }
  .brand img { width: 142px; }
  .nav-actions .btn { display: none; }
  .hero { min-height: 760px; }
  .hero::before {
    background: linear-gradient(90deg, rgba(3,7,10,.97), rgba(3,7,10,.72)), linear-gradient(0deg, var(--bg), transparent 38%);
  }
  .hero-content { padding-top: 112px; }
  .hero h1,
  .page-hero h1 { font-size: clamp(45px, 13vw, 70px); }
  .hero-console { grid-template-columns: repeat(2, 1fr); }
  .section { padding: 82px 0; }
  .section-heading { grid-template-columns: 1fr; gap: 18px; }
  .capability-card,
  .capability-card.wide { grid-column: span 12; min-height: 285px; }
  .split,
  .stella-core,
  .contact-layout { grid-template-columns: 1fr; }
  .stella-core { gap: 28px; }
  .orb-stage { min-height: 380px; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .project-card,
  .project-card:first-child,
  .project-card:nth-child(2) { grid-column: span 12; }
  .trend-grid,
  .info-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 560px) {
  .hero { min-height: 820px; }
  .hero-content { padding-bottom: 120px; }
  .hero-actions .btn { width: 100%; }
  .hero-console { grid-template-columns: 1fr 1fr; }
  .console-item { min-height: 100px; padding: 14px; }
  .process-grid { grid-template-columns: 1fr; }
  .project-card,
  .project-card img { min-height: 340px; }
  .visual-frame,
  .visual-frame img { min-height: 390px; }
  .cta-panel { padding: 36px 24px; }
  .form-grid { grid-template-columns: 1fr; }
  .field.full { grid-column: auto; }
  .form-panel { padding: 24px 18px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
  .stella-launcher { right: 12px; bottom: 12px; }
  .stella-launcher span { display: none; }
  .stella-launcher { padding: 8px; }
}

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

/* V17 · Vision, purpose and cinematic industrial experience */

body::after {
  position: fixed;
  z-index: -1;
  inset: 0;
  background: radial-gradient(420px circle at var(--pointer-x, 70%) var(--pointer-y, 18%), rgba(49, 215, 255, 0.075), transparent 72%);
  content: "";
  pointer-events: none;
}

main > section {
  isolation: isolate;
}

main > section > .shell {
  position: relative;
  z-index: 2;
}

.scene-section,
.page-company main > .section:nth-of-type(3),
.page-company main > .section:nth-of-type(5),
.page-solutions main > .section:nth-of-type(3),
.page-solutions main > .section:nth-of-type(5),
.page-projects main > .section:nth-of-type(3),
.page-innovation main > .section:nth-of-type(3),
.page-innovation main > .section:nth-of-type(5),
.page-contact main > .section:nth-of-type(2) {
  position: relative;
  overflow: clip;
  border-block: 1px solid var(--line);
  background: rgba(4, 9, 13, 0.76);
}

.scene-section::before,
.page-company main > .section:nth-of-type(3)::before,
.page-company main > .section:nth-of-type(5)::before,
.page-solutions main > .section:nth-of-type(3)::before,
.page-solutions main > .section:nth-of-type(5)::before,
.page-projects main > .section:nth-of-type(3)::before,
.page-innovation main > .section:nth-of-type(3)::before,
.page-innovation main > .section:nth-of-type(5)::before,
.page-contact main > .section:nth-of-type(2)::before {
  position: absolute;
  z-index: -2;
  inset: -6%;
  background-image: var(--scene);
  background-position: center;
  background-size: cover;
  content: "";
  filter: saturate(.86) contrast(1.05);
  opacity: .3;
  transform: scale(1.03);
}

.scene-section::after,
.page-company main > .section:nth-of-type(3)::after,
.page-company main > .section:nth-of-type(5)::after,
.page-solutions main > .section:nth-of-type(3)::after,
.page-solutions main > .section:nth-of-type(5)::after,
.page-projects main > .section:nth-of-type(3)::after,
.page-innovation main > .section:nth-of-type(3)::after,
.page-innovation main > .section:nth-of-type(5)::after,
.page-contact main > .section:nth-of-type(2)::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(3, 8, 12, .96), rgba(3, 8, 12, .73) 58%, rgba(3, 8, 12, .9)),
    linear-gradient(180deg, var(--bg), transparent 18%, transparent 82%, var(--bg));
  content: "";
}

.scene-purpose { --scene: url("../images/ai-industria40-digital-twin.jpg"); }
.scene-identity { --scene: url("../images/ai-maquinas-especiais.jpg"); }
.scene-leadership { --scene: url("../images/ai-seguranca-nr12.jpg"); }
.scene-future { --scene: url("../images/ai-humanoides-physical-ai.jpg"); }
.page-company main > .section:nth-of-type(3) { --scene: url("../images/ai-industria40-digital-twin.jpg"); }
.page-company main > .section:nth-of-type(5) { --scene: url("../images/ai-seguranca-nr12.jpg"); }
.page-solutions main > .section:nth-of-type(3) { --scene: url("../images/ai-robotica-industrial.jpg"); }
.page-solutions main > .section:nth-of-type(5) { --scene: url("../images/ai-industria40-digital-twin.jpg"); }
.page-projects main > .section:nth-of-type(3) { --scene: url("../images/ai-maquinas-especiais.jpg"); }
.page-innovation main > .section:nth-of-type(3) { --scene: url("../images/ai-industria40-digital-twin.jpg"); }
.page-innovation main > .section:nth-of-type(5) { --scene: url("../images/ai-humanoides-physical-ai.jpg"); }
.page-contact main > .section:nth-of-type(2) { --scene: url("../images/ai-seguranca-nr12.jpg"); }

.company-hero {
  background:
    linear-gradient(90deg, rgba(3, 8, 12, .98), rgba(3, 8, 12, .58) 70%, rgba(3, 8, 12, .82)),
    url("../images/ai-industria40-digital-twin.jpg") center / cover;
}

.page-solutions .page-hero {
  background:
    linear-gradient(90deg, rgba(3, 8, 12, .98), rgba(3, 8, 12, .54) 72%, rgba(3, 8, 12, .84)),
    url("../images/ai-robotica-industrial.jpg") center / cover;
}

.page-projects .page-hero {
  background:
    linear-gradient(90deg, rgba(3, 8, 12, .98), rgba(3, 8, 12, .58) 70%, rgba(3, 8, 12, .84)),
    url("../images/ai-maquinas-especiais.jpg") center / cover;
}

.page-contact .page-hero {
  background:
    linear-gradient(90deg, rgba(3, 8, 12, .98), rgba(3, 8, 12, .58) 70%, rgba(3, 8, 12, .84)),
    url("../images/ai-seguranca-nr12.jpg") center / cover;
}

.page-privacy .page-hero {
  background:
    linear-gradient(90deg, rgba(3, 8, 12, .98), rgba(3, 8, 12, .62) 70%, rgba(3, 8, 12, .88)),
    url("../images/ai-seguranca-nr12.jpg") center / cover;
}

.manifesto-layout {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: clamp(48px, 8vw, 118px);
  align-items: start;
}

.manifesto-intro h2,
.belief-block h2,
.future-statement h2 {
  margin: 0;
  font-family: "Arial Narrow", "Roboto Condensed", sans-serif;
  font-size: clamp(42px, 6vw, 76px);
  line-height: .98;
  letter-spacing: -.045em;
  text-wrap: balance;
}

.manifesto-copy {
  padding: 30px 0 0;
}

.manifesto-copy p {
  color: #b8c8d1;
  font-size: 17px;
}

.manifesto-copy .lead-quote {
  margin-top: 0;
  color: white;
  font-size: clamp(22px, 2.8vw, 34px);
  font-weight: 680;
  line-height: 1.35;
  letter-spacing: -.025em;
}

.manifesto-signature {
  margin-top: 38px;
  padding-top: 22px;
  border-top: 1px solid var(--line-strong);
  color: #b9c9d2;
  font-size: 15px;
  letter-spacing: .04em;
}

.manifesto-signature strong {
  color: var(--cyan-2);
}

.belief-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--line);
  box-shadow: var(--shadow);
}

.belief-block {
  min-height: 420px;
  padding: 42px;
  background: rgba(5, 12, 18, .84);
  backdrop-filter: blur(16px);
}

.belief-block h2 {
  font-size: clamp(36px, 4vw, 54px);
}

.belief-block p {
  margin: 28px 0 0;
  color: #b2c3cd;
  font-size: 16px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.value-card {
  min-height: 290px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background:
    linear-gradient(145deg, rgba(49, 215, 255, .075), transparent 46%),
    rgba(7, 15, 21, .78);
  box-shadow: 0 20px 48px rgba(0, 0, 0, .18);
}

.value-card > span {
  color: var(--cyan);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .18em;
}

.value-card h3 {
  margin: 70px 0 14px;
  font-size: 24px;
  line-height: 1.08;
}

.value-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.leadership-layout {
  display: grid;
  grid-template-columns: minmax(340px, .82fr) minmax(0, 1.18fr);
  gap: clamp(42px, 7vw, 92px);
  align-items: center;
}

.leadership-photo {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 28px;
  background: var(--panel-solid);
  box-shadow: var(--shadow);
}

.leadership-photo::after {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(180deg, transparent 62%, rgba(3, 8, 12, .92));
  content: "";
  pointer-events: none;
}

.leadership-photo img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: 50% 34%;
  transition: transform 1.2s cubic-bezier(.2, .7, .2, 1);
}

.leadership-photo:hover img {
  transform: scale(1.035);
}

.leadership-photo figcaption {
  position: absolute;
  z-index: 2;
  right: 24px;
  bottom: 20px;
  left: 24px;
  color: white;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.leadership-photo figcaption span {
  margin: 0 8px;
  color: var(--cyan);
}

blockquote {
  margin: 28px 0;
  padding: 0 0 0 22px;
  border-left: 2px solid var(--cyan);
  color: white;
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 650;
  line-height: 1.45;
}

blockquote cite {
  display: block;
  margin-top: 10px;
  color: var(--cyan-2);
  font-size: 10px;
  font-style: normal;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.text-link {
  display: inline-flex;
  margin-top: 10px;
  color: var(--cyan-2);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.future-statement {
  max-width: 1000px;
  margin-inline: auto;
  text-align: center;
}

.future-statement h2 {
  max-width: 920px;
  margin-inline: auto;
}

.future-statement > p {
  max-width: 820px;
  margin: 28px auto 0;
  color: #b8c8d1;
  font-size: 18px;
}

.future-pillars {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 42px 0;
}

.future-pillars span {
  padding: 10px 14px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: rgba(5, 12, 18, .62);
  color: #d7e5eb;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.future-close {
  display: block;
  max-width: 780px;
  margin: 46px auto 0;
  color: white;
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.25;
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 800ms ease, transform 900ms cubic-bezier(.2, .7, .2, 1);
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.sound-toggle {
  position: fixed;
  z-index: 142;
  bottom: 20px;
  left: 20px;
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  gap: 9px;
  padding: 0 13px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: rgba(5, 12, 18, .9);
  box-shadow: 0 14px 36px rgba(0, 0, 0, .34);
  color: #c9d8df;
  cursor: pointer;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  backdrop-filter: blur(14px);
}

.sound-toggle::before {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #62727c;
  content: "";
}

.sound-toggle.is-on::before {
  background: var(--success);
  box-shadow: 0 0 14px var(--success);
}

.topic-banner {
  position: relative;
  margin: 46px 0 0;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 26px;
  background: var(--panel-solid);
  box-shadow: var(--shadow);
}

.topic-banner::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 48%, rgba(3, 8, 12, .92)),
    linear-gradient(90deg, rgba(49, 215, 255, .12), transparent 42%);
  content: "";
  pointer-events: none;
}

.topic-banner img {
  width: 100%;
  aspect-ratio: 16 / 6;
  object-fit: cover;
  transition: transform 1.4s cubic-bezier(.2, .7, .2, 1);
}

.topic-banner:hover img {
  transform: scale(1.025);
}

.topic-banner figcaption {
  position: absolute;
  z-index: 2;
  right: 26px;
  bottom: 22px;
  left: 26px;
  color: #eefaff;
  font-size: clamp(15px, 1.8vw, 22px);
  font-weight: 750;
  letter-spacing: -.015em;
}

.topic-card {
  isolation: isolate;
  overflow: hidden;
  min-height: 360px;
  background: transparent;
}

.topic-card::before {
  position: absolute;
  z-index: -2;
  inset: 0;
  background: var(--topic-image) center / cover;
  content: "";
  filter: saturate(.84) contrast(1.08);
  transition: transform 1.1s cubic-bezier(.2, .7, .2, 1);
}

.topic-card::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(3, 8, 12, .36), rgba(3, 8, 12, .94) 67%),
    linear-gradient(135deg, rgba(49, 215, 255, .14), transparent 50%);
  content: "";
}

.topic-card:hover::before {
  transform: scale(1.045);
}

.experience-locked {
  overflow: hidden;
}

.experience-gate {
  position: fixed;
  z-index: 1000;
  inset: 0;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 24px;
  background:
    radial-gradient(circle at 50% 40%, rgba(49, 215, 255, .16), transparent 34%),
    linear-gradient(90deg, rgba(2, 7, 11, .91), rgba(2, 7, 11, .62), rgba(2, 7, 11, .91)),
    url("../images/ai-hero-smart-factory.jpg") center / cover;
  transition: opacity .8s ease, visibility .8s;
}

.experience-gate::before,
.experience-gate::after {
  position: absolute;
  z-index: 1;
  top: 0;
  bottom: 0;
  width: 50.15%;
  border-color: rgba(49, 215, 255, .16);
  background:
    linear-gradient(90deg, rgba(49, 215, 255, .025), transparent),
    rgba(2, 7, 11, .78);
  box-shadow: inset 0 0 90px rgba(49, 215, 255, .045);
  content: "";
  transition: transform 1.8s cubic-bezier(.72, 0, .18, 1);
}

.experience-gate::before {
  left: 0;
  border-right: 1px solid;
}

.experience-gate::after {
  right: 0;
  border-left: 1px solid;
}

.experience-gate.is-opening {
  pointer-events: none;
}

.experience-gate.is-opening::before {
  transform: translateX(-101%);
}

.experience-gate.is-opening::after {
  transform: translateX(101%);
}

.experience-gate.is-opening .experience-gate-panel {
  opacity: 0;
  transform: translateY(-8px) scale(.985);
}

.experience-gate-panel {
  position: relative;
  z-index: 3;
  width: min(780px, 100%);
  padding: clamp(30px, 5vw, 58px);
  border: 1px solid rgba(109, 224, 255, .28);
  border-radius: 28px;
  background: rgba(3, 10, 15, .76);
  box-shadow: 0 40px 120px rgba(0, 0, 0, .65), inset 0 0 60px rgba(49, 215, 255, .045);
  text-align: center;
  backdrop-filter: blur(22px);
  transition: opacity .42s ease, transform .5s ease;
}

.experience-gate-panel::before {
  position: absolute;
  top: 0;
  left: 14%;
  width: 72%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
  box-shadow: 0 0 22px var(--cyan);
  content: "";
  animation: gate-energy 2.8s ease-in-out infinite;
}

.experience-gate-panel img {
  width: min(270px, 68%);
  margin: 0 auto 22px;
  filter: drop-shadow(0 0 20px rgba(49, 215, 255, .14));
}

.experience-code {
  display: block;
  margin-bottom: 18px;
  color: var(--cyan-2);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .19em;
}

.experience-gate h1 {
  max-width: 690px;
  margin: 0 auto;
  font-family: "Arial Narrow", "Roboto Condensed", sans-serif;
  font-size: clamp(34px, 5.2vw, 64px);
  line-height: .98;
  letter-spacing: -.045em;
  text-wrap: balance;
}

.experience-gate p {
  margin: 24px auto 0;
  color: #c0d0d8;
}

.experience-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 30px;
}

.experience-gate small {
  display: block;
  margin-top: 22px;
  color: #728791;
  font-size: 10px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

@keyframes gate-energy {
  0%, 100% { opacity: .45; transform: scaleX(.62); }
  50% { opacity: 1; transform: scaleX(1); }
}

html {
  transition: opacity .24s ease, filter .24s ease;
}

html.page-leaving {
  opacity: .02;
  filter: blur(5px);
}

@media (max-width: 920px) {
  .manifesto-layout,
  .leadership-layout {
    grid-template-columns: 1fr;
  }

  .leadership-photo {
    width: min(560px, 100%);
  }

  .belief-grid,
  .values-grid {
    grid-template-columns: 1fr 1fr;
  }

  .belief-block:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 620px) {
  .belief-grid,
  .values-grid {
    grid-template-columns: 1fr;
  }

  .belief-block:last-child {
    grid-column: auto;
  }

  .belief-block {
    min-height: 340px;
    padding: 30px;
  }

  .value-card {
    min-height: 260px;
  }

  .sound-toggle {
    bottom: 14px;
    left: 12px;
  }

  .topic-banner img {
    aspect-ratio: 4 / 3;
  }

  .experience-actions .btn {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal-on-scroll {
    opacity: 1;
    transform: none;
  }

  .experience-gate::before,
  .experience-gate::after,
  .experience-gate-panel,
  html {
    transition-duration: .01ms !important;
  }

  .experience-gate-panel::before {
    animation: none;
  }
}
