@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700;900&display=swap');

:root {
  --bg: #18202c;
  --bg-soft: #202a39;
  --card: #263244;
  --paper: #f7f9fc;
  --muted: #b9c3d1;
  --blue: #3478ee;
  --blue-light: #6da1fb;
  --line: rgba(255, 255, 255, .14);
  --max: 1320px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--paper);
  font-family: Roboto, Arial, sans-serif;
  text-rendering: optimizeLegibility;
}
button, input, textarea { font: inherit; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
h1, h2, h3, p { margin: 0; }
.shell { width: min(var(--max), calc(100% - 48px)); margin: 0 auto; }

.topbar {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  background: rgba(24, 32, 44, .88);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px);
  transition: .25s;
}
.topbar.scrolled { border-color: var(--line); background: rgba(24, 32, 44, .96); }
.navrow { height: 80px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { flex: 0 0 auto; }
.logo { width: 158px; height: auto; filter: contrast(1.08) saturate(1.04); }
.nav { display: flex; align-items: center; gap: 21px; }
.nav a { color: #d5dbe5; font-size: 12px; font-weight: 700; white-space: nowrap; }
.nav a:hover, .nav a.active { color: #fff; }
.top-actions { display: flex; align-items: center; gap: 12px; }
.lang-btn { color: var(--blue-light); font-size: 12px; font-weight: 900; }
.menu { display: none; width: 42px; height: 42px; border: 1px solid var(--line); background: transparent; color: #fff; cursor: pointer; }
.mobile-menu { display: none; padding-bottom: 20px; }
.mobile-menu a { display: block; padding: 13px 0; border-bottom: 1px solid var(--line); font-size: 17px; }
.mobile-menu.open { display: block; }

.btn {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 12px 19px;
  border: 1px solid #5f92ef;
  background: var(--blue);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
  transition: transform .2s, background .2s;
}
.btn:hover { transform: translateY(-2px); background: #4486f4; }
.btn.ghost { background: rgba(24, 32, 44, .5); border-color: rgba(255, 255, 255, .35); }

.hero {
  min-height: 760px;
  position: relative;
  display: grid;
  align-items: center;
  padding-top: 80px;
  overflow: hidden;
  background: url('assets/btg-server-infrastructure.png') center / cover no-repeat;
}
.hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(17, 24, 34, .96) 0%, rgba(17, 24, 34, .84) 43%, rgba(17, 24, 34, .44) 75%, rgba(17, 24, 34, .35) 100%);
}
.hero-content { position: relative; z-index: 1; padding: 95px 0; }
.eyebrow { color: var(--blue-light); font-size: 12px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.hero h1 {
  max-width: 970px;
  margin-top: 20px;
  font-size: clamp(48px, 6.7vw, 98px);
  line-height: 1.02;
  letter-spacing: -.035em;
  text-shadow: 0 3px 24px rgba(0, 0, 0, .35);
}
.lead { max-width: 720px; margin-top: 27px; color: #d0d7e2; font-size: 17px; line-height: 1.7; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 32px; }

.page-hero {
  padding: 180px 0 105px;
  background: linear-gradient(145deg, #1b2533 0%, #27364a 100%);
}
.page-hero.compact { padding-bottom: 82px; }
.page-hero h1 { max-width: 1050px; font-size: clamp(46px, 6vw, 82px); line-height: 1.08; letter-spacing: -.025em; }
.page-hero .eyebrow + h1 { margin-top: 18px; }
.section { padding: 105px 0; background: var(--bg); }
.section:nth-child(even) { background: var(--bg-soft); }
.split { display: grid; grid-template-columns: .35fr 1.2fr .75fr; gap: 55px; align-items: start; }
.split h2 { font-size: clamp(34px, 4.4vw, 64px); line-height: 1.08; letter-spacing: -.025em; }
.split > p:last-child { color: var(--muted); font-size: 17px; line-height: 1.75; }

.about-copy { max-width: 1000px; }
.about-copy p { font-size: clamp(22px, 2.3vw, 34px); line-height: 1.5; color: #dfe5ed; }
.about-copy p + p { margin-top: 34px; color: var(--muted); }
.about-copy strong { color: #fff; }
.stats-section { background: #1d2837 !important; }
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; background: var(--line); }
.stats article { min-height: 230px; padding: 34px; background: var(--card); display: flex; flex-direction: column; justify-content: space-between; }
.stats strong { color: var(--blue-light); font-size: 58px; line-height: 1; }
.stats span { max-width: 190px; color: #d8dee7; font-size: 15px; line-height: 1.45; }

.tabs { display: flex; gap: 8px; margin-bottom: 34px; }
.tab { padding: 15px 22px; border: 1px solid var(--line); background: transparent; color: #c8d0dc; font-weight: 800; cursor: pointer; }
.tab.active { background: var(--blue); border-color: var(--blue); color: #fff; }
.solution-panel { display: none; }
.solution-panel.active { display: block; animation: panelIn .35s ease; }
@keyframes panelIn { from { opacity: 0; transform: translateY(10px); } }
.cards { display: grid; gap: 2px; background: var(--line); }
.cards-2 { grid-template-columns: repeat(2, 1fr); }
.cards-4 { grid-template-columns: repeat(4, 1fr); }
.card { min-height: 235px; padding: 34px; background: var(--card); }
.card h3 { font-size: 25px; line-height: 1.22; }
.card p { margin-top: 17px; color: var(--muted); font-size: 16px; line-height: 1.7; }

.clients-section { padding: 90px 0; overflow: hidden; }
.marquee { overflow: hidden; mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee-track { width: max-content; display: flex; gap: 18px; animation: marquee 32s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.client-logo {
  width: 265px;
  height: 165px;
  padding: 25px;
  background: #f4f6fa;
  border: 1px solid rgba(255, 255, 255, .2);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
}
.client-logo img { max-width: 190px; max-height: 72px; object-fit: contain; }
.client-logo span { color: #313b49; text-align: center; font-size: 12px; font-weight: 700; }
.client-logo.dark-card { background: #243247; }
.client-logo.dark-card span { color: #eef3fa; }
@keyframes marquee { to { transform: translateX(calc(-50% - 9px)); } }

.partner-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; background: var(--line); }
.partner-card {
  min-height: 185px;
  padding: 28px;
  background: #f4f6fa;
  color: #1d2837;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 22px;
  text-align: center;
  transition: transform .2s, background .2s;
}
.partner-card:hover { position: relative; transform: translateY(-4px); background: #fff; }
.partner-card.logo-dark { background: #1d2a3b; color: #f8fbff; }
.partner-card.logo-dark:hover { background: #26374d; }
.partner-card img { width: min(210px, 88%); height: 76px; object-fit: contain; }
.partner-card strong { font-size: 16px; }

.empty-state { min-height: 310px; border: 1px solid var(--line); display: grid; place-content: center; gap: 12px; text-align: center; }
.empty-state span { color: var(--blue-light); font-size: 13px; font-weight: 900; letter-spacing: .18em; }
.empty-state p { color: var(--muted); font-size: 18px; }

.contact-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: 75px; align-items: start; }
.contact-data { display: grid; gap: 20px; }
.contact-data > a { font-size: clamp(25px, 3vw, 42px); font-weight: 800; }
.contact-data > a:hover { color: var(--blue-light); }
.contact-data > p:last-child { max-width: 440px; color: var(--muted); font-size: 17px; line-height: 1.65; }
.contact-form { display: grid; grid-template-columns: 1fr 1fr; gap: 17px; }
.contact-form label { display: grid; gap: 8px; color: #d9e0e9; font-size: 14px; font-weight: 700; }
.contact-form .full { grid-column: 1 / -1; }
.contact-form input, .contact-form textarea {
  width: 100%;
  padding: 15px;
  border: 1px solid var(--line);
  background: #222e3e;
  color: #fff;
  outline: none;
}
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--blue-light); }
.contact-form textarea { resize: vertical; min-height: 140px; }
.contact-form .btn { justify-self: start; }
.form-status { align-self: center; color: var(--muted); font-size: 13px; }

.footer { padding: 52px 0; border-top: 1px solid var(--line); background: #131a24; }
.footer-grid { display: grid; grid-template-columns: 1.1fr .65fr .85fr; gap: 55px; align-items: start; }
.footer-logo { width: 180px; }
.footer-grid > div:first-child p { max-width: 380px; margin-top: 17px; color: var(--muted); font-size: 14px; line-height: 1.6; }
.footer-contact { display: grid; gap: 12px; font-size: 16px; font-weight: 700; }
.footer-address { color: var(--muted); font-size: 14px; line-height: 1.65; }

@media (max-width: 1180px) {
  .nav { display: none; }
  .menu { display: block; }
  .partner-grid, .cards-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 760px) {
  .shell { width: min(var(--max), calc(100% - 30px)); }
  .navrow { height: 72px; }
  .logo { width: 138px; }
  .nav-cta { display: none; }
  .hero { min-height: 700px; padding-top: 72px; background-position: 64% center; }
  .hero-shade { background: rgba(17, 24, 34, .76); }
  .hero h1 { font-size: 48px; }
  .hero-content { padding: 70px 0; }
  .lead { font-size: 16px; }
  .section { padding: 75px 0; }
  .page-hero { padding: 135px 0 70px; }
  .page-hero h1 { font-size: 45px; }
  .split, .contact-layout, .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .stats, .cards-2, .cards-4, .partner-grid { grid-template-columns: 1fr; }
  .stats article { min-height: 185px; }
  .about-copy p { font-size: 22px; }
  .tabs { display: grid; grid-template-columns: 1fr; }
  .contact-form { grid-template-columns: 1fr; }
  .contact-form .full { grid-column: auto; }
  .client-logo { width: 220px; height: 145px; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; }
  .marquee-track { animation: none; }
  .solution-panel.active { animation: none; }
}

/* Homepage 2026 concept */
.home-page {
  --home-blue: #1266d3;
  --home-blue-dark: #073d86;
  --home-ink: #10243d;
  --home-muted: #53657a;
  --home-line: #d8e5f2;
  --home-soft: #f1f6fc;
  background: #fff;
  color: var(--home-ink);
}
.home-page .topbar { background: rgba(255, 255, 255, .82); border-color: rgba(216, 229, 242, .7); }
.home-page .topbar.scrolled { background: rgba(255, 255, 255, .96); border-color: var(--home-line); box-shadow: 0 12px 40px rgba(10, 49, 109, .06); }
.home-page .logo { width: 116px; filter: none; }
.home-page .nav a { color: #33475f; font-size: 13px; }
.home-page .nav a:hover, .home-page .nav a.active { color: var(--home-blue); }
.home-page .lang-btn { color: var(--home-blue); }
.home-page .menu { border-color: var(--home-line); color: var(--home-ink); }
.home-page .mobile-menu a { color: var(--home-ink); border-color: var(--home-line); }
.home-page .nav-cta { border-radius: 13px; box-shadow: 0 10px 24px rgba(18, 102, 211, .18); }
.landing { overflow: hidden; background: #fff; color: var(--home-ink); }
.landing h1, .landing h2, .landing h3, .landing p, .landing strong, .landing span { color: inherit; }
.landing-hero {
  position: relative;
  min-height: 780px;
  padding: 80px 0 0;
  overflow: hidden;
  background: radial-gradient(circle at 82% 29%, rgba(18, 102, 211, .18), transparent 28%), linear-gradient(138deg, #fff 15%, #eef6ff 100%);
}
.landing-hero::before { content: ''; position: absolute; width: 720px; height: 720px; right: -250px; top: 10px; border: 1px solid rgba(18, 102, 211, .1); border-radius: 50%; }
.hero-orbit { position: absolute; border: 1px solid rgba(18, 102, 211, .15); border-radius: 50%; pointer-events: none; animation: orbitPulse 7s ease-in-out infinite; }
.orbit-one { width: 480px; height: 480px; right: 5%; top: 150px; }
.orbit-two { width: 330px; height: 330px; right: 10%; top: 225px; animation-delay: -2.4s; }
.landing-hero-grid { min-height: 700px; display: grid; grid-template-columns: 1.12fr .88fr; gap: 64px; align-items: center; padding: 72px 0 95px; }
.landing-hero-copy { position: relative; z-index: 2; max-width: 780px; }
.landing-kicker, .section-heading > p, .landing-cta > .shell > p { color: var(--home-blue) !important; font-size: 13px; font-weight: 900; letter-spacing: .13em; }
.landing-hero h1 { max-width: 840px; margin-top: 18px; color: var(--home-ink); font-size: clamp(53px, 6.4vw, 92px); font-weight: 700; letter-spacing: -.048em; line-height: .99; }
.landing-hero h1 span { color: var(--home-blue); }
.landing-hero-copy > p:not(.landing-kicker) { max-width: 700px; margin-top: 26px; color: #33475f; font-size: 19px; line-height: 1.65; }
.landing-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 24px; margin-top: 34px; }
.pill-button { display: inline-flex; min-height: 54px; align-items: center; gap: 26px; padding: 0 24px; border-radius: 16px; background: var(--home-blue); color: #fff !important; font-size: 15px; font-weight: 800; box-shadow: 0 15px 34px rgba(18, 102, 211, .24); transition: transform .45s cubic-bezier(.22, 1, .36, 1), background .35s, box-shadow .35s; }
.pill-button:hover { transform: translateY(-4px) scale(1.01); background: var(--home-blue-dark); box-shadow: 0 20px 40px rgba(7, 61, 134, .25); }
.pill-button:active { transform: scale(.97); transition-duration: .12s; }
.pill-button > span { color: #fff !important; font-size: 20px; transition: transform .35s cubic-bezier(.22, 1, .36, 1); }
.pill-button:hover > span { transform: translateX(5px); }
.pill-link { color: var(--home-ink); font-size: 15px; font-weight: 800; border-bottom: 1px solid var(--home-line); padding: 10px 0; }
.pill-link span, .section-heading a span { color: var(--home-blue); }
.hero-system { position: relative; z-index: 1; min-height: 460px; display: grid; place-items: center; }
.system-core { width: 184px; height: 184px; display: grid; place-content: center; gap: 8px; border-radius: 46px; background: linear-gradient(145deg, #2181f2, #074a9f); color: #fff !important; text-align: center; font-size: 46px; font-weight: 900; box-shadow: 0 35px 75px rgba(18, 102, 211, .3); animation: coreFloat 6s ease-in-out infinite; }
.system-core small { color: rgba(255, 255, 255, .74); font-size: 9px; letter-spacing: .14em; }
.system-chip { position: absolute; padding: 14px 17px; border: 1px solid rgba(216, 229, 242, .95); border-radius: 15px; background: rgba(255, 255, 255, .94); color: var(--home-blue-dark) !important; box-shadow: 0 14px 34px rgba(10, 49, 109, .1); font-size: 14px; font-weight: 800; backdrop-filter: blur(10px); }
.chip-a { top: 31px; left: 2%; }.chip-b { top: 70px; right: -2%; }.chip-c { bottom: 72px; left: -3%; }.chip-d { bottom: 30px; right: 1%; }
.scroll-cue { position: absolute; left: 50%; bottom: 22px; display: grid; justify-items: center; gap: 7px; color: var(--home-muted); font-size: 10px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; transform: translateX(-50%); }
.scroll-cue span { width: 1px; height: 28px; background: var(--home-blue); animation: scrollLine 1.9s ease-in-out infinite; }
.trust-strip { padding: 72px 0 80px; background: #fff; border-bottom: 1px solid var(--home-line); }
.section-heading { position: relative; display: grid; grid-template-columns: minmax(0, 1fr) auto; align-items: end; gap: 18px 48px; margin-bottom: 42px; }
.section-heading > p { grid-column: 1 / -1; }
.section-heading h2 { max-width: 900px; color: var(--home-ink); font-size: clamp(36px, 4.2vw, 62px); font-weight: 700; letter-spacing: -.038em; line-height: 1.08; }
.section-heading a { align-self: end; padding: 10px 0; border-bottom: 1px solid var(--home-line); color: var(--home-ink); font-size: 14px; font-weight: 800; white-space: nowrap; }
.section-heading.compact { display: block; margin-bottom: 28px; }
.section-heading.compact h2 { max-width: 580px; margin-top: 12px; font-size: clamp(29px, 3vw, 42px); }
.home-marquee { overflow: hidden; mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent); }
.home-marquee .marquee-track { animation-duration: 38s; }
.home-marquee .client-logo { width: 235px; height: 122px; padding: 20px; border: 1px solid var(--home-line); background: #fff; border-radius: 16px; }
.home-marquee .client-logo img { max-width: 165px; max-height: 58px; }
.home-marquee .client-logo span { display: none; }
.landing-section { padding: 112px 0; }
.solutions-preview { background: var(--home-soft); }
.solution-showcase { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.solution-tile { position: relative; min-height: 280px; padding: 30px; overflow: hidden; border: 1px solid var(--home-line); border-radius: 20px; background: #fff; color: var(--home-ink); transition: transform .45s cubic-bezier(.22, 1, .36, 1), box-shadow .35s, border-color .35s; }
.solution-tile.feature { grid-row: span 2; min-height: 576px; display: flex; flex-direction: column; justify-content: flex-end; background: linear-gradient(155deg, #1266d3 0%, #073d86 100%); color: #fff; }
.solution-tile.feature::before { content: ''; position: absolute; width: 430px; height: 430px; right: -130px; top: -150px; border: 1px solid rgba(255, 255, 255, .22); border-radius: 50%; box-shadow: 0 0 0 60px rgba(255, 255, 255, .035), 0 0 0 120px rgba(255, 255, 255, .025); }
.solution-tile:hover { transform: translateY(-7px); border-color: #bad2ed; box-shadow: 0 24px 50px rgba(10, 49, 109, .1); }
.solution-tile > span { position: relative; color: var(--home-blue); font-size: 13px; font-weight: 900; }
.solution-tile.feature > span { color: #a9d0ff; }
.solution-tile h3 { position: relative; max-width: 540px; margin-top: 58px; color: inherit; font-size: clamp(28px, 3vw, 43px); line-height: 1.12; letter-spacing: -.025em; }
.solution-tile.feature h3 { margin-top: auto; font-size: clamp(39px, 4.4vw, 64px); }
.solution-tile p { position: relative; max-width: 560px; margin-top: 14px; color: var(--home-muted); font-size: 16px; line-height: 1.65; }
.solution-tile.feature p { color: rgba(255, 255, 255, .78); }
.solution-tile b { position: relative; display: block; margin-top: 28px; color: var(--home-blue); font-size: 14px; }
.solution-tile.feature b { color: #fff; }
.industries { background: #fff; }
.industries-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 0 80px; }
.industries-grid > .section-heading { grid-column: 1 / -1; }
.industry-tabs { border-top: 1px solid var(--home-line); }
.industry-tab { width: 100%; padding: 22px 4px; border: 0; border-bottom: 1px solid var(--home-line); background: transparent; color: #68798d; text-align: left; font-size: 18px; font-weight: 700; cursor: pointer; transition: color .3s, padding .35s; }
.industry-tab::after { content: '→'; float: right; color: var(--home-blue); opacity: 0; transform: translateX(-10px); transition: .35s; }
.industry-tab:hover, .industry-tab.active { padding-left: 16px; color: var(--home-blue); }
.industry-tab.active::after { opacity: 1; transform: translateX(0); }
.industry-copy { min-height: 360px; display: grid; align-items: center; padding: 48px; border-radius: 24px; background: linear-gradient(145deg, #edf5ff, #f8fbff); }
.industry-panel { display: none; }
.industry-panel.active { display: block; animation: panelIn .4s ease; }
.industry-panel strong { color: var(--home-blue-dark); font-size: 15px; letter-spacing: .08em; text-transform: uppercase; }
.industry-panel p { max-width: 630px; margin-top: 24px; color: var(--home-ink); font-size: clamp(25px, 3.2vw, 43px); font-weight: 650; line-height: 1.25; letter-spacing: -.025em; }
.process { background: #f4f7fb; }
.process-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; }
.process-grid article { min-height: 230px; padding: 27px 22px; border-top: 4px solid var(--home-blue); background: #fff; box-shadow: 0 8px 24px rgba(10, 49, 109, .04); }
.process-grid span { color: var(--home-blue) !important; font-size: 14px; font-weight: 900; }
.process-grid h3 { margin-top: 25px; color: #101f33 !important; font-size: 20px; line-height: 1.25; }
.process-grid p { margin-top: 13px; color: #26394f !important; font-size: 15px; line-height: 1.5; }
.cases-preview { position: relative; background: #10243d; color: #fff; }
.cases-preview::before { content: ''; position: absolute; inset: 0; opacity: .14; background: radial-gradient(circle at 80% 10%, #3b92ff, transparent 30%); }
.cases-preview .shell { position: relative; }
.section-heading.invert > p { color: #75b1ff !important; }
.section-heading.invert h2, .section-heading.invert a { color: #fff; }
.section-heading.invert a { border-color: rgba(255, 255, 255, .25); }
.case-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 16px; }
.case-card { min-height: 390px; padding: 34px; border: 1px solid rgba(255, 255, 255, .15); border-radius: 22px; background: rgba(255, 255, 255, .055); display: flex; flex-direction: column; justify-content: flex-end; transition: transform .4s, background .35s; }
.case-card:hover { transform: translateY(-6px); background: rgba(255, 255, 255, .085); }
.case-main { min-height: 520px; background: linear-gradient(150deg, rgba(18, 102, 211, .6), rgba(255, 255, 255, .035)); }
.case-card > span { color: #8bc0ff; font-size: 12px; font-weight: 900; letter-spacing: .11em; }
.case-card h3 { max-width: 590px; margin-top: 18px; color: #fff; font-size: clamp(31px, 3.6vw, 53px); line-height: 1.1; }
.case-card p { max-width: 590px; margin-top: 18px; color: #c8d6e6; font-size: 16px; line-height: 1.65; }
.partners-preview { background: #fff; }
.home-partners { display: grid; grid-template-columns: repeat(5, 1fr); gap: 10px; }
.home-partner { min-height: 135px; padding: 20px; border: 1px solid var(--home-line); border-radius: 16px; display: grid; place-items: center; background: #fff; transition: transform .35s, border-color .35s, box-shadow .35s; }
.home-partner:hover { transform: translateY(-5px); border-color: #b5d0ee; box-shadow: 0 17px 35px rgba(10, 49, 109, .08); }
.home-partner.dark { background: #17263a; }
.home-partner img { width: 100%; height: 58px; object-fit: contain; }
.landing-cta { padding: 110px 0; text-align: center; background: linear-gradient(135deg, #1168d8, #064087); color: #fff; }
.landing-cta h2 { max-width: 900px; margin: 17px auto 32px; color: #fff; font-size: clamp(40px, 5vw, 70px); line-height: 1.07; letter-spacing: -.04em; }
.landing-cta > .shell > p { color: #acd2ff !important; }
.pill-button.light { background: #fff; color: var(--home-blue-dark) !important; box-shadow: 0 18px 38px rgba(0, 0, 0, .17); }
.pill-button.light > span { color: var(--home-blue) !important; }
.home-page .footer { background: #0c1929; }
.home-page .footer-logo { width: 145px; }
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .75s ease, transform .8s cubic-bezier(.22, 1, .36, 1); }
.reveal.visible { opacity: 1; transform: none; }
.solution-showcase .reveal:nth-child(2), .process-grid .reveal:nth-child(2) { transition-delay: .08s; }
.solution-showcase .reveal:nth-child(3), .process-grid .reveal:nth-child(3) { transition-delay: .14s; }
.solution-showcase .reveal:nth-child(4), .process-grid .reveal:nth-child(4) { transition-delay: .2s; }
.process-grid .reveal:nth-child(5) { transition-delay: .26s; }
@keyframes coreFloat { 0%, 100% { transform: translateY(0) rotate(-1deg); } 50% { transform: translateY(-13px) rotate(1deg); } }
@keyframes orbitPulse { 0%, 100% { transform: scale(.96); opacity: .6; } 50% { transform: scale(1.04); opacity: 1; } }
@keyframes scrollLine { 0%, 100% { transform: scaleY(.4); transform-origin: top; } 50% { transform: scaleY(1); transform-origin: top; } }

@media (max-width: 1040px) {
  .landing-hero-grid { grid-template-columns: 1fr; gap: 5px; padding-top: 90px; }
  .landing-hero-copy { max-width: 830px; }
  .hero-system { min-height: 360px; max-width: 600px; width: 100%; margin: 0 auto; }
  .process-grid { grid-template-columns: repeat(3, 1fr); }
  .home-partners { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 760px) {
  .home-page .topbar { background: rgba(255, 255, 255, .94); }
  .home-page .logo { width: 102px; }
  .landing-hero { min-height: 730px; padding-top: 72px; }
  .landing-hero-grid { min-height: 640px; padding: 72px 0 100px; }
  .landing-hero h1 { font-size: clamp(43px, 12.5vw, 62px); }
  .landing-hero-copy > p:not(.landing-kicker) { font-size: 17px; }
  .hero-system { min-height: 310px; transform: scale(.88); margin: -15px auto -35px; }
  .system-core { width: 150px; height: 150px; border-radius: 38px; font-size: 39px; }
  .system-chip { font-size: 12px; }
  .landing-section { padding: 80px 0; }
  .section-heading { display: block; margin-bottom: 30px; }
  .section-heading h2 { margin-top: 12px; font-size: 37px; }
  .section-heading a { display: inline-block; margin-top: 18px; }
  .trust-strip { padding: 60px 0; }
  .solution-showcase, .industries-grid, .case-grid { grid-template-columns: 1fr; }
  .solution-tile, .solution-tile.feature { min-height: 330px; grid-row: auto; }
  .solution-tile.feature h3 { font-size: 43px; }
  .industries-grid { gap: 30px; }
  .industries-grid > .section-heading { grid-column: auto; }
  .industry-copy { min-height: 310px; padding: 30px; }
  .industry-panel p { font-size: 29px; }
  .process-grid { grid-template-columns: 1fr; }
  .process-grid article { min-height: 175px; }
  .case-main, .case-card { min-height: 400px; }
  .home-partners { grid-template-columns: repeat(2, 1fr); }
  .home-partner { min-height: 105px; }
  .landing-cta { padding: 80px 0; }
  .landing-cta h2 { font-size: 43px; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-orbit, .system-core, .scroll-cue span { animation: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
}
