:root {
  --bg: #090a0f;
  --bg-2: #101119;
  --panel: rgba(255,255,255,.055);
  --panel-2: rgba(255,255,255,.08);
  --line: rgba(255,255,255,.12);
  --text: #f7f7fb;
  --muted: #b7b7c6;
  --cyan: #36d6e7;
  --magenta: #ec4faf;
  --amber: #f7b84a;
  --radius: 24px;
  --radius-sm: 16px;
  --shadow: 0 24px 80px rgba(0,0,0,.34);
  --shell: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background:
    radial-gradient(circle at 12% 4%, rgba(54,214,231,.08), transparent 28%),
    radial-gradient(circle at 84% 18%, rgba(236,79,175,.08), transparent 30%),
    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;
}

body.menu-open,
body.lightbox-open { overflow: hidden; }

::selection { background: rgba(236,79,175,.35); color: #fff; }
a { color: inherit; }
img { display: block; max-width: 100%; }
button, a { -webkit-tap-highlight-color: transparent; }

.shell { width: min(var(--shell), calc(100% - 40px)); margin-inline: auto; }
.section-pad { padding: 110px 0; position: relative; }

.ambient {
  position: fixed;
  width: 360px;
  height: 360px;
  border-radius: 999px;
  filter: blur(100px);
  opacity: .12;
  pointer-events: none;
  z-index: -1;
}
.ambient-a { background: var(--cyan); left: -180px; top: 22%; }
.ambient-b { background: var(--magenta); right: -220px; bottom: 8%; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid transparent;
  transition: background .25s ease, border-color .25s ease, backdrop-filter .25s ease;
}
.site-header.scrolled {
  background: rgba(9,10,15,.78);
  border-color: var(--line);
  backdrop-filter: blur(20px);
}
.nav-wrap { height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { text-decoration: none; display: inline-flex; align-items: center; gap: 10px; letter-spacing: .12em; font-size: .88rem; font-weight: 700; white-space: nowrap; }
.brand strong { font-weight: 850; }
.brand-mark { display: inline-grid; grid-template-columns: repeat(3, 6px); gap: 3px; transform: skew(-14deg); }
.brand-mark i { width: 6px; height: 22px; border-radius: 2px; display: block; }
.brand-mark i:nth-child(1) { background: var(--cyan); }
.brand-mark i:nth-child(2) { background: var(--magenta); }
.brand-mark i:nth-child(3) { background: var(--amber); }

.site-nav { display: flex; align-items: center; gap: 28px; }
.site-nav a { color: var(--muted); text-decoration: none; font-size: .92rem; font-weight: 650; position: relative; transition: color .2s ease; }
.site-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -8px; height: 2px; background: linear-gradient(90deg,var(--cyan),var(--magenta)); transition: right .25s ease; }
.site-nav a:hover,
.site-nav a.active { color: #fff; }
.site-nav a:hover::after,
.site-nav a.active::after { right: 0; }

.menu-toggle { display: none; width: 44px; height: 44px; padding: 0; border: 1px solid var(--line); background: var(--panel); border-radius: 12px; align-items: center; justify-content: center; flex-direction: column; gap: 5px; cursor: pointer; }
.menu-toggle span { width: 19px; height: 2px; background: #fff; border-radius: 5px; transition: .25s ease; }

.hero { min-height: calc(100vh - 78px); display: grid; align-items: center; padding-top: 70px; }
.hero-grid { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: 70px; align-items: center; }
.eyebrow { display: inline-flex; align-items: center; gap: 9px; color: #d8d8e4; text-transform: uppercase; font-size: .74rem; font-weight: 800; letter-spacing: .2em; }
.eyebrow::before { content: ""; width: 28px; height: 2px; background: linear-gradient(90deg,var(--cyan),var(--magenta)); }
.hero h1,
.section-heading h2,
.feature-copy h2,
.card-copy h2,
.custom-banner h2,
.subheading h2 { margin: 16px 0 18px; line-height: .96; letter-spacing: -.055em; font-weight: 850; }
.hero h1 { font-size: clamp(4rem, 7.4vw, 7rem); }
.hero h1 span,
.section-heading h2 span,
.feature-copy h2 span,
.custom-banner h2 span { color: transparent; background: linear-gradient(90deg,var(--cyan),var(--magenta) 56%,var(--amber)); background-clip: text; -webkit-background-clip: text; }
.hero-statement { max-width: 560px; color: var(--muted); font-size: clamp(1.15rem, 2vw, 1.48rem); margin: 0 0 32px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.btn { min-height: 50px; display: inline-flex; align-items: center; justify-content: center; gap: 10px; border-radius: 999px; padding: 0 22px; text-decoration: none; font-weight: 800; font-size: .9rem; border: 1px solid transparent; transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; }
.btn:hover { transform: translateY(-2px); }
.btn svg { width: 18px; height: 18px; fill: currentColor; }
.btn-primary { background: linear-gradient(112deg,var(--cyan),var(--magenta)); color: #08090e; box-shadow: 0 12px 34px rgba(54,214,231,.13), 0 12px 34px rgba(236,79,175,.12); }
.btn-primary:hover { box-shadow: 0 18px 42px rgba(54,214,231,.18), 0 18px 42px rgba(236,79,175,.16); }
.btn-ghost { border-color: var(--line); background: var(--panel); color: #fff; }
.btn-ghost:hover { border-color: rgba(255,255,255,.28); }
.hero-meta { display: flex; flex-wrap: wrap; gap: 36px; margin-top: 44px; padding-top: 24px; border-top: 1px solid var(--line); }
.hero-meta div { display: grid; gap: 4px; }
.hero-meta small { color: var(--muted); }
.hero-meta strong { font-size: .95rem; }

.hero-media { position: relative; min-height: 610px; }
.photo-frame {
  margin: 0;
  position: relative;
  background: rgba(255,255,255,.035);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow), 0 0 38px rgba(255,255,255,.025);
}
.photo-frame::after {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  box-shadow: inset 0 0 28px rgba(9,10,15,.14);
  pointer-events: none;
}
.photo-frame img { width: 100%; height: 100%; object-fit: contain; background: #0d0e14; }
.hero-main { position: absolute; right: 0; top: 34px; width: 78%; height: 465px; transform: rotate(1.8deg); }
.hero-small { position: absolute; width: 34%; height: 215px; z-index: 2; }
.hero-small-a { left: 0; bottom: 24px; transform: rotate(-3deg); }
.hero-small-b { right: 2%; bottom: -5px; transform: rotate(2.5deg); }
.hero-chip { position: absolute; left: 5%; top: 8%; z-index: 4; border-radius: 999px; background: rgba(9,10,15,.78); border: 1px solid var(--line); backdrop-filter: blur(15px); padding: 11px 16px; font-weight: 800; font-size: .8rem; box-shadow: var(--shadow); }

.marquee { border-block: 1px solid var(--line); background: rgba(255,255,255,.02); overflow: hidden; }
.marquee-track { width: max-content; display: flex; gap: 24px; align-items: center; padding: 17px 0; color: #d3d3dd; font-size: .82rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; animation: marquee 26s linear infinite; }
.marquee-track b { color: var(--magenta); }
@keyframes marquee { to { transform: translateX(-50%); } }

.intro-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 70px; align-items: center; }
.section-heading h2,
.feature-copy h2,
.custom-banner h2 { font-size: clamp(2.8rem, 5vw, 5.4rem); }
.section-heading p,
.feature-copy p,
.card-copy p { color: var(--muted); font-size: 1.05rem; }
.wide-photo { min-height: 430px; }
.wide-photo img { aspect-ratio: 16/9; }

.services-section { background: linear-gradient(180deg, transparent, rgba(255,255,255,.018), transparent); }
.centered { text-align: center; max-width: 760px; margin: 0 auto 46px; }
.centered .eyebrow { justify-content: center; }
.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; }
.service-card { min-height: 185px; padding: 24px; display: flex; flex-direction: column; justify-content: space-between; border: 1px solid var(--line); border-radius: var(--radius-sm); background: linear-gradient(145deg,rgba(255,255,255,.05),rgba(255,255,255,.018)); transition: transform .25s ease, border-color .25s ease, background .25s ease; }
.service-card:hover { transform: translateY(-6px); border-color: rgba(54,214,231,.36); background: linear-gradient(145deg,rgba(54,214,231,.07),rgba(236,79,175,.045)); }
.service-card span { font-family: ui-monospace, SFMono-Regular, Menlo, monospace; color: #8d8e9d; font-size: .74rem; }
.service-card h3 { margin: 0; font-size: 1.45rem; letter-spacing: -.03em; }
.service-card p { margin: 5px 0 0; color: var(--muted); }
.service-card-wide { grid-column: span 3; min-height: 135px; flex-direction: row; align-items: flex-end; }
.subheading { margin: 86px 0 30px; }
.subheading h2 { font-size: clamp(2.3rem,4vw,4rem); }
.more-services { display: grid; grid-template-columns: repeat(4,1fr); gap: 12px; }
.more-services div { min-height: 94px; display: flex; align-items: center; padding: 20px; border-radius: 16px; border: 1px solid var(--line); background: var(--panel); font-weight: 750; }

.visual-feature { overflow: hidden; }
.visual-feature.alt { background: rgba(255,255,255,.018); }
.feature-grid { display: grid; grid-template-columns: .7fr 1.3fr; gap: 60px; align-items: center; }
.feature-grid.reverse { grid-template-columns: 1.3fr .7fr; }
.feature-grid.reverse .feature-copy { order: 2; }
.feature-grid.reverse .feature-gallery { order: 1; }
.feature-gallery { min-height: 520px; display: grid; grid-template-columns: 1.15fr .85fr; grid-template-rows: 1fr 1fr; gap: 14px; }
.feature-gallery figure { min-height: 0; }
.feature-gallery .tall { grid-row: span 2; }
.feature-copy h2 { font-size: clamp(2.8rem,5vw,5rem); }

.card-grid { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 70px; }
.business-card { padding: 10px; background: rgba(255,255,255,.05); }
.business-card img { aspect-ratio: auto; }
.card-copy h2 { font-size: clamp(2rem,4vw,4.2rem); }
.card-copy p { margin-top: 26px; }

.promo-grid { margin-top: 38px; display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; }
.promo-grid figure { aspect-ratio: 1/1; }

.gallery-heading { display: flex; align-items: end; justify-content: space-between; gap: 30px; margin-bottom: 40px; }
.gallery-heading p { max-width: 360px; margin-bottom: 24px; }
.gallery { columns: 3; column-gap: 14px; }
.gallery-item { width: 100%; margin: 0 0 14px; padding: 8px; display: block; break-inside: avoid; border: 1px solid var(--line); border-radius: var(--radius-sm); background: rgba(255,255,255,.035); cursor: zoom-in; overflow: hidden; transition: transform .24s ease, border-color .24s ease, box-shadow .24s ease; }
.gallery-item:hover { transform: translateY(-4px); border-color: rgba(236,79,175,.35); box-shadow: 0 16px 40px rgba(0,0,0,.28); }
.gallery-item img { width: 100%; height: auto; border-radius: 11px; }

.coverage-section { border-block: 1px solid var(--line); background: linear-gradient(115deg,rgba(54,214,231,.04),rgba(236,79,175,.035)); }
.coverage-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 70px; align-items: start; }
.coverage-list { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.coverage-list span { padding: 22px; border: 1px solid var(--line); background: rgba(9,10,15,.35); border-radius: 15px; font-size: 1.05rem; font-weight: 750; }
.coverage-note { grid-column: 1/-1; padding: 26px 30px; border-radius: 18px; border: 1px solid rgba(247,184,74,.23); background: rgba(247,184,74,.055); font-size: clamp(1.15rem,2vw,1.55rem); font-weight: 750; }

.custom-banner { text-align: center; }
.custom-banner .shell { max-width: 900px; }
.custom-banner .eyebrow { justify-content: center; }
.custom-banner h2 { margin-bottom: 34px; }

.contact-section { padding-top: 80px; }
.contact-grid { display: grid; grid-template-columns: .65fr 1.35fr; gap: 70px; align-items: start; }
.contact-cards { display: grid; gap: 12px; }
.contact-card { text-decoration: none; min-height: 130px; padding: 24px 26px; display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 6px 18px; border: 1px solid var(--line); border-radius: 18px; background: var(--panel); }
.contact-card small { color: var(--muted); }
.contact-card strong { grid-row: 2; grid-column: 1; font-size: clamp(1.25rem,2vw,1.8rem); }
.contact-card span { grid-row: 1 / span 2; grid-column: 2; font-weight: 800; color: var(--cyan); }
a.contact-card { transition: transform .2s ease, border-color .2s ease; }
a.contact-card:hover { transform: translateX(4px); border-color: rgba(54,214,231,.34); }

.site-footer { border-top: 1px solid var(--line); padding: 42px 0 110px; }
.footer-grid { display: flex; justify-content: space-between; gap: 32px; }
.footer-info { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 12px 22px; color: var(--muted); font-size: .86rem; }
.footer-info a { text-decoration: none; }

.floating-call { position: fixed; z-index: 80; right: max(18px, env(safe-area-inset-right)); bottom: max(18px, env(safe-area-inset-bottom)); width: 56px; height: 56px; display: none; place-items: center; border-radius: 50%; background: linear-gradient(135deg,var(--cyan),var(--magenta)); color: #07080c; box-shadow: 0 12px 34px rgba(0,0,0,.38); }
.floating-call svg { width: 24px; height: 24px; fill: currentColor; }

.lightbox { position: fixed; inset: 0; z-index: 200; display: grid; place-items: center; background: rgba(5,6,9,.94); backdrop-filter: blur(18px); opacity: 0; visibility: hidden; transition: opacity .22s ease, visibility .22s ease; }
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox-stage { width: min(86vw, 1200px); height: 82vh; display: grid; place-items: center; }
.lightbox-stage img { max-width: 100%; max-height: 100%; object-fit: contain; border: 1px solid rgba(255,255,255,.18); border-radius: 14px; box-shadow: var(--shadow); }
.lightbox-close,
.lightbox-nav { position: absolute; border: 1px solid var(--line); background: rgba(255,255,255,.07); color: #fff; cursor: pointer; backdrop-filter: blur(10px); }
.lightbox-close { top: 22px; right: 22px; width: 48px; height: 48px; border-radius: 50%; font-size: 1.8rem; }
.lightbox-nav { top: 50%; transform: translateY(-50%); width: 50px; height: 64px; border-radius: 16px; font-size: 2.1rem; }
.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }
.lightbox-count { position: absolute; bottom: 22px; left: 50%; transform: translateX(-50%); color: #c9c9d3; font-size: .83rem; letter-spacing: .08em; }

.reveal { opacity: 1; transform: none; transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal.in-view { opacity: 1; transform: none; }

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

@media (max-width: 960px) {
  .section-pad { padding: 84px 0; }
  .hero { min-height: auto; }
  .hero-grid,
  .intro-grid,
  .feature-grid,
  .feature-grid.reverse,
  .card-grid,
  .coverage-grid,
  .contact-grid { grid-template-columns: 1fr; gap: 46px; }
  .feature-grid.reverse .feature-copy,
  .feature-grid.reverse .feature-gallery { order: initial; }
  .hero-media { min-height: 520px; }
  .hero-main { height: 400px; }
  .services-grid { grid-template-columns: repeat(2,1fr); }
  .service-card-wide { grid-column: span 2; }
  .more-services { grid-template-columns: repeat(2,1fr); }
  .promo-grid { grid-template-columns: repeat(2,1fr); }
  .coverage-note { grid-column: auto; }
  .gallery { columns: 2; }
  .footer-grid { flex-direction: column; }
  .footer-info { justify-content: flex-start; }
}

@media (max-width: 760px) {
  .shell { width: min(100% - 28px, var(--shell)); }
  .nav-wrap { height: 68px; }
  .menu-toggle { display: flex; z-index: 2; }
  .menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .site-nav { position: fixed; inset: 68px 0 auto; padding: 24px 20px 30px; background: rgba(9,10,15,.97); border-bottom: 1px solid var(--line); backdrop-filter: blur(24px); display: grid; gap: 3px; transform: translateY(-130%); transition: transform .3s cubic-bezier(.2,.7,.2,1); }
  .site-nav.open { transform: translateY(0); }
  .site-nav a { padding: 13px 12px; border-radius: 12px; }
  .site-nav a::after { display: none; }
  .site-nav a:hover,
  .site-nav a.active { background: var(--panel); }

  .hero { padding-top: 54px; padding-bottom: 78px; }
  .hero h1 { font-size: clamp(3.5rem,18vw,5.3rem); }
  .hero-meta { gap: 22px; }
  .hero-media { min-height: 430px; }
  .hero-main { width: 86%; height: 320px; top: 30px; }
  .hero-small { width: 38%; height: 155px; }
  .hero-small-a { bottom: 5px; }
  .hero-small-b { bottom: 0; }
  .hero-chip { top: 2%; left: 2%; font-size: .72rem; }

  .section-heading h2,
  .feature-copy h2,
  .custom-banner h2 { font-size: clamp(2.55rem,12vw,4rem); }
  .wide-photo { min-height: 260px; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 135px; }
  .service-card-wide { grid-column: auto; }
  .more-services { grid-template-columns: 1fr 1fr; }
  .more-services div { min-height: 84px; padding: 16px; font-size: .92rem; }
  .feature-gallery { min-height: 430px; gap: 9px; }
  .promo-grid { gap: 9px; }
  .gallery-heading { display: block; }
  .gallery-heading p { margin: 12px 0 0; }
  .coverage-list { grid-template-columns: 1fr; }
  .gallery { columns: 2; column-gap: 8px; }
  .gallery-item { margin-bottom: 8px; padding: 5px; border-radius: 12px; }
  .gallery-item img { border-radius: 8px; }
  .contact-card { grid-template-columns: 1fr; min-height: 116px; }
  .contact-card strong,
  .contact-card span { grid-row: auto; grid-column: auto; }
  .floating-call { display: grid; }
  .lightbox-stage { width: 94vw; height: 76vh; }
  .lightbox-nav { width: 44px; height: 54px; border-radius: 14px; top: auto; bottom: 20px; transform: none; }
  .lightbox-prev { left: 18px; }
  .lightbox-next { right: 18px; }
  .lightbox-count { bottom: 38px; }
}

@media (max-width: 460px) {
  .section-pad { padding: 70px 0; }
  .brand { font-size: .76rem; letter-spacing: .09em; }
  .hero-actions { display: grid; }
  .btn { width: 100%; }
  .hero-media { min-height: 380px; }
  .hero-main { width: 92%; height: 285px; }
  .hero-small { height: 135px; }
  .more-services { grid-template-columns: 1fr; }
  .feature-gallery { min-height: 375px; }
  .gallery { columns: 1; }
  .promo-grid { grid-template-columns: 1fr; }
}
