:root {
  --bg: #070A12;
  --surface: rgba(255,255,255,.075);
  --surface-strong: rgba(255,255,255,.12);
  --text: #F7F9FC;
  --muted: #B5BFD2;
  --line: rgba(255,255,255,.14);
  --brand: #7C5CFF;
  --brand-2: #00D4FF;
  --brand-3: #34E89E;
  --dark: #0E1320;
  --white: #fff;
  --shadow: 0 24px 80px rgba(0,0,0,.38);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --max: 1180px;
  --font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background:
    radial-gradient(circle at 15% 10%, rgba(124,92,255,.42), transparent 28%),
    radial-gradient(circle at 90% 14%, rgba(0,212,255,.24), transparent 24%),
    radial-gradient(circle at 50% 100%, rgba(52,232,158,.18), transparent 34%),
    var(--bg);
  min-height: 100vh;
}
body.no-scroll { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
::selection { background: rgba(124,92,255,.5); }

.site-shell { overflow: hidden; position: relative; }
.noise {
  pointer-events: none;
  position: fixed;
  inset: 0;
  opacity: .32;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.20'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
  z-index: 0;
}
.container { width: min(100% - 36px, var(--max)); margin-inline: auto; position: relative; z-index: 1; }
.section { padding: 96px 0; position: relative; }
.section.compact { padding: 64px 0; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.07);
  border-radius: 999px;
  color: #DDE5FF;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .02em;
}
.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-2), var(--brand-3));
  box-shadow: 0 0 20px rgba(0,212,255,.7);
}
.gradient-text {
  background: linear-gradient(135deg, #fff, #B9D7FF 35%, #64FCD9 75%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.lead { color: var(--muted); font-size: clamp(18px, 2vw, 21px); line-height: 1.7; }
.muted { color: var(--muted); line-height: 1.7; }

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(255,255,255,.08);
  background: rgba(7,10,18,.72);
  backdrop-filter: blur(22px);
}
.nav { height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.logo { display: inline-flex; align-items: center; gap: 12px; font-weight: 900; letter-spacing: -.04em; }
.logo img { height: 40px; width: auto; }
.logo-text { font-size: 20px; }
.nav-links { display: flex; align-items: center; gap: 6px; padding: 6px; border: 1px solid var(--line); border-radius: 999px; background: rgba(255,255,255,.055); }
.nav-link { color: #DDE5FF; padding: 10px 14px; border-radius: 999px; font-size: 14px; font-weight: 700; transition: .25s ease; }
.nav-link:hover, .nav-link.active { background: rgba(255,255,255,.12); color: #fff; }
.nav-actions { display: flex; align-items: center; gap: 12px; }
.menu-btn { display: none; width: 42px; height: 42px; border: 1px solid var(--line); border-radius: 14px; background: rgba(255,255,255,.08); color: #fff; }
.menu-btn span { display: block; width: 18px; height: 2px; background: currentColor; margin: 4px auto; border-radius: 99px; transition: .2s ease; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  border-radius: 999px;
  padding: 13px 18px;
  min-height: 48px;
  font-weight: 900;
  color: var(--white);
  background: rgba(255,255,255,.09);
  border: 1px solid var(--line);
  box-shadow: none;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}
.btn:hover { transform: translateY(-2px); background: rgba(255,255,255,.14); }
.btn.primary {
  border: 0;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  box-shadow: 0 18px 44px rgba(0, 117, 255, .28);
}
.btn.primary:hover { box-shadow: 0 22px 60px rgba(0, 117, 255, .38); }
.btn.dark { background: #101726; border-color: rgba(255,255,255,.14); }
.btn.full { width: 100%; }
.btn.small { padding: 10px 14px; min-height: 40px; font-size: 14px; }

.hero { padding: 84px 0 80px; }
.hero-grid { display: grid; grid-template-columns: 1.02fr .98fr; align-items: center; gap: 52px; }
.hero h1, .page-hero h1 { font-size: clamp(44px, 7vw, 82px); line-height: .94; letter-spacing: -.075em; margin: 22px 0 20px; }
.hero p { max-width: 690px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 30px; }
.trust-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.trust-pill { padding: 10px 14px; border: 1px solid var(--line); background: rgba(255,255,255,.065); border-radius: 999px; color: #D9E3F9; font-size: 14px; font-weight: 700; }
.hero-visual { position: relative; min-height: 610px; }
.visual-card {
  position: absolute;
  border: 1px solid rgba(255,255,255,.16);
  background: linear-gradient(180deg, rgba(255,255,255,.14), rgba(255,255,255,.07));
  backdrop-filter: blur(24px);
  border-radius: 32px;
  box-shadow: var(--shadow);
}
.visual-card.main {
  top: 26px; right: 0; left: 60px; padding: 18px; min-height: 450px;
}
.browser-bar { display: flex; gap: 7px; padding: 6px 0 16px; }
.dot { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,.35); }
.showcase-panel {
  overflow: hidden;
  min-height: 380px;
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(124,92,255,.18), rgba(0,212,255,.10)),
    #0B1020;
  padding: 22px;
  position: relative;
}
.showcase-top { display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.chip { padding: 7px 10px; border-radius: 999px; font-size: 12px; font-weight: 800; color: #061018; background: linear-gradient(135deg, var(--brand-2), var(--brand-3)); }
.mock-title { font-size: 32px; max-width: 360px; line-height: 1.05; letter-spacing: -.04em; margin: 26px 0 18px; }
.mock-lines { display: grid; gap: 12px; max-width: 390px; }
.mock-lines span { height: 13px; border-radius: 999px; background: rgba(255,255,255,.18); }
.mock-lines span:nth-child(2) { width: 72%; }
.mock-lines span:nth-child(3) { width: 88%; }
.mock-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 30px; }
.mock-grid div { height: 84px; border-radius: 18px; background: rgba(255,255,255,.09); border: 1px solid rgba(255,255,255,.10); }
.visual-card.floating { padding: 18px; width: 235px; left: 0; bottom: 52px; }
.floating h3 { margin: 8px 0 4px; font-size: 40px; letter-spacing: -.04em; }
.visual-card.mini { width: 220px; right: 14px; bottom: 18px; padding: 16px; }
.progress { height: 10px; background: rgba(255,255,255,.12); border-radius: 999px; overflow: hidden; margin: 14px 0 8px; }
.progress span { display: block; height: 100%; width: 78%; background: linear-gradient(135deg, var(--brand-2), var(--brand-3)); border-radius: inherit; }
.orb { position: absolute; width: 280px; height: 280px; border-radius: 50%; background: linear-gradient(135deg, rgba(124,92,255,.7), rgba(0,212,255,.35)); filter: blur(30px); opacity: .65; right: 10px; top: 150px; z-index: -1; }

.stats-strip { margin-top: -34px; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.stat-card { padding: 24px; border: 1px solid var(--line); border-radius: 24px; background: rgba(255,255,255,.075); backdrop-filter: blur(18px); }
.stat-card strong { display: block; font-size: clamp(30px, 5vw, 48px); line-height: 1; letter-spacing: -.05em; }
.stat-card span { display: block; color: var(--muted); margin-top: 8px; }

.section-head { display: flex; align-items: end; justify-content: space-between; gap: 34px; margin-bottom: 36px; }
.section-head h2 { font-size: clamp(34px, 5vw, 58px); line-height: 1; letter-spacing: -.06em; margin: 14px 0 0; max-width: 760px; }
.section-head p { max-width: 460px; }
.cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255,255,255,.095), rgba(255,255,255,.045));
  padding: 26px;
  transition: transform .25s ease, border-color .25s ease, background .25s ease;
  position: relative;
  overflow: hidden;
}
.card::after { content:""; position: absolute; inset: auto -80px -120px auto; width: 190px; height: 190px; border-radius: 50%; background: rgba(0,212,255,.12); filter: blur(18px); }
.card:hover { transform: translateY(-6px); border-color: rgba(255,255,255,.28); background: linear-gradient(180deg, rgba(255,255,255,.13), rgba(255,255,255,.055)); }
.icon { width: 52px; height: 52px; border-radius: 18px; display: grid; place-items: center; background: linear-gradient(135deg, rgba(124,92,255,.95), rgba(0,212,255,.95)); font-weight: 900; font-size: 22px; box-shadow: 0 16px 38px rgba(0,0,0,.24); }
.card h3 { font-size: 24px; letter-spacing: -.035em; margin: 24px 0 10px; }
.card ul { padding-left: 18px; color: var(--muted); line-height: 1.8; margin: 18px 0 0; }

.process { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; counter-reset: step; }
.step { counter-increment: step; padding: 24px; border: 1px solid var(--line); border-radius: 24px; background: rgba(255,255,255,.06); }
.step::before { content: counter(step, decimal-leading-zero); display: inline-grid; place-items: center; width: 46px; height: 46px; border-radius: 16px; background: rgba(255,255,255,.11); color: #fff; font-weight: 900; }
.step h3 { margin: 20px 0 8px; }

.cta-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 28px;
  padding: clamp(28px, 6vw, 54px);
  border: 1px solid rgba(255,255,255,.17);
  border-radius: 34px;
  background:
    radial-gradient(circle at 10% 10%, rgba(124,92,255,.34), transparent 32%),
    radial-gradient(circle at 90% 10%, rgba(52,232,158,.18), transparent 28%),
    linear-gradient(135deg, rgba(255,255,255,.13), rgba(255,255,255,.055));
  box-shadow: var(--shadow);
}
.cta-panel h2 { font-size: clamp(32px, 5vw, 54px); line-height: 1; letter-spacing: -.06em; margin: 0 0 12px; }
.cta-panel p { margin: 0; max-width: 680px; }

.page-hero { padding: 72px 0 34px; }
.page-hero .lead { max-width: 790px; }
.page-hero.center { text-align: center; }
.page-hero.center .lead { margin-inline: auto; }

.service-list { display: grid; gap: 18px; }
.service-row { display: grid; grid-template-columns: .85fr 1.15fr auto; gap: 28px; align-items: center; padding: 28px; border: 1px solid var(--line); border-radius: 26px; background: rgba(255,255,255,.065); }
.service-row h3 { font-size: clamp(24px, 3vw, 36px); letter-spacing: -.05em; margin: 0; }
.service-tags { display: flex; gap: 8px; flex-wrap: wrap; }
.tag { padding: 8px 10px; border: 1px solid var(--line); border-radius: 999px; color: #DCE7FE; font-weight: 700; font-size: 13px; background: rgba(255,255,255,.06); }

.work-filter { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 28px; }
.filter-btn { border: 1px solid var(--line); background: rgba(255,255,255,.065); color: #fff; padding: 10px 14px; border-radius: 999px; font-weight: 800; }
.filter-btn.active { background: linear-gradient(135deg, var(--brand), var(--brand-2)); border-color: transparent; }
.work-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.work-card { border: 1px solid var(--line); border-radius: 28px; background: rgba(255,255,255,.07); overflow: hidden; transition: .25s ease; }
.work-card:hover { transform: translateY(-6px); border-color: rgba(255,255,255,.28); }
.work-art { min-height: 220px; background: linear-gradient(135deg, rgba(124,92,255,.8), rgba(0,212,255,.45)); padding: 18px; position: relative; overflow: hidden; }
.work-art::before, .work-art::after { content:""; position:absolute; border-radius: 28px; background: rgba(255,255,255,.20); }
.work-art::before { width: 70%; height: 46px; left: 18px; top: 22px; }
.work-art::after { width: 52%; height: 90px; right: 18px; bottom: 18px; }
.work-body { padding: 24px; }
.work-body h3 { margin: 0 0 8px; font-size: 24px; letter-spacing: -.035em; }
.work-meta { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 18px; }

.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; align-items: center; }
.about-card { border: 1px solid var(--line); border-radius: 32px; background: rgba(255,255,255,.07); padding: 34px; }
.values { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin-top: 22px; }
.value { padding: 18px; border-radius: 20px; background: rgba(255,255,255,.07); border: 1px solid var(--line); }
.value strong { display: block; margin-bottom: 6px; }
.team-visual { min-height: 520px; border: 1px solid var(--line); border-radius: 34px; background: radial-gradient(circle at 20% 10%, rgba(124,92,255,.45), transparent 34%), linear-gradient(135deg, rgba(255,255,255,.12), rgba(255,255,255,.045)); position: relative; overflow: hidden; }
.profile-bubble { position: absolute; border-radius: 50%; background: linear-gradient(135deg, var(--brand), var(--brand-2)); border: 8px solid rgba(255,255,255,.13); box-shadow: var(--shadow); }
.profile-bubble.one { width: 154px; height: 154px; top: 70px; left: 80px; }
.profile-bubble.two { width: 210px; height: 210px; top: 178px; right: 80px; background: linear-gradient(135deg, var(--brand-2), var(--brand-3)); }
.profile-bubble.three { width: 124px; height: 124px; bottom: 82px; left: 128px; background: linear-gradient(135deg, #FF7A90, var(--brand)); }

.contact-grid { display: grid; grid-template-columns: .86fr 1.14fr; gap: 26px; align-items: start; }
.contact-info { display: grid; gap: 16px; }
.info-card { padding: 24px; border: 1px solid var(--line); border-radius: 24px; background: rgba(255,255,255,.065); }
.info-card h3 { margin: 0 0 8px; }
.form-card { border: 1px solid var(--line); border-radius: 30px; background: rgba(255,255,255,.08); padding: 28px; box-shadow: var(--shadow); }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.form-group { display: grid; gap: 8px; }
.form-group.full { grid-column: 1 / -1; }
label { color: #E8EEFF; font-size: 14px; font-weight: 800; }
input, select, textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(4,7,14,.62);
  color: #fff;
  border-radius: 16px;
  padding: 14px 15px;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
input:focus, select:focus, textarea:focus { border-color: rgba(0,212,255,.85); box-shadow: 0 0 0 4px rgba(0,212,255,.13); background: rgba(7,10,18,.86); }
textarea { min-height: 130px; resize: vertical; }
.form-note { font-size: 13px; color: var(--muted); line-height: 1.55; }
.form-status { min-height: 22px; margin-top: 12px; color: #CFE8FF; font-weight: 800; }
.hidden-field { position: absolute !important; left: -99999px !important; width: 1px !important; height: 1px !important; opacity: 0 !important; pointer-events: none !important; }

.footer { padding: 48px 0 110px; border-top: 1px solid rgba(255,255,255,.09); background: rgba(0,0,0,.15); }
.footer-grid { display: grid; grid-template-columns: 1fr auto; gap: 30px; align-items: start; }
.footer-links { display: flex; gap: 14px; flex-wrap: wrap; color: var(--muted); font-weight: 700; }
.footer p { color: var(--muted); max-width: 540px; line-height: 1.7; }
.copyright { margin-top: 30px; color: #7F8AA5; font-size: 14px; }

.mobile-bottom-nav { display: none; }

.modal-backdrop { position: fixed; inset: 0; background: rgba(0,0,0,.62); backdrop-filter: blur(10px); display: none; align-items: center; justify-content: center; z-index: 100; padding: 22px; }
.modal-backdrop.show { display: flex; }
.quote-modal { width: min(100%, 760px); max-height: min(92vh, 900px); overflow: auto; border: 1px solid var(--line); border-radius: 32px; background: #0B1020; box-shadow: 0 32px 100px rgba(0,0,0,.65); position: relative; }
.modal-head { padding: 26px 26px 0; display: flex; justify-content: space-between; gap: 16px; align-items: start; }
.modal-head h2 { margin: 0; font-size: clamp(28px, 4vw, 44px); letter-spacing: -.05em; }
.close-modal { width: 44px; height: 44px; border: 1px solid var(--line); border-radius: 16px; background: rgba(255,255,255,.08); color: #fff; font-size: 24px; }
.modal-body { padding: 22px 26px 26px; }

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

@media (max-width: 1040px) {
  .hero-grid, .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .hero-visual { min-height: 520px; }
  .visual-card.main { left: 0; }
  .cards-grid, .work-grid { grid-template-columns: repeat(2, 1fr); }
  .process { grid-template-columns: repeat(2, 1fr); }
  .service-row { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 820px) {
  .container { width: min(100% - 28px, var(--max)); }
  .header { border-bottom: 0; }
  .nav { height: 68px; }
  .nav-links {
    position: fixed;
    top: 76px;
    left: 14px;
    right: 14px;
    display: none;
    flex-direction: column;
    border-radius: 24px;
    padding: 12px;
    background: rgba(12,17,31,.96);
    box-shadow: var(--shadow);
  }
  .nav-links.open { display: flex; }
  .nav-link { width: 100%; text-align: center; padding: 13px; }
  .nav-actions .btn { display: none; }
  .menu-btn { display: block; }
  .hero { padding-top: 58px; }
  .hero h1, .page-hero h1 { font-size: clamp(44px, 14vw, 72px); }
  .hero-actions .btn { width: 100%; }
  .hero-visual { min-height: 450px; }
  .visual-card.main { min-height: 380px; }
  .visual-card.floating { width: 190px; bottom: 38px; }
  .visual-card.mini { width: 180px; }
  .mock-title { font-size: 26px; }
  .mock-grid div { height: 64px; }
  .section { padding: 70px 0; }
  .section-head { display: block; }
  .cards-grid, .work-grid, .process, .stats-grid, .values { grid-template-columns: 1fr; }
  .cta-panel { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .mobile-bottom-nav {
    display: grid;
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 12px;
    grid-template-columns: repeat(5, 1fr);
    gap: 6px;
    padding: 9px;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 24px;
    background: rgba(9,13,24,.88);
    backdrop-filter: blur(22px);
    z-index: 49;
    box-shadow: 0 18px 60px rgba(0,0,0,.42);
  }
  .mobile-bottom-nav a, .mobile-bottom-nav button {
    border: 0;
    background: transparent;
    color: #C5D1EA;
    display: grid;
    gap: 3px;
    place-items: center;
    min-height: 48px;
    border-radius: 17px;
    font-size: 11px;
    font-weight: 800;
  }
  .mobile-bottom-nav .active, .mobile-bottom-nav button:hover, .mobile-bottom-nav a:hover { background: rgba(255,255,255,.10); color: #fff; }
  .quote-modal { border-radius: 28px 28px 0 0; margin-top: auto; max-height: 88vh; }
  .modal-backdrop { align-items: end; padding: 0; }
}

@media (max-width: 520px) {
  .logo img { height: 34px; }
  .logo-text { font-size: 17px; }
  .trust-row { display: grid; grid-template-columns: 1fr 1fr; }
  .trust-pill { text-align: center; font-size: 12px; padding: 9px 10px; }
  .card, .form-card, .about-card { padding: 22px; }
  .visual-card.mini { display: none; }
  .work-art { min-height: 185px; }
}
