:root {
  --navy: #071521;
  --navy-2: #0a1d2c;
  --ink: #0b1d29;
  --cream: #f2f1e9;
  --paper: #f8f8f3;
  --white: #ffffff;
  --lime: #c8f24a;
  --mint: #77d7bb;
  --muted: #66727a;
  --line: rgba(11, 29, 41, .14);
  --max: 1240px;
  --font-display: "Manrope", sans-serif;
  --font-body: "DM Sans", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; }
button, input, select, textarea { font: inherit; }
.container { width: min(calc(100% - 48px), var(--max)); margin-inline: auto; }
.section { padding: 128px 0; }

.cursor-glow {
  position: fixed;
  z-index: 999;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(circle, rgba(200, 242, 74, .07), transparent 68%);
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity .3s;
}

.header {
  position: fixed;
  z-index: 100;
  width: 100%;
  height: 82px;
  color: white;
  border-bottom: 1px solid rgba(255,255,255,.15);
  transition: background .35s, height .35s, box-shadow .35s;
}
.header.scrolled {
  height: 70px;
  background: rgba(7, 21, 33, .93);
  box-shadow: 0 12px 40px rgba(0,0,0,.18);
  backdrop-filter: blur(16px);
}
.nav-wrap { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.brand { display: flex; align-items: center; gap: 11px; flex-shrink: 0; }
.brand-mark { width: 35px; height: 35px; fill: none; stroke: var(--lime); stroke-width: 1.8; }
.brand-text { font: 700 17px/1 var(--font-display); letter-spacing: .1em; }
.brand-text b { color: var(--lime); font-weight: 500; }
.nav { display: flex; align-items: center; gap: 32px; margin-left: auto; }
.nav a { position: relative; font-size: 13px; font-weight: 500; }
.nav a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: -7px; height: 1px;
  background: var(--lime); transition: right .3s;
}
.nav a:hover::after { right: 0; }
.nav-cta {
  display: flex; align-items: center; gap: 18px; padding: 13px 16px 13px 20px;
  border: 1px solid rgba(255,255,255,.38); font-size: 12px; font-weight: 600; transition: .3s;
}
.nav-cta span { color: var(--lime); font-size: 17px; }
.nav-cta:hover { color: var(--ink); background: var(--lime); border-color: var(--lime); }
.nav-cta:hover span { color: var(--ink); }
.menu-toggle { display: none; }

.hero {
  position: relative;
  min-height: 860px;
  height: 100svh;
  max-height: 1020px;
  color: white;
  background: var(--navy);
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: url("assets/nexum-hero.png") center/cover no-repeat;
  animation: slowZoom 18s ease-out forwards;
}
@keyframes slowZoom { from { transform: scale(1.02); } to { transform: scale(1.1); } }
.hero-shade {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(4,15,25,.97) 0%, rgba(4,15,25,.82) 32%, rgba(4,15,25,.16) 66%, rgba(4,15,25,.22) 100%),
    linear-gradient(0deg, rgba(4,15,25,.9) 0%, transparent 36%);
}
.hero-grid {
  position: absolute; inset: 82px 0 0;
  background-image: linear-gradient(rgba(255,255,255,.055) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.055) 1px, transparent 1px);
  background-size: calc(100% / 6) 100%;
  mask-image: linear-gradient(to right, black, transparent 70%);
}
.hero-content { position: relative; z-index: 2; height: 100%; display: flex; align-items: center; padding-bottom: 110px; }
.hero-copy { max-width: 790px; }
.eyebrow {
  display: flex; align-items: center; gap: 10px; margin-bottom: 28px;
  text-transform: uppercase; letter-spacing: .18em; font-size: 11px; font-weight: 700;
}
.eyebrow.light { color: rgba(255,255,255,.67); }
.eyebrow.dark { color: #68757c; }
.eyebrow span:not(.pulse) { color: #0c6e5d; }
.pulse { width: 7px; height: 7px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 0 5px rgba(200,242,74,.12); }
.hero h1, .section-title {
  margin: 0; font-family: var(--font-display); letter-spacing: -.052em; font-weight: 600;
}
.hero h1 { font-size: clamp(57px, 6.1vw, 92px); line-height: .99; }
.hero h1 em, .section-title em, blockquote em { color: var(--lime); font-style: normal; font-weight: 400; }
.hero-lead { max-width: 590px; margin: 31px 0 36px; color: rgba(255,255,255,.72); font-size: 18px; line-height: 1.65; }
.hero-actions { display: flex; align-items: center; gap: 36px; }
.button {
  display: inline-flex; justify-content: space-between; align-items: center; gap: 40px;
  min-height: 58px; padding: 0 12px 0 24px; border: 0; cursor: pointer; font-weight: 700; font-size: 13px; transition: transform .25s, background .25s;
}
.button-primary { color: var(--ink); background: var(--lime); }
.button-primary:hover { background: #d8ff64; transform: translateY(-2px); }
.button-arrow { display: grid; place-items: center; width: 36px; height: 36px; background: var(--ink); color: var(--lime); font-size: 18px; }
.text-link { display: flex; align-items: center; gap: 15px; font-size: 13px; font-weight: 600; }
.text-link span { color: var(--lime); }
.hero-status {
  position: absolute; right: 0; top: 46%; display: flex; align-items: center; gap: 17px;
  padding: 15px 18px; background: rgba(8,25,39,.55); backdrop-filter: blur(12px); border: 1px solid rgba(255,255,255,.15);
}
.status-line { width: 2px; height: 37px; background: var(--lime); }
.hero-status small, .hero-status strong { display: block; }
.hero-status small { color: rgba(255,255,255,.52); font-size: 9px; text-transform: uppercase; letter-spacing: .14em; margin-bottom: 5px; }
.hero-status strong { font-size: 12px; }
.status-orbit { display: grid; place-items: center; width: 36px; height: 36px; border: 1px solid rgba(200,242,74,.35); border-radius: 50%; }
.status-orbit span { width: 8px; height: 8px; background: var(--lime); border-radius: 50%; animation: blink 1.7s infinite; }
@keyframes blink { 50% { opacity: .35; transform: scale(.75); } }
.hero-bottom { position: absolute; z-index: 3; bottom: 0; left: 0; right: 0; border-top: 1px solid rgba(255,255,255,.14); }
.hero-metrics { min-height: 111px; display: grid; grid-template-columns: repeat(3, 1fr) 1.45fr; align-items: center; }
.metric { display: flex; align-items: center; gap: 4px; padding-right: 25px; }
.metric strong { font: 500 32px/1 var(--font-display); }
.metric sup { align-self: flex-start; color: var(--lime); font-weight: 700; font-size: 17px; }
.metric span { margin-left: 8px; color: rgba(255,255,255,.52); font-size: 10px; line-height: 1.45; text-transform: uppercase; letter-spacing: .08em; }
.metric-route { height: 100%; display: flex; align-items: center; gap: 15px; border-left: 1px solid rgba(255,255,255,.14); padding-left: 32px; color: rgba(255,255,255,.47); font-size: 8px; letter-spacing: .18em; }
.route-line { position: relative; flex: 1; height: 1px; background: rgba(255,255,255,.2); }
.route-line::before, .route-line::after { content: ""; position: absolute; top: -3px; width: 7px; height: 7px; background: var(--lime); border-radius: 50%; }
.route-line::before { left: 0; } .route-line::after { right: 0; }
.route-line i { position: absolute; top: -1px; left: 0; width: 60%; height: 2px; background: var(--lime); }

.trust-strip { background: var(--lime); padding: 17px 0; }
.trust-content { display: flex; align-items: center; justify-content: space-between; font: 700 9px/1 var(--font-display); letter-spacing: .16em; }
.trust-content i { width: 4px; height: 4px; background: var(--ink); transform: rotate(45deg); }

.about { background: var(--paper); }
.about-grid { display: grid; grid-template-columns: .95fr 1fr; gap: 9%; align-items: center; }
.about-visual { position: relative; padding: 0 0 46px 34px; }
.image-frame { position: relative; overflow: hidden; }
.image-frame::after { content: ""; position: absolute; inset: 0; box-shadow: inset 0 0 0 1px rgba(255,255,255,.25); }
.image-frame img { aspect-ratio: 4/4.35; object-fit: cover; object-position: 54% center; transition: transform .9s; }
.about-visual:hover img { transform: scale(1.025); }
.visual-tag {
  position: absolute; left: 0; bottom: 0; width: 280px; display: flex; align-items: center; gap: 17px;
  padding: 20px; color: white; background: var(--navy);
}
.visual-tag > span { display: grid; place-items: center; min-width: 45px; height: 45px; color: var(--lime); border: 1px solid rgba(200,242,74,.5); font: 700 12px var(--font-display); }
.visual-tag p { margin: 0; color: rgba(255,255,255,.55); font-size: 10px; line-height: 1.55; }
.visual-tag b { color: white; font-size: 11px; }
.visual-cross { position: absolute; width: 48px; top: -24px; right: -24px; stroke: #0f6d5f; stroke-width: .6; }
.section-title { font-size: clamp(43px, 4.2vw, 66px); line-height: 1.08; }
.section-title em { color: #087060; }
.large-copy { margin: 35px 0 19px; max-width: 590px; font-size: 19px; line-height: 1.58; font-weight: 500; }
.body-copy { margin: 0; max-width: 590px; color: var(--muted); font-size: 14px; line-height: 1.8; }
.principles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 45px; padding-top: 27px; border-top: 1px solid var(--line); }
.principles span { color: #0c7765; font: 700 9px var(--font-display); }
.principles h3 { margin: 10px 0 8px; font: 700 14px var(--font-display); }
.principles p { margin: 0; color: var(--muted); font-size: 11px; line-height: 1.55; }

.solutions { color: white; background: var(--navy); position: relative; overflow: hidden; }
.solutions::before { content: ""; position: absolute; width: 600px; height: 600px; right: -280px; top: -200px; border: 1px solid rgba(119,215,187,.15); border-radius: 50%; box-shadow: 0 0 0 90px rgba(119,215,187,.025), 0 0 0 180px rgba(119,215,187,.02); }
.section-head { position: relative; display: flex; align-items: flex-end; justify-content: space-between; gap: 50px; margin-bottom: 63px; }
.light-title em { color: var(--lime); }
.section-intro { width: 350px; flex: 0 0 auto; margin: 0 0 5px; color: rgba(255,255,255,.55); font-size: 14px; line-height: 1.75; }
.solution-grid { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); }
.solution-card {
  min-height: 430px; padding: 29px 27px 25px; display: flex; flex-direction: column; justify-content: space-between;
  border: 1px solid rgba(255,255,255,.13); border-right: 0; transition: background .35s, transform .35s;
}
.solution-card:last-child { border-right: 1px solid rgba(255,255,255,.13); }
.solution-card:hover, .solution-card.featured { color: var(--ink); background: var(--lime); transform: translateY(-8px); }
.card-top { display: flex; justify-content: space-between; align-items: flex-start; }
.card-number { color: rgba(255,255,255,.4); font-size: 10px; font-weight: 700; }
.solution-card svg { width: 45px; height: 45px; fill: none; stroke: var(--lime); stroke-width: 1.2; }
.solution-card:hover svg, .solution-card.featured svg { stroke: var(--ink); }
.solution-card:hover .card-number, .solution-card.featured .card-number { color: rgba(11,29,41,.5); }
.solution-card h3 { margin: 0 0 17px; font: 600 22px/1.25 var(--font-display); letter-spacing: -.025em; }
.solution-card p { margin: 0; color: rgba(255,255,255,.53); font-size: 12px; line-height: 1.72; }
.solution-card:hover p, .solution-card.featured p { color: rgba(11,29,41,.69); }
.solution-card a { display: flex; justify-content: space-between; align-items: center; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.16); font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }
.solution-card:hover a, .solution-card.featured a { border-color: rgba(11,29,41,.2); }
.solution-card a span { font-size: 18px; }

.process { background: var(--cream); overflow: hidden; }
.process-heading { max-width: 830px; }
.process-map { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; margin-top: 85px; }
.process-line { position: absolute; top: 25px; left: 25px; right: calc(25% - 25px); height: 1px; background: #c4cbc7; }
.process-line span { display: block; width: 0; height: 2px; margin-top: -1px; background: #0c7664; transition: width 1.7s ease-out; }
.process-line.active span { width: 100%; }
.process-step { position: relative; }
.step-dot { display: grid; place-items: center; width: 50px; height: 50px; margin-bottom: 29px; color: #0a6d5d; background: var(--cream); border: 1px solid #aab6b0; border-radius: 50%; }
.step-dot::after { content: ""; position: absolute; top: 20px; left: 20px; width: 10px; height: 10px; background: var(--cream); border: 1px solid #0a6d5d; border-radius: 50%; }
.step-dot b { position: absolute; opacity: 0; }
.process-step small { color: #0b7765; font-size: 9px; font-weight: 700; letter-spacing: .13em; }
.process-step h3 { margin: 12px 0 12px; font: 600 18px var(--font-display); }
.process-step p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.7; }
.process-banner { display: grid; grid-template-columns: .8fr 1.2fr; align-items: center; margin-top: 90px; min-height: 280px; padding: 43px 55px; color: white; background: #0b2432; }
.banner-copy span { color: var(--lime); font-size: 9px; font-weight: 700; letter-spacing: .16em; }
.banner-copy h3 { margin: 17px 0 0; font: 500 31px/1.25 var(--font-display); letter-spacing: -.035em; }
.control-panel { padding: 24px; border: 1px solid rgba(255,255,255,.16); background: rgba(255,255,255,.035); }
.panel-head { display: flex; justify-content: space-between; color: rgba(255,255,255,.55); font-size: 8px; letter-spacing: .12em; }
.panel-head i { color: var(--lime); font-style: normal; }
.panel-route { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 19px; padding: 27px 0 20px; font: 700 17px var(--font-display); }
.panel-route > span { position: relative; height: 1px; background: rgba(255,255,255,.24); }
.panel-route > span::before, .panel-route > span::after { content: ""; position: absolute; top: -3px; width: 7px; height: 7px; background: var(--lime); border-radius: 50%; }
.panel-route > span::before { left: 0; } .panel-route > span::after { right: 0; }
.panel-route i { display: block; width: 72%; height: 1px; background: var(--lime); }
.panel-data { display: grid; grid-template-columns: 1.3fr 1fr .7fr; gap: 20px; padding-top: 17px; border-top: 1px solid rgba(255,255,255,.1); }
.panel-data small, .panel-data strong { display: block; }
.panel-data small { color: rgba(255,255,255,.37); font-size: 7px; letter-spacing: .1em; }
.panel-data strong { margin-top: 5px; font-size: 10px; }

.segments { background: var(--paper); }
.dark-head .section-intro { color: var(--muted); }
.segment-list { border-top: 1px solid var(--line); }
.segment {
  display: grid; grid-template-columns: 70px 1.5fr 1fr 30px; align-items: center; min-height: 97px;
  border-bottom: 1px solid var(--line); transition: background .3s, padding .3s, color .3s; cursor: default;
}
.segment > span { color: #0a7664; font: 700 9px var(--font-display); }
.segment h3 { margin: 0; font: 600 23px var(--font-display); letter-spacing: -.025em; }
.segment p { margin: 0; color: var(--muted); font-size: 12px; }
.segment b { color: #0b7665; font-size: 21px; font-weight: 400; }
.segment:hover, .segment.active { padding-inline: 22px; color: white; background: var(--navy); }
.segment:hover p, .segment.active p { color: rgba(255,255,255,.53); }
.segment:hover > span, .segment.active > span, .segment:hover b, .segment.active b { color: var(--lime); }

.manifesto { position: relative; min-height: 535px; display: grid; place-items: center; color: white; background: #09202e; overflow: hidden; }
.manifesto::before { content: ""; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px); background-size: 80px 80px; }
.manifesto-content { position: relative; z-index: 2; text-align: center; }
.quote-mark { display: block; height: 42px; color: var(--lime); font: 70px/1 Georgia, serif; }
blockquote { margin: 15px auto 30px; font: 500 clamp(34px, 4.2vw, 61px)/1.18 var(--font-display); letter-spacing: -.045em; }
.manifesto-content p { color: rgba(255,255,255,.42); font-size: 8px; font-weight: 700; letter-spacing: .2em; }
.manifesto-globe { position: absolute; width: 620px; height: 620px; right: -170px; opacity: .55; }
.globe-ring, .globe-core { position: absolute; inset: 0; border: 1px solid rgba(119,215,187,.24); border-radius: 50%; }
.ring-one { transform: scaleX(.33); }
.ring-two { transform: scaleY(.33); }
.globe-core { inset: 95px; border-color: rgba(200,242,74,.16); box-shadow: 0 0 90px rgba(119,215,187,.07) inset; }

.contact { color: white; background: var(--navy); }
.contact-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 10%; align-items: start; }
.contact-copy > p { max-width: 490px; margin: 30px 0; color: rgba(255,255,255,.54); line-height: 1.75; font-size: 14px; }
.contact-detail { margin-top: 60px; padding-top: 25px; border-top: 1px solid rgba(255,255,255,.15); }
.contact-detail span { display: block; margin-bottom: 10px; color: rgba(255,255,255,.38); font-size: 8px; letter-spacing: .16em; }
.contact-detail a { color: var(--lime); font: 500 17px var(--font-display); }
.contact-form { position: relative; padding: 39px; background: #102837; border: 1px solid rgba(255,255,255,.1); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.contact-form label { display: block; margin-bottom: 22px; }
.contact-form label > span { display: block; margin-bottom: 9px; color: rgba(255,255,255,.5); font-size: 9px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; }
.contact-form input, .contact-form select, .contact-form textarea {
  width: 100%; padding: 12px 0; color: white; border: 0; border-bottom: 1px solid rgba(255,255,255,.24); outline: 0; border-radius: 0; background: transparent; transition: border .25s;
}
.contact-form textarea { resize: vertical; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: var(--lime); }
.contact-form select { appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--lime) 50%), linear-gradient(135deg, var(--lime) 50%, transparent 50%); background-position: calc(100% - 8px) 50%, calc(100% - 3px) 50%; background-size: 5px 5px; background-repeat: no-repeat; }
.contact-form option { color: var(--ink); }
.contact-form ::placeholder { color: rgba(255,255,255,.27); }
.submit-button { width: 100%; margin-top: 6px; }
.form-note { margin: 13px 0 0; color: rgba(255,255,255,.29); text-align: center; font-size: 9px; }
.form-success { display: none; margin-top: 16px; padding: 14px; color: var(--lime); border: 1px solid rgba(200,242,74,.3); font-size: 12px; text-align: center; }
.form-success.visible { display: block; }

.footer { padding: 65px 0 24px; color: white; background: #041019; border-top: 1px solid rgba(255,255,255,.08); }
.footer-main { display: grid; grid-template-columns: 1fr 1fr 1fr; align-items: center; padding-bottom: 60px; }
.footer-main > p { max-width: 330px; margin: 0; color: rgba(255,255,255,.38); font-size: 12px; line-height: 1.6; }
.footer-nav { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; justify-self: end; font-size: 11px; }
.footer-nav a:hover { color: var(--lime); }
.footer-bottom { display: flex; justify-content: space-between; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.1); color: rgba(255,255,255,.28); font-size: 7px; letter-spacing: .12em; }
.footer-bottom a { color: rgba(255,255,255,.55); }

.reveal { opacity: 0; transform: translateY(25px); transition: opacity .75s ease, transform .75s ease; }
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 1024px) {
  .nav { gap: 18px; }
  .nav a { font-size: 11px; }
  .nav-cta { display: none; }
  .hero-status { display: none; }
  .solution-grid { grid-template-columns: 1fr 1fr; }
  .solution-card:nth-child(2) { border-right: 1px solid rgba(255,255,255,.13); }
  .process-map { gap: 20px; }
  .about-grid, .contact-grid { gap: 6%; }
}

@media (max-width: 760px) {
  .container { width: min(calc(100% - 32px), var(--max)); }
  .section { padding: 88px 0; }
  .header { height: 70px; }
  .menu-toggle { display: flex; flex-direction: column; gap: 7px; border: 0; background: none; padding: 10px; }
  .menu-toggle span { width: 25px; height: 1px; background: white; transition: .3s; }
  .menu-toggle.active span:first-child { transform: translateY(4px) rotate(45deg); }
  .menu-toggle.active span:last-child { transform: translateY(-4px) rotate(-45deg); }
  .nav {
    position: fixed; inset: 70px 0 auto; padding: 34px 24px 42px; display: flex; flex-direction: column; align-items: flex-start;
    background: rgba(7,21,33,.98); transform: translateY(-130%); opacity: 0; transition: .4s;
  }
  .nav.open { transform: none; opacity: 1; }
  .nav a { font: 500 23px var(--font-display); }
  .hero { min-height: 760px; height: 100svh; }
  .hero-bg { background-position: 62% center; }
  .hero-shade { background: linear-gradient(90deg, rgba(4,15,25,.96), rgba(4,15,25,.4)), linear-gradient(0deg, rgba(4,15,25,.94), transparent 50%); }
  .hero-content { align-items: flex-start; padding-top: 160px; padding-bottom: 180px; }
  .hero h1 { font-size: clamp(48px, 14vw, 67px); }
  .hero-lead { font-size: 15px; margin: 25px 0 30px; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 22px; }
  .hero-metrics { min-height: 120px; grid-template-columns: repeat(3, 1fr); }
  .metric { display: block; padding: 0 8px; }
  .metric strong { font-size: 24px; }
  .metric span { display: block; margin: 8px 0 0; font-size: 7px; }
  .metric-route { display: none; }
  .trust-content { gap: 25px; overflow: hidden; justify-content: flex-start; white-space: nowrap; }
  .trust-content span:nth-of-type(n+3), .trust-content i:nth-of-type(n+3) { display: none; }
  .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 70px; }
  .about-visual { padding-left: 15px; }
  .visual-cross { right: -5px; }
  .section-title { font-size: clamp(38px, 11vw, 52px); }
  .principles { grid-template-columns: 1fr; }
  .section-head { display: block; }
  .section-intro { width: auto; margin-top: 25px; }
  .solution-grid { grid-template-columns: 1fr; }
  .solution-card, .solution-card:nth-child(2) { min-height: 365px; border-right: 1px solid rgba(255,255,255,.13); }
  .process-map { grid-template-columns: 1fr; gap: 50px; margin-top: 60px; padding-left: 15px; }
  .process-line { left: 39px; top: 25px; bottom: 100px; right: auto; width: 1px; height: auto; }
  .process-line span { width: 2px; height: 0; transition: height 1.7s; }
  .process-line.active span { width: 2px; height: 100%; }
  .process-step { padding-left: 75px; }
  .step-dot { position: absolute; left: 0; }
  .process-banner { grid-template-columns: 1fr; gap: 35px; padding: 35px 22px; }
  .control-panel { padding: 17px; }
  .panel-data { gap: 10px; }
  .segment { grid-template-columns: 38px 1fr 25px; min-height: 88px; }
  .segment p { display: none; }
  .segment h3 { font-size: 17px; }
  .segment:hover, .segment.active { padding-inline: 12px; }
  .manifesto { min-height: 470px; }
  .manifesto-globe { width: 430px; height: 430px; right: -230px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .contact-form { padding: 26px 20px; }
  .footer-main { grid-template-columns: 1fr; gap: 30px; }
  .footer-nav { justify-self: start; }
  .footer-bottom { gap: 15px; flex-wrap: wrap; }
  .footer-bottom span:nth-child(2) { display: none; }
}

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