:root {
  --bg: #020404;
  --panel: rgba(10, 18, 18, 0.74);
  --panel-strong: rgba(12, 24, 24, 0.92);
  --line: rgba(216, 255, 247, 0.14);
  --text: #f6fbfb;
  --muted: #9eb2b2;
  --cyan: #26f3ff;
  --mint: #88ffb7;
  --gold: #ffe27a;
  --danger: #ff6f8b;
  --shadow: 0 24px 90px rgba(0, 0, 0, 0.5);
  --container-radius: 20px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--bg);
  scroll-behavior: smooth;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--bg);
}

body {
  margin: 0;
  min-width: 320px;
  background:
    linear-gradient(rgba(38, 243, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(136, 255, 183, 0.04) 1px, transparent 1px),
    linear-gradient(140deg, #020404 0%, #061111 45%, #040706 100%);
  background-size: 72px 72px, 72px 72px, auto;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    linear-gradient(110deg, rgba(38, 243, 255, 0.08), transparent 35%),
    linear-gradient(290deg, rgba(255, 226, 122, 0.07), transparent 42%);
  pointer-events: none;
}

main {
  display: flex;
  flex-direction: column;
  background: #ffffff;
}

.hero-section {
  order: 1;
}

.why-section {
  order: 2;
}

.industries-ambient-shell {
  order: 3;
}

.services-ambient-shell {
  order: 4;
}

.service-details-section {
  order: 5;
}

.featured-section {
  order: 6;
}

.start-section {
  order: 7;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
video {
  display: block;
}

.site-header {
  position: fixed;
  top: 8px;
  left: 0;
  right: 0;
  z-index: 20;
  border-bottom: 0;
  background: transparent;
  backdrop-filter: none;
}

.facebook-link {
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(38, 243, 255, 0.45);
  border-radius: 50%;
  color: var(--cyan);
  background: rgba(38, 243, 255, 0.07);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.facebook-link:hover,
.facebook-link:focus-visible {
  transform: translateY(-2px);
  border-color: var(--mint);
  background: rgba(136, 255, 183, 0.12);
  outline: none;
}

.facebook-link svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  max-width: none;
  margin: 0;
  padding: 4px clamp(10px, 1.2vw, 16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: max-content;
  gap: 8px;
  font-size: clamp(0.9rem, 1.8vw, 1.05rem);
  font-weight: 800;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.9);
}

.brand img {
  width: auto;
  height: 1.35em;
  filter: drop-shadow(0 2px 12px rgba(0, 0, 0, 0.58));
}

.brand-mark {
  width: 14px;
  height: 14px;
  border: 2px solid var(--cyan);
  border-left-color: var(--gold);
  transform: rotate(45deg);
  box-shadow: 0 0 24px rgba(38, 243, 255, 0.7);
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 6px;
  margin-left: auto;
}

.nav-links a {
  min-height: 38px;
  padding: 11px 13px;
  border: 1px solid transparent;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease;
  white-space: nowrap;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.9);
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--text);
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.04);
  outline: none;
}

.nav-links .nav-cta {
  border-color: rgba(38, 243, 255, 0.8);
  color: #001018;
  background: var(--cyan);
  box-shadow: 0 0 24px rgba(38, 243, 255, 0.28);
  text-shadow: none;
}

.nav-links .nav-cta:hover,
.nav-links .nav-cta:focus-visible {
  border-color: var(--mint);
  color: #001018;
  background: var(--mint);
}

.nav-facebook {
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  min-height: 38px;
  padding: 0;
  color: var(--cyan);
}

.page-section {
  position: relative;
  max-width: 1240px;
  margin: 0 auto;
  padding: clamp(72px, 9vw, 128px) clamp(16px, 4vw, 56px);
  scroll-margin-top: 0;
}

.hero-section {
  max-width: none;
  width: 100%;
  margin: 0;
  align-self: stretch;
  padding: 0;
  background: transparent;
  scroll-margin-top: 0;
}

.hero-stage {
  position: relative;
  display: grid;
  min-height: 100svh;
  overflow: hidden;
  background: #000;
  border-bottom: 1px solid var(--line);
}

.hero-video {
  width: 100%;
  height: 100svh;
  min-height: 100svh;
  object-fit: cover;
  object-position: center;
  background: #000;
}

.hero-copy {
  position: absolute;
  top: 52%;
  left: clamp(28px, 5vw, 96px);
  z-index: 2;
  width: min(650px, calc(100% - 56px));
  transform: translateY(-50%);
  text-align: left;
  text-shadow: 0 3px 22px rgba(0, 0, 0, 0.94);
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 26px;
  color: #66c9ff;
  font-size: clamp(0.72rem, 1vw, 0.9rem);
  font-weight: 900;
}

.hero-eyebrow::before {
  width: 34px;
  height: 1px;
  content: "";
  background: #66c9ff;
}

.hero-copy h1 {
  max-width: 12ch;
  color: #ffffff;
  font-size: clamp(3.25rem, 6vw, 6.6rem);
  line-height: 0.96;
}

.hero-copy h1 span {
  color: #2e8cff;
}

.hero-lead {
  max-width: 610px;
  margin: 26px 0 0;
  color: #dbe6f3;
  font-size: clamp(1rem, 1.45vw, 1.22rem);
  line-height: 1.65;
}

.hero-hook {
  max-width: 560px;
  margin: 12px 0 0;
  color: #8fe9ff;
  font-size: clamp(0.9rem, 1.1vw, 1rem);
  font-weight: 800;
  line-height: 1.55;
}

.hero-actions .button {
  min-height: 56px;
  padding-inline: 26px;
  border-radius: 6px;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.hero-actions .button-primary {
  color: #ffffff;
  background: #1478ff;
  box-shadow: 0 16px 38px rgba(20, 120, 255, 0.34);
}

.hero-actions .button-secondary {
  border-color: rgba(74, 150, 255, 0.8);
  background: rgba(2, 10, 22, 0.58);
}

.why-section {
  max-width: none;
  padding: clamp(64px, 8vw, 108px) clamp(18px, 5vw, 72px);
  background: #ffffff;
  color: #03151d;
}

.why-content {
  width: min(1120px, 100%);
  margin: 0 auto;
  padding: clamp(34px, 5vw, 70px);
  border: 1px solid rgba(38, 153, 190, 0.2);
  border-radius: var(--container-radius);
  overflow: hidden;
  background:
    linear-gradient(135deg, #ffffff 0%, #f4fbff 56%, #eaf8ff 100%),
    linear-gradient(rgba(38, 153, 190, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(38, 153, 190, 0.07) 1px, transparent 1px);
  background-size: auto, 58px 58px, 58px 58px;
  box-shadow: 0 24px 70px rgba(3, 34, 46, 0.1);
}

.why-section .eyebrow {
  color: #063745;
}

.why-section h1 {
  max-width: 980px;
  margin: 0;
  color: #011016;
  font-size: clamp(2.3rem, 6vw, 5.7rem);
  line-height: 0.96;
}

.why-lead {
  max-width: 780px;
  margin: 24px 0 0;
  color: #06212c;
  font-size: clamp(1.05rem, 1.8vw, 1.3rem);
  line-height: 1.65;
}

.why-lead mark {
  color: #001018;
  background: linear-gradient(90deg, rgba(38, 243, 255, 0.42), rgba(136, 255, 183, 0.42));
  padding: 0.08em 0.2em;
}

.before-after {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: clamp(28px, 5vw, 48px);
}

.before-after article {
  min-height: 150px;
  padding: clamp(20px, 3vw, 28px);
  border: 1px solid rgba(1, 16, 22, 0.2);
  background: rgba(246, 251, 251, 0.28);
  box-shadow: 0 18px 48px rgba(1, 16, 22, 0.14);
}

.before-after span {
  display: inline-flex;
  margin-bottom: 14px;
  color: #063745;
  font-size: 0.78rem;
  font-weight: 900;
}

.before-after p {
  margin: 0;
  color: #03151d;
  font-size: clamp(1rem, 1.8vw, 1.22rem);
  font-weight: 800;
  line-height: 1.45;
}

.featured-section {
  max-width: none;
  width: 100%;
  margin: clamp(40px, 6vw, 76px) 0;
  padding: clamp(94px, 10vw, 150px) 0;
  border-block: 0;
  border-radius: 0;
  overflow: hidden;
  background:
    linear-gradient(rgba(38, 243, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(136, 255, 183, 0.025) 1px, transparent 1px),
    #03090f;
  background-size: 70px 70px, 70px 70px, auto;
}

.featured-heading,
.featured-grid {
  margin-inline: clamp(28px, 5vw, 72px);
}

.featured-heading {
  display: grid;
  width: min(900px, calc(100% - 56px));
  max-width: none;
  justify-items: center;
  margin-inline: auto;
  margin-bottom: clamp(34px, 5vw, 64px);
  text-align: center;
}

.featured-heading h2 {
  color: #ffffff;
}

.featured-heading > .eyebrow,
.project-section .eyebrow {
  margin-bottom: 18px;
  font-size: 2.28rem;
  line-height: 1.05;
}

.featured-heading > .eyebrow {
  width: 100%;
  justify-self: center;
  font-size: clamp(3.2rem, 6vw, 5.4rem);
  line-height: 0.98;
  text-align: center;
}

.featured-heading > p:last-child {
  max-width: 720px;
  margin: 22px 0 0;
  color: #a9bccb;
  font-size: clamp(1rem, 1.45vw, 1.18rem);
  line-height: 1.7;
}

.featured-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(16px, 2.4vw, 34px);
}

.featured-work {
  min-width: 0;
  border: 1px solid rgba(146, 220, 255, 0.2);
  border-radius: 8px;
  overflow: hidden;
  background: #06111b;
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.34);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.featured-work:hover,
.featured-work:focus-visible {
  transform: translateY(-6px);
  border-color: rgba(80, 194, 255, 0.72);
  box-shadow: 0 32px 82px rgba(0, 0, 0, 0.48);
  outline: none;
}

.featured-work figure {
  margin: 0;
}

.featured-work img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center;
  transition: transform 500ms ease;
}

.featured-work:hover img,
.featured-work:focus-visible img {
  transform: scale(1.025);
}

.featured-work figcaption {
  display: grid;
  gap: 7px;
  padding: 22px 24px 25px;
  text-align: left;
}

.featured-work figcaption span {
  color: #67d7ff;
  font-size: 0.72rem;
  font-weight: 900;
}

.featured-work figcaption strong {
  color: #ffffff;
  font-size: clamp(1.25rem, 2vw, 1.75rem);
}

.featured-work figcaption small {
  color: #9fb3c3;
  font-size: 0.9rem;
  font-weight: 800;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--mint);
  font-size: 0.76rem;
  font-weight: 900;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  max-width: 11ch;
  font-size: clamp(3rem, 8.6vw, 7rem);
  line-height: 0.9;
}

h2 {
  margin: 0;
  max-width: 860px;
  font-size: clamp(2rem, 4.8vw, 4.5rem);
  line-height: 0.98;
}

h3 {
  margin: 14px 0 10px;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
}

.start-copy p {
  max-width: 620px;
  color: var(--muted);
  font-size: clamp(1rem, 1.7vw, 1.14rem);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button,
.start-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 900;
  border: 1px solid transparent;
  cursor: pointer;
}

.button-primary,
.start-form button {
  color: #001010;
  background: linear-gradient(90deg, var(--cyan), var(--mint));
  box-shadow: 0 0 32px rgba(38, 243, 255, 0.24);
}

.button-secondary {
  color: var(--text);
  border-color: rgba(246, 251, 251, 0.2);
  background: rgba(255, 255, 255, 0.05);
}

.button:hover,
.button:focus-visible,
.start-form button:hover,
.start-form button:focus-visible {
  transform: translateY(-1px);
  outline: none;
}

.section-heading {
  margin-bottom: clamp(28px, 5vw, 56px);
}

.section-heading-center {
  display: grid;
  justify-items: center;
  text-align: center;
}

.split-section {
  border-bottom: 1px solid var(--line);
}

.visual-section {
  max-width: none;
  min-height: 100svh;
  padding: 0;
  overflow: hidden;
  background: #000;
  border-bottom: 1px solid var(--line);
}

.services-section,
.project-section,
.project-video-section,
.project-continuation-section {
  margin-inline: 0;
  overflow: hidden;
  border-radius: 0;
}

.background-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 1;
  background: #000;
}

.ambient-section {
  position: relative;
  isolation: isolate;
  background: #02070d;
}

.ambient-background-video {
  z-index: 0;
  opacity: 0.3;
}

.ambient-section > :not(.ambient-background-video) {
  position: relative;
  z-index: 1;
}

.section-ambient-shell {
  max-width: none;
  width: 100%;
  margin: clamp(40px, 6vw, 76px) 0;
  padding-block: clamp(48px, 6vw, 84px);
  overflow: hidden;
  border-block: 0;
  border-radius: 0;
}

.section-ambient-shell .project-section,
.section-ambient-shell .project-continuation-section {
  background: rgba(2, 7, 13, 0.72);
}

.industries-ambient-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(380px, 1.1fr);
  gap: clamp(18px, 2.5vw, 32px);
  align-items: start;
  padding: clamp(28px, 4vw, 52px);
}

.industries-ambient-shell .project-section {
  grid-column: 1;
  grid-row: 2;
  padding: clamp(32px, 4vw, 54px);
}

.industries-ambient-shell .project-section h2 {
  font-size: clamp(2.1rem, 3.2vw, 3.15rem);
  line-height: 1.02;
}

.industries-ambient-shell .project-continuation-section {
  grid-column: 2;
  grid-row: 2;
  padding: 0;
}

.industries-ambient-shell .project-video-section {
  grid-column: 1 / -1;
  grid-row: 1;
}

.service-details-section {
  max-width: none;
  margin: 0 2in clamp(40px, 6vw, 76px);
  padding: clamp(52px, 7vw, 90px) clamp(16px, 4vw, 56px);
  border-radius: var(--container-radius);
  background:
    linear-gradient(135deg, #030a10 0%, #071c28 54%, #041016 100%),
    linear-gradient(rgba(38, 243, 255, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(136, 255, 183, 0.045) 1px, transparent 1px);
  background-size: auto, 54px 54px, 54px 54px;
  border-bottom: 1px solid var(--line);
}

.service-details {
  width: min(1180px, 100%);
  margin: 0 auto;
  color: var(--text);
  text-align: center;
}

.details-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid rgba(38, 243, 255, 0.5);
  border-radius: 999px;
  color: var(--text);
  background: rgba(4, 24, 34, 0.88);
  box-shadow: 0 0 32px rgba(38, 243, 255, 0.2);
  cursor: pointer;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 900;
}

.service-video-toggle {
  position: absolute;
  right: auto;
  bottom: clamp(14px, 3vh, 34px);
  left: 50%;
  z-index: 2;
  min-height: 60px;
  padding: 0 28px;
  font-size: 0.92rem;
  transform: translateX(-50%);
}

.details-toggle:hover,
.details-toggle:focus-visible {
  border-color: var(--mint);
  outline: none;
}

.services-detail-panel[hidden] {
  display: none;
}

.services-detail-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 16px;
  overflow: visible;
  padding: clamp(16px, 3vw, 26px);
  border: 1px solid rgba(38, 243, 255, 0.22);
  background:
    linear-gradient(135deg, rgba(4, 16, 24, 0.97), rgba(7, 39, 55, 0.96)),
    linear-gradient(rgba(38, 243, 255, 0.08) 1px, transparent 1px);
  background-size: auto, 34px 34px;
  box-shadow: var(--shadow);
  text-align: left;
}

.services-detail-panel article {
  padding: clamp(16px, 2.4vw, 22px);
  border: 1px solid rgba(216, 255, 247, 0.14);
  background: rgba(255, 255, 255, 0.045);
}

.services-detail-panel h2 {
  max-width: none;
  margin: 0 0 12px;
  color: var(--cyan);
  font-size: clamp(1.05rem, 2vw, 1.45rem);
  line-height: 1.15;
}

.service-hook {
  color: var(--text);
  font-weight: 800;
}

.solution-line {
  padding: 14px 16px;
  border: 1px solid rgba(136, 255, 183, 0.22);
  background: rgba(136, 255, 183, 0.08);
}

.services-detail-panel h3 {
  margin: 16px 0 8px;
  color: var(--mint);
  font-size: 0.82rem;
  font-weight: 900;
}

.services-detail-panel p,
.services-detail-panel li {
  color: #c8dbdf;
  line-height: 1.55;
}

.services-detail-panel p {
  margin: 0;
}

.services-detail-panel ul {
  margin: 0;
  padding-left: 18px;
}

.services-detail-panel li + li {
  margin-top: 4px;
}

.services-detail-panel .offer-angle {
  margin-top: 16px;
  color: var(--text);
}

.services-detail-cta {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  padding: clamp(14px, 3vw, 24px) 0 4px;
}

.services-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: clamp(22px, 4vw, 52px);
  align-items: stretch;
}

.media-panel {
  min-height: 420px;
  border: 1px solid var(--line);
  background: #000;
  box-shadow: var(--shadow);
}

.content-video {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: contain;
  background: #000;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.service-grid article {
  min-height: 190px;
  padding: 22px;
  border: 1px solid var(--line);
  background: var(--panel);
}

.service-grid span {
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 900;
}

.service-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.project-section {
  max-width: none;
  min-height: auto;
  padding: clamp(112px, 12vw, 160px) clamp(18px, 5vw, 72px);
  border-bottom: 0;
  background: #02070d;
  color: var(--text);
}

.projects-content {
  width: min(1160px, 100%);
  margin: 0 auto;
}

.project-section .eyebrow {
  color: var(--mint);
}

.project-section h2 {
  max-width: 900px;
  color: var(--text);
}

.projects-lead {
  max-width: 720px;
  margin: 22px 0 0;
  color: #c8dbdf;
  font-size: clamp(1rem, 1.7vw, 1.18rem);
  line-height: 1.65;
}

.project-video-section {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background: #000;
  border-bottom: 1px solid rgba(38, 243, 255, 0.18);
}

.project-continuation-section {
  max-width: none;
  padding: clamp(86px, 10vw, 136px) clamp(18px, 5vw, 72px);
  border-bottom: 1px solid rgba(38, 153, 190, 0.18);
  background: #02070d;
  color: var(--text);
}

.industry-accordion-list {
  display: grid;
  gap: 10px;
}

.industry-accordion {
  border: 1px solid rgba(38, 243, 255, 0.22);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(3, 18, 28, 0.84);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.2);
}

.industry-accordion summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 52px;
  padding: 11px 16px;
  color: var(--text);
  cursor: pointer;
  list-style: none;
  font-size: clamp(0.9rem, 1.35vw, 1.08rem);
  font-weight: 900;
  transition: color 180ms ease, background 180ms ease;
}

.industry-accordion summary::-webkit-details-marker {
  display: none;
}

.industry-accordion summary::after {
  display: inline-grid;
  width: 26px;
  height: 26px;
  flex: 0 0 26px;
  place-items: center;
  margin-left: 18px;
  border: 1px solid rgba(38, 243, 255, 0.4);
  border-radius: 50%;
  color: var(--cyan);
  content: "+";
  font-size: 1.05rem;
  line-height: 1;
}

.industry-accordion[open] summary {
  border-bottom: 1px solid rgba(38, 243, 255, 0.18);
  color: var(--cyan);
  background: rgba(38, 243, 255, 0.06);
}

.industry-accordion[open] summary::after {
  content: "-";
}

.industry-accordion summary:hover,
.industry-accordion summary:focus-visible {
  color: var(--mint);
  background: rgba(136, 255, 183, 0.06);
  outline: none;
}

.industry-accordion-content {
  padding: 22px;
  text-align: left;
}

.industry-importance {
  margin: 0 0 22px;
  padding: 2px 0 2px 16px;
  border-left: 3px solid var(--cyan);
  color: #d9e9ec;
  font-size: 0.98rem;
  line-height: 1.68;
}

.industry-column-labels,
.industry-solutions li {
  display: grid;
  grid-template-columns: minmax(190px, 0.75fr) minmax(0, 1.35fr);
  gap: clamp(18px, 4vw, 48px);
}

.industry-column-labels {
  padding: 0 14px 12px;
  color: var(--mint);
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
}

.industry-solutions {
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(216, 255, 247, 0.12);
  list-style: none;
}

.industry-solutions li {
  align-items: start;
  padding: 15px 14px;
  border-bottom: 1px solid rgba(216, 255, 247, 0.1);
}

.industry-solutions strong {
  color: var(--text);
  font-size: 0.92rem;
  line-height: 1.45;
}

.industry-solutions span {
  color: #c8dbdf;
  font-size: 0.92rem;
  line-height: 1.55;
}

.industry-demo-button {
  margin-top: 24px;
}

.start-section {
  position: relative;
  max-width: none;
  width: 100%;
  margin: 0;
  align-self: stretch;
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(320px, 520px);
  gap: 20px;
  align-items: start;
  align-content: center;
  justify-content: end;
  padding-inline: clamp(24px, 7vw, 96px);
  padding-top: clamp(86px, 9vw, 116px);
  padding-bottom: clamp(56px, 7vw, 86px);
  overflow: hidden;
  color: var(--text);
  background: #02070d;
  border-top: 1px solid var(--line);
}

.start-background-video {
  z-index: 0;
}

.start-section > *:not(.start-background-video) {
  position: relative;
  z-index: 1;
}

.start-copy {
  width: 100%;
  max-width: 520px;
  justify-self: center;
  transform: translateX(-2in);
  text-align: center;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.82);
}

.start-copy h2,
.start-copy p {
  color: #f6fbfb;
}

.start-title {
  margin: 0 0 30px;
  color: var(--cyan);
  font-size: clamp(2.6rem, 5.5vw, 4.8rem);
  line-height: 0.95;
  text-align: center;
}

.start-form {
  display: grid;
  width: 100%;
  max-width: 520px;
  justify-self: center;
  transform: translateX(-2in);
  gap: 16px;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid rgba(191, 250, 255, 0.34);
  background: rgba(1, 16, 22, 0.18);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(4px);
}

.start-form label {
  display: grid;
  gap: 8px;
}

.start-form span {
  color: #bffaff;
  font-size: 0.84rem;
  font-weight: 800;
}

.start-form input,
.start-form textarea {
  width: 100%;
  min-height: 52px;
  border: 1px solid rgba(246, 251, 251, 0.32);
  border-radius: 0;
  color: #f6fbfb;
  background: rgba(0, 0, 0, 0.18);
  padding: 0 14px;
  font: inherit;
}

.start-form textarea {
  min-height: 118px;
  resize: vertical;
}

.start-form input::placeholder,
.start-form textarea::placeholder {
  color: rgba(246, 251, 251, 0.52);
}

.start-form input:focus,
.start-form textarea:focus {
  border-color: var(--cyan);
  outline: none;
  box-shadow: 0 0 0 3px rgba(38, 243, 255, 0.14);
}

.start-form button {
  width: 100%;
  margin-top: 6px;
  border: 0;
  font: inherit;
}

.form-note {
  min-height: 24px;
  margin: 0;
  color: var(--mint);
  font-size: 0.95rem;
}

.site-footer {
  padding: 22px clamp(18px, 4vw, 56px);
  border-top: 1px solid var(--line);
  background:
    linear-gradient(135deg, #02070d 0%, #041b27 46%, #020404 100%),
    linear-gradient(rgba(38, 243, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(136, 255, 183, 0.045) 1px, transparent 1px);
  background-size: auto, 60px 60px, 60px 60px;
}

.footer-row {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  gap: 18px;
  width: min(1180px, 100%);
  margin: 0 auto;
  text-align: center;
}

.footer-brand-group {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
}

.site-footer p {
  margin: 0;
  font-weight: 900;
}

.site-footer span {
  color: var(--muted);
}

.footer-facebook {
  flex: 0 0 auto;
}

.footer-contact {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  gap: 18px;
}

.footer-contact a {
  color: var(--cyan);
  font-size: 0.92rem;
  font-weight: 750;
}

.footer-contact a:hover,
.footer-contact a:focus-visible {
  color: var(--mint);
  outline: none;
}

@media (max-width: 920px) {
  .nav-shell,
  .services-layout,
  .start-section {
    grid-template-columns: 1fr;
  }

  .nav-shell {
    position: relative;
    display: flex;
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px 14px;
  }

  .start-copy,
  .start-form {
    transform: none;
  }

  .nav-links {
    width: 100%;
    justify-content: flex-start;
    gap: 6px;
    margin-left: 0;
  }

  .nav-facebook {
    position: absolute;
    top: 5px;
    right: 10px;
  }

  .hero-copy {
    left: 32px;
    width: min(590px, calc(100% - 64px));
  }

  .featured-heading,
  .featured-grid {
    margin-inline: 24px;
  }

  .featured-grid {
    grid-template-columns: 1fr;
  }

  .hero-stage {
    min-height: 100svh;
  }

  .hero-video {
    height: 100svh;
    min-height: 100svh;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .before-after,
  .services-detail-panel {
    grid-template-columns: 1fr;
  }

  .services-detail-panel {
    gap: 12px;
  }

  .featured-section,
  .section-ambient-shell {
    margin-inline: 0;
  }

  .service-details-section {
    margin-inline: 24px;
  }

  .industries-ambient-shell {
    grid-template-columns: 1fr;
    padding: 24px;
  }

  .industries-ambient-shell .project-section {
    grid-column: 1;
    grid-row: 2;
  }

  .industries-ambient-shell .project-continuation-section {
    grid-column: 1;
    grid-row: 3;
  }

  .industries-ambient-shell .project-video-section {
    grid-column: 1;
    grid-row: 1;
  }

  .section-ambient-shell .services-section,
  .section-ambient-shell .project-section,
  .section-ambient-shell .project-video-section,
  .section-ambient-shell .project-continuation-section {
    margin-inline: 0;
  }
}

@media (max-width: 560px) {
  .site-header {
    border-bottom: 1px solid rgba(38, 243, 255, 0.16);
    background: rgba(2, 10, 16, 0.72);
    backdrop-filter: blur(12px);
  }

  .section-ambient-shell {
    margin-block: 24px;
    margin-inline: 0;
    padding: 12px 0;
  }

  body {
    text-align: center;
  }

  .nav-shell {
    position: relative;
    justify-content: center;
    width: 100%;
    max-width: 100%;
    padding: 8px 10px;
    gap: 4px 8px;
  }

  .brand {
    justify-content: center;
    width: auto;
    font-size: 0.82rem;
  }

  .brand img {
    height: 1.2em;
  }

  .nav-links {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    overflow: visible;
    gap: 2px;
    padding-bottom: 0;
    scrollbar-width: auto;
  }

  .nav-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    min-height: 32px;
    min-width: 0;
    padding: 6px 3px;
    font-size: 0.5rem;
    line-height: 1.1;
    text-align: center;
    white-space: nowrap;
  }

  .nav-links .nav-cta {
    padding-inline: 6px;
  }

  .nav-facebook {
    position: absolute;
    top: 7px;
    right: 10px;
    flex: 0 0 32px;
    width: 32px;
    height: 32px;
    min-height: 32px;
    padding: 0;
  }

  .page-section {
    padding-block: 48px;
  }

  #home,
  #why,
  #projects,
  #services,
  #featured,
  #start {
    scroll-margin-top: 76px;
  }

  main,
  main > *,
  .projects-content,
  .featured-grid,
  .featured-work,
  .start-form,
  .footer-row {
    min-width: 0;
  }

  img,
  video {
    max-width: 100%;
  }

  .hero-section {
    padding: 0;
  }

  .visual-section {
    padding: 0;
  }

  h1 {
    font-size: clamp(2.7rem, 17vw, 4.7rem);
  }

  .hero-stage,
  .visual-section,
  .project-video-section {
    min-height: 0;
  }

  .visual-section,
  .project-video-section {
    aspect-ratio: 16 / 9;
  }

  .hero-stage {
    min-height: 760px;
    aspect-ratio: auto;
  }

  .hero-video {
    height: 760px;
    min-height: 760px;
    object-fit: cover;
    object-position: 62% center;
  }

  .hero-copy {
    top: auto;
    right: 18px;
    bottom: 48px;
    left: 18px;
    width: auto;
    transform: none;
    text-align: center;
  }

  .hero-eyebrow {
    justify-content: center;
    margin-bottom: 18px;
    font-size: 0.65rem;
  }

  .hero-copy h1 {
    max-width: none;
    font-size: clamp(2.7rem, 13vw, 4rem);
  }

  .hero-lead {
    margin-top: 20px;
    font-size: 0.98rem;
  }

  .hero-hook {
    margin-inline: auto;
    font-size: 0.84rem;
  }

  .hero-actions {
    justify-content: center;
    gap: 9px;
    margin-top: 22px;
  }

  .hero-actions .button {
    min-height: 48px;
    padding-inline: 16px;
    font-size: 0.77rem;
  }

  .background-video {
    height: 100%;
    object-fit: contain;
  }

  .ambient-background-video {
    object-fit: cover;
  }

  .start-background-video {
    object-fit: cover;
  }

  .service-video-toggle {
    right: auto;
    bottom: 4px;
    left: 50%;
    min-height: 42px;
    padding: 0 18px;
    font-size: 0.74rem;
    transform: translateX(-50%);
  }

  .service-details-section {
    margin: 0 12px 24px;
    padding: 36px 12px;
  }

  .service-details {
    margin-left: 0;
    margin-right: 0;
    text-align: left;
  }

  .services-detail-panel {
    justify-items: stretch;
    margin-left: 0;
    margin-right: 0;
    padding: 14px;
    text-align: left;
  }

  .services-detail-panel article {
    margin-left: 0;
    margin-right: 0;
    padding: 16px 16px 16px 22px;
    text-align: left;
  }

  .services-detail-panel h2,
  .services-detail-panel h3,
  .services-detail-panel p,
  .services-detail-panel ul,
  .services-detail-panel li {
    text-align: left;
  }

  .services-detail-panel ul {
    padding-left: 20px;
    list-style-position: outside;
  }

  .services-detail-cta {
    justify-content: flex-start;
  }

  .start-section {
    gap: 24px;
    padding: 76px 16px 42px;
  }

  .start-form {
    padding: 18px;
    text-align: center;
    transform: none;
  }

  .start-form input,
  .start-form textarea {
    text-align: center;
  }

  .footer-row {
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 7px 12px;
    text-align: center;
  }

  .footer-brand-group {
    justify-content: center;
  }

  .project-section {
    padding: 42px 16px;
  }

  .project-continuation-section {
    padding: 40px 16px;
  }

  .section-ambient-shell .services-section,
  .section-ambient-shell .project-section,
  .section-ambient-shell .project-video-section,
  .section-ambient-shell .project-continuation-section {
    margin-inline: 0;
  }

  .featured-section {
    margin: 24px 0;
    padding: 40px 0;
  }

  .featured-heading,
  .featured-grid {
    margin-inline: 14px;
  }

  .why-section {
    padding: 32px 12px;
  }

  .why-content {
    padding: 26px 16px;
  }

  .why-section h1 {
    font-size: clamp(2rem, 11vw, 3rem);
    line-height: 1;
  }

  .why-lead {
    margin-top: 18px;
  }

  .before-after {
    margin-top: 24px;
  }

  .footer-contact {
    flex-wrap: wrap;
    gap: 7px 12px;
  }

  .site-footer,
  .site-footer span,
  .footer-contact a {
    font-size: 0.72rem;
  }

  .featured-heading {
    width: 100%;
    justify-items: center;
    margin-inline: auto;
    text-align: center;
  }

  .featured-heading > .eyebrow {
    font-size: clamp(2.15rem, 10.5vw, 3.1rem);
  }

  .featured-work figcaption {
    text-align: center;
  }

  .industry-accordion-list {
    gap: 8px;
    text-align: left;
  }

  .industries-ambient-shell .project-section h2 {
    font-size: 1.9rem;
  }

  .industry-accordion summary {
    min-height: 50px;
    padding: 10px 14px;
    font-size: 0.9rem;
  }

  .industry-accordion summary::after {
    width: 24px;
    height: 24px;
    flex-basis: 24px;
    margin-left: 12px;
  }

  .industry-accordion-content {
    padding: 14px;
  }

  .industry-importance {
    margin-bottom: 18px;
    padding-left: 12px;
    font-size: 0.88rem;
    line-height: 1.58;
  }

  .industry-column-labels {
    display: none;
  }

  .industry-solutions li {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 13px 4px;
  }

  .industry-solutions strong,
  .industry-solutions span {
    font-size: 0.86rem;
  }

.industry-demo-button {
  width: 100%;
  justify-content: center;
  margin-top: 18px;
}
}

.vapi-voice-effect {
  position: fixed;
  right: 22px;
  bottom: 28px;
  z-index: 2147482998;
  width: 84px;
  height: 84px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 180ms ease;
}

.vapi-voice-effect span {
  position: absolute;
  inset: 0;
  border: 2px solid rgba(34, 197, 94, 0.64);
  border-radius: 999px;
  box-shadow: 0 0 24px rgba(34, 197, 94, 0.28);
  transform: scale(0.45);
}

.vapi-voice-effect--active {
  opacity: 1;
}

.vapi-voice-effect--active span {
  animation: vapiVoiceWave 1.8s ease-out infinite;
}

.vapi-voice-effect--active span:nth-child(2) {
  animation-delay: 0.45s;
}

.vapi-voice-effect--active span:nth-child(3) {
  animation-delay: 0.9s;
}

@keyframes vapiVoiceWave {
  0% {
    opacity: 0.78;
    transform: scale(0.35);
  }

  75% {
    opacity: 0.08;
  }

  100% {
    opacity: 0;
    transform: scale(1.2);
  }
}

@media (max-width: 560px) {
  .vapi-voice-effect {
    right: 14px;
    bottom: 24px;
    width: 74px;
    height: 74px;
  }
}
