:root {
  --bg: #0b1b2d;
  --bg-deep: #071321;
  --panel: rgba(16, 31, 51, 0.54);
  --panel-strong: rgba(16, 31, 51, 0.74);
  --panel-soft: rgba(255, 255, 255, 0.08);
  --text: #ecf4ff;
  --muted: #b8c8db;
  --line: rgba(174, 199, 227, 0.22);
  --accent: #ff8a34;
  --accent-2: #78b7ff;
  --accent-3: #89ffe0;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
  --radius-xl: 36px;
  --radius-lg: 28px;
  --radius-md: 22px;
  --radius-sm: 16px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Plus Jakarta Sans", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top, rgba(120, 183, 255, 0.2), transparent 36%),
    radial-gradient(circle at 15% 15%, rgba(255, 138, 52, 0.18), transparent 24%),
    linear-gradient(180deg, #11263d 0%, #0d2137 44%, #091827 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(120, 183, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(120, 183, 255, 0.05) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.9), transparent 80%);
}

.page-shell {
  width: min(1320px, calc(100% - 28px));
  margin: 0 auto;
  padding: 18px 0 44px;
}

.site-header,
.hero,
.advantage-section,
.stats-row,
.workflow-section,
.feature-band,
.technology-section,
.closing-panel {
  position: relative;
  z-index: 1;
}

.site-header {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(12, 27, 44, 0.64);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.18);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: inherit;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  font-family: "Outfit", sans-serif;
  font-size: 1rem;
  font-weight: 800;
  color: #081321;
  background: linear-gradient(135deg, #dff4ff, #78b7ff);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65);
}

.brand-copy {
  display: grid;
  gap: 4px;
}

.brand-kicker,
.eyebrow,
.highlight-label,
.step-tag {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
  font-weight: 700;
}

.brand-kicker,
.eyebrow,
.step-tag {
  color: #8fbff7;
}

.brand-name {
  font-family: "Outfit", sans-serif;
  font-size: 1rem;
  font-weight: 700;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.site-nav a,
.header-cta,
.primary-btn,
.secondary-btn {
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.site-nav a {
  color: var(--muted);
  font-size: 0.95rem;
}

.site-nav a:hover {
  color: var(--text);
}

.header-cta,
.primary-btn,
.secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  font-weight: 700;
}

.header-cta,
.secondary-btn {
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.05);
}

.primary-btn {
  color: #0b1627;
  background: linear-gradient(135deg, #ffbf8a, var(--accent));
  box-shadow: 0 14px 30px rgba(255, 138, 52, 0.24);
}

.header-cta:hover,
.primary-btn:hover,
.secondary-btn:hover {
  transform: translateY(-1px);
}

.hero {
  margin-top: 18px;
}

.hero-media {
  position: relative;
  overflow: hidden;
  min-height: 900px;
  border: 1px solid rgba(160, 188, 220, 0.18);
  border-radius: 42px;
  background: #10243a;
  box-shadow: var(--shadow);
}

.hero-image,
.hero-overlay,
.hero-grid {
  position: absolute;
  inset: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(9, 22, 36, 0.58) 0%, rgba(9, 22, 36, 0.24) 34%, rgba(9, 22, 36, 0.04) 62%, rgba(9, 22, 36, 0.12) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(12, 25, 40, 0.2));
}

.hero-grid {
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(120, 183, 255, 0.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(120, 183, 255, 0.18) 1px, transparent 1px);
  background-size: 100px 100px;
  mask-image: radial-gradient(circle at 75% 58%, rgba(0, 0, 0, 1), transparent 55%);
}

.hero-copy,
.hero-showcase {
  position: absolute;
  z-index: 1;
}

.hero-copy {
  left: 52px;
  top: 54px;
  max-width: 640px;
}

.hero-copy h1,
.section-heading h2,
.advantage-lead h3,
.innovation-copy h3,
.workflow-card h3,
.feature-band-copy h2,
.closing-panel h2,
.technology-section h2 {
  margin: 0;
  font-family: "Outfit", sans-serif;
  letter-spacing: -0.045em;
}

.hero-copy h1 {
  margin-top: 16px;
  font-size: clamp(2.7rem, 5.9vw, 5.2rem);
  line-height: 0.96;
  max-width: 14ch;
}

.hero-text,
.hero-points,
.advantage-lead p,
.advantage-card p,
.workflow-card p,
.feature-band p,
.feature-list p,
.tech-card p,
.closing-panel p {
  color: var(--muted);
}

.hero-text {
  max-width: 58ch;
  margin: 20px 0 0;
  font-size: 1rem;
  line-height: 1.65;
}

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

.hero-points {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.hero-points li {
  position: relative;
  padding-left: 22px;
  line-height: 1.45;
}

.hero-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.52em;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--accent-3);
  box-shadow: 0 0 0 5px rgba(137, 255, 224, 0.14);
}

.hero-showcase {
  right: 24px;
  bottom: 0;
  display: flex;
  align-items: flex-end;
  gap: 20px;
  width: min(700px, 56%);
  pointer-events: none;
}

.supervisor-figure {
  width: min(360px, 54%);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 30px 50px rgba(0, 0, 0, 0.38));
}

.phone-mockup {
  width: min(290px, 42%);
  padding: 12px;
  margin-bottom: 66px;
  border: 1px solid rgba(160, 188, 220, 0.24);
  border-radius: 34px;
  background: rgba(13, 28, 45, 0.68);
  backdrop-filter: blur(18px);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.3);
}

.phone-topbar {
  display: flex;
  gap: 8px;
  padding: 6px 6px 14px;
}

.phone-topbar span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(236, 244, 255, 0.42);
}

.phone-screen {
  padding: 18px;
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.03)),
    rgba(17, 34, 54, 0.96);
}

.phone-badge,
.phone-label {
  display: inline-flex;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.68rem;
  font-weight: 700;
}

.phone-badge {
  padding: 7px 10px;
  border-radius: 999px;
  color: #081321;
  background: linear-gradient(135deg, #89ffe0, #78b7ff);
}

.phone-time {
  margin: 14px 0 0;
  color: #8fbff7;
  font-size: 0.78rem;
  font-weight: 700;
}

.phone-screen h3 {
  margin: 10px 0 0;
  font-family: "Outfit", sans-serif;
  font-size: 1.22rem;
  line-height: 1.15;
}

.phone-body,
.phone-transcript {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

.phone-divider {
  height: 1px;
  margin: 16px 0 14px;
  background: rgba(160, 188, 220, 0.14);
}

.phone-label {
  color: #8fbff7;
}

.phone-report {
  margin-top: 16px;
  padding: 14px;
  border: 1px solid rgba(255, 138, 52, 0.18);
  border-radius: 18px;
  background: rgba(255, 138, 52, 0.08);
}

.phone-report strong {
  display: block;
  margin-top: 8px;
  font-size: 1rem;
  line-height: 1.35;
}

.advantage-section,
.innovation-section,
.workflow-section,
.technology-section {
  margin-top: 26px;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 18px;
}

.section-heading h2,
.feature-band-copy h2,
.closing-panel h2 {
  margin-top: 12px;
  font-size: clamp(2.1rem, 5vw, 4rem);
  line-height: 0.96;
}

.narrow {
  max-width: 620px;
}

.advantage-panel,
.innovation-panel,
.workflow-card,
.feature-band,
.technology-section,
.closing-panel {
  border: 1px solid var(--line);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.18);
}

.advantage-panel {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 22px;
  padding: 28px;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03)),
    rgba(13, 28, 45, 0.62);
  backdrop-filter: blur(18px);
}

.innovation-panel {
  display: grid;
  grid-template-columns: 0.96fr 1.04fr;
  gap: 22px;
  padding: 28px;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.03)),
    rgba(15, 31, 49, 0.62);
  backdrop-filter: blur(18px);
}

.highlight-label {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  color: #f5fbff;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.18);
  background: linear-gradient(135deg, #1cc7b2, #4d8dff);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.advantage-lead h3 {
  margin-top: 18px;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 0.98;
}

.innovation-copy h3 {
  margin-top: 18px;
  font-family: "Outfit", sans-serif;
  font-size: clamp(1.8rem, 3.6vw, 2.8rem);
  line-height: 1.02;
}

.advantage-lead p {
  max-width: 56ch;
  margin: 18px 0 0;
  font-size: 1.02rem;
  color: #b8c7da;
  line-height: 1.8;
}

.innovation-copy p:last-child {
  max-width: 56ch;
  margin: 18px 0 0;
  color: #b8c7da;
  line-height: 1.8;
}

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

.innovation-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.advantage-card,
.innovation-card,
.tech-card {
  padding: 22px;
  border: 1px solid rgba(160, 188, 220, 0.14);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.06);
}

.advantage-card span {
  display: inline-flex;
  color: #90c2ff;
  font-family: "Outfit", sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
}

.advantage-card h4 {
  margin: 14px 0 0;
  font-family: "Outfit", sans-serif;
  font-size: 1.18rem;
}

.advantage-card p,
.innovation-card p,
.tech-card p {
  margin: 10px 0 0;
  line-height: 1.65;
}

.innovation-card span {
  display: inline-flex;
  font-family: "Outfit", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #ecf4ff;
}

.accent-card,
.accent-tech {
  background:
    linear-gradient(180deg, rgba(255, 138, 52, 0.12), rgba(120, 183, 255, 0.08)),
    rgba(255, 255, 255, 0.04);
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 22px;
}

.stats-row article {
  padding: 22px 24px;
  border: 1px solid rgba(160, 188, 220, 0.14);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.06);
}

.stats-row strong {
  display: block;
  font-family: "Outfit", sans-serif;
  font-size: 2rem;
  letter-spacing: -0.04em;
}

.stats-row span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  line-height: 1.6;
}

.workflow-grid,
.tech-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.workflow-card {
  padding: 24px;
  border-radius: 28px;
  background: rgba(14, 29, 47, 0.62);
  backdrop-filter: blur(14px);
}

.workflow-card h3,
.tech-card h3,
.feature-list h3 {
  margin: 14px 0 0;
  font-family: "Outfit", sans-serif;
  font-size: 1.2rem;
  line-height: 1.3;
}

.workflow-card p,
.feature-list p {
  margin: 12px 0 0;
  line-height: 1.75;
}

.feature-band {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 22px;
  margin-top: 26px;
  padding: 28px;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at top left, rgba(255, 138, 52, 0.14), transparent 34%),
    rgba(13, 28, 45, 0.62);
  backdrop-filter: blur(14px);
}

.feature-band-copy p:last-child {
  margin: 18px 0 0;
  line-height: 1.8;
}

.feature-list {
  display: grid;
  gap: 16px;
}

.feature-list article {
  padding: 22px;
  border: 1px solid rgba(160, 188, 220, 0.14);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.06);
}

.technology-section {
  padding: 28px;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at top right, rgba(120, 183, 255, 0.16), transparent 34%),
    rgba(13, 28, 45, 0.62);
  backdrop-filter: blur(16px);
}

.tech-grid {
  margin-top: 22px;
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.closing-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  margin-top: 26px;
  padding: 30px;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(135deg, rgba(255, 138, 52, 0.2), rgba(120, 183, 255, 0.16)),
    rgba(15, 31, 49, 0.72);
  backdrop-filter: blur(16px);
}

.closing-panel p {
  max-width: 58ch;
  margin: 16px 0 0;
  line-height: 1.8;
}

.contact-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.contact-list a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
  text-decoration: none;
}

.contact-list a:hover {
  background: rgba(255, 255, 255, 0.1);
}

@keyframes float-y {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@media (max-width: 1180px) {
  .site-header,
  .advantage-panel,
  .innovation-panel,
  .feature-band,
  .closing-panel,
  .workflow-grid,
  .tech-grid {
    grid-template-columns: 1fr;
  }

  .site-header {
    border-radius: 28px;
  }

  .site-nav {
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .hero-media {
    min-height: 960px;
  }

  .hero-copy {
    max-width: 560px;
  }

  .stats-row {
    grid-template-columns: 1fr;
  }

  .workflow-grid,
  .tech-grid {
    display: grid;
  }

  .closing-panel {
    display: grid;
  }
}

@media (max-width: 760px) {
  .page-shell {
    width: min(100% - 16px, 1320px);
    padding-top: 10px;
  }

  .site-header {
    gap: 16px;
    padding: 16px;
  }

  .site-nav {
    gap: 14px;
  }

  .hero-media {
    min-height: auto;
    padding: 26px 18px 18px;
  }

  .hero-image,
  .hero-overlay,
  .hero-grid,
  .hero-copy,
  .hero-showcase {
    position: relative;
    inset: auto;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
  }

  .hero-image,
  .hero-overlay,
  .hero-grid {
    position: absolute;
    inset: 0;
  }

  .hero-copy {
    max-width: none;
  }

  .hero-showcase {
    display: grid;
    width: 100%;
    gap: 14px;
    margin-top: 18px;
  }

  .supervisor-figure {
    width: min(100%, 320px);
    justify-self: center;
  }

  .phone-mockup {
    width: 100%;
    margin-bottom: 0;
  }

  .hero-copy h1 {
    max-width: 100%;
    font-size: clamp(2.3rem, 12vw, 4rem);
  }

  .hero-actions {
    flex-direction: column;
  }

  .advantage-panel,
  .innovation-panel,
  .feature-band,
  .technology-section,
  .closing-panel {
    padding: 22px;
  }

  .advantage-grid,
  .innovation-grid,
  .workflow-grid,
  .tech-grid {
    grid-template-columns: 1fr;
  }

  .section-heading h2,
  .feature-band-copy h2,
  .closing-panel h2 {
    font-size: 2.35rem;
  }
}
