:root {
  color-scheme: dark;
  --bg: #03070b;
  --bg-2: #071017;
  --panel: rgba(8, 18, 26, 0.86);
  --panel-2: rgba(10, 24, 34, 0.72);
  --line: rgba(0, 181, 255, 0.22);
  --line-strong: rgba(0, 181, 255, 0.46);
  --text: #f3fbff;
  --muted: #8ca4b6;
  --faint: #536a7c;
  --blue: #08aefe;
  --blue-2: #00e5ff;
  --green: #22f59f;
  --orange: #ff7a1a;
  --radius: 6px;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.46);
  font-family: "Nunito Sans", ui-rounded, "Avenir Next", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  overflow: hidden;
  min-height: 100vh;
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 30% 20%, rgba(0, 160, 255, 0.13), transparent 28rem),
    radial-gradient(circle at 82% 12%, rgba(255, 122, 26, 0.12), transparent 24rem),
    linear-gradient(rgba(0, 181, 255, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 181, 255, 0.028) 1px, transparent 1px),
    var(--bg);
  background-size: auto, auto, 44px 44px, 44px 44px, auto;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.74), transparent 44%, rgba(0, 0, 0, 0.6)),
    linear-gradient(180deg, transparent 0 66%, rgba(0, 181, 255, 0.05) 66.2%, transparent 66.4%),
    linear-gradient(115deg, transparent 0 48%, rgba(255, 122, 26, 0.12) 48.1%, transparent 48.35%);
}

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

a {
  color: inherit;
}

.site-header,
main,
.site-footer {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
  border-bottom: 1px solid rgba(0, 181, 255, 0.16);
  background: rgba(3, 7, 11, 0.86);
  backdrop-filter: blur(18px);
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: white;
  font-size: 17px;
  font-weight: 1000;
  letter-spacing: 0.035em;
  text-transform: uppercase;
}

.logo-video,
.brand-video {
  display: block;
  border: 0;
  background: transparent;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 0 16px rgba(0, 229, 255, 0.26));
}

.brand-video {
  width: 94px;
  height: 94px;
}

.logo-video-large {
  width: 154px;
  height: 154px;
  flex: 0 0 auto;
  filter: drop-shadow(0 0 24px rgba(0, 229, 255, 0.28));
}

.logo-video-footer {
  width: 92px;
  height: 92px;
}

.brand em,
.footer-brand em {
  color: var(--blue-2);
  font-style: normal;
}

.brand-mark {
  position: relative;
  display: inline-block;
  width: 22px;
  height: 30px;
  filter: drop-shadow(0 0 14px rgba(0, 229, 255, 0.36));
}

.brand-mark::before,
.brand-mark::after {
  position: absolute;
  content: "";
}

.brand-mark::before {
  inset: 2px 4px 1px;
  border-radius: 70% 30% 68% 34%;
  background: linear-gradient(160deg, var(--blue-2), #007dff 54%, var(--orange));
  transform: skew(-8deg) rotate(10deg);
}

.brand-mark::after {
  left: 8px;
  bottom: 7px;
  width: 8px;
  height: 13px;
  border-radius: 80% 20% 70% 30%;
  background: var(--bg);
  transform: rotate(18deg);
}

.brand-mark.large {
  width: 104px;
  height: 130px;
  flex: 0 0 auto;
  filter: drop-shadow(0 0 22px rgba(0, 229, 255, 0.34));
}

.brand-mark.large::after {
  left: 39px;
  bottom: 32px;
  width: 31px;
  height: 54px;
}

.main-nav {
  display: flex;
  gap: 38px;
  color: #c4d0da;
  font-size: 12px;
  font-weight: 850;
}

.main-nav a,
.header-action,
.primary-button,
.secondary-button,
.service-list a,
.site-footer a {
  text-decoration: none;
}

.main-nav a:hover,
.service-list a:hover,
.site-footer a:hover {
  color: var(--blue-2);
}

.header-action,
.primary-button,
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 3px;
  font-size: 11px;
  font-weight: 1000;
  letter-spacing: 0.04em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.header-action,
.primary-button {
  color: white;
  background: linear-gradient(135deg, #008cff, #00d5ff);
  box-shadow: 0 12px 32px rgba(0, 174, 254, 0.28);
}

.secondary-button {
  border-color: var(--line-strong);
  color: var(--text);
  background: rgba(255, 255, 255, 0.02);
}

.primary-button:hover,
.header-action:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 36px rgba(0, 174, 254, 0.36);
}

.secondary-button:hover {
  border-color: var(--blue-2);
  background: rgba(0, 181, 255, 0.08);
}

.hero-section {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(500px, 1.12fr);
  gap: 42px;
  align-items: center;
  min-height: 720px;
  padding: 48px 0 68px;
}

.hero-section::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  content: "";
  background:
    radial-gradient(circle at 24% 52%, rgba(0, 229, 255, 0.13), transparent 24rem),
    linear-gradient(90deg, rgba(3, 7, 11, 0.7) 0%, rgba(3, 7, 11, 0.82) 43%, rgba(3, 7, 11, 0.94) 100%);
}

.hero-copy,
.command-panel {
  position: relative;
  z-index: 2;
}

.robot-background {
  position: absolute;
  inset: 0 auto 0 -8%;
  z-index: 1;
  width: min(64vw, 760px);
  pointer-events: none;
  opacity: 0.42;
  mix-blend-mode: screen;
  transform: translateX(-4%) scale(1.04);
  animation: robot-drift 14s ease-in-out infinite alternate;
}

.robot-background::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    radial-gradient(circle at 45% 54%, transparent 0 14rem, rgba(3, 7, 11, 0.42) 25rem),
    linear-gradient(90deg, rgba(3, 7, 11, 0.46), rgba(3, 7, 11, 0.18) 42%, rgba(3, 7, 11, 0.92));
}

.robot-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.1) contrast(1.18) brightness(0.92);
  opacity: 0;
  transition: opacity 5s ease-in-out;
}

.robot-video.is-active {
  opacity: 1;
}

@keyframes robot-drift {
  from { transform: translateX(-8%) scale(1.04); }
  to { transform: translateX(2%) scale(1.08); }
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 560px;
  margin-bottom: 22px;
  font-size: clamp(46px, 5vw, 74px);
  font-weight: 1000;
  line-height: 0.98;
  letter-spacing: -0.022em;
}

h1 span {
  color: var(--blue-2);
}

.hero-lead {
  max-width: 560px;
  margin-bottom: 28px;
  color: #c4d3dd;
  font-size: 16px;
  line-height: 1.72;
}

.ai-summary {
  max-width: 560px;
  margin-bottom: 28px;
  color: #9fb4c4;
  font-size: 14px;
  line-height: 1.68;
}

.hero-services {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px 20px;
  max-width: 560px;
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
}

.hero-services li {
  position: relative;
  padding-left: 26px;
  color: #cdd9e2;
  font-size: 13px;
  font-weight: 850;
}

.hero-services li::before {
  position: absolute;
  left: 0;
  top: 0;
  width: 16px;
  height: 16px;
  border: 1px solid var(--blue-2);
  border-radius: 3px;
  color: var(--blue-2);
  content: "";
  box-shadow: 0 0 18px rgba(0, 229, 255, 0.22);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.command-panel {
  position: relative;
  overflow: hidden;
  padding: 22px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(0, 181, 255, 0.08), transparent 34%),
    rgba(4, 10, 15, 0.9);
  box-shadow: var(--shadow), inset 0 0 0 1px rgba(255, 255, 255, 0.02);
}

.command-panel::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(90deg, transparent, rgba(0, 229, 255, 0.1), transparent),
    repeating-linear-gradient(0deg, transparent 0 29px, rgba(0, 181, 255, 0.05) 30px),
    radial-gradient(circle at 35% 55%, rgba(0, 229, 255, 0.1), transparent 20rem);
}

.command-panel > * {
  position: relative;
  z-index: 1;
}

.panel-calendar,
.module-heading,
.panel-bottom,
.calendar-header,
.booking-console,
.site-footer,
.contact-section,
.process-track,
.workflow-nodes {
  display: flex;
}

.panel-calendar {
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.075em;
  text-transform: uppercase;
}

.panel-calendar strong {
  color: var(--text);
}

.panel-calendar div {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 7px;
  min-width: 260px;
}

.panel-calendar b {
  display: grid;
  min-height: 36px;
  place-items: center;
  border: 1px solid rgba(0, 181, 255, 0.16);
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0;
}

.panel-calendar .active {
  border-color: var(--blue-2);
  color: white;
  background: rgba(0, 174, 254, 0.22);
}

.voice-module,
.chat-module,
.automation-module,
.panel-bottom section,
.booking-step,
.service-list article,
.process-track article {
  border: 1px solid rgba(0, 181, 255, 0.2);
  border-radius: var(--radius);
  background:
    linear-gradient(160deg, rgba(0, 181, 255, 0.07), transparent 45%),
    var(--panel);
}

.voice-module,
.chat-module,
.automation-module {
  margin-top: 12px;
  padding: 18px;
}

.module-heading {
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 16px;
}

.module-heading span,
.panel-bottom span,
.booking-step legend,
.booking-step h3,
.section-heading p {
  margin: 0;
  color: var(--blue-2);
  font-size: 11px;
  font-weight: 1000;
  letter-spacing: 0.075em;
  text-transform: uppercase;
}

.module-heading strong {
  color: var(--green);
  font-size: 11px;
  text-transform: uppercase;
}

.call-row {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 16px;
  align-items: center;
}

.call-row i {
  position: relative;
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border-radius: 4px;
  color: white;
  background: linear-gradient(135deg, #008cff, #00d5ff);
  font-style: normal;
}

.call-icon::before,
.call-icon::after {
  position: absolute;
  content: "";
}

.call-icon::before {
  width: 22px;
  height: 22px;
  border: 3px solid white;
  border-top-color: transparent;
  border-right-color: transparent;
  border-radius: 50%;
  transform: rotate(-35deg);
}

.call-icon::after {
  width: 8px;
  height: 16px;
  border-radius: 5px;
  background: white;
  transform: translate(8px, 8px) rotate(-35deg);
}

.waveform {
  display: flex;
  align-items: center;
  gap: 6px;
  min-height: 70px;
}

.waveform span {
  flex: 1;
  height: 20px;
  border-radius: 20px;
  background: linear-gradient(180deg, var(--blue-2), var(--blue));
  box-shadow: 0 0 14px rgba(0, 229, 255, 0.22);
  animation: wave 1.45s ease-in-out infinite;
}

.waveform span:nth-child(2) { height: 44px; animation-delay: 0.08s; }
.waveform span:nth-child(3) { height: 28px; animation-delay: 0.16s; }
.waveform span:nth-child(4) { height: 62px; animation-delay: 0.24s; }
.waveform span:nth-child(5) { height: 36px; animation-delay: 0.32s; }
.waveform span:nth-child(6) { height: 56px; animation-delay: 0.4s; }
.waveform span:nth-child(7) { height: 26px; animation-delay: 0.48s; }
.waveform span:nth-child(8) { height: 48px; animation-delay: 0.56s; }
.waveform span:nth-child(9) { height: 30px; animation-delay: 0.64s; }

@keyframes wave {
  0%, 100% { transform: scaleY(0.68); opacity: 0.72; }
  50% { transform: scaleY(1); opacity: 1; }
}

.chat-line {
  width: max-content;
  max-width: 74%;
  margin: 9px 0 0;
  padding: 10px 12px;
  border: 1px solid rgba(0, 181, 255, 0.2);
  border-radius: 4px;
  color: #dceaf3;
  background: rgba(0, 181, 255, 0.06);
  font-size: 13px;
}

.chat-line.bot {
  margin-left: auto;
  border-color: rgba(0, 229, 255, 0.24);
  background: rgba(0, 181, 255, 0.11);
}

.workflow-nodes {
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.workflow-nodes span {
  position: relative;
  display: grid;
  min-height: 58px;
  flex: 1;
  place-items: center;
  border: 1px solid rgba(0, 181, 255, 0.22);
  border-radius: 4px;
  color: #c8d7e1;
  font-size: 11px;
  text-align: center;
}

.workflow-nodes span + span::before {
  position: absolute;
  left: -11px;
  width: 10px;
  height: 1px;
  content: "";
  background: var(--orange);
}

.panel-bottom {
  gap: 12px;
  margin-top: 12px;
}

.panel-bottom section {
  flex: 1;
  min-height: 112px;
  padding: 16px;
}

.panel-bottom strong {
  display: block;
  margin: 16px 0 8px;
  font-size: 16px;
}

.panel-bottom small {
  color: var(--muted);
}

.services-section,
.booking-section,
.process-section {
  padding: 56px 0 72px;
  scroll-margin-top: 88px;
}

.services-video-backdrop {
  position: absolute;
  inset: -8% -10%;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
  opacity: 0.36;
}

.services-video-backdrop::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    radial-gradient(circle at 50% 46%, rgba(0, 229, 255, 0.05), transparent 20rem),
    linear-gradient(90deg, rgba(3, 7, 11, 0.9), rgba(3, 7, 11, 0.48) 48%, rgba(3, 7, 11, 0.88)),
    linear-gradient(180deg, rgba(3, 7, 11, 0.82), rgba(3, 7, 11, 0.42) 42%, rgba(3, 7, 11, 0.9));
}

.services-video-backdrop video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.1) contrast(1.12) brightness(0.74);
}

.section-heading {
  margin-bottom: 30px;
}

.section-heading.centered {
  max-width: 780px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-heading h2 {
  margin: 9px 0 0;
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 1000;
  line-height: 1.08;
  letter-spacing: -0.018em;
}

.service-list {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.service-list article {
  min-height: 282px;
  padding: 24px 22px;
}

.service-icon {
  position: relative;
  display: grid;
  width: 52px;
  height: 52px;
  margin: 0 auto 20px;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  color: var(--blue-2);
  box-shadow: inset 0 0 18px rgba(0, 181, 255, 0.12);
}

.service-icon::before,
.service-icon::after,
.process-icon::before,
.process-icon::after,
.checkmark::before {
  position: absolute;
  content: "";
}

.icon-phone::before {
  width: 20px;
  height: 20px;
  border: 3px solid currentColor;
  border-top-color: transparent;
  border-right-color: transparent;
  border-radius: 50%;
  transform: rotate(-35deg);
}

.icon-chat::before {
  width: 24px;
  height: 17px;
  border: 2px solid currentColor;
  border-radius: 3px;
}

.icon-chat::after {
  bottom: 13px;
  left: 27px;
  width: 8px;
  height: 8px;
  border-bottom: 2px solid currentColor;
  border-left: 2px solid currentColor;
}

.icon-screen::before {
  width: 26px;
  height: 17px;
  border: 2px solid currentColor;
  border-radius: 2px;
}

.icon-screen::after {
  bottom: 13px;
  width: 18px;
  height: 2px;
  background: currentColor;
}

.icon-gear::before {
  width: 24px;
  height: 24px;
  border: 3px dotted currentColor;
  border-radius: 50%;
}

.icon-gear::after {
  width: 8px;
  height: 8px;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.icon-diamond::before {
  width: 24px;
  height: 24px;
  border: 2px solid currentColor;
  transform: rotate(45deg);
}

.service-list h3 {
  min-height: 44px;
  margin-bottom: 12px;
  font-size: 18px;
  font-weight: 950;
  line-height: 1.15;
  text-align: center;
}

.service-list p {
  min-height: 96px;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.58;
  text-align: center;
}

.service-list a {
  display: block;
  color: var(--blue-2);
  font-size: 11px;
  font-weight: 1000;
  letter-spacing: 0.055em;
  text-align: center;
  text-transform: uppercase;
}

.booking-console {
  align-items: stretch;
  gap: 10px;
}

.booking-step {
  min-width: 0;
  margin: 0;
  padding: 18px;
}

.service-step {
  flex: 0.9;
}

.date-step {
  flex: 1.15;
}

.info-step {
  flex: 1.05;
}

.confirmation-step {
  flex: 0.78;
}

.service-step label {
  display: block;
  margin-top: 10px;
}

.service-step input {
  position: absolute;
  opacity: 0;
}

.service-step span {
  display: block;
  min-height: 64px;
  padding: 12px;
  border: 1px solid rgba(0, 181, 255, 0.2);
  border-radius: 4px;
  color: #e6f5ff;
  background: rgba(255, 255, 255, 0.018);
  font-size: 13px;
  font-weight: 950;
}

.service-step small {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 750;
}

.service-step input:checked + span,
.month-grid button.selected,
.time-grid button.selected {
  border-color: var(--blue-2);
  color: white;
  background: linear-gradient(135deg, rgba(0, 140, 255, 0.55), rgba(0, 213, 255, 0.22));
}

.calendar-header {
  align-items: center;
  justify-content: space-between;
  margin: 16px 0 14px;
}

.calendar-header button,
.month-grid button,
.time-grid button {
  border: 1px solid rgba(0, 181, 255, 0.17);
  border-radius: 4px;
  color: #dce8f0;
  background: rgba(255, 255, 255, 0.02);
}

.calendar-header button {
  width: 28px;
  height: 28px;
}

.calendar-header strong {
  font-size: 13px;
}

.calendar-weekdays,
.month-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
}

.calendar-weekdays span {
  color: var(--faint);
  font-size: 10px;
  font-weight: 950;
  text-align: center;
  text-transform: uppercase;
}

.month-grid {
  margin-top: 8px;
}

.month-grid button,
.month-grid > span {
  display: grid;
  min-height: 30px;
  place-items: center;
  font-size: 12px;
}

.date-step p {
  margin: 16px 0 10px;
  color: #dce8f0;
  font-size: 12px;
}

.time-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.time-grid button {
  min-height: 40px;
  font-size: 12px;
  font-weight: 950;
}

.info-step label {
  display: grid;
  gap: 6px;
  margin-top: 11px;
  color: #dce8f0;
  font-size: 12px;
  font-weight: 900;
}

input,
textarea {
  width: 100%;
  border: 1px solid rgba(0, 181, 255, 0.22);
  border-radius: 3px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.025);
  outline: none;
}

input {
  height: 36px;
  padding: 0 10px;
}

textarea {
  min-height: 84px;
  padding: 10px;
  resize: vertical;
}

input:focus,
textarea:focus {
  border-color: var(--blue-2);
  box-shadow: 0 0 0 3px rgba(0, 229, 255, 0.08);
}

.info-step .primary-button {
  width: 100%;
  margin-top: 14px;
}

.checkmark {
  position: relative;
  display: grid;
  width: 68px;
  height: 68px;
  margin: 28px auto 18px;
  place-items: center;
  border: 2px solid var(--blue-2);
  border-radius: 50%;
  color: var(--blue-2);
  box-shadow: 0 0 26px rgba(0, 229, 255, 0.22);
}

.checkmark::before {
  width: 24px;
  height: 12px;
  border-bottom: 3px solid currentColor;
  border-left: 3px solid currentColor;
  transform: rotate(-45deg) translate(1px, -2px);
}

.confirmation-step {
  text-align: center;
}

.confirmation-step strong {
  display: block;
  font-size: 20px;
}

.confirmation-step p,
.confirmation-step span {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}

.confirmation-step dl {
  margin: 20px 0;
  text-align: left;
}

.confirmation-step div {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(0, 181, 255, 0.13);
}

.confirmation-step dt {
  color: var(--faint);
  font-size: 11px;
}

.confirmation-step dd {
  margin: 0;
  color: #dce8f0;
  font-size: 11px;
  text-align: right;
}

.process-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 34px;
}

.process-track::before {
  position: absolute;
  right: 40px;
  bottom: 46px;
  left: 40px;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, var(--blue-2), transparent);
}

.process-track article {
  position: relative;
  min-height: 178px;
  padding: 22px;
}

.process-track article::after {
  position: absolute;
  bottom: -35px;
  left: 50%;
  width: 1px;
  height: 34px;
  content: "";
  background: var(--orange);
}

.process-track span {
  position: relative;
  display: grid;
  width: 54px;
  height: 54px;
  margin-bottom: 18px;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 5px;
  color: var(--blue-2);
}

.icon-search::before {
  width: 18px;
  height: 18px;
  border: 2px solid currentColor;
  border-radius: 50%;
  transform: translate(-3px, -3px);
}

.icon-search::after {
  width: 13px;
  height: 2px;
  background: currentColor;
  transform: translate(9px, 9px) rotate(45deg);
}

.icon-code::before {
  width: 25px;
  height: 20px;
  border: 2px solid currentColor;
  border-radius: 3px;
}

.icon-code::after {
  width: 13px;
  height: 2px;
  background: currentColor;
  box-shadow: 0 6px 0 currentColor, 0 -6px 0 currentColor;
}

.icon-launch::before {
  width: 22px;
  height: 22px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(-45deg);
}

.icon-launch::after {
  width: 22px;
  height: 2px;
  background: currentColor;
  transform: rotate(-45deg) translate(-2px, 7px);
}

.icon-train::before {
  width: 24px;
  height: 20px;
  border: 2px solid currentColor;
  border-radius: 3px;
}

.icon-train::after {
  bottom: 11px;
  width: 28px;
  height: 2px;
  background: currentColor;
}

.process-track strong {
  display: block;
  margin-bottom: 8px;
  font-size: 18px;
}

.process-track p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.contact-section {
  align-items: center;
  gap: 24px;
  margin: 76px 0 34px;
  padding: 34px;
  border: 1px solid rgba(0, 181, 255, 0.24);
  border-radius: var(--radius);
  background:
    linear-gradient(115deg, rgba(0, 181, 255, 0.1), transparent 26%),
    linear-gradient(245deg, rgba(255, 122, 26, 0.14), transparent 28%),
    rgba(5, 12, 18, 0.9);
}

.contact-section h2 {
  margin-bottom: 8px;
  font-size: clamp(28px, 3.6vw, 48px);
  font-weight: 1000;
  letter-spacing: -0.018em;
}

.contact-section p {
  margin: 0;
  color: var(--muted);
}

.contact-actions {
  display: flex;
  gap: 12px;
  margin-left: auto;
}

.contact-actions .primary-button,
.contact-actions .secondary-button {
  min-width: 132px;
}

.site-footer {
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 22px 0 36px;
  color: var(--muted);
  font-size: 12px;
}

.site-footer nav {
  display: flex;
  gap: 28px;
}

.scene-stage {
  position: relative;
  overflow: hidden;
  height: calc(100vh - 82px);
  perspective: 1300px;
  perspective-origin: 50% 48%;
  transform-style: preserve-3d;
}

.scene-stage::before,
.scene-stage::after {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  content: "";
}

.scene-stage::before {
  background:
    radial-gradient(circle at 50% 48%, rgba(0, 229, 255, 0.08), transparent 25rem),
    linear-gradient(90deg, rgba(0, 181, 255, 0.04), transparent 32%, transparent 68%, rgba(255, 122, 26, 0.04));
}

.scene-stage::after {
  background:
    linear-gradient(90deg, transparent 0 49.85%, rgba(0, 229, 255, 0.15) 49.9% 50.1%, transparent 50.15%),
    linear-gradient(180deg, transparent 0 49.85%, rgba(255, 122, 26, 0.11) 49.9% 50.1%, transparent 50.15%);
  opacity: 0.42;
  transform: translateZ(-380px) scale(1.35);
}

.scene {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  width: 100%;
  min-height: 0;
  margin: 0;
  opacity: 0;
  pointer-events: none;
  transform: translate3d(0, 0, -520px) rotateX(8deg) scale(0.82);
  transform-origin: center;
  transform-style: preserve-3d;
  transition:
    transform 900ms cubic-bezier(0.16, 1, 0.3, 1),
    opacity 620ms ease,
    filter 900ms ease;
  filter: blur(8px) brightness(0.62);
  will-change: transform, opacity, filter;
}

.scene.is-active {
  z-index: 3;
  opacity: 1;
  pointer-events: auto;
  transform: translate3d(0, 0, 0) rotateX(0) rotateY(0) scale(1);
  filter: blur(0) brightness(1);
}

.scene.is-previous {
  opacity: 0.32;
  transform: translate3d(-54vw, 0, -430px) rotateY(42deg) scale(0.72);
}

.scene.is-next {
  opacity: 0.32;
  transform: translate3d(54vw, 0, -430px) rotateY(-42deg) scale(0.72);
}

.scene.is-far {
  opacity: 0;
  transform: translate3d(0, 18vh, -760px) rotateX(12deg) scale(0.58);
}

.hero-section.scene {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(460px, 1.1fr);
  min-height: 0;
  padding: clamp(26px, 4vh, 48px) 0 clamp(28px, 5vh, 58px);
}

.services-section.scene,
.booking-section.scene,
.process-section.scene {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(28px, 5vh, 54px) 0;
}

.contact-section.scene {
  display: flex;
  top: 50%;
  bottom: auto;
  min-height: min(460px, calc(100vh - 170px));
  margin: 0;
  transform: translate3d(0, -50%, -520px) rotateX(8deg) scale(0.82);
}

.contact-section.scene.is-active {
  transform: translate3d(0, -50%, 0) rotateX(0) rotateY(0) scale(1);
}

.contact-section.scene.is-previous {
  transform: translate3d(-54vw, -50%, -430px) rotateY(42deg) scale(0.72);
}

.contact-section.scene.is-next {
  transform: translate3d(54vw, -50%, -430px) rotateY(-42deg) scale(0.72);
}

.contact-section.scene.is-far {
  transform: translate3d(0, calc(-50% + 18vh), -760px) rotateX(12deg) scale(0.58);
}

.scene .section-heading {
  position: relative;
  z-index: 1;
  margin-bottom: clamp(18px, 3vh, 30px);
}

.scene .section-heading h2 {
  font-size: clamp(30px, 4.2vh, 42px);
}

.scene .service-list article {
  min-height: min(282px, 34vh);
}

.booking-section.scene .booking-console {
  max-height: calc(100vh - 245px);
  display: grid;
  grid-template-columns: 0.95fr 1.1fr 1fr 0.82fr;
}

.booking-section.scene .booking-step {
  overflow: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(0, 229, 255, 0.38) rgba(255, 255, 255, 0.03);
}

.scene-controls {
  position: fixed;
  top: 50%;
  right: max(18px, calc((100vw - 1180px) / 2 - 54px));
  z-index: 30;
  display: grid;
  gap: 11px;
  transform: translateY(-50%);
}

.scene-control {
  position: relative;
  display: grid;
  width: 12px;
  height: 12px;
  padding: 0;
  border: 1px solid rgba(0, 229, 255, 0.55);
  border-radius: 999px;
  background: rgba(0, 181, 255, 0.08);
  box-shadow: 0 0 18px rgba(0, 229, 255, 0.12);
}

.scene-control::after {
  position: absolute;
  right: 20px;
  top: 50%;
  min-width: max-content;
  color: var(--muted);
  font-size: 10px;
  font-weight: 950;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  content: attr(aria-label);
  opacity: 0;
  transform: translate(8px, -50%);
  transition: 180ms ease;
}

.scene-control:hover::after,
.scene-control:focus-visible::after {
  opacity: 1;
  transform: translate(0, -50%);
}

.scene-control.is-active {
  border-color: white;
  background: var(--blue-2);
  box-shadow: 0 0 24px rgba(0, 229, 255, 0.54);
}

.main-nav a.is-active {
  color: var(--blue-2);
}

.site-footer {
  display: none;
}

.site-footer a {
  pointer-events: auto;
}

.noscript-summary {
  width: min(1180px, calc(100% - 40px));
  margin: 32px auto;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

  body {
    overflow: auto;
  }

  .scene-stage {
    overflow: visible;
    height: auto;
    perspective: none;
  }

  .scene {
    position: relative;
    opacity: 1;
    pointer-events: auto;
    transform: none !important;
    filter: none;
  }

  .scene-controls {
    display: none;
  }
}

@media (max-width: 1080px) {
  body {
    overflow: auto;
  }

  .scene-stage {
    overflow: visible;
    height: auto;
    perspective: none;
  }

  .scene,
  .scene.is-active,
  .scene.is-previous,
  .scene.is-next,
  .scene.is-far,
  .contact-section.scene,
  .contact-section.scene.is-active,
  .contact-section.scene.is-previous,
  .contact-section.scene.is-next,
  .contact-section.scene.is-far {
    position: relative;
    inset: auto;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    filter: none;
  }

  .scene-controls {
    display: none;
  }

  .site-footer {
    display: flex;
    opacity: 1;
    pointer-events: auto;
  }

  .hero-section,
  .booking-console {
    grid-template-columns: 1fr;
  }

  .hero-section {
    display: block;
    min-height: auto;
  }

  .command-panel {
    margin-top: 44px;
  }

  .service-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .booking-console {
    display: grid;
  }
}

@media (max-width: 760px) {
  .site-header,
  main,
  .site-footer {
    width: min(100% - 28px, 1180px);
  }

  .main-nav {
    display: none;
  }

  .brand,
  .footer-brand {
    font-size: 14px;
  }

  .brand-video {
    width: 76px;
    height: 76px;
  }

  .logo-video-large {
    width: 116px;
    height: 116px;
  }

  .logo-video-footer {
    width: 76px;
    height: 76px;
  }

  .hero-section {
    padding-top: 38px;
  }

  h1 {
    font-size: clamp(42px, 13vw, 60px);
  }

  .hero-services,
  .service-list,
  .process-track,
  .time-grid {
    grid-template-columns: 1fr;
  }

  .panel-calendar,
  .panel-bottom,
  .workflow-nodes,
  .contact-section,
  .contact-actions,
  .site-footer,
  .site-footer nav {
    align-items: stretch;
    flex-direction: column;
  }

  .panel-calendar div {
    min-width: 0;
  }

  .chat-line {
    max-width: 100%;
  }

  .process-track::before,
  .process-track article::after {
    display: none;
  }

  .contact-actions {
    margin-left: 0;
  }
}
