:root {
  --black: #050505;
  --black-2: #0a0a0c;
  --black-3: #111116;
  --red: #ed1c2c;
  --red-deep: #a90e1b;
  --blue: #009fe5;
  --blue-deep: #006b9b;
  --white: #ffffff;
  --paper: #f4f5f7;
  --text: #15151a;
  --muted: #a7a7b0;
  --muted-dark: #5f626d;
  --line: rgba(255, 255, 255, .13);
  --line-dark: rgba(13, 13, 18, .13);
  --container: min(1180px, calc(100% - 48px));
  --shadow: 0 30px 80px rgba(0, 0, 0, .32);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  color: var(--white);
  background: var(--black);
  font-family: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, Arial, sans-serif;
  text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-family: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, Arial, sans-serif; }
h1 { max-width: 820px; margin-bottom: 24px; font-size: clamp(52px, 7vw, 90px); line-height: .98; letter-spacing: -.055em; }
h2 { margin-bottom: 20px; font-size: clamp(39px, 5vw, 64px); line-height: 1.04; letter-spacing: -.045em; }
h3 { margin-bottom: 10px; }
.container { width: var(--container); margin-inline: auto; }
.section { padding: 120px 0; }
.section-pad { padding-top: 190px; padding-bottom: 120px; }
.section-light { color: var(--text); background: var(--paper); }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; z-index: 1000; left: 18px; top: -100px; padding: 12px 18px; color: #fff; background: var(--red); border-radius: 8px; transition: top .2s; }
.skip-link:focus { top: 18px; }

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  background: rgba(5, 5, 5, .86);
  border-top: 4px solid var(--red);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px);
  transition: border-color .25s, background .25s, box-shadow .25s;
}
.site-header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 1px;
  background: linear-gradient(90deg, transparent 0 8%, var(--blue), transparent 32% 68%, var(--red), transparent 92% 100%);
  opacity: .45;
}
.site-header.scrolled { background: rgba(5, 5, 5, .96); border-bottom-color: var(--line); box-shadow: 0 15px 35px rgba(0,0,0,.25); }
.nav-wrap { min-height: 92px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; align-items: center; flex: 0 0 auto; }
.brand-logo { width: 218px; height: auto; object-fit: contain; }
.site-nav { display: flex; align-items: center; justify-content: flex-end; gap: 25px; color: #d6d6dc; font-size: 13px; font-weight: 800; }
.site-nav > a:not(.button) { position: relative; padding: 12px 0; }
.site-nav > a:not(.button)::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 5px; height: 2px; background: var(--blue); transition: right .2s ease; }
.site-nav > a:not(.button):hover { color: #fff; }
.site-nav > a:not(.button):hover::after { right: 0; }
.nav-portal { padding-left: 22px !important; border-left: 1px solid var(--line); }
.menu-toggle { display: none; width: 44px; height: 44px; padding: 11px; border: 1px solid var(--line); border-radius: 10px; color: #fff; background: transparent; }
.menu-toggle > span:not(.sr-only) { display: block; height: 2px; margin: 5px 0; background: currentColor; }

.button { display: inline-flex; min-height: 52px; align-items: center; justify-content: center; padding: 0 24px; border: 1px solid var(--red); border-radius: 8px; color: #fff; background: linear-gradient(135deg, var(--red), #c60e1e); box-shadow: 0 13px 30px rgba(237,28,44,.23); font-size: 13px; font-weight: 900; letter-spacing: .01em; transition: transform .2s, box-shadow .2s, border-color .2s; }
.button:hover { transform: translateY(-2px); border-color: #ff4b58; box-shadow: 0 18px 38px rgba(237,28,44,.34); }
.button-small { min-height: 42px; padding-inline: 18px; }
.text-link { display: inline-flex; align-items: center; gap: 10px; color: #fff; font-size: 13px; font-weight: 850; }
.text-link span { color: var(--blue); transition: transform .2s; }
.text-link:hover span { transform: translateX(4px); }
.eyebrow { margin-bottom: 22px; color: var(--blue); font-size: 11px; font-weight: 900; letter-spacing: .18em; text-transform: uppercase; }
.eyebrow.dark { color: var(--red); }

.hero {
  position: relative;
  min-height: 840px;
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 24%, rgba(237, 28, 44, .20), transparent 27%),
    radial-gradient(circle at 65% 78%, rgba(0, 159, 229, .15), transparent 32%),
    linear-gradient(135deg, #030303 0%, #09090b 58%, #050505 100%);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .16;
  background-image: linear-gradient(rgba(0,159,229,.22) 1px, transparent 1px), linear-gradient(90deg, rgba(0,159,229,.22) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(to right, transparent 0%, black 45%, black 100%);
}
.hero::after { content: ""; position: absolute; left: -8%; bottom: -240px; width: 720px; height: 470px; border: 2px solid rgba(237,28,44,.25); border-radius: 50%; transform: rotate(-14deg); box-shadow: 0 0 0 55px rgba(237,28,44,.025), 0 0 0 110px rgba(0,159,229,.018); }
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.07fr .93fr; gap: 72px; align-items: center; }
.hero-copy { position: relative; z-index: 2; }
.hero-copy h1 strong { color: var(--red); }
.hero-lede { max-width: 720px; margin-bottom: 34px; color: #b9b9c1; font-size: 18px; line-height: 1.78; }
.hero-actions { display: flex; align-items: center; gap: 25px; }
.hero-proof { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; margin-top: 58px; overflow: hidden; border: 1px solid var(--line); border-radius: 14px; background: var(--line); }
.hero-proof div { min-height: 105px; display: grid; align-content: center; gap: 8px; padding: 20px; background: rgba(7,7,9,.86); }
.hero-proof div:nth-child(2) { box-shadow: inset 0 3px 0 var(--red); }
.hero-proof div:nth-child(3) { box-shadow: inset 0 3px 0 var(--blue); }
.hero-proof strong { color: #fff; font: 750 25px/1 "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, Arial, sans-serif; }
.hero-proof span { color: #8f8f99; font-size: 11px; font-weight: 800; line-height: 1.4; }
.hero-visual { position: relative; min-height: 620px; }
.orbit { position: absolute; border: 1px solid rgba(255,255,255,.13); border-radius: 50%; }
.orbit::before { content: ""; position: absolute; width: 12px; height: 12px; border-radius: 50%; box-shadow: 0 0 24px currentColor; background: currentColor; }
.orbit-one { width: 485px; height: 485px; right: -75px; top: 25px; color: var(--red); border-color: rgba(237,28,44,.3); transform: rotate(-18deg); }
.orbit-one::before { left: 34px; top: 78px; }
.orbit-two { width: 355px; height: 355px; right: 30px; top: 100px; color: var(--blue); border-color: rgba(0,159,229,.28); transform: rotate(22deg); }
.orbit-two::before { right: 8px; bottom: 105px; }
.hero-panel { position: absolute; border: 1px solid var(--line); background: rgba(8,8,11,.91); box-shadow: var(--shadow); backdrop-filter: blur(18px); }
.panel-main { z-index: 3; top: 133px; right: 6px; left: auto; width: min(410px, 90%); padding: 30px; border-radius: 16px; box-shadow: var(--shadow), inset 0 3px 0 var(--red); }
.panel-status { display: flex; align-items: center; gap: 10px; margin-bottom: 27px; color: #dcdce2; font-size: 12px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.panel-status span { width: 9px; height: 9px; border-radius: 50%; background: var(--blue); box-shadow: 0 0 16px rgba(0,159,229,.85); }
.signal-row { display: grid; grid-template-columns: 1fr auto; gap: 8px 12px; margin: 18px 0; color: #90909a; font-size: 11px; font-weight: 800; }
.signal-row strong { color: #fff; }
.signal-bar { grid-column: 1 / -1; height: 5px; overflow: hidden; border-radius: 999px; background: #24242b; }
.signal-bar i { display: block; width: var(--value); height: 100%; border-radius: inherit; background: linear-gradient(90deg, var(--blue), var(--red)); }
.panel-code { z-index: 4; right: 6px; top: 28px; min-width: 270px; padding: 17px 20px; border-radius: 11px; border-left: 3px solid var(--blue); }
.panel-code span { margin-right: 12px; color: var(--red); font-size: 11px; font-weight: 900; }
.panel-code code { color: #d5d5db; font-size: 12px; }
.panel-network { z-index: 2; right: 6px; bottom: 30px; width: 285px; height: 172px; overflow: hidden; border-radius: 15px; border-bottom: 3px solid var(--red); }
.panel-network svg { width: 100%; height: 100%; fill: none; stroke: rgba(0,159,229,.45); stroke-width: 2; }
.node { position: absolute; z-index: 1; width: 10px; height: 10px; border-radius: 50%; background: var(--red); box-shadow: 0 0 15px rgba(237,28,44,.8); }
.n1 { left: 17px; top: 112px; }.n2 { left: 91px; top: 48px; background: var(--blue); }.n3 { left: 166px; top: 124px; }.n4 { right: 20px; top: 41px; background: var(--blue); }

.trust-strip { position: relative; z-index: 2; background: var(--red); border-bottom: 4px solid var(--blue); }
.trust-grid { display: grid; grid-template-columns: repeat(5, 1fr); }
.trust-grid span { min-height: 74px; display: grid; place-items: center; padding: 15px; border-right: 1px solid rgba(0,0,0,.22); color: #fff; font-size: 11px; font-weight: 900; letter-spacing: .1em; text-align: center; text-transform: uppercase; }
.trust-grid span:last-child { border-right: 0; }

.technology-ribbon-section {
  position: relative;
  z-index: 1;
  padding: 34px 0 8px;
  color: var(--text);
  background:
    radial-gradient(circle at 88% 20%, rgba(0,159,229,.055), transparent 28%),
    radial-gradient(circle at 10% 85%, rgba(237,28,44,.045), transparent 27%),
    var(--paper);
}
.technology-ribbon-frame {
  overflow-x: auto;
  overflow-y: hidden;
  border-radius: 17px;
  box-shadow: 0 18px 42px rgba(13,13,18,.15);
  scrollbar-width: thin;
  scrollbar-color: rgba(0,159,229,.55) transparent;
  outline: none;
}
.technology-ribbon-frame:focus-visible {
  box-shadow: 0 0 0 3px rgba(0,159,229,.28), 0 18px 42px rgba(13,13,18,.15);
}
.technology-ribbon-frame::-webkit-scrollbar { height: 7px; }
.technology-ribbon-frame::-webkit-scrollbar-track { background: transparent; }
.technology-ribbon-frame::-webkit-scrollbar-thumb { border-radius: 999px; background: linear-gradient(90deg, var(--red), var(--blue)); }
.technology-ribbon-image {
  width: 100%;
  min-width: 980px;
  height: auto;
  border-radius: 17px;
  user-select: none;
}
.technology-ribbon-note {
  margin: 10px 8px 0;
  color: #777a84;
  font-size: 10px;
  line-height: 1.5;
  text-align: center;
}
.services-after-ribbon { padding-top: 70px; }

.section-heading { display: grid; grid-template-columns: 1.1fr .9fr; gap: 80px; align-items: end; margin-bottom: 64px; }
.section-heading > p { margin-bottom: 5px; color: var(--muted-dark); line-height: 1.8; }

.services-grid { display: grid; gap: 24px; }
.service-feature {
  --service-accent: var(--red);
  --service-accent-rgb: 237, 28, 44;
  --service-alt: var(--blue);
  position: relative;
  min-height: 560px;
  overflow: hidden;
  color: #fff;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 20px;
  background:
    radial-gradient(circle at 88% 18%, rgba(var(--service-accent-rgb), .21), transparent 28%),
    radial-gradient(circle at 10% 92%, rgba(255,255,255,.045), transparent 32%),
    linear-gradient(135deg, #08080b 0%, #131319 58%, #070709 100%);
  box-shadow: 0 28px 65px rgba(15,15,20,.15);
  transition: transform .25s, border-color .25s, box-shadow .25s;
}
.service-feature:hover { transform: translateY(-5px); border-color: rgba(var(--service-accent-rgb), .42); box-shadow: 0 35px 80px rgba(0,0,0,.24); }
.service-feature::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .14;
  background-image:
    linear-gradient(rgba(var(--service-accent-rgb), .30) 1px, transparent 1px),
    linear-gradient(90deg, rgba(var(--service-accent-rgb), .30) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(90deg, transparent, #000 54%);
}
.service-feature::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 6px;
  background: linear-gradient(180deg, var(--service-accent), var(--service-alt));
}
.service-theme-blue { --service-accent: var(--blue); --service-accent-rgb: 0, 159, 229; --service-alt: var(--red); }
.service-theme-ai {
  --service-accent: var(--blue);
  --service-accent-rgb: 0, 159, 229;
  --service-alt: var(--red);
  background:
    radial-gradient(circle at 88% 18%, rgba(0,159,229,.24), transparent 29%),
    radial-gradient(circle at 12% 92%, rgba(237,28,44,.21), transparent 32%),
    linear-gradient(135deg, #08080b 0%, #14141a 58%, #070709 100%);
}
.service-number { position: absolute; z-index: 2; right: 30px; top: 27px; color: rgba(255,255,255,.34); font: 800 12px/1 "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, Arial, sans-serif; }
.service-feature-layout { position: relative; z-index: 1; display: grid; grid-template-columns: 1.05fr .95fr; gap: 58px; align-items: stretch; min-height: 560px; padding: 54px; }
.service-feature-copy { max-width: 650px; align-self: center; }
.service-feature-reverse .service-feature-copy { order: 2; }
.service-feature-reverse .service-capabilities { order: 1; }
.service-icon { width: 58px; height: 58px; display: grid; place-items: center; margin-bottom: 28px; border: 1px solid rgba(var(--service-accent-rgb), .48); border-radius: 12px; color: #fff; background: linear-gradient(135deg, rgba(var(--service-accent-rgb), .25), rgba(255,255,255,.06)); box-shadow: 0 14px 38px rgba(0,0,0,.28); font: 800 21px/1 "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, Arial, sans-serif; }
.service-kicker { margin: -6px 0 12px; color: var(--service-accent) !important; font-size: 11px; font-weight: 900; letter-spacing: .16em; text-transform: uppercase; }
.service-feature h3 { margin-bottom: 18px; color: #fff; font-size: clamp(34px, 4vw, 52px); letter-spacing: -.04em; }
.service-feature p { color: #b7b7c0; line-height: 1.72; }
.service-feature ul { display: grid; gap: 12px; margin: 26px 0 0; padding: 0; list-style: none; }
.service-feature li { display: flex; align-items: flex-start; gap: 11px; color: #f1f1f4; font-size: 14px; font-weight: 750; line-height: 1.45; }
.service-feature li::before { content: ""; flex: 0 0 auto; width: 7px; height: 7px; margin-top: .45em; border-radius: 50%; background: linear-gradient(135deg, var(--service-accent), var(--service-alt)); box-shadow: 0 0 12px rgba(var(--service-accent-rgb), .5); }
.service-cta { display: inline-flex; align-items: center; gap: 10px; margin-top: 31px; color: #fff; font-size: 13px; font-weight: 900; }
.service-cta span { color: var(--service-accent); transition: transform .2s; }
.service-cta:hover span { transform: translateX(4px); }
.service-capabilities { align-self: stretch; padding: 30px; border: 1px solid rgba(255,255,255,.13); border-radius: 16px; background: rgba(4,4,7,.64); backdrop-filter: blur(12px); box-shadow: 0 24px 55px rgba(0,0,0,.25); }
.service-capabilities > p { margin-bottom: 18px; color: #fff; font-size: 11px; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.capability-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.capability-grid > div { min-height: 136px; padding: 20px; border: 1px solid rgba(255,255,255,.10); border-radius: 11px; background: rgba(255,255,255,.045); transition: transform .2s, border-color .2s, background .2s; }
.capability-grid > div:nth-child(2), .capability-grid > div:nth-child(3) { border-color: rgba(var(--service-accent-rgb), .28); }
.capability-grid > div:hover { transform: translateY(-2px); border-color: rgba(var(--service-accent-rgb), .48); background: rgba(255,255,255,.065); }
.capability-grid strong { display: block; margin-bottom: 9px; color: #fff; font: 700 16px/1.25 "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, Arial, sans-serif; }
.capability-grid span { color: #9696a1; font-size: 12px; line-height: 1.55; }


.approach { position: relative; overflow: hidden; background: linear-gradient(145deg, #050505, #111116); }
.approach::before { content: ""; position: absolute; top: -120px; right: -110px; width: 420px; height: 420px; border: 2px solid rgba(237,28,44,.22); border-radius: 50%; box-shadow: 0 0 0 60px rgba(237,28,44,.025), 0 0 0 120px rgba(0,159,229,.018); }
.approach-grid { position: relative; display: grid; grid-template-columns: .85fr 1.15fr; gap: 100px; align-items: start; }
.approach-copy { position: sticky; top: 130px; }
.approach-copy p:not(.eyebrow) { max-width: 540px; margin: 28px 0; color: #aaaab4; line-height: 1.8; }
.process-list { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.process-list li { display: grid; grid-template-columns: 70px 1fr; gap: 25px; padding: 32px 0; border-bottom: 1px solid var(--line); }
.process-list > li > span { color: var(--red); font: 800 13px/1 "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, Arial, sans-serif; }
.process-list li:nth-child(even) > span { color: var(--blue); }
.process-list h3 { font-size: 25px; }
.process-list p { margin: 10px 0 0; color: #9696a1; line-height: 1.7; }
.light-link { margin-top: 8px; }

.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: center; }
.about-visual { position: relative; min-height: 540px; overflow: hidden; border-radius: 22px; background: radial-gradient(circle at 25% 20%, rgba(237,28,44,.12), transparent 38%), radial-gradient(circle at 82% 72%, rgba(0,159,229,.10), transparent 42%), linear-gradient(145deg, #17171d, #08080b); box-shadow: var(--shadow); }
.about-visual::before { content: ""; position: absolute; width: 380px; height: 380px; left: -80px; top: -50px; border: 2px solid rgba(237,28,44,.28); border-radius: 50%; box-shadow: 0 0 0 80px rgba(237,28,44,.035), 0 0 0 160px rgba(0,159,229,.025); }
.about-visual::after { content: "RCTS"; position: absolute; right: -20px; bottom: -28px; color: rgba(255,255,255,.075); font: 800 150px/1 "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, Arial, sans-serif; letter-spacing: -.08em; }
.about-card { position: absolute; border: 1px solid rgba(255,255,255,.22); background: rgba(16,16,21,.90); backdrop-filter: blur(15px); box-shadow: 0 24px 60px rgba(0,0,0,.34); }
.primary-card { left: 55px; right: 55px; top: 70px; padding: 36px; border-radius: 17px; border-top: 4px solid var(--red); background: linear-gradient(145deg, rgba(25,25,31,.96), rgba(10,10,14,.94)); }
.primary-card span { color: #2dbbff; font-size: 12px; text-transform: uppercase; letter-spacing: .15em; font-weight: 900; text-shadow: 0 0 18px rgba(0,159,229,.32); }
.primary-card strong { display: block; margin-top: 28px; color: #f7f7fa; font: 750 clamp(40px,5vw,68px)/1.05 "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, Arial, sans-serif; letter-spacing: -.04em; text-shadow: 0 3px 24px rgba(255,255,255,.08), 0 12px 38px rgba(0,0,0,.5); }
.mini-card { right: 35px; bottom: 34px; padding: 22px 28px; border-radius: 13px; color: #f0f0f4; border-left: 4px solid var(--blue); font: 700 17px/1.35 "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, Arial, sans-serif; }
.about-copy p:not(.eyebrow) { color: var(--muted-dark); line-height: 1.8; }
.about-points { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 30px; }
.about-points span { padding: 11px 15px; border: 1px solid var(--line-dark); border-radius: 7px; color: #26262e; background: #fff; font-size: 12px; font-weight: 850; }
.about-points span:first-child { border-left: 4px solid var(--red); }.about-points span:nth-child(2) { border-left: 4px solid var(--blue); }.about-points span:nth-child(3) { border-left: 4px solid var(--red); }.about-points span:nth-child(4) { border-left: 4px solid var(--blue); }

.team-section { background: #0b0b0e; }
.team-section .section-heading > p { color: #a0a0aa; }
.team-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.team-card { display: flex; align-items: center; gap: 18px; padding: 25px; border: 1px solid var(--line); border-radius: 13px; background: rgba(255,255,255,.035); transition: transform .2s, border-color .2s; }
.team-card:hover { transform: translateY(-4px); border-color: rgba(237,28,44,.55); }
.team-card:nth-child(2):hover { border-color: rgba(0,159,229,.6); }
.avatar { width: 58px; height: 58px; flex: 0 0 auto; display: grid; place-items: center; border-radius: 10px; color: #fff; background: linear-gradient(135deg, var(--red), var(--red-deep)); font: 850 15px/1 "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, Arial, sans-serif; box-shadow: 0 10px 25px rgba(237,28,44,.2); }
.team-card:nth-child(2) .avatar { background: linear-gradient(135deg, var(--blue), var(--blue-deep)); box-shadow: 0 10px 25px rgba(0,159,229,.2); }
.team-card h3 { font-size: 19px; }
.team-card p { margin: 6px 0 0; color: #b8b8c2; font-size: 13px; font-weight: 750; }
.role-detail { color: #92929d; font-weight: 500; }

.contact-section { position: relative; overflow: hidden; padding: 110px 0; background: linear-gradient(110deg, #c91322 0%, var(--red) 48%, #8f0c17 100%); }
.contact-section::before { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, transparent 0 55%, rgba(0,159,229,.18)); }
.contact-grid { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.contact-copy p:not(.eyebrow) { max-width: 580px; color: rgba(255,255,255,.84); line-height: 1.75; }
.contact-copy .eyebrow { color: #fff; }
.contact-card { padding: 36px; border: 1px solid rgba(255,255,255,.2); border-radius: 17px; background: rgba(5,5,5,.91); box-shadow: 0 30px 70px rgba(0,0,0,.28); }
.contact-card > div { display: grid; gap: 10px; margin-bottom: 25px; }
.contact-card > div > span { color: #9999a3; font-size: 12px; font-weight: 850; text-transform: uppercase; letter-spacing: .14em; }
.phone { font: 750 clamp(26px,3vw,38px)/1 "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, Arial, sans-serif; }
.phone small { font-size: .55em; color: #a9a9b2; }
.contact-card .button { width: 100%; border-color: var(--blue); background: linear-gradient(135deg, var(--blue), var(--blue-deep)); box-shadow: 0 13px 30px rgba(0,159,229,.22); }
.contact-card .button:hover { box-shadow: 0 18px 38px rgba(0,159,229,.32); }
.contact-card > p { margin: 20px 0 0; color: #85858f; font-size: 12px; text-align: center; }

.site-footer { padding: 66px 0 28px; background: #030303; border-top: 4px solid var(--blue); }
.footer-grid { display: grid; grid-template-columns: 1.4fr .6fr .6fr; gap: 80px; }
.footer-brand { margin-bottom: 18px; }
.footer-brand .brand-logo { width: 230px; }
.footer-grid > div:first-child > p { max-width: 430px; color: #81818b; line-height: 1.7; }
.footer-links { display: grid; align-content: start; gap: 13px; color: #92929d; font-size: 13px; }
.footer-links strong { margin-bottom: 6px; color: #fff; font-size: 12px; text-transform: uppercase; letter-spacing: .14em; }
.footer-links a:hover { color: var(--blue); }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 55px; padding-top: 24px; border-top: 1px solid var(--line); color: #676771; font-size: 11px; }

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

@media (max-width: 1080px) {
  .site-nav { gap: 18px; }
  .brand-logo { width: 190px; }
}

@media (max-width: 980px) {
  .site-nav { position: absolute; left: 20px; right: 20px; top: 92px; display: none; padding: 22px; border: 1px solid var(--line); border-radius: 14px; background: rgba(5,5,5,.98); box-shadow: var(--shadow); }
  .site-nav.open { display: grid; }
  .nav-portal { padding-left: 0 !important; border-left: 0; }
  .menu-toggle { display: block; }
  .hero-grid, .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .hero-visual { min-height: 520px; }
  .section-heading, .approach-grid { grid-template-columns: 1fr; gap: 40px; }
  .approach-copy { position: static; }
  .service-feature-layout { grid-template-columns: 1fr; gap: 34px; }
  .service-feature-reverse .service-feature-copy, .service-feature-reverse .service-capabilities { order: initial; }
  .team-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > div:first-child { grid-column: 1 / -1; }
}

@media (max-width: 680px) {
  :root { --container: min(1180px, calc(100% - 28px)); }
  .nav-wrap { min-height: 82px; }
  .brand-logo { width: 173px; }
  .site-nav { top: 82px; }
  .section-pad { padding-top: 142px; }
  .hero { min-height: auto; }
  h1 { font-size: 48px; }
  .hero-actions { align-items: flex-start; flex-direction: column; }
  .hero-proof, .trust-grid { grid-template-columns: 1fr; }
  .hero-proof { gap: 1px; }
  .hero-proof div { min-height: 84px; grid-template-columns: 70px 1fr; align-items: center; }
  .trust-grid span { border-right: 0; border-bottom: 1px solid rgba(0,0,0,.22); }
  .trust-grid span:last-child { border-bottom: 0; }
  .technology-ribbon-section { padding-top: 24px; }
  .technology-ribbon-frame { margin-inline: -2px; border-radius: 13px; }
  .technology-ribbon-image { min-width: 920px; border-radius: 13px; }
  .technology-ribbon-note { margin-top: 9px; padding-inline: 8px; font-size: 9px; }
  .services-after-ribbon { padding-top: 54px; }
  .hero-visual { min-height: 430px; }
  .panel-main { top: 80px; left: 0; right: auto; width: 95%; }
  .panel-code { right: 0; top: 12px; min-width: 240px; }
  .panel-network { width: 220px; height: 135px; }
  .orbit-one { width: 330px; height: 330px; }
  .orbit-two { display: none; }
  .section { padding: 82px 0; }
  .services-grid { gap: 18px; }
  .service-feature { min-height: auto; }
  .service-feature-layout { min-height: auto; padding: 38px 28px; }
  .service-feature h3 { font-size: 36px; }
  .service-capabilities { padding: 24px; }
  .capability-grid { grid-template-columns: 1fr; }
  .capability-grid > div { min-height: auto; }
  .about-visual { min-height: 440px; }
  .primary-card { left: 24px; right: 24px; top: 45px; padding: 26px; }
  .mini-card { right: 20px; bottom: 20px; }
  .contact-section { padding: 80px 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 35px; }
  .footer-grid > div:first-child { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
}

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

/* Customer Area */
.site-nav .is-current { color: #fff; }
.site-nav .is-current::after { right: 0 !important; background: linear-gradient(90deg, var(--blue), var(--red)) !important; }
.button-blue { border-color: var(--blue); background: linear-gradient(135deg, var(--blue), var(--blue-deep)); box-shadow: 0 13px 30px rgba(0,159,229,.23); }
.button-blue:hover { border-color: #38bbf7; box-shadow: 0 18px 38px rgba(0,159,229,.34); }
button:disabled, input:disabled { cursor: not-allowed; opacity: .72; }

.portal-hero {
  position: relative;
  min-height: 790px;
  overflow: hidden;
  background:
    radial-gradient(circle at 79% 21%, rgba(0,159,229,.22), transparent 26%),
    radial-gradient(circle at 22% 90%, rgba(237,28,44,.17), transparent 31%),
    linear-gradient(135deg, #030303 0%, #0a0a0e 55%, #050505 100%);
}
.portal-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .15;
  background-image: linear-gradient(rgba(0,159,229,.22) 1px, transparent 1px), linear-gradient(90deg, rgba(0,159,229,.22) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(90deg, transparent 0%, #000 45%, #000 100%);
}
.portal-hero::after {
  content: "";
  position: absolute;
  right: -150px;
  top: 135px;
  width: 520px;
  height: 520px;
  border: 2px solid rgba(0,159,229,.23);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(0,159,229,.026), 0 0 0 140px rgba(237,28,44,.018);
}
.portal-hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.05fr .95fr; gap: 78px; align-items: center; }
.portal-hero-copy h1 { max-width: 800px; font-size: clamp(54px,6.2vw,82px); }
.portal-trust-row { display: flex; flex-wrap: wrap; gap: 12px 22px; margin-top: 45px; color: #a9a9b4; font-size: 12px; font-weight: 800; }
.portal-trust-row span { display: inline-flex; align-items: center; gap: 9px; }
.portal-trust-row i { width: 8px; height: 8px; border-radius: 50%; background: var(--blue); box-shadow: 0 0 13px rgba(0,159,229,.75); }
.portal-trust-row span:nth-child(2) i { background: var(--red); box-shadow: 0 0 13px rgba(237,28,44,.75); }
.portal-status-card { position: relative; padding: 24px; border: 1px solid rgba(255,255,255,.14); border-radius: 22px; background: rgba(11,11,15,.89); backdrop-filter: blur(18px); box-shadow: 0 35px 85px rgba(0,0,0,.42), inset 0 3px 0 var(--red); }
.portal-status-head { display: flex; justify-content: space-between; gap: 20px; align-items: center; padding: 4px 4px 21px; }
.portal-status-head > div { display: grid; gap: 4px; }
.status-overline { color: var(--blue); font-size: 10px; font-weight: 900; letter-spacing: .15em; text-transform: uppercase; }
.portal-status-head strong { font-size: 22px; }
.status-pill { display: inline-flex; align-items: center; gap: 8px; padding: 8px 11px; border: 1px solid rgba(0,159,229,.28); border-radius: 999px; color: #c7ecff; background: rgba(0,159,229,.08); font-size: 10px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.status-pill i { width: 8px; height: 8px; border-radius: 50%; background: var(--blue); box-shadow: 0 0 12px rgba(0,159,229,.9); }
.portal-status-screen { padding: 24px; border: 1px solid rgba(255,255,255,.11); border-radius: 15px; background: linear-gradient(145deg, rgba(20,20,27,.98), rgba(6,6,9,.98)); }
.screen-topline { display: flex; justify-content: space-between; padding-bottom: 16px; border-bottom: 1px solid var(--line); color: #898994; font-size: 10px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.screen-topline b { color: var(--red); }
.screen-feature { display: grid; grid-template-columns: 46px 1fr; gap: 15px; align-items: center; margin: 24px 0; padding: 19px; border: 1px solid rgba(0,159,229,.24); border-radius: 12px; background: rgba(0,159,229,.055); }
.screen-icon { width: 46px; height: 46px; display: grid; place-items: center; border: 1px solid rgba(237,28,44,.38); border-radius: 10px; color: #fff; background: rgba(237,28,44,.12); font-size: 22px; }
.screen-feature div { display: grid; gap: 5px; }
.screen-feature strong { font-size: 14px; }
.screen-feature small { color: #94949e; font-size: 11px; line-height: 1.5; }
.screen-list { display: grid; gap: 10px; }
.screen-list div { display: flex; justify-content: space-between; gap: 16px; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,.07); color: #9696a0; font-size: 11px; }
.screen-list div:last-child { border-bottom: 0; }
.screen-list strong { color: #f2f2f5; font-size: 10px; text-transform: uppercase; letter-spacing: .07em; }
.portal-preview-note { margin: 18px 4px 2px; color: #8f8f99; font-size: 11px; line-height: 1.65; }
.portal-preview-note strong { color: #fff; }

.portal-shortcuts { position: relative; z-index: 2; background: #0a0a0d; border-top: 1px solid rgba(255,255,255,.08); border-bottom: 4px solid var(--blue); }
.portal-shortcut-grid { display: grid; grid-template-columns: repeat(4,1fr); }
.portal-shortcut-grid a { min-height: 120px; display: grid; align-content: center; gap: 6px; padding: 24px; border-right: 1px solid rgba(255,255,255,.10); background: rgba(255,255,255,.018); transition: background .2s, transform .2s; }
.portal-shortcut-grid a:hover { background: rgba(0,159,229,.07); transform: translateY(-3px); }
.portal-shortcut-grid a:nth-child(even):hover { background: rgba(237,28,44,.065); }
.portal-shortcut-grid a:last-child { border-right: 0; }
.portal-shortcut-grid span { color: var(--red); font-size: 10px; font-weight: 900; letter-spacing: .12em; }
.portal-shortcut-grid a:nth-child(even) span { color: var(--blue); }
.portal-shortcut-grid strong { font-size: 15px; }
.portal-shortcut-grid small { color: #8d8d97; font-size: 11px; line-height: 1.4; }

.portal-actions-section { background: #f3f4f6; }
.portal-action-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.portal-action-card { --card-accent: var(--red); position: relative; min-height: 320px; overflow: hidden; display: flex; flex-direction: column; padding: 31px; border: 1px solid rgba(13,13,18,.12); border-radius: 16px; background: #fff; box-shadow: 0 18px 45px rgba(12,12,18,.07); transition: transform .25s, box-shadow .25s, border-color .25s; }
.portal-action-card::before { content: ""; position: absolute; inset: 0 auto 0 0; width: 5px; background: var(--card-accent); }
.portal-action-card::after { content: ""; position: absolute; right: -62px; top: -62px; width: 150px; height: 150px; border: 1px solid color-mix(in srgb, var(--card-accent) 25%, transparent); border-radius: 50%; }
.portal-action-card:hover { transform: translateY(-5px); border-color: color-mix(in srgb, var(--card-accent) 40%, transparent); box-shadow: 0 26px 62px rgba(12,12,18,.12); }
.portal-action-card.accent-blue { --card-accent: var(--blue); }
.portal-card-icon { width: 50px; height: 50px; display: grid; place-items: center; margin-bottom: 28px; border: 1px solid color-mix(in srgb, var(--card-accent) 40%, transparent); border-radius: 11px; color: var(--card-accent); background: color-mix(in srgb, var(--card-accent) 8%, #fff); font-size: 20px; font-weight: 900; }
.portal-card-kicker { margin-bottom: 10px; color: var(--card-accent) !important; font-size: 10px; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.portal-action-card h3 { color: #111117; font-size: 24px; letter-spacing: -.025em; }
.portal-action-card > p:not(.portal-card-kicker) { color: #60636d; line-height: 1.68; }
.portal-action-card a { display: inline-flex; gap: 8px; align-items: center; margin-top: auto; padding-top: 22px; color: #17171d; font-size: 12px; font-weight: 900; }
.portal-action-card a span { color: var(--card-accent); }

.portal-support-section { position: relative; overflow: hidden; background: linear-gradient(135deg,#050506,#101016); }
.portal-support-section::before { content: ""; position: absolute; inset: 0; opacity: .11; background-image: linear-gradient(rgba(237,28,44,.28) 1px, transparent 1px), linear-gradient(90deg, rgba(237,28,44,.28) 1px, transparent 1px); background-size: 62px 62px; mask-image: linear-gradient(90deg,#000,transparent 60%); }
.portal-support-grid { position: relative; display: grid; grid-template-columns: .82fr 1.18fr; gap: 78px; align-items: start; }
.portal-support-copy { position: sticky; top: 130px; }
.portal-support-copy > p:not(.eyebrow) { color: #aaaab4; line-height: 1.8; }
.support-guidance { display: grid; gap: 14px; margin-top: 34px; }
.support-guidance > div { display: grid; grid-template-columns: 38px 1fr; gap: 15px; align-items: start; padding: 18px; border: 1px solid var(--line); border-radius: 11px; background: rgba(255,255,255,.035); }
.support-guidance > div > span { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 8px; color: #fff; background: linear-gradient(135deg,var(--red),var(--red-deep)); font-size: 11px; font-weight: 900; }
.support-guidance > div:nth-child(2) > span { background: linear-gradient(135deg,var(--blue),var(--blue-deep)); }
.support-guidance p { margin: 0; color: #92929c; font-size: 12px; line-height: 1.55; }
.support-guidance strong { display: block; margin-bottom: 4px; color: #fff; font-size: 13px; }
.support-form { display: grid; gap: 18px; padding: 36px; border: 1px solid rgba(255,255,255,.14); border-radius: 18px; background: rgba(12,12,17,.92); box-shadow: 0 30px 75px rgba(0,0,0,.32); }
.form-preview-banner { padding: 13px 15px; border: 1px solid rgba(0,159,229,.24); border-radius: 9px; color: #a8a8b1; background: rgba(0,159,229,.06); font-size: 11px; line-height: 1.55; }
.form-preview-banner span { margin-right: 7px; color: var(--blue); font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.form-row { display: grid; gap: 16px; }
.form-row.two-col { grid-template-columns: 1fr 1fr; }
.support-form label { display: grid; gap: 8px; color: #dadade; font-size: 11px; font-weight: 850; letter-spacing: .03em; }
.support-form input, .support-form select, .support-form textarea { width: 100%; padding: 14px 15px; border: 1px solid rgba(255,255,255,.14); border-radius: 8px; color: #fff; background: #08080b; font: inherit; font-weight: 500; letter-spacing: 0; outline: none; transition: border-color .2s, box-shadow .2s; }
.support-form select { color-scheme: dark; }
.support-form input::placeholder, .support-form textarea::placeholder { color: #6f6f79; }
.support-form input:focus, .support-form select:focus, .support-form textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(0,159,229,.12); }
.support-form textarea { resize: vertical; min-height: 145px; line-height: 1.55; }
.attachment-preview span { display: flex; justify-content: space-between; align-items: center; gap: 18px; min-height: 62px; padding: 14px 15px; border: 1px dashed rgba(255,255,255,.22); border-radius: 8px; color: #aaaab4; background: rgba(255,255,255,.025); }
.attachment-preview b { color: #fff; }
.attachment-preview small { text-align: right; font-weight: 500; }
.attachment-preview input { display: none; }
.form-consent { display: flex !important; grid-template-columns: 20px 1fr; align-items: flex-start; gap: 10px !important; color: #a0a0aa !important; font-weight: 500 !important; line-height: 1.5; }
.form-consent input { width: 17px; height: 17px; padding: 0; accent-color: var(--blue); }
.form-message { min-height: 0; color: #c6f0ff; font-size: 12px; line-height: 1.55; }
.form-message.is-visible { min-height: 48px; padding: 13px 15px; border: 1px solid rgba(0,159,229,.26); border-radius: 8px; background: rgba(0,159,229,.065); }

.portal-access-section { background: #f2f3f5; }
.portal-access-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 72px; align-items: center; }
.portal-access-card { padding: 40px; border: 1px solid var(--line-dark); border-radius: 19px; color: var(--text); background: #fff; box-shadow: 0 25px 65px rgba(12,12,18,.10); }
.portal-access-head { display: flex; justify-content: space-between; gap: 25px; align-items: start; }
.portal-access-head h2 { max-width: 530px; font-size: clamp(38px,4.2vw,56px); }
.build-badge { flex: 0 0 auto; padding: 9px 11px; border: 1px solid rgba(237,28,44,.24); border-radius: 999px; color: var(--red); background: rgba(237,28,44,.055); font-size: 9px; font-weight: 900; letter-spacing: .11em; text-transform: uppercase; }
.portal-access-intro { color: #626570; line-height: 1.75; }
.portal-login-preview { display: grid; gap: 15px; margin-top: 30px; padding: 26px; border: 1px solid rgba(13,13,18,.10); border-radius: 13px; background: #f6f7f8; }
.portal-login-preview label { display: grid; gap: 8px; color: #33343b; font-size: 11px; font-weight: 850; }
.portal-login-preview input { width: 100%; padding: 14px 15px; border: 1px solid rgba(13,13,18,.13); border-radius: 8px; color: #6d6f78; background: #fff; }
.portal-login-preview small { color: #747781; font-size: 10px; text-align: center; line-height: 1.5; }
.portal-feature-list { border-top: 1px solid var(--line-dark); }
.portal-feature-list article { display: grid; grid-template-columns: 55px 1fr; gap: 20px; padding: 25px 0; border-bottom: 1px solid var(--line-dark); color: var(--text); }
.portal-feature-list article > span { color: var(--blue); font-size: 11px; font-weight: 900; }
.portal-feature-list article:nth-child(even) > span { color: var(--red); }
.portal-feature-list h3 { font-size: 21px; }
.portal-feature-list p { margin: 8px 0 0; color: #636670; line-height: 1.65; }

.portal-knowledge-section { background: #09090c; }
.portal-knowledge-section .section-heading > p { color: #9c9ca6; }
.knowledge-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 17px; }
.knowledge-card { min-height: 270px; display: flex; flex-direction: column; padding: 28px; border: 1px solid rgba(255,255,255,.12); border-radius: 14px; background: linear-gradient(145deg,rgba(255,255,255,.055),rgba(255,255,255,.02)); transition: transform .2s, border-color .2s; }
.knowledge-card:hover { transform: translateY(-4px); border-color: rgba(0,159,229,.45); }
.knowledge-card:nth-child(even):hover { border-color: rgba(237,28,44,.46); }
.knowledge-card > span { margin-bottom: 18px; color: var(--blue); font-size: 9px; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.knowledge-card:nth-child(even) > span { color: var(--red); }
.knowledge-card h3 { font-size: 22px; line-height: 1.22; }
.knowledge-card p { color: #9797a1; line-height: 1.68; }
.knowledge-card a { margin-top: auto; padding-top: 20px; color: #fff; font-size: 11px; font-weight: 900; }

.feedback-section { padding: 95px 0; background: linear-gradient(110deg,#b50f1d,var(--red) 45%,#8c0b16); }
.feedback-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 75px; align-items: center; }
.feedback-grid > div:first-child > p:not(.eyebrow) { max-width: 600px; color: rgba(255,255,255,.82); line-height: 1.75; }
.feedback-grid .eyebrow { color: #fff; }
.feedback-card { padding: 35px; border: 1px solid rgba(255,255,255,.22); border-radius: 16px; background: rgba(5,5,7,.9); box-shadow: 0 25px 65px rgba(0,0,0,.27); }
.feedback-card > span { color: var(--blue); font-size: 10px; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.feedback-card > strong { display: block; margin: 19px 0 28px; font-size: clamp(25px,3vw,36px); line-height: 1.22; letter-spacing: -.025em; }

@media (max-width: 1080px) {
  .portal-hero-grid { gap: 48px; }
  .portal-shortcut-grid { grid-template-columns: repeat(2,1fr); }
  .portal-shortcut-grid a:nth-child(2) { border-right: 0; }
  .portal-shortcut-grid a:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.10); }
  .portal-action-grid, .knowledge-grid { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 980px) {
  .portal-hero-grid, .portal-support-grid, .portal-access-grid, .feedback-grid { grid-template-columns: 1fr; }
  .portal-hero { min-height: auto; }
  .portal-status-card { max-width: 680px; }
  .portal-support-copy { position: static; }
  .portal-access-grid { gap: 45px; }
}

@media (max-width: 680px) {
  .portal-hero-copy h1 { font-size: 46px; }
  .portal-status-card, .portal-status-screen { padding: 19px; }
  .portal-shortcut-grid, .portal-action-grid, .knowledge-grid { grid-template-columns: 1fr; }
  .portal-shortcut-grid a { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.10); }
  .portal-shortcut-grid a:nth-child(3) { border-bottom: 1px solid rgba(255,255,255,.10); }
  .portal-shortcut-grid a:last-child { border-bottom: 0; }
  .portal-action-card { min-height: 290px; }
  .support-form, .portal-access-card { padding: 25px; }
  .form-row.two-col { grid-template-columns: 1fr; }
  .attachment-preview span { align-items: flex-start; flex-direction: column; }
  .attachment-preview small { text-align: left; }
  .portal-access-head { flex-direction: column; }
  .feedback-section { padding: 78px 0; }
}
