:root {
  color-scheme: dark;
  --ink: #f5f3ff;
  --muted: #b9aeea;
  --soft: #05050a;
  --paper: #ffffff;
  --line: rgba(168, 85, 247, 0.2);
  --teal: #7b2fff;
  --teal-ink: #f5f3ff;
  --rose: #a855f7;
  --amber: #4f46e5;
  --blue: #6d5dfc;
  --mint: rgba(123, 47, 255, 0.2);
  --graphite: #11111a;
  --indigo: #14102a;
  --card-bg: rgba(17, 17, 26, 0.72);
  --border-purple: rgba(168, 85, 247, 0.25);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.38);
  --glow-purple: 0 0 32px rgba(123, 47, 255, 0.25);
  --radius: 22px;
  --wrap: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 18% 0%, rgba(123, 47, 255, 0.2) 0, transparent 32%),
    radial-gradient(circle at 82% 12%, rgba(79, 70, 229, 0.14) 0, transparent 28%),
    linear-gradient(180deg, #14102a 0%, #05050a 38%, #030306 100%);
  line-height: 1.55;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(168, 85, 247, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(168, 85, 247, 0.045) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), transparent 72%);
}

body.nav-open {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.wrap {
  width: min(var(--wrap), calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(5, 5, 10, 0.82);
  border-bottom: 1px solid rgba(168, 85, 247, 0.18);
  backdrop-filter: blur(16px);
}

.header-inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

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

.brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: inline-flex;
  overflow: hidden;
  background: #05050a;
  border: 1px solid rgba(168, 85, 247, 0.42);
  box-shadow: 0 0 18px rgba(123, 47, 255, 0.26);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.brand-name {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand-name small {
  color: #9f91d9;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  padding: 0 13px;
  border-radius: 999px;
  color: #cfc7f6;
  font-size: 14px;
  font-weight: 700;
}

.nav a:hover,
.nav a.is-active {
  background: rgba(123, 47, 255, 0.16);
  color: var(--ink);
  box-shadow: inset 0 0 0 1px rgba(168, 85, 247, 0.2);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.lang-switcher {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px;
  border: 1px solid rgba(168, 85, 247, 0.24);
  border-radius: 999px;
  background: rgba(17, 17, 26, 0.58);
}

.lang-switcher a {
  min-width: 30px;
  min-height: 28px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
}

.lang-switcher a:hover,
.lang-switcher a[aria-current="true"] {
  background: rgba(123, 47, 255, 0.22);
  color: var(--ink);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-purple);
  border-radius: 14px;
  background: rgba(17, 17, 26, 0.88);
  color: var(--ink);
  cursor: pointer;
}

.btn {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 17px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: #171022;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.btn svg {
  width: 18px;
  height: 18px;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 28px rgba(123, 47, 255, 0.32);
}

.btn:disabled {
  cursor: wait;
  opacity: 0.62;
  transform: none;
}

.btn.primary {
  background: linear-gradient(135deg, #7b2fff, #a855f7);
  box-shadow: 0 0 24px rgba(123, 47, 255, 0.42);
}

.btn.secondary {
  background: rgba(17, 17, 26, 0.72);
  color: var(--ink);
  border-color: rgba(168, 85, 247, 0.34);
}

.btn.ghost {
  background: transparent;
  color: var(--ink);
  border-color: rgba(168, 85, 247, 0.3);
}

.btn.small {
  min-height: 38px;
  padding-inline: 13px;
}

.eyebrow {
  margin: 0 0 14px;
  color: #a855f7;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero {
  position: relative;
  height: min(760px, calc(100svh - 110px));
  min-height: 650px;
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(circle at 70% 35%, rgba(123, 47, 255, 0.22), transparent 33%),
    radial-gradient(circle at 28% 12%, rgba(79, 70, 229, 0.13), transparent 32%),
    linear-gradient(135deg, #11111a 0%, #05050a 58%, #030306 100%);
}

.hero > .wrap {
  height: 100%;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.82fr);
  gap: 44px;
  align-items: center;
  padding-block: 62px 52px;
}

#signalCanvas {
  position: absolute;
  inset: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
  opacity: 0.5;
  background: transparent;
}

.hero-stage {
  display: none;
}

.stage-panel {
  position: absolute;
  border: 1px solid rgba(21, 23, 24, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 24px 80px rgba(21, 23, 24, 0.12);
  overflow: hidden;
}

.stage-panel.one {
  right: 7vw;
  top: 13%;
  width: min(390px, 34vw);
}

.stage-panel.two {
  right: 18vw;
  bottom: 8%;
  width: min(330px, 32vw);
}

.stage-panel.three {
  right: 3vw;
  bottom: 24%;
  width: min(260px, 24vw);
}

.panel-top {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 14px;
  border-bottom: 1px solid rgba(21, 23, 24, 0.1);
  background: #f8faf6;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.dots {
  display: inline-flex;
  gap: 5px;
}

.dots span {
  width: 7px;
  height: 7px;
  border-radius: 99px;
  background: var(--line);
}

.dots span:nth-child(1) {
  background: var(--rose);
}

.dots span:nth-child(2) {
  background: var(--amber);
}

.dots span:nth-child(3) {
  background: var(--teal);
}

.chat-preview,
.metric-preview,
.flow-preview {
  padding: 16px;
}

.bubble {
  width: fit-content;
  max-width: 92%;
  margin-bottom: 10px;
  padding: 9px 11px;
  border-radius: 8px;
  color: #25302c;
  background: #eff4ef;
  font-size: 13px;
  font-weight: 650;
}

.bubble.bot {
  margin-left: auto;
  background: var(--mint);
}

.bubble.alert {
  border-left: 4px solid var(--rose);
  background: #fff2f3;
}

.metric-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  align-items: center;
  min-height: 34px;
  border-bottom: 1px solid rgba(21, 23, 24, 0.08);
  color: var(--muted);
  font-size: 12px;
}

.metric-row strong {
  color: var(--ink);
  font-size: 18px;
}

.flow-step {
  min-height: 38px;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  padding: 8px 10px;
  border: 1px solid rgba(21, 23, 24, 0.1);
  border-radius: 8px;
  background: #fff;
  color: #24302d;
  font-size: 12px;
  font-weight: 750;
}

.flow-step::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 99px;
  background: var(--blue);
  flex: 0 0 auto;
}

.hero-copy {
  width: min(660px, 100%);
  position: relative;
  z-index: 2;
}

.hero h1,
.page-hero h1 {
  margin: 0;
  max-width: 820px;
  font-size: 72px;
  line-height: 0.96;
  letter-spacing: 0;
}

.hero p.lead,
.page-hero p.lead {
  max-width: 720px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 21px;
  line-height: 1.45;
}

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

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 640px;
  margin-top: 34px;
}

.proof-item {
  min-height: 86px;
  padding: 14px;
  border: 1px solid rgba(168, 85, 247, 0.24);
  border-radius: 18px;
  background: rgba(17, 17, 26, 0.66);
  box-shadow: 0 16px 54px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(16px);
}

.proof-item strong {
  display: block;
  margin-bottom: 3px;
  font-size: 21px;
  line-height: 1;
}

.proof-item span {
  color: #b9aeea;
  font-size: 12px;
  font-weight: 750;
}

section {
  padding-block: 82px;
}

.hero + section {
  padding-top: 72px;
}

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

.section-head h2,
.split-copy h2,
.quote-panel h2 {
  margin: 0;
  font-size: 44px;
  line-height: 1.05;
  letter-spacing: 0;
}

.section-head p,
.split-copy p {
  max-width: 620px;
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 17px;
}

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

.service-card,
.price-card,
.example-card,
.faq-card,
.feature-card,
.use-case,
.deliverable,
.blog-card {
  border: 1px solid rgba(21, 23, 24, 0.12);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 8px 24px rgba(21, 23, 24, 0.04);
}

.service-card {
  min-height: 262px;
  display: flex;
  flex-direction: column;
  padding: 22px;
}

.service-kicker {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-height: 32px;
  margin-bottom: 16px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.service-icon {
  width: 32px;
  height: 32px;
  display: inline-grid;
  place-items: center;
  border-radius: 8px;
  color: #fff;
  background: var(--teal);
}

.service-card:nth-child(2n) .service-icon,
.feature-card:nth-child(2n) .feature-icon {
  background: var(--blue);
}

.service-card:nth-child(3n) .service-icon,
.feature-card:nth-child(3n) .feature-icon {
  background: var(--rose);
}

.service-card h3,
.price-card h3,
.example-card h3,
.feature-card h3,
.use-case h3,
.blog-card h3 {
  margin: 0 0 9px;
  font-size: 22px;
  line-height: 1.16;
}

.service-card p,
.price-card p,
.example-card p,
.feature-card p,
.use-case p,
.deliverable p,
.blog-card p {
  margin: 0;
  color: var(--muted);
}

.service-card .inline-link {
  margin-top: auto;
}

.inline-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--teal);
  font-weight: 900;
}

.inline-link svg {
  width: 16px;
  height: 16px;
}

.band {
  background: var(--paper);
  border-block: 1px solid rgba(21, 23, 24, 0.1);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(340px, 1.08fr);
  gap: 52px;
  align-items: start;
}

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

.feature-card {
  min-height: 188px;
  padding: 20px;
}

.feature-icon {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  border-radius: 8px;
  color: #fff;
  background: var(--amber);
}

.process {
  counter-reset: step;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.process-step {
  position: relative;
  min-height: 178px;
  padding: 18px;
  border: 1px solid rgba(21, 23, 24, 0.12);
  border-radius: 8px;
  background: #fff;
}

.process-step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  margin-bottom: 18px;
  border-radius: 8px;
  background: #eef5ef;
  color: var(--teal);
  font-size: 12px;
  font-weight: 900;
}

.process-step h3 {
  margin: 0 0 7px;
  font-size: 18px;
}

.process-step p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 16px;
}

.price-card {
  min-height: 420px;
  display: flex;
  flex-direction: column;
  padding: 22px;
}

.price-card.highlight {
  border-color: rgba(15, 118, 110, 0.36);
  box-shadow: 0 20px 50px rgba(15, 118, 110, 0.12);
}

.price {
  margin: 16px 0 16px;
  font-size: 30px;
  line-height: 1;
  font-weight: 900;
  overflow-wrap: anywhere;
}

.price small {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.check-list {
  display: grid;
  gap: 10px;
  margin: 0 0 22px;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: grid;
  grid-template-columns: 19px 1fr;
  gap: 8px;
  color: #36413d;
  font-size: 14px;
}

.check-list li::before {
  content: "";
  width: 17px;
  height: 17px;
  margin-top: 2px;
  border-radius: 6px;
  background: var(--mint);
  box-shadow: inset 0 0 0 5px #fff, 0 0 0 1px rgba(15, 118, 110, 0.3);
}

.price-card .btn {
  margin-top: auto;
}

.payment-checkout {
  margin: 0 0 18px;
  padding: 18px;
  border: 1px solid rgba(168, 85, 247, 0.22);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(17, 17, 26, 0.78), rgba(11, 10, 18, 0.84));
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.2);
}

.payment-checkout label {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
}

.payment-checkout input {
  width: 100%;
  min-height: 44px;
  padding: 0 13px;
  border: 1px solid rgba(168, 85, 247, 0.24);
  border-radius: 8px;
  background: rgba(5, 5, 10, 0.7);
  color: var(--ink);
}

.payment-checkout p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.payment-return {
  width: min(var(--wrap), calc(100% - 40px));
  margin: 18px auto 0;
  padding: 14px 16px;
  border: 1px solid rgba(168, 85, 247, 0.3);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(17, 17, 26, 0.92), rgba(11, 10, 18, 0.94));
  color: var(--ink);
  box-shadow: 0 18px 58px rgba(0, 0, 0, 0.22);
  font-size: 14px;
  font-weight: 800;
}

.payment-return-success {
  border-color: rgba(52, 211, 153, 0.4);
}

.payment-return-cancelled {
  border-color: rgba(168, 85, 247, 0.3);
}

.price-actions {
  margin-top: auto;
  display: grid;
  gap: 10px;
}

.price-card .price-actions .btn {
  width: 100%;
  margin-top: 0;
}

.payment-status {
  min-height: 18px;
  margin: 0;
  color: var(--teal);
  font-size: 12px;
  font-weight: 800;
}

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

.example-card {
  overflow: hidden;
}

.example-visual {
  min-height: 180px;
  padding: 18px;
  background: #edf3ec;
  border-bottom: 1px solid rgba(21, 23, 24, 0.1);
}

.mini-screen {
  min-height: 144px;
  display: grid;
  gap: 8px;
  padding: 13px;
  border: 1px solid rgba(21, 23, 24, 0.15);
  border-radius: 8px;
  background: #111715;
  color: #e9f5ef;
}

.mini-line {
  height: 10px;
  border-radius: 6px;
  background: #2c3935;
}

.mini-line.short {
  width: 54%;
  background: var(--teal);
}

.mini-line.rose {
  width: 72%;
  background: var(--rose);
}

.mini-line.amber {
  width: 46%;
  background: var(--amber);
}

.mini-command {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  min-height: 30px;
  align-items: center;
  padding: 6px 8px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  font-size: 12px;
  font-weight: 800;
}

.example-body {
  padding: 20px;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 16px;
}

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 9px;
  border-radius: 999px;
  background: #eef3ec;
  color: #46504b;
  font-size: 12px;
  font-weight: 800;
}

.cta-strip {
  padding-block: 54px;
  background: var(--ink);
  color: #fff;
}

.cta-strip .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.cta-strip h2 {
  margin: 0;
  max-width: 680px;
  font-size: 42px;
  line-height: 1.08;
}

.cta-strip p {
  margin: 10px 0 0;
  max-width: 620px;
  color: #c4ccc7;
}

.cta-strip .btn.secondary {
  background: #fff;
}

.page-hero {
  padding-block: 72px 58px;
  background: #eaf1e9;
  border-bottom: 1px solid rgba(21, 23, 24, 0.1);
}

.crumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
}

.crumbs a {
  color: var(--teal);
}

.page-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.meta-pill {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 0 11px;
  border: 1px solid rgba(21, 23, 24, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  color: #38423e;
  font-size: 13px;
  font-weight: 850;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.filter-btn {
  min-height: 38px;
  padding: 0 13px;
  border: 1px solid rgba(21, 23, 24, 0.16);
  border-radius: 999px;
  background: #fff;
  color: #3e4844;
  font-size: 13px;
  font-weight: 850;
  cursor: pointer;
}

.filter-btn.is-active {
  background: var(--teal);
  color: #fff;
  border-color: var(--teal);
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(320px, 0.38fr);
  gap: 42px;
  align-items: start;
}

.main-flow {
  display: grid;
  gap: 42px;
}

.article-block h2 {
  margin: 0 0 16px;
  font-size: 36px;
  line-height: 1.1;
}

.article-block p {
  color: var(--muted);
  font-size: 17px;
}

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

.use-case {
  min-height: 160px;
  padding: 18px;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  min-height: 54px;
  display: flex;
  align-items: center;
  padding: 12px;
  border: 1px solid rgba(21, 23, 24, 0.12);
  border-radius: 8px;
  background: #fff;
  color: #34403b;
  font-weight: 750;
}

.sidebar {
  position: sticky;
  top: 92px;
  display: grid;
  gap: 14px;
}

.quote-panel,
.sidebar-panel {
  border: 1px solid rgba(21, 23, 24, 0.12);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 36px rgba(21, 23, 24, 0.05);
}

.quote-panel {
  padding: 24px;
}

.quote-panel p {
  color: var(--muted);
}

.sidebar-panel {
  padding: 18px;
}

.sidebar-panel h3 {
  margin: 0 0 10px;
  font-size: 18px;
}

.sidebar-panel p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.quote-form {
  display: grid;
  gap: 14px;
  margin-top: 20px;
}

.field {
  display: grid;
  gap: 7px;
}

.field label {
  color: #303936;
  font-size: 13px;
  font-weight: 850;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 44px;
  border: 1px solid rgba(21, 23, 24, 0.16);
  border-radius: 8px;
  padding: 10px 12px;
  background: #fbfcfa;
  color: var(--ink);
  outline: none;
}

.field textarea {
  min-height: 112px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(15, 118, 110, 0.12);
}

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

.choice {
  min-height: 38px;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 8px 10px;
  border: 1px solid rgba(21, 23, 24, 0.14);
  border-radius: 8px;
  background: #fff;
  color: #3e4844;
  font-size: 13px;
  font-weight: 750;
}

.choice input {
  width: 16px;
  height: 16px;
  accent-color: var(--teal);
}

.form-status {
  min-height: 20px;
  color: var(--teal);
  font-size: 13px;
  font-weight: 800;
}

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

.faq-card {
  padding: 20px;
}

.faq-card h3 {
  margin: 0 0 8px;
  font-size: 18px;
}

.faq-card p {
  margin: 0;
  color: var(--muted);
}

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

.deliverable {
  min-height: 170px;
  padding: 18px;
}

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

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

.blog-card {
  min-height: 150px;
  padding: 18px;
}

.blog-card .inline-link {
  margin-top: 14px;
}

.comparison {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border: 1px solid rgba(21, 23, 24, 0.12);
  border-radius: 8px;
  background: #fff;
}

.comparison th,
.comparison td {
  padding: 14px;
  border-bottom: 1px solid rgba(21, 23, 24, 0.1);
  text-align: left;
  vertical-align: top;
}

.comparison th {
  background: #edf3ec;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.comparison tr:last-child td {
  border-bottom: 0;
}

.site-footer {
  padding-block: 46px;
  background: #121514;
  color: #e8eee9;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 1fr);
  gap: 28px;
}

.footer-grid h3,
.footer-grid h4 {
  margin: 0 0 12px;
}

.footer-grid p,
.footer-grid a {
  color: #b9c4bd;
  font-size: 14px;
}

.footer-grid nav {
  display: grid;
  gap: 8px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: #93a099;
  font-size: 13px;
}

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

.footer-links a {
  color: #d5ddd8;
  font-size: 13px;
  font-weight: 750;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 1060px) {
  .nav {
    position: fixed;
    inset: 72px 0 auto 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    padding: 16px 20px 22px;
    background: rgba(246, 248, 243, 0.98);
    border-bottom: 1px solid rgba(21, 23, 24, 0.1);
    box-shadow: var(--shadow);
  }

  body.nav-open .nav {
    display: flex;
  }

  .nav a {
    min-height: 46px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .header-actions .btn {
    display: none;
  }

  .stage-panel.one {
    right: -80px;
    top: 10%;
    width: 340px;
    opacity: 0.72;
  }

  .stage-panel.two {
    right: 6vw;
    bottom: 7%;
    width: 280px;
    opacity: 0.78;
  }

  .stage-panel.three {
    display: none;
  }

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

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

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

  .content-grid,
  .split {
    grid-template-columns: 1fr;
  }

  .sidebar {
    position: static;
  }

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

@media (max-width: 720px) {
  .wrap {
    width: min(100% - 28px, var(--wrap));
  }

  .header-inner {
    min-height: 66px;
  }

  .brand-name small {
    display: none;
  }

  .nav {
    inset: 66px 0 auto 0;
  }

  .hero {
    height: min(680px, calc(100svh - 86px));
    min-height: 620px;
  }

  .hero > .wrap {
    height: 100%;
    padding-block: 36px 28px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: 46px;
  }

  .hero p.lead,
  .page-hero p.lead {
    font-size: 17px;
  }

  .stage-panel.one {
    display: none;
  }

  .stage-panel.two {
    display: none;
  }

  .service-grid,
  .pricing-grid,
  .examples-grid,
  .why-list,
  .use-case-grid,
  .feature-list,
  .faq-grid,
  .deliverables,
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .hero-proof {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 7px;
    margin-top: 22px;
  }

  .proof-item {
    min-height: 74px;
    padding: 10px;
  }

  .proof-item strong {
    font-size: 18px;
  }

  .proof-item span {
    font-size: 11px;
  }

  .section-head {
    align-items: start;
    flex-direction: column;
  }

  section {
    padding-block: 60px;
  }

  .hero + section {
    padding-top: 36px;
  }

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

  .cta-strip .wrap,
  .footer-bottom {
    align-items: start;
    flex-direction: column;
  }

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

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

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

/* Launch polish: unified Corelia Dark Neon Tech visual system. */
:root {
  --paper: rgba(17, 17, 26, 0.74);
  --panel: rgba(11, 10, 18, 0.82);
  --panel-strong: rgba(20, 16, 42, 0.86);
  --line: rgba(168, 85, 247, 0.24);
  --cyan: #22d3ee;
  --green: #34d399;
}

body {
  background:
    radial-gradient(circle at 18% -4%, rgba(123, 47, 255, 0.22) 0, transparent 34%),
    radial-gradient(circle at 86% 12%, rgba(79, 70, 229, 0.16) 0, transparent 30%),
    linear-gradient(180deg, #14102a 0%, #05050a 34%, #030306 100%);
}

.hero {
  height: auto;
  min-height: 620px;
  overflow: hidden;
}

.hero > .wrap {
  min-height: min(600px, calc(100svh - 72px));
  height: auto;
  grid-template-columns: minmax(0, 0.9fr) minmax(390px, 0.86fr);
  padding-block: 30px 24px;
}

.hero + section {
  padding-top: 40px;
}

.hero-media {
  position: relative;
  z-index: 1;
  margin: 0;
  border: 1px solid rgba(168, 85, 247, 0.24);
  border-radius: 24px;
  background: linear-gradient(145deg, rgba(17, 17, 26, 0.72), rgba(20, 16, 42, 0.82));
  box-shadow: 0 0 70px rgba(123, 47, 255, 0.22), 0 24px 80px rgba(0, 0, 0, 0.42);
  overflow: hidden;
}

.hero-media::after,
.visual-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 50% 85%, rgba(168, 85, 247, 0.18), transparent 46%);
}

.hero-media img,
.visual-panel img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.hero-media img {
  aspect-ratio: 16 / 9;
}

.visual-panel {
  position: relative;
  margin: 0 0 30px;
  border: 1px solid rgba(168, 85, 247, 0.22);
  border-radius: 24px;
  background: var(--panel);
  box-shadow: 0 22px 80px rgba(0, 0, 0, 0.34);
  overflow: hidden;
}

.visual-panel img {
  aspect-ratio: 16 / 9;
}

.service-icon {
  background: linear-gradient(135deg, #7b2fff, var(--cyan));
  box-shadow: 0 0 22px rgba(34, 211, 238, 0.22);
}

.service-card:nth-child(2n) .service-icon,
.price-card:nth-child(2n) .service-icon,
.feature-card:nth-child(2n) .feature-icon {
  background: linear-gradient(135deg, #4f46e5, var(--green));
}

.service-card:nth-child(3n) .service-icon,
.price-card:nth-child(3n) .service-icon,
.feature-card:nth-child(3n) .feature-icon {
  background: linear-gradient(135deg, #a855f7, #22d3ee);
}

.service-card,
.price-card,
.example-card,
.faq-card,
.feature-card,
.use-case,
.deliverable,
.blog-card,
.process-step,
.quote-panel,
.sidebar-panel,
.comparison,
.feature-list li,
.meta-pill,
.filter-btn,
.choice {
  border-color: rgba(168, 85, 247, 0.22);
  background: linear-gradient(180deg, rgba(17, 17, 26, 0.82), rgba(11, 10, 18, 0.86));
  box-shadow: 0 18px 58px rgba(0, 0, 0, 0.22);
}

.service-card:hover,
.price-card:hover,
.blog-card:hover,
.example-card:hover,
.use-case:hover {
  border-color: rgba(168, 85, 247, 0.42);
  box-shadow: 0 0 34px rgba(123, 47, 255, 0.14), 0 22px 70px rgba(0, 0, 0, 0.32);
}

.band {
  background:
    radial-gradient(circle at 18% 0%, rgba(123, 47, 255, 0.11), transparent 28%),
    linear-gradient(180deg, rgba(20, 16, 42, 0.74), rgba(5, 5, 10, 0.92));
  border-block-color: rgba(168, 85, 247, 0.18);
}

.page-hero {
  background:
    radial-gradient(circle at 20% 0%, rgba(123, 47, 255, 0.22), transparent 32%),
    linear-gradient(135deg, #14102a, #05050a 68%);
  border-bottom-color: rgba(168, 85, 247, 0.18);
}

.process-step::before,
.check-list li::before {
  background: rgba(34, 211, 238, 0.2);
  box-shadow: inset 0 0 0 5px rgba(17, 17, 26, 0.9), 0 0 0 1px rgba(34, 211, 238, 0.34);
}

.check-list li,
.feature-list li,
.field label,
.choice,
.filter-btn,
.meta-pill {
  color: var(--ink);
}

.example-visual,
.comparison th,
.tag {
  background: rgba(20, 16, 42, 0.88);
  color: var(--ink);
  border-color: rgba(168, 85, 247, 0.2);
}

.mini-screen {
  background: rgba(5, 5, 10, 0.95);
  border-color: rgba(168, 85, 247, 0.22);
}

.mini-line {
  background: rgba(185, 174, 234, 0.22);
}

.cta-strip {
  background:
    radial-gradient(circle at 76% 18%, rgba(168, 85, 247, 0.24), transparent 30%),
    linear-gradient(135deg, #14102a, #05050a);
  color: var(--ink);
  border-block: 1px solid rgba(168, 85, 247, 0.2);
}

.cta-strip p,
.footer-grid p,
.footer-grid a,
.footer-bottom {
  color: var(--muted);
}

.cta-strip .btn.secondary {
  background: rgba(17, 17, 26, 0.78);
  color: var(--ink);
}

.field input,
.field select,
.field textarea {
  border-color: rgba(168, 85, 247, 0.24);
  background: rgba(5, 5, 10, 0.68);
  color: var(--ink);
}

.field input::placeholder,
.field textarea::placeholder {
  color: rgba(185, 174, 234, 0.68);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--rose);
  box-shadow: 0 0 0 4px rgba(168, 85, 247, 0.14);
}

.comparison th,
.comparison td {
  border-bottom-color: rgba(168, 85, 247, 0.16);
}

.site-footer {
  background: #05050a;
  border-top: 1px solid rgba(168, 85, 247, 0.18);
}

@media (max-width: 1060px) {
  .nav {
    background: rgba(5, 5, 10, 0.98);
    border-bottom-color: rgba(168, 85, 247, 0.2);
  }

  .hero > .wrap {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-media {
    max-width: 720px;
  }
}

@media (max-width: 720px) {
  .hero {
    height: auto;
    min-height: 0;
  }

  .hero > .wrap {
    height: auto;
    padding-block: 48px 42px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: 46px;
  }

  .hero-media {
    border-radius: 18px;
  }

  .hero-proof {
    grid-template-columns: 1fr;
  }

  .proof-item {
    min-height: 66px;
  }
}
