:root {
  --bg: #070914;
  --bg-2: #0b1022;
  --panel: rgba(18, 24, 48, 0.66);
  --panel-2: rgba(13, 19, 39, 0.88);
  --line: rgba(162, 183, 255, 0.15);
  --text: #f5f7ff;
  --muted: #aeb7d2;
  --cyan: #29d9ff;
  --blue: #3b82f6;
  --violet: #8b5cf6;
  --magenta: #d946ef;
  --success: #62e4c3;
  --shadow: 0 24px 80px rgba(0,0,0,.35);
  --radius: 24px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, textarea, select { font: inherit; }

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 8%, rgba(44, 114, 255, .10), transparent 26%),
    radial-gradient(circle at 84% 14%, rgba(216, 70, 239, .10), transparent 24%);
  z-index: -3;
}

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .035;
  z-index: -1;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.7'/%3E%3C/svg%3E");
}

.container { width: min(var(--container), calc(100% - 40px)); margin: 0 auto; }
.section-pad { padding: 112px 0; position: relative; }
.section-border { border-top: 1px solid var(--line); }

.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 76px;
  z-index: 50;
  background: rgba(7, 9, 20, .58);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px);
  transition: .25s ease;
}
.site-header.scrolled { background: rgba(7, 9, 20, .9); border-bottom-color: var(--line); }
.nav-wrap { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 11px; font-weight: 700; letter-spacing: -.02em; }
.brand-mark {
  width: 42px; height: 42px; border-radius: 14px;
  display: grid; place-items: center; padding: 1px;
  background: linear-gradient(135deg, var(--cyan), var(--violet) 52%, var(--magenta));
  box-shadow: 0 8px 26px rgba(90, 77, 255, .22);
}
.brand-mark > span { width: 100%; height: 100%; display: grid; place-items: center; border-radius: 13px; background: #0a0e1d; color: #fff; font-size: 12px; letter-spacing: -.08em; }
.brand-name { font-size: 19px; }
.brand-name strong { background: linear-gradient(90deg, var(--cyan), var(--magenta)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.main-nav { display: flex; align-items: center; gap: 28px; font-size: 14px; color: #d8def1; }
.main-nav a { transition: .2s ease; }
.main-nav a:hover { color: #fff; }
.nav-cta { padding: 10px 16px; border: 1px solid rgba(113, 150, 255, .35); border-radius: 999px; background: rgba(62, 91, 189, .10); }
.menu-toggle { display: none; background: none; border: 0; padding: 7px; }
.menu-toggle span { display: block; width: 24px; height: 2px; background: #fff; margin: 5px 0; border-radius: 10px; }

.hero { min-height: 870px; display: flex; align-items: center; padding-top: 155px; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.07fr .93fr; align-items: center; gap: 50px; }
.hero-glow { position: absolute; border-radius: 50%; filter: blur(12px); pointer-events: none; }
.glow-one { width: 480px; height: 480px; right: 1%; top: 18%; background: radial-gradient(circle, rgba(63, 94, 251, .20), transparent 70%); }
.glow-two { width: 360px; height: 360px; right: 14%; top: 32%; background: radial-gradient(circle, rgba(219, 55, 236, .14), transparent 70%); }
.eyebrow, .kicker { color: #b9c5eb; font-size: 12px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.eyebrow { display: inline-flex; align-items: center; gap: 9px; padding: 8px 12px; border-radius: 999px; border: 1px solid var(--line); background: rgba(255,255,255,.025); }
.dot { width: 7px; height: 7px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 14px var(--cyan); }
h1 { margin: 23px 0 22px; font-size: clamp(48px, 6.5vw, 82px); line-height: .99; letter-spacing: -.06em; max-width: 820px; }
.gradient-text { background: linear-gradient(90deg, #d7f6ff 2%, var(--cyan) 28%, #8d83ff 62%, #f257eb 100%); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero-lead { font-size: 22px; line-height: 1.45; color: #edf2ff; max-width: 710px; margin: 0 0 12px; }
.hero-sub { font-size: 16px; color: var(--muted); max-width: 700px; margin: 0; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.btn { min-height: 50px; display: inline-flex; align-items: center; justify-content: center; gap: 10px; border-radius: 13px; padding: 0 20px; font-weight: 750; border: 1px solid transparent; cursor: pointer; transition: .25s ease; }
.btn-primary { color: #fff; background: linear-gradient(110deg, #1677ff, #6455f7 55%, #bd33d9); box-shadow: 0 12px 35px rgba(73, 79, 237, .27); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 18px 44px rgba(73, 79, 237, .36); }
.btn-secondary { border-color: var(--line); background: rgba(255,255,255,.03); color: #e7ecfb; }
.btn-secondary:hover { background: rgba(255,255,255,.07); }
.full { width: 100%; border: 0; }
.hero-proof { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-top: 42px; max-width: 680px; }
.hero-proof div { border-left: 1px solid var(--line); padding-left: 12px; }
.hero-proof b, .hero-proof span { display: block; }
.hero-proof b { font-size: 13px; color: #fff; }
.hero-proof span { font-size: 11px; color: #8490ad; margin-top: 2px; }

.hero-visual { position: relative; min-height: 560px; display: grid; place-items: center; }
.logo-card { position: relative; z-index: 3; width: min(100%, 520px); aspect-ratio: 1 / .78; border-radius: 34px; border: 1px solid rgba(129, 155, 255, .18); background: linear-gradient(145deg, rgba(12,18,38,.93), rgba(8,8,22,.72)); box-shadow: var(--shadow); overflow: visible; }
.logo-card::after { content: ""; position: absolute; inset: 0; border-radius: inherit; background: linear-gradient(135deg, rgba(69,221,255,.08), transparent 35%, transparent 65%, rgba(214,66,240,.08)); pointer-events: none; }
.logo-card img { width: 100%; height: 100%; object-fit: cover; border-radius: inherit; opacity: .96; }
.visual-ring { position: absolute; border: 1px solid rgba(82, 126, 255, .16); border-radius: 50%; }
.ring-a { width: 570px; height: 570px; animation: spin 28s linear infinite; }
.ring-b { width: 460px; height: 460px; border-style: dashed; animation: spin 20s linear infinite reverse; }
@keyframes spin { to { transform: rotate(360deg); } }
.floating-chip { position: absolute; z-index: 5; padding: 10px 13px; border-radius: 12px; border: 1px solid rgba(170, 189, 255, .19); background: rgba(9, 13, 30, .85); backdrop-filter: blur(14px); box-shadow: 0 12px 30px rgba(0,0,0,.28); font-size: 12px; color: #e9eeff; white-space: nowrap; }
.floating-chip span { color: var(--cyan); font-weight: 800; margin-right: 6px; }
.chip-one { left: -54px; top: 17%; }
.chip-two { right: -42px; top: 47%; }
.chip-three { left: 10%; bottom: -19px; }

.section-heading { max-width: 760px; margin-bottom: 48px; }
.section-heading.centered { text-align: center; margin-left: auto; margin-right: auto; }
.section-heading h2 { font-size: clamp(36px, 4.5vw, 58px); line-height: 1.08; letter-spacing: -.045em; margin: 12px 0 18px; }
.section-heading p { font-size: 18px; color: var(--muted); margin: 0; }
.kicker { color: #8db6ff; }

.problem-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.glass-card { border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; background: linear-gradient(155deg, rgba(29,38,71,.52), rgba(10,14,30,.55)); min-height: 255px; }
.glass-card h3 { font-size: 20px; line-height: 1.25; margin: 18px 0 10px; letter-spacing: -.02em; }
.glass-card p { color: var(--muted); margin: 0; font-size: 14px; }
.icon-box { width: 46px; height: 46px; display: grid; place-items: center; border-radius: 13px; color: #daf9ff; font-weight: 800; background: linear-gradient(135deg, rgba(33,221,255,.16), rgba(139,92,246,.16)); border: 1px solid rgba(82, 206, 255, .22); }

.pipeline { display: flex; align-items: stretch; gap: 9px; padding: 16px; border: 1px solid var(--line); border-radius: 22px; background: rgba(255,255,255,.018); overflow-x: auto; margin-bottom: 82px; }
.pipe-node { min-width: 118px; flex: 1; min-height: 108px; border-radius: 15px; padding: 14px; border: 1px solid rgba(165,183,255,.10); background: rgba(15,21,43,.75); display: flex; flex-direction: column; justify-content: space-between; }
.pipe-node span { font-size: 11px; color: #7ea9ff; font-weight: 850; }
.pipe-node b { font-size: 14px; line-height: 1.25; }
.pipe-node.active { background: linear-gradient(145deg, rgba(43,118,255,.25), rgba(177,54,232,.18)); border-color: rgba(90,164,255,.32); }
.pipe-arrow { display: grid; place-items: center; color: #53617e; font-size: 22px; }
.capability-layout { display: grid; grid-template-columns: .9fr 1.1fr; gap: 54px; align-items: center; }
.capability-copy h2 { font-size: 42px; line-height: 1.1; letter-spacing: -.04em; margin: 12px 0 16px; }
.capability-copy > p { color: var(--muted); font-size: 17px; }
.check-list { list-style: none; margin: 28px 0 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 13px 18px; }
.check-list li { position: relative; padding-left: 24px; color: #dbe3fb; font-size: 14px; }
.check-list li::before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--success); font-weight: 900; }
.industrial-card { position: relative; border-radius: 28px; overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow); min-height: 500px; }
.industrial-card img { width: 100%; height: 500px; object-fit: cover; }
.industrial-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(5,8,18,.94) 3%, rgba(5,8,18,.35) 44%, rgba(5,8,18,.02) 72%); }
.industrial-overlay { position: absolute; z-index: 2; left: 26px; right: 26px; bottom: 25px; }
.industrial-overlay span { color: var(--cyan); font-size: 11px; font-weight: 850; letter-spacing: .15em; }
.industrial-overlay strong, .industrial-overlay small { display: block; }
.industrial-overlay strong { font-size: 25px; margin: 5px 0 4px; }
.industrial-overlay small { color: #c2cade; max-width: 530px; }

.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.step { position: relative; min-height: 255px; padding: 27px; border: 1px solid var(--line); border-radius: var(--radius); background: linear-gradient(150deg, rgba(17,24,49,.65), rgba(8,12,27,.62)); overflow: hidden; }
.step::after { content: ""; position: absolute; width: 120px; height: 120px; border-radius: 50%; right: -52px; bottom: -53px; border: 1px solid rgba(89,136,255,.12); }
.step-no { display: inline-grid; place-items: center; width: 43px; height: 43px; border-radius: 12px; background: linear-gradient(135deg, rgba(34,214,255,.14), rgba(144,83,255,.16)); color: #9bdcff; font-size: 12px; font-weight: 900; border: 1px solid rgba(90,155,255,.16); }
.step h3 { font-size: 21px; margin: 33px 0 8px; }
.step p { color: var(--muted); font-size: 14px; margin: 0; }

.module-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; }
.module-card { grid-column: span 2; position: relative; padding: 28px; border: 1px solid var(--line); border-radius: var(--radius); background: rgba(12,17,35,.64); min-height: 360px; overflow: hidden; }
.module-card:nth-child(4), .module-card:nth-child(5) { grid-column: span 3; }
.module-card::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 100% 0%, rgba(69,103,255,.09), transparent 35%); pointer-events: none; }
.module-card.featured { background: linear-gradient(145deg, rgba(40, 80, 176, .24), rgba(64, 23, 96, .20)); border-color: rgba(92,152,255,.28); }
.module-number { font-size: 11px; font-weight: 900; color: #73bdfd; letter-spacing: .12em; }
.module-card h3 { font-size: 26px; letter-spacing: -.03em; margin: 11px 0 9px; }
.module-card p { color: var(--muted); margin: 0 0 22px; font-size: 14px; }
.module-card ul { margin: 0; padding: 0; list-style: none; }
.module-card li { padding: 8px 0; border-top: 1px solid rgba(153,176,237,.09); color: #d8dff3; font-size: 13px; }
.module-card li::before { content: "↗"; color: var(--cyan); margin-right: 8px; }

.industry-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px; }
.industry-card { min-height: 250px; padding: 27px; border-radius: var(--radius); border: 1px solid var(--line); background: linear-gradient(160deg, rgba(21,29,57,.60), rgba(8,12,27,.70)); }
.industry-card > span { font-size: 11px; font-weight: 900; color: #6cbcff; }
.industry-card h3 { margin: 72px 0 8px; font-size: 21px; }
.industry-card p { margin: 0; color: var(--muted); font-size: 14px; }

.difference-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 80px; align-items: start; }
.quote { color: #e5eaff !important; font-size: 22px !important; line-height: 1.45; border-left: 2px solid var(--violet); padding-left: 18px; }
.difference-list { border-top: 1px solid var(--line); }
.diff { padding: 23px 0; display: grid; grid-template-columns: .58fr 1fr; gap: 25px; border-bottom: 1px solid var(--line); }
.diff b { font-size: 16px; }
.diff span { color: var(--muted); font-size: 14px; }

.contact { overflow: hidden; background: linear-gradient(180deg, rgba(15,20,43,.25), rgba(12,11,31,.5)); }
.contact-glow { position: absolute; width: 550px; height: 550px; left: -180px; bottom: -250px; border-radius: 50%; background: radial-gradient(circle, rgba(80,84,255,.18), transparent 67%); }
.contact-grid { position: relative; z-index: 2; display: grid; grid-template-columns: .92fr 1.08fr; gap: 70px; align-items: start; }
.contact-copy h2 { font-size: clamp(38px, 4.4vw, 60px); line-height: 1.06; letter-spacing: -.045em; margin: 12px 0 18px; }
.contact-copy > p { color: var(--muted); font-size: 17px; max-width: 590px; }
.contact-details { margin-top: 34px; display: grid; gap: 2px; }
.contact-details > * { display: flex; gap: 18px; align-items: flex-start; padding: 17px 0; border-top: 1px solid var(--line); }
.contact-details span { width: 72px; flex: 0 0 72px; font-size: 10px; font-weight: 900; letter-spacing: .12em; color: #7f8ba9; }
.contact-details strong { font-size: 14px; font-weight: 600; }
.contact-form { padding: 29px; border-radius: 28px; border: 1px solid var(--line); background: rgba(12,17,35,.78); box-shadow: var(--shadow); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 13px; }
.contact-form label { display: block; font-size: 12px; color: #aeb7d2; margin-bottom: 14px; }
.contact-form input, .contact-form textarea, .contact-form select { width: 100%; margin-top: 7px; border: 1px solid rgba(147,169,232,.17); background: #0a0f21; color: #f3f6ff; border-radius: 12px; outline: none; padding: 13px 14px; transition: .2s ease; }
.contact-form input:focus, .contact-form textarea:focus, .contact-form select:focus { border-color: rgba(72,164,255,.6); box-shadow: 0 0 0 3px rgba(53,116,255,.08); }
.contact-form textarea { resize: vertical; min-height: 120px; }
.form-note { color: #7f89a4; font-size: 11px; margin: 12px 0 0; text-align: center; }

.site-footer { border-top: 1px solid var(--line); padding: 45px 0; background: #060811; }
.footer-grid { display: grid; grid-template-columns: 1.2fr .8fr 1fr; gap: 40px; align-items: start; }
.footer-brand p { color: #7f89a4; font-size: 13px; max-width: 310px; margin: 14px 0 0; }
.footer-links { display: grid; gap: 9px; font-size: 13px; color: #b7c0d9; }
.footer-legal { display: grid; gap: 8px; justify-items: end; text-align: right; font-size: 12px; color: #7f89a4; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1050px) {
  .hero-grid, .capability-layout, .difference-grid, .contact-grid { grid-template-columns: 1fr; }
  .hero { padding-top: 130px; }
  .hero-visual { min-height: 480px; margin-top: 15px; }
  .problem-grid, .industry-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .module-card { grid-column: span 3; }
  .module-card:nth-child(4), .module-card:nth-child(5) { grid-column: span 3; }
  .difference-grid { gap: 24px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-legal { grid-column: 1 / -1; justify-items: start; text-align: left; }
}

@media (max-width: 820px) {
  .section-pad { padding: 82px 0; }
  .menu-toggle { display: block; }
  .main-nav { display: none; position: absolute; top: 67px; left: 20px; right: 20px; padding: 18px; border: 1px solid var(--line); border-radius: 18px; background: rgba(8,11,24,.98); flex-direction: column; align-items: stretch; gap: 4px; box-shadow: var(--shadow); }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 11px 12px; }
  .nav-cta { margin-top: 5px; text-align: center; }
  .hero { min-height: auto; }
  h1 { font-size: clamp(45px, 12vw, 67px); }
  .hero-proof { grid-template-columns: repeat(2, 1fr); }
  .hero-visual { min-height: 430px; }
  .ring-a { width: 440px; height: 440px; }
  .ring-b { width: 350px; height: 350px; }
  .chip-one { left: -10px; }
  .chip-two { right: -10px; }
  .pipeline { margin-bottom: 58px; }
  .check-list { grid-template-columns: 1fr; }
  .module-grid { grid-template-columns: 1fr; }
  .module-card, .module-card:nth-child(4), .module-card:nth-child(5) { grid-column: auto; }
  .diff { grid-template-columns: 1fr; gap: 7px; }
}

@media (max-width: 590px) {
  .container { width: min(100% - 28px, var(--container)); }
  .site-header { height: 68px; }
  .brand-name { font-size: 17px; }
  .brand-mark { width: 37px; height: 37px; border-radius: 12px; }
  .hero { padding-top: 112px; }
  .hero-lead { font-size: 19px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .problem-grid, .industry-grid, .steps { grid-template-columns: 1fr; }
  .hero-visual { min-height: 350px; }
  .logo-card { width: 94%; border-radius: 25px; }
  .ring-a { width: 350px; height: 350px; }
  .ring-b { width: 290px; height: 290px; }
  .floating-chip { font-size: 10px; padding: 8px 10px; }
  .chip-one { top: 9%; }
  .chip-two { top: 52%; }
  .chip-three { bottom: -16px; left: 6%; }
  .section-heading h2 { font-size: 37px; }
  .capability-copy h2 { font-size: 34px; }
  .industrial-card, .industrial-card img { min-height: 380px; height: 380px; }
  .field-row { grid-template-columns: 1fr; }
  .contact-form { padding: 20px; }
  .contact-details > * { display: grid; gap: 5px; }
  .contact-details span { width: auto; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-legal { grid-column: auto; }
}

@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; }
}
