:root {
  --bg: #05070b;
  --bg-soft: #0b111a;
  --panel: rgba(11, 17, 26, 0.78);
  --panel-solid: #101722;
  --text: #f5f7fb;
  --muted: #9aa8bb;
  --line: rgba(255, 255, 255, 0.12);
  --cyan: #29d3c2;
  --blue: #4b8dff;
  --green: #57e389;
  --amber: #f4b860;
  --danger: #ef4444;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(41, 211, 194, 0.18), transparent 32rem),
    radial-gradient(circle at 78% 10%, rgba(75, 141, 255, 0.18), transparent 30rem),
    linear-gradient(135deg, #05070b 0%, #08111a 52%, #05070b 100%);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 76px 76px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), transparent 78%);
  z-index: -2;
}

canvas#network-bg {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 0.72;
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(5, 7, 11, 0.78);
  backdrop-filter: blur(18px);
}

.nav-shell {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(41, 211, 194, 0.34);
  border-radius: 12px;
  background: linear-gradient(145deg, rgba(41, 211, 194, 0.22), rgba(75, 141, 255, 0.18));
  display: grid;
  place-items: center;
  box-shadow: 0 0 28px rgba(41, 211, 194, 0.14);
}

.brand-mark img {
  width: 30px;
  height: 30px;
  object-fit: cover;
  border-radius: 9px;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 600;
  margin-top: -4px;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.nav-links a {
  color: #cad5e4;
  font-size: 0.92rem;
  padding: 9px 12px;
  border-radius: 8px;
  transition: background 180ms ease, color 180ms ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: white;
  background: rgba(255, 255, 255, 0.08);
}

.nav-cta {
  white-space: nowrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 8px;
  border: 1px solid transparent;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  color: #031015;
  background: linear-gradient(135deg, var(--green), var(--cyan));
  box-shadow: 0 14px 34px rgba(41, 211, 194, 0.24);
}

.button.secondary {
  color: white;
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.16);
}

.hero {
  position: relative;
  min-height: calc(100vh - 76px);
  display: grid;
  align-items: center;
  padding: 72px 0 44px;
  overflow: hidden;
}

.cinematic-hero {
  isolation: isolate;
}

.hero-media-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}

.hero-media-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 7, 11, 0.98) 0%, rgba(5, 7, 11, 0.78) 36%, rgba(5, 7, 11, 0.38) 70%, rgba(5, 7, 11, 0.82) 100%),
    linear-gradient(to bottom, rgba(5, 7, 11, 0.12), rgba(5, 7, 11, 0.94));
  z-index: 2;
}

.hero-media-bg img,
.hero-media-bg video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-media-bg img {
  opacity: 0.55;
}

.hero-media-bg video {
  opacity: 0.34;
  mix-blend-mode: screen;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(340px, 0.96fr);
  gap: 48px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  color: #bff8ec;
  border: 1px solid rgba(41, 211, 194, 0.22);
  background: rgba(41, 211, 194, 0.08);
  border-radius: 999px;
  padding: 7px 12px;
  font-size: 0.82rem;
  font-weight: 700;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 18px var(--green);
}

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

.hero h1,
.page-hero h1 {
  margin: 22px 0 20px;
  font-size: clamp(2.55rem, 6vw, 5.7rem);
  line-height: 0.95;
  letter-spacing: 0;
}

.gradient-text {
  color: #9bf8e6;
}

.lead {
  color: #c7d2e1;
  font-size: clamp(1.05rem, 2vw, 1.22rem);
  max-width: 720px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 36px;
  max-width: 710px;
}

.trust-item {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.055);
  border-radius: 8px;
  padding: 16px;
}

.trust-item strong {
  display: block;
  font-size: 1.45rem;
}

.trust-item span {
  color: var(--muted);
  font-size: 0.9rem;
}

.showcase {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(9, 14, 22, 0.58);
  border-radius: 8px;
  box-shadow: var(--shadow);
  overflow: hidden;
  transform: translateY(22px);
}

.showcase-video {
  aspect-ratio: 16 / 10;
  background: #071018;
  position: relative;
}

.showcase-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.74;
}

.showcase-overlay {
  position: absolute;
  inset: 0;
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: linear-gradient(to bottom, rgba(5, 7, 11, 0.12), rgba(5, 7, 11, 0.78));
}

.status-pill {
  align-self: flex-start;
  color: #d6fff6;
  background: rgba(5, 7, 11, 0.62);
  border: 1px solid rgba(41, 211, 194, 0.24);
  border-radius: 999px;
  padding: 7px 11px;
  font-size: 0.78rem;
  font-weight: 800;
}

.demo-panel {
  background: rgba(5, 7, 11, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  padding: 16px;
}

.demo-panel h3 {
  margin-bottom: 4px;
  font-size: 1.06rem;
}

.demo-panel p {
  color: var(--muted);
  margin-bottom: 12px;
  font-size: 0.92rem;
}

.flow-line {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 8px;
  color: #dce7f5;
  font-size: 0.82rem;
}

.flow-step {
  padding: 9px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  text-align: center;
  font-weight: 800;
}

.section {
  padding: 82px 0;
}

.live-lab-section {
  padding-top: 92px;
}

.section.tight {
  padding: 48px 0;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 30px;
}

.section-kicker {
  color: var(--cyan);
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  margin-bottom: 10px;
}

.section h2,
.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3.7rem);
  line-height: 1.04;
}

.section-head p,
.section-copy {
  color: var(--muted);
  max-width: 620px;
}

.grid-3,
.grid-2,
.grid-4 {
  display: grid;
  gap: 18px;
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card {
  border: 1px solid var(--line);
  background: var(--panel);
  border-radius: 8px;
  padding: 24px;
  box-shadow: 0 14px 48px rgba(0, 0, 0, 0.22);
}

.live-lab-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.82fr);
  gap: 18px;
  align-items: stretch;
}

.media-stack {
  display: grid;
  gap: 18px;
}

.media-tile {
  position: relative;
  min-height: 300px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  overflow: hidden;
  background: #071018;
  box-shadow: 0 18px 58px rgba(0, 0, 0, 0.28);
}

.media-tile-large {
  min-height: 520px;
}

.media-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to bottom, rgba(5, 7, 11, 0.12) 20%, rgba(5, 7, 11, 0.94) 100%);
}

.media-tile video,
.media-tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-tile img {
  z-index: 0;
  opacity: 0.74;
}

.media-tile video {
  z-index: 0;
  opacity: 0.82;
}

.media-tile-content {
  position: absolute;
  inset: auto 22px 22px 22px;
  z-index: 2;
  max-width: 620px;
}

.media-tile-content h3 {
  margin: 14px 0 8px;
  font-size: clamp(1.35rem, 3vw, 2.35rem);
  line-height: 1.04;
  color: #ffffff;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.55);
}

.media-tile:not(.media-tile-large) .media-tile-content h3 {
  font-size: 1.35rem;
}

.media-tile-content p {
  color: #eef6f8;
  margin-bottom: 0;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.45);
}

.signal-panel {
  display: grid;
  gap: 12px;
  border: 1px solid var(--line);
  background: rgba(11, 17, 26, 0.84);
  border-radius: 8px;
  padding: 18px;
}

.signal-panel > div {
  padding: 14px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.signal-panel strong {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 5px;
}

.signal-panel p {
  color: var(--muted);
  margin: 0;
}

.signal-dot {
  display: inline-block;
  width: 9px;
  height: 9px;
  margin-right: 9px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 16px rgba(87, 227, 137, 0.64);
}

.signal-dot.amber {
  background: var(--amber);
  box-shadow: 0 0 16px rgba(244, 184, 96, 0.58);
}

.signal-dot.blue {
  background: var(--blue);
  box-shadow: 0 0 16px rgba(75, 141, 255, 0.58);
}

.card h3 {
  margin-bottom: 10px;
  font-size: 1.12rem;
}

.card p,
.card li {
  color: var(--muted);
}

.icon-box {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  color: #061014;
  background: linear-gradient(135deg, var(--green), var(--cyan));
  font-weight: 900;
}

.feature-list {
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}

.feature-list li {
  padding: 10px 0 10px 28px;
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 17px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 18px rgba(41, 211, 194, 0.4);
}

.band {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
}

.process {
  counter-reset: step;
}

.process .card {
  position: relative;
  min-height: 230px;
}

.process .card::before {
  counter-increment: step;
  content: "0" counter(step);
  color: rgba(255, 255, 255, 0.14);
  font-size: 3rem;
  font-weight: 900;
  line-height: 1;
}

.split {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 36px;
  align-items: center;
}

.terminal {
  border: 1px solid var(--line);
  background: #070b11;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.terminal-top {
  display: flex;
  gap: 7px;
  padding: 13px;
  background: rgba(255, 255, 255, 0.05);
}

.terminal-top span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--muted);
}

.terminal-body {
  padding: 22px;
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 0.9rem;
  color: #dce7f5;
}

.terminal-body p {
  margin: 0 0 13px;
}

.ok {
  color: var(--green);
}

.warn {
  color: var(--amber);
}

.contact-strip {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  border: 1px solid rgba(41, 211, 194, 0.22);
  background: linear-gradient(135deg, rgba(41, 211, 194, 0.14), rgba(75, 141, 255, 0.08));
  border-radius: 8px;
  padding: 32px;
}

.page-hero {
  padding: 80px 0 44px;
}

.page-hero .lead {
  max-width: 820px;
}

.content-panel {
  max-width: 900px;
  margin: 0 auto;
  border: 1px solid var(--line);
  background: rgba(11, 17, 26, 0.84);
  border-radius: 8px;
  padding: clamp(24px, 4vw, 42px);
}

.content-panel h2,
.content-panel h3 {
  color: #dffcf7;
}

.content-panel p,
.content-panel li {
  color: #b8c4d4;
}

.content-panel a {
  color: #9bf8e6;
  text-decoration: underline;
}

.team-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  align-items: start;
}

.avatar {
  width: 68px;
  height: 68px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  color: #061014;
  font-weight: 900;
  font-size: 1.2rem;
}

.role {
  color: var(--cyan);
  font-weight: 800;
  margin-bottom: 12px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 24px;
}

.contact-method {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 18px;
  margin-top: 18px;
}

.form {
  display: grid;
  gap: 14px;
}

.form label {
  display: grid;
  gap: 7px;
  color: #d7e1ee;
  font-weight: 700;
}

.form input,
.form textarea,
.form select {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
  color: white;
  padding: 13px 14px;
  font: inherit;
}

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

.form select option {
  background: #101722;
}

.payment-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 28px;
}

.payment-card {
  width: min(460px, 100%);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.94);
  color: #0f172a;
  border-radius: 8px;
  padding: 34px;
  text-align: center;
  box-shadow: var(--shadow);
}

.payment-card img {
  width: 170px;
  margin: 0 auto 18px;
}

.payment-icon {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  margin: 0 auto 18px;
  border-radius: 50%;
  color: white;
  font-size: 2rem;
  font-weight: 900;
}

.payment-icon.success {
  background: #10b981;
}

.payment-icon.error {
  background: var(--danger);
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 34px 0;
  color: var(--muted);
  background: rgba(5, 7, 11, 0.72);
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

@media (max-width: 980px) {
  .nav-shell {
    align-items: flex-start;
    flex-direction: column;
    padding: 16px 0;
  }

  .nav-links {
    justify-content: flex-start;
  }

  .nav-cta {
    display: none;
  }

  .hero-grid,
  .split,
  .contact-grid,
  .live-lab-grid {
    grid-template-columns: 1fr;
  }

  .grid-3,
  .grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .section-head {
    display: block;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .hero {
    min-height: auto;
    padding-top: 46px;
  }

  .hero-media-bg::before {
    background:
      linear-gradient(90deg, rgba(5, 7, 11, 0.96), rgba(5, 7, 11, 0.7)),
      linear-gradient(to bottom, rgba(5, 7, 11, 0.36), rgba(5, 7, 11, 0.96));
  }

  .showcase {
    transform: none;
  }

  .media-tile,
  .media-tile-large {
    min-height: 380px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: 2.55rem;
  }

  .trust-row,
  .grid-2,
  .grid-3,
  .grid-4,
  .contact-strip {
    grid-template-columns: 1fr;
  }

  .contact-strip {
    padding: 24px;
  }

  .flow-line {
    grid-template-columns: 1fr;
  }

  .flow-line strong {
    display: none;
  }

  .team-card {
    grid-template-columns: 1fr;
  }
}

/* Light premium direction */
:root {
  --bg: #f7fafc;
  --bg-soft: #eef5f7;
  --panel: rgba(255, 255, 255, 0.88);
  --panel-solid: #ffffff;
  --text: #0b1720;
  --muted: #5d6b7a;
  --line: rgba(16, 39, 52, 0.12);
  --cyan: #0bb9a8;
  --blue: #2563eb;
  --green: #10b981;
  --amber: #d97706;
  --shadow: 0 24px 70px rgba(15, 35, 52, 0.14);
}

body {
  background:
    radial-gradient(circle at 9% 6%, rgba(11, 185, 168, 0.16), transparent 28rem),
    radial-gradient(circle at 88% 12%, rgba(37, 99, 235, 0.12), transparent 30rem),
    linear-gradient(180deg, #ffffff 0%, #f7fafc 42%, #eef5f7 100%);
  color: var(--text);
}

body::before {
  background-image:
    linear-gradient(rgba(15, 35, 52, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 35, 52, 0.045) 1px, transparent 1px);
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.42), transparent 70%);
}

canvas#network-bg {
  opacity: 0.2;
}

.site-header {
  border-bottom-color: rgba(16, 39, 52, 0.1);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 10px 34px rgba(15, 35, 52, 0.06);
}

.brand {
  color: #102334;
}

.brand small {
  color: #637386;
}

.brand-mark {
  border-color: rgba(11, 185, 168, 0.22);
  background: linear-gradient(145deg, rgba(11, 185, 168, 0.12), rgba(37, 99, 235, 0.1));
  box-shadow: 0 14px 34px rgba(11, 185, 168, 0.1);
}

.nav-links a {
  color: #334155;
}

.nav-links a:hover,
.nav-links a.active {
  color: #07111c;
  background: rgba(16, 39, 52, 0.075);
}

.button.primary {
  color: #ffffff;
  background: linear-gradient(135deg, #0f766e, var(--cyan));
  box-shadow: 0 14px 32px rgba(11, 185, 168, 0.22);
}

.button.secondary {
  color: #102334;
  background: rgba(255, 255, 255, 0.86);
  border-color: rgba(16, 39, 52, 0.16);
  box-shadow: 0 10px 26px rgba(15, 35, 52, 0.08);
}

.hero {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(247, 250, 252, 0.98));
}

.hero-media-bg::before {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.9) 38%, rgba(255, 255, 255, 0.44) 70%, rgba(255, 255, 255, 0.74) 100%),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.16), rgba(247, 250, 252, 0.94));
}

.hero-media-bg img {
  opacity: 0.58;
  filter: saturate(1.04) contrast(1.06);
}

.hero-media-bg video {
  opacity: 0.22;
  mix-blend-mode: multiply;
}

.eyebrow {
  color: #0f766e;
  border-color: rgba(11, 185, 168, 0.2);
  background: rgba(11, 185, 168, 0.08);
}

.dot {
  background: var(--cyan);
  box-shadow: 0 0 18px rgba(11, 185, 168, 0.58);
}

.hero h1,
.page-hero h1,
.section h2 {
  color: #07111c;
}

.hero h1 {
  max-width: 660px;
  font-size: 4.65rem;
  line-height: 0.98;
}

.section h2,
.page-hero h1 {
  font-size: 3.25rem;
}

.lead,
.section-head p,
.section-copy,
.card p,
.card li,
.signal-panel p,
.trust-item span {
  color: var(--muted);
}

.trust-item,
.card,
.content-panel {
  border-color: rgba(16, 39, 52, 0.1);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 16px 46px rgba(15, 35, 52, 0.09);
}

.trust-item strong,
.card h3 {
  color: #102334;
}

.showcase {
  border-color: rgba(16, 39, 52, 0.14);
  box-shadow: 0 24px 70px rgba(15, 35, 52, 0.22);
}

.band {
  border-color: rgba(16, 39, 52, 0.08);
  background: linear-gradient(180deg, rgba(239, 246, 249, 0.82), rgba(255, 255, 255, 0.82));
}

.media-tile {
  border-color: rgba(16, 39, 52, 0.12);
  box-shadow: 0 22px 64px rgba(15, 35, 52, 0.16);
}

.signal-panel {
  border-color: rgba(16, 39, 52, 0.1);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 16px 46px rgba(15, 35, 52, 0.08);
}

.signal-panel > div {
  background: rgba(239, 246, 249, 0.72);
  border-color: rgba(16, 39, 52, 0.08);
}

.signal-panel strong {
  color: #102334;
}

.feature-list li {
  border-top-color: rgba(16, 39, 52, 0.08);
}

.process .card::before {
  color: rgba(16, 39, 52, 0.12);
}

.terminal {
  border-color: rgba(16, 39, 52, 0.12);
  background: #0b1720;
}

.terminal-top {
  background: rgba(255, 255, 255, 0.08);
}

.contact-strip {
  border-color: rgba(11, 185, 168, 0.2);
  background: linear-gradient(135deg, rgba(11, 185, 168, 0.12), rgba(37, 99, 235, 0.08), rgba(255, 255, 255, 0.88));
  box-shadow: 0 18px 52px rgba(15, 35, 52, 0.1);
}

.content-panel h2,
.content-panel h3 {
  color: #102334;
}

.content-panel p,
.content-panel li {
  color: #536273;
}

.content-panel a {
  color: #0f766e;
}

.contact-method {
  border-top-color: rgba(16, 39, 52, 0.08);
}

.form label {
  color: #102334;
}

.form input,
.form textarea,
.form select {
  border-color: rgba(16, 39, 52, 0.14);
  background: rgba(255, 255, 255, 0.92);
  color: #102334;
}

.form select option {
  background: #ffffff;
}

.site-footer {
  border-top-color: rgba(16, 39, 52, 0.1);
  background: #ffffff;
  color: #637386;
}

.footer-links a {
  color: #334155;
}

.payment-page {
  background:
    radial-gradient(circle at top left, rgba(11, 185, 168, 0.16), transparent 26rem),
    linear-gradient(180deg, #ffffff, #eef5f7);
}

@media (max-width: 680px) {
  .hero-media-bg::before {
    background:
      linear-gradient(90deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.72)),
      linear-gradient(to bottom, rgba(255, 255, 255, 0.28), rgba(247, 250, 252, 0.98));
  }

  .hero-media-bg img {
    opacity: 0.34;
  }

  .hero h1 {
    max-width: 100%;
    font-size: 2.55rem;
    line-height: 1.04;
  }

  .section h2,
  .page-hero h1 {
    font-size: 2.2rem;
  }
}

@media (min-width: 681px) and (max-width: 1100px) {
  .hero h1 {
    font-size: 3.7rem;
  }

  .section h2,
  .page-hero h1 {
    font-size: 2.75rem;
  }
}

/* Authority polish */
.trust-row {
  max-width: 760px;
}

.trust-item {
  position: relative;
  overflow: hidden;
  min-height: 112px;
}

.trust-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(11, 185, 168, 0.1), transparent 48%);
  pointer-events: none;
}

.trust-item strong {
  position: relative;
  z-index: 1;
  font-size: 2rem;
  line-height: 1;
}

.trust-item span {
  position: relative;
  z-index: 1;
  display: block;
  margin-top: 8px;
  line-height: 1.25;
}

.proof-section {
  position: relative;
  overflow: hidden;
  padding: 64px 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.82)),
    url("hero-meeting-ai.jpg") center right / cover no-repeat;
  border-top: 1px solid rgba(16, 39, 52, 0.08);
  border-bottom: 1px solid rgba(16, 39, 52, 0.08);
}

.proof-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 82% 18%, rgba(11, 185, 168, 0.2), transparent 28rem),
    linear-gradient(180deg, rgba(247, 250, 252, 0.1), rgba(238, 245, 247, 0.74));
  pointer-events: none;
}

.proof-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(360px, 1.02fr);
  gap: 32px;
  align-items: center;
}

.proof-copy h2 {
  max-width: 720px;
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 3.45rem);
  line-height: 1.04;
  color: #07111c;
}

.proof-copy p:last-child {
  max-width: 620px;
  color: var(--muted);
  font-size: 1.06rem;
}

.proof-board {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 14px;
  padding: 18px;
  border: 1px solid rgba(16, 39, 52, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 24px 70px rgba(15, 35, 52, 0.14);
  backdrop-filter: blur(18px);
}

.proof-number {
  grid-row: span 3;
  display: flex;
  min-height: 260px;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  border-radius: 8px;
  background: linear-gradient(135deg, #0f766e, #0bb9a8);
  color: white;
  box-shadow: 0 22px 48px rgba(11, 185, 168, 0.22);
}

.proof-number span {
  font-size: clamp(4rem, 8vw, 6.8rem);
  font-weight: 900;
  line-height: 0.86;
}

.proof-number strong {
  max-width: 210px;
  font-size: 1.25rem;
  line-height: 1.15;
}

.proof-stat {
  display: grid;
  gap: 8px;
  align-content: center;
  min-height: 76px;
  padding: 16px;
  border: 1px solid rgba(16, 39, 52, 0.09);
  border-radius: 8px;
  background: rgba(247, 250, 252, 0.86);
}

.proof-stat strong {
  color: #07111c;
  font-size: 1.55rem;
  line-height: 1;
}

.proof-stat span {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.25;
}

.visual-backdrop {
  position: relative;
  overflow: hidden;
}

.visual-backdrop::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(239, 246, 249, 0.96), rgba(255, 255, 255, 0.86)),
    url("hero-meeting-ai.jpg") center right / 58% auto no-repeat;
  opacity: 0.72;
  pointer-events: none;
}

.visual-backdrop > .container {
  position: relative;
  z-index: 1;
}

.solution-card {
  position: relative;
  overflow: hidden;
  min-height: 312px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 26px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 250, 252, 0.92)),
    radial-gradient(circle at top right, rgba(11, 185, 168, 0.18), transparent 16rem);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.solution-card::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 4px;
  background: linear-gradient(90deg, #0f766e, var(--cyan), var(--blue));
}

.solution-card::after {
  content: "";
  position: absolute;
  right: -54px;
  top: -54px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  border: 1px solid rgba(11, 185, 168, 0.18);
  background: rgba(11, 185, 168, 0.06);
}

.solution-card:hover {
  transform: translateY(-6px);
  border-color: rgba(11, 185, 168, 0.26);
  box-shadow: 0 26px 70px rgba(15, 35, 52, 0.16);
}

.featured-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(232, 250, 247, 0.92)),
    radial-gradient(circle at top right, rgba(37, 99, 235, 0.12), transparent 15rem);
}

.card-top {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 20px;
}

.card-meta {
  color: #0f766e;
  border: 1px solid rgba(11, 185, 168, 0.2);
  background: rgba(11, 185, 168, 0.08);
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.solution-card h3,
.solution-card p,
.solution-card .card-highlight,
.solution-card .card-top {
  position: relative;
  z-index: 1;
}

.solution-card h3 {
  font-size: 1.35rem;
  line-height: 1.08;
}

.card-highlight {
  margin-top: 22px;
  padding: 12px 14px;
  border-radius: 8px;
  color: #0b1720;
  background: rgba(11, 185, 168, 0.1);
  border: 1px solid rgba(11, 185, 168, 0.18);
  font-size: 0.92rem;
  font-weight: 900;
}

.process .card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(247, 250, 252, 0.9)),
    radial-gradient(circle at top right, rgba(37, 99, 235, 0.08), transparent 13rem);
}

@media (max-width: 980px) {
  .proof-grid,
  .proof-board {
    grid-template-columns: 1fr;
  }

  .proof-number {
    grid-row: auto;
    min-height: 210px;
  }

  .visual-backdrop::before {
    background:
      linear-gradient(180deg, rgba(239, 246, 249, 0.96), rgba(255, 255, 255, 0.9)),
      url("hero-meeting-ai.jpg") center top / cover no-repeat;
  }
}

@media (max-width: 680px) {
  .trust-item {
    min-height: auto;
  }

  .proof-section {
    padding: 48px 0;
  }

  .proof-board {
    padding: 12px;
  }

  .proof-number {
    min-height: 180px;
  }

  .solution-card {
    min-height: 280px;
  }
}

/* Interactive simulator */
.simulator-hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.82)),
    url("hero-meeting-ai.jpg") center right / cover no-repeat;
  border-bottom: 1px solid rgba(16, 39, 52, 0.08);
}

.simulator-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 82% 18%, rgba(11, 185, 168, 0.2), transparent 28rem);
  pointer-events: none;
}

.simulator-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
  gap: 34px;
  align-items: center;
}

.simulator-score-card {
  border: 1px solid rgba(16, 39, 52, 0.12);
  border-radius: 8px;
  padding: 26px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 24px 70px rgba(15, 35, 52, 0.14);
  backdrop-filter: blur(18px);
}

.simulator-score-card span {
  display: block;
  color: #0f766e;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.simulator-score-card strong {
  display: block;
  color: #07111c;
  font-size: 4rem;
  line-height: 0.9;
}

.simulator-score-card p {
  color: var(--muted);
  margin: 16px 0 0;
}

.simulator-section {
  padding-top: 56px;
}

.simulator-command {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 24px;
}

.scenario-controls {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.scenario-button,
.chat-actions button {
  border: 1px solid rgba(16, 39, 52, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  color: #102334;
  min-height: 42px;
  padding: 0 14px;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.scenario-button:hover,
.chat-actions button:hover {
  transform: translateY(-2px);
  border-color: rgba(11, 185, 168, 0.28);
  box-shadow: 0 12px 28px rgba(15, 35, 52, 0.1);
}

.scenario-button.active {
  color: white;
  background: linear-gradient(135deg, #0f766e, var(--cyan));
  border-color: transparent;
}

.simulator-grid {
  display: grid;
  grid-template-columns: minmax(290px, 0.78fr) minmax(360px, 1.1fr) minmax(280px, 0.82fr);
  gap: 18px;
  align-items: stretch;
}

.phone-simulator,
.crm-simulator,
.web-preview-panel {
  border: 1px solid rgba(16, 39, 52, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 20px 62px rgba(15, 35, 52, 0.12);
  overflow: hidden;
}

.phone-simulator {
  display: grid;
  grid-template-rows: auto 1fr auto;
  min-height: 690px;
}

.phone-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px;
  background: linear-gradient(135deg, #0f766e, #0bb9a8);
  color: white;
}

.phone-top strong,
.phone-top span {
  display: block;
}

.phone-top span,
.phone-top small {
  opacity: 0.82;
  font-size: 0.82rem;
}

.chat-window {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 18px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.78)),
    radial-gradient(circle at 20% 20%, rgba(11, 185, 168, 0.12), transparent 18rem);
  min-height: 480px;
}

.chat-bubble {
  width: fit-content;
  max-width: 88%;
  padding: 11px 13px;
  border-radius: 8px;
  color: #102334;
  background: white;
  border: 1px solid rgba(16, 39, 52, 0.1);
  box-shadow: 0 8px 22px rgba(15, 35, 52, 0.07);
  font-size: 0.93rem;
  line-height: 1.35;
}

.chat-bubble.bot {
  align-self: flex-start;
}

.chat-bubble.user {
  align-self: flex-end;
  color: #06271f;
  background: #d9fbe7;
  border-color: rgba(16, 185, 129, 0.2);
}

.chat-bubble.system {
  align-self: center;
  color: #0f766e;
  background: rgba(11, 185, 168, 0.08);
  border-color: rgba(11, 185, 168, 0.2);
  font-weight: 900;
}

.typing-dot {
  display: inline-flex;
  gap: 3px;
  vertical-align: middle;
}

.typing-dot span {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #0f766e;
}

.chat-actions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 14px;
  border-top: 1px solid rgba(16, 39, 52, 0.08);
  background: rgba(247, 250, 252, 0.86);
}

.chat-actions button {
  min-height: 40px;
  padding: 0 10px;
  font-size: 0.78rem;
}

.crm-simulator {
  padding: 24px;
}

.crm-head {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: flex-start;
  margin-bottom: 22px;
}

.crm-head h2 {
  margin: 0 0 8px;
  color: #07111c;
  font-size: 2rem;
}

.crm-head p {
  margin: 0;
  color: var(--muted);
}

.lead-score {
  min-width: 94px;
  border-radius: 8px;
  padding: 14px;
  color: white;
  text-align: center;
  background: linear-gradient(135deg, #0f766e, var(--cyan));
}

.lead-score span,
.lead-score strong {
  display: block;
}

.lead-score span {
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
  opacity: 0.84;
}

.lead-score strong {
  font-size: 2.2rem;
  line-height: 1;
}

.pipeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: 18px;
}

.stage {
  position: relative;
  min-height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(16, 39, 52, 0.1);
  border-radius: 8px;
  color: #64748b;
  background: rgba(247, 250, 252, 0.92);
  font-size: 0.78rem;
  font-weight: 900;
}

.stage.active {
  color: #0f766e;
  border-color: rgba(11, 185, 168, 0.2);
  background: rgba(11, 185, 168, 0.08);
}

.stage.current {
  color: white;
  background: linear-gradient(135deg, #0f766e, var(--cyan));
  border-color: transparent;
}

.crm-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 20px;
}

.crm-metrics div {
  padding: 15px;
  border: 1px solid rgba(16, 39, 52, 0.1);
  border-radius: 8px;
  background: rgba(247, 250, 252, 0.88);
}

.crm-metrics strong,
.crm-metrics span {
  display: block;
}

.crm-metrics strong {
  color: #07111c;
  font-size: 1.25rem;
}

.crm-metrics span {
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.2;
}

.crm-timeline {
  display: grid;
  gap: 10px;
}

.timeline-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 11px;
  align-items: start;
  padding: 13px;
  border: 1px solid rgba(16, 39, 52, 0.09);
  border-radius: 8px;
  background: white;
}

.timeline-icon {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  color: white;
  background: #0f766e;
  font-size: 0.78rem;
  font-weight: 900;
}

.timeline-item strong,
.timeline-item span {
  display: block;
}

.timeline-item strong {
  color: #102334;
}

.timeline-item span {
  color: var(--muted);
  font-size: 0.86rem;
}

.web-preview-panel {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(239, 246, 249, 0.9)),
    radial-gradient(circle at top right, rgba(37, 99, 235, 0.1), transparent 18rem);
}

.web-preview-header h3 {
  margin-bottom: 8px;
  color: #07111c;
  font-size: 1.4rem;
}

.web-preview-header p {
  color: var(--muted);
  margin-bottom: 0;
}

.browser-mock {
  border: 1px solid rgba(16, 39, 52, 0.12);
  border-radius: 8px;
  overflow: hidden;
  background: white;
  box-shadow: 0 18px 44px rgba(15, 35, 52, 0.12);
}

.browser-bar {
  display: flex;
  gap: 6px;
  padding: 10px;
  background: #eef5f7;
}

.browser-bar span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #94a3b8;
}

.browser-page {
  padding: 18px;
  min-height: 260px;
  background: linear-gradient(135deg, #f8fafc, #e8faf7);
  transition: background 180ms ease;
}

.browser-page.quote {
  background: linear-gradient(135deg, #fff7ed, #e8faf7);
}

.browser-page.support {
  background: linear-gradient(135deg, #eff6ff, #f8fafc);
}

.browser-page.web {
  background: linear-gradient(135deg, #f5f3ff, #e8faf7);
}

.browser-hero {
  height: 78px;
  border-radius: 8px;
  background: linear-gradient(135deg, #0f766e, #0bb9a8);
  margin-bottom: 18px;
}

.browser-line {
  height: 12px;
  width: 64%;
  border-radius: 999px;
  background: rgba(16, 39, 52, 0.18);
  margin-bottom: 10px;
}

.browser-line.wide {
  width: 88%;
}

.browser-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
  margin-top: 18px;
}

.browser-grid span {
  height: 58px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(16, 39, 52, 0.08);
}

.web-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.web-tags span {
  color: #0f766e;
  border: 1px solid rgba(11, 185, 168, 0.2);
  background: rgba(11, 185, 168, 0.08);
  border-radius: 999px;
  padding: 7px 10px;
  font-size: 0.78rem;
  font-weight: 900;
}

.simulator-portfolio {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.8), rgba(239, 246, 249, 0.88));
}

.faq-section {
  background: rgba(255, 255, 255, 0.78);
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 980px;
}

.faq-list details {
  border: 1px solid rgba(16, 39, 52, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 32px rgba(15, 35, 52, 0.06);
}

.faq-list summary {
  position: relative;
  padding: 20px 52px 20px 20px;
  color: #102334;
  font-weight: 900;
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: #0f766e;
  font-size: 1.5rem;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  margin: 0;
  padding: 0 20px 20px;
  color: var(--muted);
}

@media (max-width: 1120px) {
  .simulator-grid,
  .simulator-hero-grid {
    grid-template-columns: 1fr;
  }

  .phone-simulator {
    min-height: 620px;
  }
}

@media (max-width: 760px) {
  .simulator-command {
    align-items: flex-start;
    flex-direction: column;
  }

  .scenario-controls,
  .chat-actions,
  .crm-metrics,
  .pipeline {
    grid-template-columns: 1fr;
  }

  .scenario-controls {
    display: grid;
    width: 100%;
  }

  .crm-head {
    flex-direction: column;
  }

  .lead-score {
    width: 100%;
  }

  .phone-simulator {
    min-height: auto;
  }

  .chat-window {
    min-height: 430px;
  }

  .media-tile:not(.media-tile-large) .media-tile-content {
    inset: auto 14px 14px;
    padding: 14px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    background: rgba(5, 12, 18, 0.78);
    backdrop-filter: blur(10px);
  }
}
