/* ==========================================================================
   FireNovum — FRC-inspired theme (red / white / charcoal)
   Single-page landing. No framework.
   ========================================================================== */

:root {
  /* Brand */
  --red:        #e2231a;
  --red-dark:   #be1610;
  --red-soft:   #fbe9e8;
  --blue:       #2868ad;   /* secondary, from the logo water drop */

  /* Ink / surfaces */
  --ink:        #1b1e22;
  --ink-2:      #4c525a;
  --muted:      #767c85;
  --bg:         #ffffff;
  --bg-soft:    #f4f6f8;
  --bg-soft-2:  #eceff3;
  --line:       #e2e6ea;
  --line-2:     #d2d7dd;

  /* Footer / dark */
  --charcoal:   #26292e;
  --charcoal-2: #1f2226;
  --charcoal-3: #15171a;

  /* Type */
  --display: "Oswald", "Arial Narrow", system-ui, sans-serif;
  --body:    "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;

  /* Layout */
  --maxw:    1200px;
  --gutter:  clamp(18px, 4vw, 40px);
  --pad:     clamp(56px, 8vw, 104px);
  --nav-h:   64px;
  --util-h:  38px;

  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--nav-h) + var(--util-h)); -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } *,*::before,*::after { animation-duration:.001ms!important; transition-duration:.001ms!important; } }

body {
  font-family: var(--body); color: var(--ink); background: var(--bg);
  font-size: 16px; line-height: 1.65; -webkit-font-smoothing: antialiased;
}
img, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
::selection { background: var(--red); color: #fff; }

/* ---------- Type ---------- */
h1,h2,h3,h4 { font-family: var(--display); font-weight: 600; line-height: 1.08; color: var(--ink); }
.display { font-size: clamp(2.4rem, 5.5vw, 4.4rem); font-weight: 700; letter-spacing: 0.01em; text-transform: uppercase; line-height: 1.02; }
.h-sec   { font-size: clamp(1.7rem, 3.4vw, 2.6rem); font-weight: 600; text-transform: uppercase; letter-spacing: 0.01em; }
.lead    { font-size: clamp(1.02rem, 1.6vw, 1.18rem); color: var(--ink-2); line-height: 1.6; }
p { color: var(--ink-2); }

/* red sub-label, like "BETTER EQUIPPED TO FIGHT" */
.kicker {
  display: inline-block; font-family: var(--display); font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.14em; color: var(--red);
  font-size: 0.92rem;
}

/* ---------- Layout ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: var(--pad); }
.section--soft { background: var(--bg-soft); }

/* technical / blueprint treatment for white sections: corner grid + red line & brackets */
.section--tech { position: relative; overflow: hidden; border-top: 3px solid var(--red); }
.section--tech > .wrap { position: relative; z-index: 1; }
.section--tech::before {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image: linear-gradient(#d8dee5 1px, transparent 1px), linear-gradient(90deg, #d8dee5 1px, transparent 1px);
  background-size: 32px 32px;
  -webkit-mask-image: radial-gradient(70% 120% at 100% 0%, #000 0%, transparent 58%), radial-gradient(70% 120% at 0% 100%, #000 0%, transparent 58%);
          mask-image: radial-gradient(70% 120% at 100% 0%, #000 0%, transparent 58%), radial-gradient(70% 120% at 0% 100%, #000 0%, transparent 58%);
}
.tech-bracket { position: absolute; width: 42px; height: 42px; border: 2.5px solid var(--red); opacity: 0.6; z-index: 1; pointer-events: none; }
.tech-bracket.tl { top: 22px; left: 22px; border-right: 0; border-bottom: 0; }
.tech-bracket.br { bottom: 22px; right: 22px; border-left: 0; border-top: 0; }
@media (max-width: 600px){ .tech-bracket { width: 28px; height: 28px; } }
.sec-head { max-width: 760px; margin-inline: auto; text-align: center; margin-bottom: clamp(34px, 5vw, 56px); }
.sec-head .kicker { margin-bottom: 12px; }
.sec-head .h-sec { margin-bottom: 16px; }
.sec-head .lead { color: var(--ink-2); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  height: 48px; padding-inline: 26px;
  font-family: var(--display); font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.06em; font-size: 0.9rem; border-radius: 3px;
  transition: background .2s var(--ease), color .2s, border-color .2s, transform .2s;
}
.btn svg { width: 16px; height: 16px; }
.btn--primary { background: var(--red); color: #fff; }
.btn--primary:hover { background: var(--red-dark); }
.btn--dark { background: var(--ink); color: #fff; }
.btn--dark:hover { background: #000; }
.btn--ghost { border: 2px solid #fff; color: #fff; }
.btn--ghost:hover { background: #fff; color: var(--ink); }
.btn--outline { border: 2px solid var(--red); color: var(--red); }
.btn--outline:hover { background: var(--red); color: #fff; }
.btn--sm { height: 40px; padding-inline: 18px; font-size: 0.82rem; }

/* ==========================================================================
   Header
   ========================================================================== */
.site-header { position: sticky; top: 0; z-index: 100; }

/* utility strip — dark */
.util {
  height: var(--util-h); background: var(--charcoal-2); border-bottom: 1px solid rgba(0,0,0,0.2);
  font-size: 0.82rem; color: rgba(255,255,255,0.6);
}
.util__in { height: 100%; display: flex; align-items: center; justify-content: space-between; }
.util__left { display: flex; align-items: center; gap: 18px; }
.util__left a { color: rgba(255,255,255,0.7); transition: color .2s; }
.util__left a:hover { color: #fff; }
.lang-switch { display: inline-flex; align-items: center; gap: 6px; font-family: var(--display); font-weight: 600; }
.lang-switch a { color: rgba(255,255,255,0.6); padding: 2px 3px; transition: color .2s; }
.lang-switch a:hover { color: #fff; }
.lang-switch a.is-active { color: #ff6a3c; }
.lang-switch__sep { color: rgba(255,255,255,0.25); }

/* red nav bar */
.nav { background: var(--red); height: var(--nav-h); box-shadow: 0 2px 10px rgba(0,0,0,0.12); }
.nav__in { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.brand {
  align-self: stretch;                 /* fill the full red-bar height */
  display: inline-flex; align-items: center; gap: 10px;
  background: #1f2226;
  padding-left: clamp(16px, 2vw, 24px); padding-right: clamp(40px, 4vw, 56px);
  clip-path: polygon(0 0, 100% 0, calc(100% - 50px) 100%, 0 100%);   /* slanted right edge */
  filter: drop-shadow(3px 0 7px rgba(0,0,0,0.22));
}
.brand__mark { height: 40px; width: auto; }
.brand__word { height: 52px; width: auto; aspect-ratio: 760 / 210; pointer-events: none; display: block; }
@media (max-width: 940px){ .brand { margin-left: calc(-1 * var(--gutter)); padding-right: clamp(26px, 6vw, 40px); } }
.brand__name { font-family: var(--display); font-weight: 700; font-size: 1.32rem; letter-spacing: 0.02em; text-transform: uppercase; color: #fff; }
.brand__name b { font-weight: 700; }

.nav__links { display: flex; align-items: center; gap: 2px; }
.nav__links > li:not(.nav__cta) > a {
  display: block; padding: 0 16px; height: var(--nav-h); line-height: var(--nav-h);
  font-family: var(--display); font-weight: 500; text-transform: uppercase;
  font-size: 0.92rem; letter-spacing: 0.04em; color: rgba(255,255,255,0.92);
  transition: background .2s, color .2s; white-space: nowrap;
}
.nav__links > li:not(.nav__cta) > a:hover, .nav__links > li:not(.nav__cta) > a.is-active { background: rgba(0,0,0,0.16); color: #fff; }
.nav__cta { margin-left: 8px; }
.nav__cta .btn { background: var(--ink); color: #fff; height: 40px; }
.nav__cta .btn:hover { background: #000; }

.burger { display: none; width: 44px; height: 44px; position: relative; }
.burger span { position: absolute; left: 10px; right: 10px; height: 2px; background: #fff; transition: transform .3s var(--ease), opacity .2s; }
.burger span:nth-child(1){ top: 15px; } .burger span:nth-child(2){ top: 21px; } .burger span:nth-child(3){ top: 27px; }
body.menu-open .burger span:nth-child(1){ transform: translateY(6px) rotate(45deg); }
body.menu-open .burger span:nth-child(2){ opacity: 0; }
body.menu-open .burger span:nth-child(3){ transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 940px) {
  .burger { display: block; }
  .nav__links {
    position: fixed; inset: calc(var(--nav-h) + var(--util-h)) 0 0 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--red); padding: 8px var(--gutter) 40px;
    transform: translateX(100%); transition: transform .35s var(--ease); overflow-y: auto;
  }
  body.menu-open .nav__links { transform: none; }
  .nav__links > li:not(.nav__cta) > a { height: auto; line-height: 1.2; padding: 16px 6px; font-size: 1.2rem; border-bottom: 1px solid rgba(255,255,255,0.15); }
  .nav__cta { margin: 22px 0 0; }
  .nav__cta .btn { width: 100%; height: 50px; }
}

/* ==========================================================================
   Hero — 3-area promotion
   ========================================================================== */
.hero { position: relative; background: #0e0f12; overflow: hidden; }
.hero__ph { position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(70% 80% at 84% 8%, rgba(226,35,26,0.42), transparent 55%),
    radial-gradient(60% 70% at 6% 100%, rgba(40,104,173,0.16), transparent 55%),
    linear-gradient(125deg, #1a0c0a 0%, #131419 55%, #0c0d10 100%);
}
.hero .wrap { position: relative; z-index: 1; padding-block: clamp(56px, 9vh, 104px); }
.hero__head { max-width: 760px; }
.hero .kicker { color: #ff7a3c; margin-bottom: 16px; }
.hero .display { color: #fff; }
.hero__sub { color: rgba(255,255,255,0.82); margin-top: 20px; max-width: 620px; font-size: clamp(1.05rem,1.7vw,1.22rem); }
.hero__actions { margin-top: 32px; display: flex; flex-wrap: wrap; gap: 14px; }

.hero__areas { margin-top: clamp(40px, 6vw, 64px); display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
@media (max-width: 860px){ .hero__areas { grid-template-columns: 1fr; max-width: 480px; } }
.hero-tile {
  position: relative; aspect-ratio: 16/11; border-radius: 6px; overflow: hidden;
  border: 1px solid rgba(255,255,255,0.14); display: flex; align-items: flex-end;
  transition: border-color .25s, transform .25s var(--ease);
}
.hero-tile:hover { border-color: var(--red); transform: translateY(-4px); }
.hero-tile__ph, .hero-tile__img { position: absolute; inset: 0; z-index: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.hero-tile:hover .hero-tile__ph, .hero-tile:hover .hero-tile__img { transform: scale(1.06); }
.hero-tile::after { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(0deg, rgba(8,8,10,0.9) 0%, rgba(8,8,10,0.2) 55%, transparent 100%); }
.hero-tile__body { position: relative; z-index: 2; padding: 20px 22px; }
.hero-tile__num { display: inline-block; background: var(--red); color: #fff; font-family: var(--display); font-weight: 700; font-size: 0.78rem; padding: 3px 9px; letter-spacing: 0.06em; margin-bottom: 10px; }
.hero-tile__title { font-family: var(--display); font-weight: 600; text-transform: uppercase; font-size: clamp(1.05rem, 1.6vw, 1.3rem); color: #fff; line-height: 1.1; }

/* ==========================================================================
   Focus-area cards (the 3 main areas) — FRC product-grid style
   ========================================================================== */
.areas { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(18px, 2.5vw, 28px); }
@media (max-width: 860px){ .areas { grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; } }
.area {
  display: flex; flex-direction: column; background: #fff;
  border: 1px solid var(--line); border-radius: 6px; overflow: hidden;
  transition: box-shadow .25s var(--ease), transform .25s var(--ease), border-color .25s;
}
.area:hover { box-shadow: 0 18px 40px -18px rgba(20,22,26,0.35); transform: translateY(-4px); border-color: var(--line-2); }
.area__media { position: relative; aspect-ratio: 4/3; overflow: hidden; background: var(--bg-soft-2); }
.area__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.area:hover .area__media img { transform: scale(1.05); }
.area__ph { position: absolute; inset: 0; }
.area__ph--fire  { background: radial-gradient(70% 80% at 60% 30%, rgba(226,35,26,0.5), transparent 60%), linear-gradient(140deg,#2a0c0a,#15161a); }
.area__ph--tower { background: radial-gradient(70% 80% at 50% 20%, rgba(40,104,173,0.4), transparent 60%), linear-gradient(140deg,#10243b,#15161a); }
.area__ph--roof  { background: radial-gradient(70% 80% at 60% 70%, rgba(226,35,26,0.4), transparent 60%), linear-gradient(140deg,#241a10,#15161a); }
.area__num { position: absolute; top: 0; left: 0; background: var(--red); color: #fff; font-family: var(--display); font-weight: 700; font-size: 0.9rem; padding: 6px 12px; letter-spacing: 0.06em; }
.area__body { padding: clamp(20px,2.4vw,28px); display: flex; flex-direction: column; flex: 1; }
.area__label { font-family: var(--display); font-weight: 600; text-transform: uppercase; letter-spacing: 0.04em; color: var(--red); font-size: 0.82rem; }
.area__title { font-size: 1.32rem; margin: 8px 0 10px; text-transform: uppercase; }
.area__body p { font-size: 0.96rem; flex: 1; }
.area__patent { display: inline-flex; align-items: center; gap: 7px; align-self: flex-start; margin-top: 16px; padding: 6px 12px; border-radius: 100px; background: var(--red-soft); color: var(--red-dark); font-family: var(--display); font-weight: 600; font-size: 0.74rem; text-transform: uppercase; letter-spacing: 0.04em; }
.area__patent svg { width: 14px; height: 14px; flex: none; }
.area__link { margin-top: 16px; display: inline-flex; align-items: center; gap: 8px; font-family: var(--display); font-weight: 600; text-transform: uppercase; font-size: 0.82rem; letter-spacing: 0.05em; color: var(--ink); transition: gap .2s, color .2s; }
.area__link svg { width: 15px; height: 15px; color: var(--red); }
.area__link:hover { color: var(--red); gap: 12px; }

/* patents note under the grid */
.patents-note { display: flex; align-items: flex-start; gap: 12px; max-width: 820px; margin: clamp(34px,5vw,48px) auto 0; padding: 20px 24px; background: #fff; border: 1px solid var(--line); border-left: 4px solid var(--red); border-radius: 6px; color: var(--ink-2); font-size: 0.95rem; }
.patents-note svg { width: 26px; height: 26px; color: var(--red); flex: none; margin-top: 2px; }

/* ==========================================================================
   Team
   ========================================================================== */
.team { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(18px, 2.5vw, 30px); max-width: 1040px; margin-inline: auto; }
@media (max-width: 860px){ .team { grid-template-columns: 1fr 1fr; max-width: 560px; } }
@media (max-width: 420px){ .team { grid-template-columns: 1fr; max-width: 300px; } }
.member { text-align: center; }
.member__photo { position: relative; aspect-ratio: 3/4; border-radius: 6px; overflow: hidden; border: 1px solid var(--line); background: var(--bg-soft-2); }
.member__photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 20%; filter: grayscale(1) contrast(1.03); transition: filter .45s var(--ease), transform .5s var(--ease); }
.member:hover .member__photo img { filter: none; transform: scale(1.04); }
.member__photo::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 4px; background: var(--red); transform: scaleX(0); transform-origin: left; transition: transform .35s var(--ease); }
.member:hover .member__photo::after { transform: scaleX(1); }
.member__name { margin-top: 16px; font-size: 1.18rem; text-transform: uppercase; }
.member__role { display: block; margin-top: 4px; font-family: var(--display); font-weight: 500; text-transform: uppercase; letter-spacing: 0.05em; color: var(--red); font-size: 0.82rem; }

/* ==========================================================================
   Pilot phases
   ========================================================================== */
.phases { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(18px, 2.5vw, 26px); }
@media (max-width: 820px){ .phases { grid-template-columns: 1fr; max-width: 520px; margin-inline: auto; } }
.phase { position: relative; background: #fff; border: 1px solid var(--line); border-top: 3px solid var(--red); border-radius: 6px; padding: clamp(24px,3vw,32px); transition: box-shadow .25s var(--ease), transform .25s var(--ease); }
.phase:hover { box-shadow: 0 16px 36px -18px rgba(20,22,26,0.3); transform: translateY(-3px); }
.phase__k { font-family: var(--display); font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--red); font-size: 0.82rem; }
.phase__title { font-size: 1.22rem; text-transform: uppercase; margin: 8px 0 10px; }
.phase p { font-size: 0.95rem; }
.pilot-note { text-align: center; max-width: 680px; margin: clamp(30px,4vw,42px) auto 0; color: var(--muted); font-size: 0.95rem; }

/* ==========================================================================
   Contact
   ========================================================================== */
.contact-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: clamp(32px, 5vw, 60px); align-items: start; max-width: 980px; margin-inline: auto; }
@media (max-width: 820px){ .contact-grid { grid-template-columns: 1fr; } }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 480px){ .field-row { grid-template-columns: 1fr; } }
.field { display: grid; gap: 7px; margin-bottom: 18px; }
.field label { font-family: var(--display); font-weight: 500; text-transform: uppercase; letter-spacing: 0.04em; font-size: 0.8rem; color: var(--ink-2); }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 15px; border: 1px solid var(--line-2); border-radius: 4px;
  background: #fff; color: var(--ink); font: inherit; font-size: 0.96rem; transition: border-color .2s, box-shadow .2s;
}
.field textarea { resize: vertical; min-height: 130px; }
.field input::placeholder, .field textarea::placeholder { color: var(--muted); }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--red); box-shadow: 0 0 0 3px var(--red-soft); }
.field-err { color: var(--red); font-size: 0.82rem; }
.cform .btn { margin-top: 4px; }
.form-note { font-size: 0.82rem; color: var(--muted); margin-top: 10px; }
.alert { padding: 14px 18px; border-radius: 5px; margin-bottom: 22px; font-size: 0.95rem; border-left: 4px solid; }
.alert--ok { background: #e9f7ee; border-color: #2e9e57; color: #1f7a42; }
.alert--err { background: var(--red-soft); border-color: var(--red); color: var(--red-dark); }

.contact-info { display: grid; gap: 0; }
.info-item { padding: 16px 0; border-bottom: 1px solid var(--line); }
.info-item:first-child { padding-top: 0; }
.info-item h4 { font-family: var(--display); font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; font-size: 0.76rem; color: var(--muted); margin-bottom: 5px; }
.info-item a, .info-item p { color: var(--ink); font-size: 1.02rem; }
.info-item a:hover { color: var(--red); }

/* ==========================================================================
   Why / intro
   ========================================================================== */
.why { text-align: center; }
.why .kicker { margin: 6px 0 18px; }
.why p { max-width: 760px; margin: 0 auto; }

/* feature band */
.feature-band { position: relative; color: #fff; overflow: hidden; }
.feature-band__media { position: absolute; inset: 0; z-index: 0; }
.feature-band__media img { width: 100%; height: 100%; object-fit: cover; }
.feature-band__media::after { content:""; position:absolute; inset:0; background: linear-gradient(90deg, rgba(12,13,16,0.9), rgba(12,13,16,0.55) 60%, rgba(190,22,16,0.3)); }
.feature-band__ph { position:absolute; inset:0; z-index:0; background: radial-gradient(70% 90% at 80% 30%, rgba(226,35,26,0.45), transparent 55%), linear-gradient(120deg,#1b0b09,#121317); }
.feature-band__in { position: relative; z-index: 1; padding-block: clamp(64px,9vw,120px); max-width: 640px; }
.feature-band .kicker { color: #ff7a3c; }
.feature-band h2 { color: #fff; margin: 14px 0 16px; }
.feature-band p { color: rgba(255,255,255,0.85); }
.feature-band .btn { margin-top: 28px; }
.feature-band--center .feature-band__in { max-width: 720px; margin-inline: auto; text-align: center; }
.feature-band--center .feature-band__media::after { background: linear-gradient(0deg, rgba(12,13,16,0.88), rgba(12,13,16,0.62)); }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 28px; }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer { background: var(--charcoal); color: rgba(255,255,255,0.72); }
.footer-top { padding-block: clamp(48px,6vw,72px); display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 40px; }
@media (max-width: 760px){ .footer-top { grid-template-columns: 1fr; gap: 32px; } }
.footer-brand img { height: 44px; margin-bottom: 18px; }
.footer-logo { display: block; height: 56px; width: auto; aspect-ratio: 760 / 560; margin: 0 0 16px -4px; pointer-events: none; }
.footer-brand p { color: rgba(255,255,255,0.6); font-size: 0.92rem; max-width: 340px; }
.footer-col h5 { font-family: var(--display); font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: #fff; font-size: 0.86rem; margin-bottom: 16px; }
.footer-col a, .footer-col p { display: block; color: rgba(255,255,255,0.66); font-size: 0.93rem; padding: 5px 0; transition: color .2s; }
.footer-col a:hover { color: var(--red); }
.footer-socials { display: flex; gap: 10px; margin-top: 18px; }
.footer-socials a { width: 38px; height: 38px; border-radius: 4px; background: rgba(255,255,255,0.08); display: grid; place-items: center; color: #fff; transition: background .2s; }
.footer-socials a:hover { background: var(--red); }
.footer-socials svg { width: 17px; height: 17px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-block: 20px; font-size: 0.82rem; color: rgba(255,255,255,0.45); display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; }

/* ==========================================================================
   Maintenance / construct screen
   ========================================================================== */
.construct {
  min-height: 100svh; min-height: 100dvh;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; color: #fff; background: var(--charcoal-3);
  padding: clamp(36px,6vh,64px) var(--gutter); position: relative; overflow-x: hidden;
  overscroll-behavior: none;
}
.construct__bg { position: absolute; inset: 0; z-index: 0;
  background: radial-gradient(80% 70% at 75% 12%, rgba(226,35,26,0.22), transparent 55%),
              radial-gradient(70% 60% at 20% 100%, rgba(40,104,173,0.14), transparent 55%),
              linear-gradient(180deg, #1a1c20, var(--charcoal-3)); }
.construct__ridge, .construct__grid { display: none; }
.construct__inner { position: relative; z-index: 2; max-width: 700px; display: flex; flex-direction: column; align-items: center; }
.construct__logo { width: min(380px, 84vw); aspect-ratio: 760/560; margin: 0 auto 6px; border: 0; pointer-events: none; }
.construct__eyebrow, .construct .kicker { color: #ff6a3c; justify-content: center; }
.construct__title { font-family: var(--display); font-weight: 700; text-transform: uppercase; font-size: clamp(1.8rem,5vw,3rem); line-height: 1.05; margin-top: 14px; color: #fff; }
.construct__title br { display: none; }
.construct__sub { color: rgba(255,255,255,0.7); margin-top: 18px; max-width: 540px; }
.construct__bars { display: flex; gap: 8px; margin: 34px 0; }
.construct__bars span { width: 34px; height: 4px; border-radius: 4px; background: rgba(255,255,255,0.15); position: relative; overflow: hidden; }
.construct__bars span::after { content:""; position:absolute; inset:0; background: var(--red); transform: translateX(-100%); animation: barFill 2.6s ease-in-out infinite; }
.construct__bars span:nth-child(2)::after{animation-delay:.25s} .construct__bars span:nth-child(3)::after{animation-delay:.5s}
.construct__bars span:nth-child(4)::after{animation-delay:.75s} .construct__bars span:nth-child(5)::after{animation-delay:1s}
@keyframes barFill { 0%{transform:translateX(-100%)} 45%,55%{transform:translateX(0)} 100%{transform:translateX(100%)} }
.construct__contact { border: 1px solid rgba(255,255,255,0.15); border-radius: 6px; padding: 18px 26px; display: inline-flex; flex-direction: column; gap: 6px; }
.construct__contact span { font-family: var(--display); font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.55); }
.construct__contact a { font-family: var(--display); font-weight: 600; font-size: 1.05rem; color: #fff; }
.construct__contact a:hover { color: var(--red); }
.construct__lang { margin-top: 34px; display: flex; gap: 6px; justify-content: center; }
.construct__lang a { color: rgba(255,255,255,0.6); padding: 3px 4px; font-family: var(--display); font-weight: 600; }
.construct__lang a.is-active { color: var(--red); }
.construct__foot { margin-top: 24px; font-size: 0.8rem; color: rgba(255,255,255,0.4); }

/* ==========================================================================
   Reveal
   ========================================================================== */
[data-reveal] { opacity: 0; transform: translateY(20px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
[data-reveal].is-in { opacity: 1; transform: none; }
[data-reveal][data-delay="1"]{ transition-delay:.08s } [data-reveal][data-delay="2"]{ transition-delay:.16s } [data-reveal][data-delay="3"]{ transition-delay:.24s }
