:root{
  --bg:#0B0F10;
  --bg-elev:#12181B;
  --bg-soft:#1A2327;
  --bg-green:#0F2F28;
  --bg-green-2:#153B33;
  --accent:#B7FF3C;
  --silver:#C9CED3;
  --text:#F3F5F6;
  --text-2:#A7B0B4;
  --text-3:#7D878C;
  --line:rgba(201,206,211,.12);
  --line-strong:rgba(201,206,211,.18);
  --shadow:0 24px 60px rgba(0,0,0,.28);
  --shadow-soft:0 12px 30px rgba(0,0,0,.22);
  --radius-lg:20px;
  --radius-md:16px;
  --radius-sm:12px;
  --container:1360px;
  --container-narrow:1120px;
  --header-h:92px;
  --ease:cubic-bezier(.2,.8,.2,1);
}

*,
*::before,
*::after{box-sizing:border-box}

html{
  scroll-behavior:smooth;
}

body{
  margin:0;
  min-width:320px;
  font-family:Inter, Manrope, "Plus Jakarta Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top right, rgba(15,47,40,.22), transparent 28%),
    radial-gradient(circle at 15% 8%, rgba(183,255,60,.06), transparent 22%),
    linear-gradient(180deg,#0B0F10 0%,#0D1214 48%,#0B0F10 100%);
  color:var(--text);
  line-height:1.6;
  overflow-x:hidden;
}

body.menu-open{
  overflow:hidden;
}

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

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

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

::selection{
  background:rgba(183,255,60,.22);
  color:var(--text);
}

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

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

.skip-link{
  position:absolute;
  left:-999px;
  top:16px;
  background:var(--accent);
  color:#101315;
  padding:12px 16px;
  border-radius:12px;
  z-index:1000;
}
.skip-link:focus{
  left:16px;
}

.site-header{
  position:sticky;
  top:0;
  z-index:100;
  transition:background .35s var(--ease), border-color .35s var(--ease), backdrop-filter .35s var(--ease), box-shadow .35s var(--ease), transform .35s var(--ease);
  border-bottom:1px solid transparent;
}

.site-header::before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg, rgba(11,15,16,.84), rgba(11,15,16,.54));
  backdrop-filter:blur(16px);
  opacity:.72;
  transition:opacity .35s var(--ease);
  z-index:-1;
}

body.home .site-header::before{
  opacity:.28;
}

.site-header.is-scrolled{
  border-color:var(--line);
  box-shadow:0 10px 24px rgba(0,0,0,.16);
}

.site-header.is-scrolled::before{
  opacity:1;
}

.header-inner{
  min-height:var(--header-h);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
}

.brand{
  display:inline-flex;
  align-items:center;
  gap:14px;
  font-weight:700;
  letter-spacing:.12em;
  font-size:.92rem;
  text-transform:uppercase;
}

.brand-mark{
  width:46px;
  height:48px;
  flex:0 0 46px;
  display:block;
  position:relative;
  background:url("../img/brinteq-monogram-site.png") center / contain no-repeat;
  filter:drop-shadow(0 8px 18px rgba(0,0,0,.28)) drop-shadow(0 0 14px rgba(183,255,60,.08));
}

.brand-mark::before,
.brand-mark::after,
.brand-mark span{
  display:none;
}

.brand-word{
  color:var(--silver);
}

.brand-word em{
  font-style:normal;
  color:var(--accent);
}

.site-header .brand{
  gap:12px;
  padding:8px 16px 8px 10px;
  border:1px solid rgba(201,206,211,.12);
  border-radius:999px;
  background:linear-gradient(180deg, rgba(12,17,18,.86), rgba(12,17,18,.62));
  box-shadow:0 10px 24px rgba(0,0,0,.18), inset 0 1px 0 rgba(255,255,255,.03);
  backdrop-filter:blur(10px);
  transition:border-color .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease), transform .25s var(--ease);
}

.site-header .brand:hover{
  border-color:rgba(183,255,60,.18);
  box-shadow:0 12px 28px rgba(0,0,0,.22), 0 0 0 1px rgba(183,255,60,.06), inset 0 1px 0 rgba(255,255,255,.04);
}

.site-header .brand-mark{
  width:42px;
  height:44px;
  flex:0 0 42px;
  padding-right:14px;
  border-right:1px solid rgba(201,206,211,.14);
  background-position:left center;
}

.site-header .brand-word{
  display:inline-flex;
  align-items:flex-end;
  line-height:1;
  letter-spacing:.18em;
  font-size:.88rem;
  text-transform:uppercase;
}

.header-actions{
  display:flex;
  align-items:center;
  gap:16px;
}

.main-nav{
  display:flex;
  align-items:center;
  gap:6px;
}

.main-nav a{
  color:var(--text-2);
  padding:10px 14px;
  border-radius:999px;
  transition:color .25s var(--ease), background .25s var(--ease), box-shadow .25s var(--ease);
  font-size:.97rem;
}

.main-nav a:hover,
.main-nav a.is-active{
  color:var(--text);
  background:rgba(255,255,255,.045);
  box-shadow:inset 0 0 0 1px rgba(255,255,255,.05);
}

.nav-toggle{
  display:none;
  width:46px;
  height:46px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.02);
  border-radius:14px;
  color:var(--text);
  position:relative;
  cursor:pointer;
}

.nav-toggle span,
.nav-toggle::before,
.nav-toggle::after{
  content:"";
  position:absolute;
  left:12px;
  right:12px;
  height:2px;
  background:currentColor;
  border-radius:999px;
  transition:transform .3s var(--ease), opacity .3s var(--ease), top .3s var(--ease);
}

.nav-toggle span{ top:22px; }
.nav-toggle::before{ top:15px; }
.nav-toggle::after{ top:29px; }

.nav-toggle[aria-expanded="true"] span{
  opacity:0;
}
.nav-toggle[aria-expanded="true"]::before{
  top:22px;
  transform:rotate(45deg);
}
.nav-toggle[aria-expanded="true"]::after{
  top:22px;
  transform:rotate(-45deg);
}

.mobile-panel{
  display:none;
  padding-bottom:16px;
}

.mobile-panel-inner{
  background:rgba(18,24,27,.96);
  border:1px solid var(--line);
  border-radius:22px;
  padding:12px;
  box-shadow:var(--shadow-soft);
}

.mobile-panel nav{
  display:flex;
  flex-direction:column;
}

.mobile-panel a{
  padding:14px 14px;
  border-radius:14px;
  color:var(--text-2);
}

.mobile-panel a:hover,
.mobile-panel a.is-active{
  background:rgba(255,255,255,.04);
  color:var(--text);
}

.mobile-panel .header-cta{
  width:100%;
  margin-top:10px;
  justify-content:center;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  min-height:50px;
  padding:0 22px;
  border-radius:16px;
  font-weight:600;
  letter-spacing:.01em;
  border:1px solid transparent;
  transition:transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
  cursor:pointer;
}

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

.btn--primary{
  background:var(--accent);
  color:#101315;
  box-shadow:0 14px 30px rgba(183,255,60,.17), inset 0 1px 0 rgba(255,255,255,.25);
}

.btn--primary:hover{
  box-shadow:0 18px 34px rgba(183,255,60,.23), inset 0 1px 0 rgba(255,255,255,.25);
}

.btn--ghost{
  border-color:var(--line-strong);
  color:var(--text);
  background:rgba(255,255,255,.02);
}

.btn--ghost:hover{
  background:rgba(255,255,255,.05);
  border-color:rgba(183,255,60,.26);
}

.btn--inline{
  padding:0;
  min-height:auto;
  border-radius:0;
  font-weight:600;
  color:var(--silver);
  border:none;
  background:none;
}

.btn--inline span{
  display:inline-flex;
  align-items:center;
  gap:8px;
  border-bottom:1px solid rgba(183,255,60,.24);
  padding-bottom:3px;
}

main{
  display:block;
}

.hero{
  position:relative;
  padding:44px 0 26px;
}

.hero::before{
  content:"";
  position:absolute;
  inset:4% auto auto 58%;
  width:420px;
  height:420px;
  background:radial-gradient(circle, rgba(183,255,60,.08), transparent 65%);
  filter:blur(4px);
  pointer-events:none;
}

.hero-grid{
  display:grid;
  grid-template-columns:minmax(0, 1.02fr) minmax(360px, .98fr);
  gap:36px;
  align-items:center;
}

.hero-copy{
  max-width:820px;
}

.hero-copy .eyebrow{
  margin-bottom:16px;
}

.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:7px 12px;
  border-radius:999px;
  color:var(--text-2);
  font-size:.86rem;
  background:rgba(255,255,255,.03);
  border:1px solid var(--line);
}

.eyebrow::before{
  content:"";
  width:8px;
  height:8px;
  border-radius:50%;
  background:var(--accent);
  box-shadow:0 0 14px rgba(183,255,60,.4);
}

.hero h1,
.page-hero h1{
  margin:0 0 18px;
  font-size:clamp(2.35rem, 3.8vw, 4.55rem);
  line-height:1.01;
  letter-spacing:-.04em;
  max-width:15ch;
}

.hero p.lead,
.page-hero p.lead{
  margin:0 0 20px;
  color:var(--text-2);
  font-size:clamp(1.02rem, 1.25vw, 1.2rem);
  max-width:60ch;
}

.hero-note,
.page-hero .hero-note{
  margin:-2px 0 22px;
  max-width:62ch;
  color:var(--text-3);
  font-size:.98rem;
  line-height:1.65;
}

.hero-meta{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin:0 0 30px;
}

.hero-meta span{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:10px 14px;
  border-radius:999px;
  background:rgba(255,255,255,.025);
  color:var(--text-2);
  border:1px solid var(--line);
  font-size:.92rem;
}

.hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
}

.hero-visual{
  position:relative;
}

.hero-panel{
  position:relative;
  background:linear-gradient(180deg, rgba(18,24,27,.96), rgba(14,18,20,.84));
  border:1px solid var(--line);
  border-radius:32px;
  padding:18px;
  box-shadow:var(--shadow);
  overflow:hidden;
}

.hero-panel::before{
  content:"";
  position:absolute;
  inset:auto -40px -120px auto;
  width:220px;
  height:220px;
  background:radial-gradient(circle, rgba(183,255,60,.08), transparent 70%);
  filter:blur(10px);
}


.hero-panel img{
  display:block;
  width:100%;
  height:auto;
  border-radius:24px;
  border:1px solid rgba(255,255,255,.03);
}


.band-side{
  display:grid;
  gap:16px;
}

.band-media{
  padding:10px;
  border-radius:20px;
  border:1px solid rgba(255,255,255,.08);
  background:
    linear-gradient(180deg, rgba(18,24,27,.82), rgba(11,15,16,.68)),
    url("../img/pattern-signal-lines.svg") center/cover no-repeat;
  box-shadow:var(--shadow-soft);
}

.band-media img{
  display:block;
  width:100%;
  height:auto;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.04);
}

.hero-float{
  position:absolute;
  padding:12px 14px;
  background:rgba(11,15,16,.64);
  border:1px solid rgba(255,255,255,.10);
  border-radius:18px;
  box-shadow:var(--shadow-soft);
  backdrop-filter:blur(16px);
  max-width:260px;
}

.hero-float strong{
  display:block;
  font-size:.95rem;
  margin-bottom:6px;
  letter-spacing:-.01em;
}

.hero-float span{
  display:block;
  color:var(--text-2);
  font-size:.86rem;
  line-height:1.45;
}

.hero-float--one{
  left:18px;
  bottom:18px;
}

.hero-float--two{
  right:18px;
  top:18px;
}

.page-hero{
  padding:48px 0 20px;
}

.page-hero-grid{
  display:grid;
  grid-template-columns:minmax(0, 1.05fr) minmax(320px, .95fr);
  gap:36px;
  align-items:center;
}

.page-hero-grid--top{
  align-items:start;
}

.page-hero-art{
  background:linear-gradient(180deg, rgba(18,24,27,.94), rgba(11,15,16,.86));
  border:1px solid var(--line);
  border-radius:28px;
  padding:16px;
  box-shadow:var(--shadow-soft);
}

.page-hero-art img{
  display:block;
  width:100%;
  height:auto;
  border-radius:20px;
}

.page-hero-art--scene{
  overflow:hidden;
}

.page-hero-scene{
  aspect-ratio:16 / 9;
  object-fit:cover;
  object-position:center;
}

.breadcrumbs{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap:10px;
  margin:0 0 20px;
  color:var(--text-3);
  font-size:.9rem;
}

.breadcrumbs span.sep{
  opacity:.55;
}

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

.section--spacious{
  padding:54px 0;
}

.section-head{
  display:flex;
  align-items:end;
  justify-content:space-between;
  gap:20px;
  margin-bottom:24px;
}

.section-head h2{
  margin:0 0 8px;
  font-size:clamp(1.72rem, 3vw, 2.6rem);
  letter-spacing:-.03em;
}

.section-head p{
  margin:0;
  color:var(--text-2);
  max-width:62ch;
}

.section-head--stack{
  display:block;
}

.section-head--stack .eyebrow{
  margin-bottom:14px;
}

.section-head--stack p{
  max-width:72ch;
}

.card-grid{
  display:grid;
  gap:18px;
}

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

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

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

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

.grid-auto{
  grid-template-columns:repeat(auto-fit, minmax(260px, 1fr));
}

.card{
  position:relative;
  display:flex;
  flex-direction:column;
  gap:14px;
  min-height:100%;
  padding:24px;
  background:linear-gradient(180deg, rgba(18,24,27,.94), rgba(14,18,20,.88));
  border:1px solid var(--line);
  border-radius:20px;
  box-shadow:0 12px 26px rgba(0,0,0,.12);
  overflow:hidden;
  transition:transform .28s var(--ease), border-color .28s var(--ease), box-shadow .28s var(--ease), background .28s var(--ease);
}

.card::before{
  content:"";
  position:absolute;
  inset:-60px auto auto -40px;
  width:140px;
  height:140px;
  background:radial-gradient(circle, rgba(183,255,60,.08), transparent 68%);
  opacity:0;
  transition:opacity .28s var(--ease);
}

.card:hover{
  transform:translateY(-4px);
  border-color:rgba(183,255,60,.2);
  box-shadow:0 18px 34px rgba(0,0,0,.2);
}

.card:hover::before{
  opacity:1;
}

.card h3,
.card h4{
  margin:0;
  font-size:1.18rem;
  letter-spacing:-.02em;
}

.card p{
  margin:0;
  color:var(--text-2);
}

.card ul{
  margin:0;
  padding-left:18px;
  color:var(--text-2);
}

.card--link{
  padding-bottom:20px;
}

.card-link{
  margin-top:auto;
  display:inline-flex;
  align-items:center;
  gap:8px;
  color:var(--silver);
  font-weight:600;
}

.card-link img{
  width:18px;
  height:18px;
  opacity:1;
}

.card-icon{
  width:46px;
  height:46px;
  display:grid;
  place-items:center;
  border-radius:14px;
  border:1px solid rgba(183,255,60,.2);
  background:rgba(183,255,60,.06);
  color:var(--accent);
}

.card-icon img{
  width:24px;
  height:24px;
}

.card-meta{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
}

.chip{
  display:inline-flex;
  align-items:center;
  min-height:34px;
  padding:0 12px;
  border-radius:999px;
  background:rgba(255,255,255,.03);
  border:1px solid var(--line);
  color:var(--text-2);
  font-size:.88rem;
}

.feature-list,
.check-list,
.compact-list{
  list-style:none;
  padding:0;
  margin:0;
  display:grid;
  gap:10px;
}

.feature-list li,
.check-list li,
.compact-list li{
  position:relative;
  padding-left:20px;
  color:var(--text-2);
}

.feature-list li::before,
.check-list li::before,
.compact-list li::before{
  content:"";
  position:absolute;
  left:0;
  top:.64em;
  width:8px;
  height:8px;
  border-radius:50%;
  background:var(--accent);
  box-shadow:0 0 14px rgba(183,255,60,.35);
}

.compact-list{
  gap:8px;
}

.band{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:24px;
  padding:28px;
  border-radius:28px;
  border:1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(15,47,40,.52), rgba(18,24,27,.96) 58%),
    linear-gradient(180deg, rgba(18,24,27,.94), rgba(11,15,16,.9));
  box-shadow:var(--shadow-soft);
  overflow:hidden;
}

.band h2,
.band h3{
  margin:0 0 12px;
  font-size:clamp(1.6rem, 2.2vw, 2.4rem);
}

.band p{
  margin:0;
  color:var(--text-2);
}

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

.band-item{
  padding:18px;
  border-radius:18px;
  border:1px solid rgba(255,255,255,.08);
  background:rgba(11,15,16,.26);
}

.band-item strong{
  display:block;
  margin-bottom:8px;
}

.band-item p{
  font-size:.94rem;
}

.split{
  display:grid;
  grid-template-columns:minmax(0, 1.05fr) minmax(300px, .95fr);
  gap:24px;
  align-items:start;
}

.aside-panel{
  padding:22px;
  border-radius:22px;
  background:linear-gradient(180deg, rgba(18,24,27,.96), rgba(12,16,18,.92));
  border:1px solid var(--line);
  box-shadow:var(--shadow-soft);
}

.aside-panel h3{
  margin:0 0 14px;
  font-size:1.2rem;
}

.metric-strip{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:14px;
  margin-top:20px;
}

.metric{
  padding:18px;
  border-radius:18px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.025);
}

.metric strong{
  display:block;
  font-size:1.4rem;
  letter-spacing:-.03em;
  margin-bottom:4px;
}

.metric span{
  color:var(--text-2);
  font-size:.92rem;
}

.timeline{
  display:grid;
  gap:12px;
}

.timeline-step{
  position:relative;
  padding:18px 18px 18px 58px;
  border-radius:18px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.02);
}

.timeline-step::before{
  content:attr(data-step);
  position:absolute;
  left:16px;
  top:16px;
  width:28px;
  height:28px;
  border-radius:50%;
  display:grid;
  place-items:center;
  background:rgba(183,255,60,.12);
  border:1px solid rgba(183,255,60,.26);
  color:var(--accent);
  font-weight:700;
  font-size:.86rem;
}

.timeline-step strong{
  display:block;
  margin-bottom:6px;
}

.link-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(220px, 1fr));
  gap:16px;
}

.link-card{
  min-height:148px;
}

.principles{
  display:grid;
  grid-template-columns:repeat(4, minmax(0,1fr));
  gap:16px;
}

.principle-card{
  padding:22px;
  background:linear-gradient(180deg, rgba(18,24,27,.96), rgba(12,16,18,.9));
  border:1px solid var(--line);
  border-radius:20px;
}

.principle-card span{
  display:inline-flex;
  margin-bottom:16px;
  width:40px;
  height:40px;
  align-items:center;
  justify-content:center;
  border-radius:12px;
  border:1px solid rgba(183,255,60,.2);
  background:rgba(183,255,60,.06);
  color:var(--accent);
  font-weight:700;
}

.principle-card h3{
  margin:0 0 8px;
  font-size:1.1rem;
}

.principle-card p{
  margin:0;
  color:var(--text-2);
}

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

.tag{
  display:inline-flex;
  align-items:center;
  padding:8px 12px;
  border-radius:999px;
  border:1px solid var(--line);
  color:var(--text-2);
  background:rgba(255,255,255,.02);
  font-size:.9rem;
}

.filter-bar{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-bottom:20px;
}

.filter-button{
  min-height:40px;
  padding:0 14px;
  border-radius:999px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.02);
  color:var(--text-2);
  cursor:pointer;
  transition:background .25s var(--ease), border-color .25s var(--ease), color .25s var(--ease);
}

.filter-button:hover,
.filter-button.is-active{
  background:rgba(183,255,60,.08);
  border-color:rgba(183,255,60,.24);
  color:var(--text);
}

.case-card.is-hidden{
  display:none;
}

.case-top{
  display:flex;
  justify-content:space-between;
  gap:14px;
  align-items:flex-start;
}

.case-kicker{
  color:var(--accent);
  font-size:.86rem;
  letter-spacing:.08em;
  text-transform:uppercase;
}

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

.content-block{
  padding:22px;
  border-radius:20px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.02);
}

.content-block h3{
  margin:0 0 12px;
}

.cta-box{
  position:relative;
  overflow:hidden;
  padding:30px;
  border-radius:28px;
  border:1px solid var(--line);
  background:
    radial-gradient(circle at 80% 20%, rgba(183,255,60,.14), transparent 32%),
    linear-gradient(135deg, rgba(15,47,40,.54), rgba(18,24,27,.96) 55%);
  box-shadow:var(--shadow-soft);
}

.cta-box h2,
.cta-box h3{
  margin:0 0 10px;
  font-size:clamp(1.7rem, 2.5vw, 2.8rem);
}

.cta-box p{
  margin:0 0 22px;
  color:var(--text-2);
  max-width:56ch;
}

.form-card{
  padding:24px;
  border-radius:24px;
  background:linear-gradient(180deg, rgba(18,24,27,.98), rgba(11,15,16,.92));
  border:1px solid var(--line);
  box-shadow:var(--shadow-soft);
}

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

.field{
  display:flex;
  flex-direction:column;
  gap:8px;
}

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

.field label{
  color:var(--text-2);
  font-size:.92rem;
}

.field input,
.field textarea,
.field select{
  width:100%;
  min-height:54px;
  border-radius:16px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.025);
  color:var(--text);
  padding:0 16px;
  transition:border-color .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease);
}

/* Ensure native select dropdown follows dark corporate theme */
.field select{
  color-scheme:dark;
}

.field select option{
  background-color:var(--bg-elev);
  color:var(--text);
}

.field select option:first-child{
  color:var(--text-3);
}

.field textarea{
  min-height:150px;
  padding:14px 16px;
  resize:vertical;
}

.field input:focus,
.field textarea:focus,
.field select:focus{
  outline:none;
  border-color:rgba(183,255,60,.34);
  box-shadow:0 0 0 4px rgba(183,255,60,.08);
  background:rgba(255,255,255,.04);
}

.form-note{
  color:var(--text-3);
  font-size:.9rem;
  margin-top:10px;
}

.form-success{
  display:none;
  margin-top:16px;
  padding:14px 16px;
  border-radius:16px;
  border:1px solid rgba(183,255,60,.24);
  background:rgba(183,255,60,.08);
  color:var(--text);
}

.form-success.is-visible{
  display:block;
}

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

.contact-card{
  min-height:100%;
}

.contact-list{
  display:grid;
  gap:12px;
}

.contact-row{
  display:flex;
  align-items:flex-start;
  gap:12px;
  padding:16px;
  border-radius:18px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.02);
}

.contact-row strong{
  display:block;
}

.contact-row p,
.contact-row a{
  margin:0;
  color:var(--text-2);
}

.notice{
  padding:16px 18px;
  border-radius:16px;
  border:1px solid rgba(183,255,60,.16);
  background:rgba(183,255,60,.05);
  color:var(--text-2);
}

.site-footer{
  padding:40px 0 24px;
  border-top:1px solid var(--line);
  margin-top:40px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.01), rgba(0,0,0,.02));
}

.footer-grid{
  display:grid;
  grid-template-columns:1.15fr .8fr .8fr .95fr;
  gap:24px;
}

.footer-brand p{
  margin:14px 0 0;
  color:var(--text-2);
  max-width:38ch;
}

.footer-col h3{
  margin:0 0 12px;
  font-size:1rem;
}

.footer-col ul{
  list-style:none;
  margin:0;
  padding:0;
  display:grid;
  gap:10px;
}

.footer-col a{
  color:var(--text-2);
  transition:color .25s var(--ease);
}

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

.footer-bottom{
  margin-top:28px;
  padding-top:18px;
  border-top:1px solid var(--line);
  display:flex;
  justify-content:space-between;
  gap:16px;
  flex-wrap:wrap;
  color:var(--text-3);
  font-size:.92rem;
}

.scroll-top{
  position:fixed;
  right:18px;
  bottom:18px;
  width:48px;
  height:48px;
  border-radius:16px;
  border:1px solid var(--line);
  background:rgba(18,24,27,.92);
  color:var(--text);
  display:grid;
  place-items:center;
  cursor:pointer;
  box-shadow:var(--shadow-soft);
  opacity:0;
  pointer-events:none;
  transform:translateY(10px);
  transition:opacity .28s var(--ease), transform .28s var(--ease), border-color .28s var(--ease);
  z-index:80;
}

.scroll-top.is-visible{
  opacity:1;
  pointer-events:auto;
  transform:translateY(0);
}

.scroll-top:hover{
  border-color:rgba(183,255,60,.28);
}

.scroll-top::before{
  content:"";
  width:12px;
  height:12px;
  border-left:2px solid currentColor;
  border-top:2px solid currentColor;
  transform:translateY(3px) rotate(45deg);
}

.reveal{
  opacity:0;
  transform:translateY(20px);
  transition:opacity .7s var(--ease), transform .7s var(--ease);
  will-change:opacity, transform;
}

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

[data-parallax]{
  transform:translateY(calc(var(--parallax-shift, 0px)));
  transition:transform .15s linear;
}

.muted{
  color:var(--text-2);
}

.small{
  font-size:.92rem;
}


.home .hero-grid{
  align-items:start;
}

.home .hero-visual{
  padding-top:4px;
}

.home .band{
  align-items:start;
  grid-template-columns:minmax(0, 1.02fr) minmax(360px, .98fr);
}

.home .band > div:first-child{
  display:flex;
  flex-direction:column;
  justify-content:flex-start;
  align-self:start;
  gap:18px;
  padding:0;
}

.home .band > div:first-child p{
  max-width:58ch;
}

.home .band-side{
  gap:18px;
  align-content:start;
}

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

.home .band-item:last-child{
  grid-column:1 / -1;
}

.mono{
  font-family:ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
}

.hidden{
  display:none !important;
}

@media (max-width: 1120px){
  .grid-4,
  .principles{
    grid-template-columns:repeat(2, minmax(0,1fr));
  }
  .hero-grid,
  .page-hero-grid,
  .band,
  .home .band,
  .split,
  .contact-grid,
  .footer-grid{
    grid-template-columns:1fr;
  }
  .home .band > div:first-child,
  .home .band-side{
    min-width:0;
  }
  .home .band > div:first-child p{
    max-width:none;
  }
  .hero h1,
  .page-hero h1{
    max-width:none;
  }
  .hero-float--one{
    left:16px;
    bottom:16px;
  }
  .hero-float--two{
    right:16px;
  }
}

@media (max-width: 900px){
  .home .band-grid{
    grid-template-columns:1fr;
  }

  .main-nav,
  .header-actions .header-cta{
    display:none;
  }
  .nav-toggle,
  .mobile-panel{
    display:block;
  }
  .grid-3{
    grid-template-columns:repeat(2, minmax(0,1fr));
  }
  .content-grid,
  .metric-strip{
    grid-template-columns:1fr;
  }
  .hero{
    padding-top:34px;
  }
  .hero-grid,
  .page-hero-grid{
    gap:28px;
  }
}

@media (max-width: 680px){
  :root{
    --header-h:74px;
  }
  .home .band{
    gap:20px;
  }
  .home .band-side{
    gap:14px;
  }
  .home .band-item{
    padding:16px;
  }
  .container,
  .container--narrow{
    width:min(calc(100% - 28px), var(--container));
  }
  .hero h1,
  .page-hero h1{
    font-size:clamp(2.05rem, 11vw, 3.2rem);
  }
  .hero-meta,
  .hero-actions,
  .section-head,
  .footer-bottom{
    flex-direction:column;
    align-items:flex-start;
  }
  .grid-2,
  .grid-3,
  .grid-4,
  .principles,
  .form-grid{
    grid-template-columns:1fr;
  }
  .hero-float{
    position:static;
    max-width:none;
    margin-top:14px;
  }
  .hero-panel{
    padding:12px;
  }

  .site-header .brand{
    padding:7px 12px 7px 9px;
  }

  .site-header .brand-mark{
    width:38px;
    height:40px;
    flex:0 0 38px;
    padding-right:12px;
  }

  .site-header .brand-word{
    font-size:.8rem;
    letter-spacing:.16em;
  }
  .section{
    padding:34px 0;
  }
  .section--spacious{
    padding:42px 0;
  }
  .band,
  .cta-box,
  .form-card{
    padding:22px;
  }
}

@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior:auto; }
  *,
  *::before,
  *::after{
    animation:none !important;
    transition:none !important;
  }
  .reveal{
    opacity:1;
    transform:none;
  }
}


.sr-only {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}


.lang-switch{display:flex;gap:8px;align-items:center;margin-right:10px;flex-wrap:wrap}
.lang-switch .lang-link{font-size:12px;letter-spacing:.08em;text-transform:uppercase;color:var(--text-muted);padding:6px 8px;border:1px solid rgba(255,255,255,.12);border-radius:999px}
.lang-switch .lang-link:hover{color:var(--text);border-color:rgba(255,255,255,.22)}
.lang-switch .lang-link.is-active{color:var(--text);background:rgba(255,255,255,.08);border-color:rgba(255,255,255,.28)}
@media (max-width:720px){.header-actions .lang-switch{margin-right:0}}


/* --- Brand refresh: lynx lockup logo + updated favicons --- */
.brand{
  gap:0;
  font-size:0;
  letter-spacing:normal;
  text-transform:none;
  line-height:0;
}

.brand-mark,
.brand-word{
  display:none !important;
}

.brand-logo{
  display:block;
  width:auto;
  height:58px;
  filter:drop-shadow(0 10px 18px rgba(0,0,0,.24));
}

.site-header .brand{
  padding:0;
  border:0;
  background:none;
  box-shadow:none;
  backdrop-filter:none;
  flex:0 0 auto;
  align-self:center;
}

.site-header .brand-logo{
  transform-origin:left center;
}

.site-header .brand:hover{
  border-color:transparent;
  box-shadow:none;
  background:none;
  transform:translateY(-1px);
}

.site-header .brand-logo{
  height:66px;
}

.footer-brand .brand{
  padding:0;
  border:0;
  background:none;
  box-shadow:none;
}

.footer-brand .brand-logo{
  height:68px;
  max-width:100%;
}

@media (max-width: 900px){
  .site-header .brand-logo{
    height:58px;
  }

  .footer-brand .brand-logo{
    height:60px;
  }
}

@media (max-width: 640px){
  .site-header .brand-logo{
    height:46px;
  }

  .footer-brand .brand-logo{
    height:54px;
  }
}


/* --- Header layout refresh: compact language dropdown + premium CTA --- */
.header-inner{
  display:grid;
  grid-template-columns:auto minmax(0,1fr) auto;
  align-items:center;
  column-gap:clamp(14px, 1.8vw, 28px);
}

.main-nav{
  justify-content:center;
  min-width:0;
  flex-wrap:nowrap;
  gap:2px;
}

.main-nav a{
  white-space:nowrap;
  padding:10px 12px;
}

.header-actions{
  flex:0 0 auto;
  gap:12px;
}

.lang-switch{
  position:relative;
  margin-right:0;
  display:flex;
  align-items:center;
  flex-wrap:nowrap;
}

.lang-trigger{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  min-height:46px;
  min-width:88px;
  padding:0 14px 0 16px;
  border-radius:16px;
  border:1px solid rgba(183,255,60,.16);
  background:linear-gradient(180deg, rgba(9,14,15,.92), rgba(10,15,16,.76));
  box-shadow:0 10px 24px rgba(0,0,0,.22), inset 0 1px 0 rgba(255,255,255,.04);
  color:#eef2f4;
  cursor:pointer;
  transition:border-color .25s var(--ease), box-shadow .25s var(--ease), transform .25s var(--ease), background .25s var(--ease);
}

.lang-trigger:hover,
.lang-switch.is-open .lang-trigger{
  border-color:rgba(183,255,60,.3);
  box-shadow:0 14px 30px rgba(0,0,0,.24), 0 0 0 1px rgba(183,255,60,.08), inset 0 1px 0 rgba(255,255,255,.05);
}

.lang-trigger:focus-visible{
  outline:none;
  box-shadow:0 0 0 3px rgba(183,255,60,.16), 0 14px 30px rgba(0,0,0,.24);
}

.lang-trigger__code{
  font-size:.78rem;
  font-weight:800;
  letter-spacing:.18em;
  text-transform:uppercase;
  line-height:1;
}

.lang-trigger__caret{
  width:7px;
  height:7px;
  margin-left:2px;
  border-right:1.5px solid currentColor;
  border-bottom:1.5px solid currentColor;
  transform:rotate(45deg) translateY(-1px);
  opacity:.76;
  transition:transform .22s var(--ease);
}

.lang-switch.is-open .lang-trigger__caret{
  transform:rotate(-135deg) translateY(-1px);
}

.lang-menu{
  position:absolute;
  top:calc(100% + 8px);
  right:0;
  min-width:88px;
  padding:6px;
  border-radius:18px;
  border:1px solid rgba(183,255,60,.12);
  background:rgba(8,12,13,.96);
  box-shadow:0 18px 40px rgba(0,0,0,.34), inset 0 1px 0 rgba(255,255,255,.03);
  backdrop-filter:blur(18px);
  opacity:0;
  transform:translateY(8px);
  pointer-events:none;
  transition:opacity .2s var(--ease), transform .2s var(--ease);
  z-index:20;
}

.lang-switch.is-open .lang-menu{
  opacity:1;
  transform:translateY(0);
  pointer-events:auto;
}

.lang-menu .lang-link{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:0;
  min-height:40px;
  padding:0 12px;
  border-radius:12px;
  color:var(--text-2);
  border:0;
  white-space:nowrap;
  text-align:center;
}

.lang-menu .lang-link:hover,
.lang-menu .lang-link:focus-visible,
.lang-menu .lang-link.is-active{
  color:var(--text);
  background:rgba(255,255,255,.045);
  box-shadow:none;
}

.lang-code{
  font-size:.78rem;
  font-weight:800;
  letter-spacing:.18em;
  text-transform:uppercase;
  color:var(--text);
  line-height:1;
}

.lang-code--solo{
  display:inline-block;
  min-width:2.2em;
  text-align:center;
}

.site-header .header-cta{
  min-width:236px;
  min-height:54px;
  padding:0 28px;
  border-radius:20px;
  border:1px solid rgba(201,206,211,.14);
  background:linear-gradient(180deg, rgba(12,17,18,.82), rgba(12,17,18,.58));
  box-shadow:0 10px 24px rgba(0,0,0,.16), inset 0 1px 0 rgba(255,255,255,.03);
  color:#edf0f2;
  font-weight:800;
  font-size:.95rem;
  letter-spacing:.08em;
  text-transform:uppercase;
  white-space:nowrap;
  text-shadow:0 1px 0 rgba(255,255,255,.14), 0 12px 16px rgba(0,0,0,.18);
}

@supports ((-webkit-background-clip:text) or (background-clip:text)) {
  .site-header .header-cta{
    background-image:linear-gradient(180deg, #f6f8fa 0%, #cfd5da 72%, #b8bec4 100%), linear-gradient(180deg, rgba(12,17,18,.82), rgba(12,17,18,.58));
    background-origin:border-box;
    background-clip:text, padding-box;
    -webkit-background-clip:text, padding-box;
    color:transparent;
    -webkit-text-fill-color:transparent;
  }
}

.site-header .header-cta:hover{
  border-color:rgba(183,255,60,.18);
  box-shadow:0 12px 28px rgba(0,0,0,.2), 0 0 0 1px rgba(183,255,60,.05), inset 0 1px 0 rgba(255,255,255,.04);
  transform:translateY(-1px);
}

@media (max-width: 1180px){
  .header-inner{
    column-gap:16px;
  }

  .main-nav a{
    padding:10px 10px;
    font-size:.94rem;
  }

  .site-header .header-cta{
    min-width:214px;
    padding:0 22px;
    font-size:.9rem;
  }
}

@media (max-width: 900px){
  .header-inner{
    grid-template-columns:auto auto;
  }

  .header-actions{
    justify-self:end;
  }

  .header-actions .lang-switch{
    display:none;
  }

  .mobile-panel .lang-switch{
    display:block;
    width:100%;
    margin-top:12px;
  }

  .mobile-panel .lang-trigger{
    width:100%;
    justify-content:space-between;
    min-width:0;
  }

  .mobile-panel .lang-menu{
    position:static;
    min-width:0;
    width:100%;
    margin-top:10px;
    opacity:1;
    transform:none;
    pointer-events:auto;
    display:none;
  }

  .mobile-panel .lang-switch.is-open .lang-menu{
    display:block;
  }

  .mobile-panel .header-cta{
    min-width:0;
    min-height:52px;
    margin-top:12px;
  }
}

@media (max-width: 640px){
  .site-header .header-cta{
    font-size:.88rem;
    letter-spacing:.06em;
  }
}
