
:root {
  --bg: #07060C;
  --bg-soft: #100D18;
  --panel: rgba(255, 255, 255, 0.07);
  --panel-strong: rgba(255, 255, 255, 0.11);
  --border: rgba(255, 255, 255, 0.16);
  --text: #F8F7FF;
  --muted: #A9A3B8;
  --muted-strong: #D8D4E8;
  --accent: #FF3BD5;
  --accent-2: #35E6FF;
  --accent-3: #B88CFF;
  --radius: 26px;
  --font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mono: "JetBrains Mono", "SFMono-Regular", Consolas, monospace;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

/* Animated Tron-style background */
.tron-bg {
  position: fixed;
  inset: 0;
  z-index: -4;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 15%, rgba(255, 59, 213, .16), transparent 25%),
    radial-gradient(circle at 78% 22%, rgba(53, 230, 255, .12), transparent 28%),
    linear-gradient(180deg, #030209 0%, #100D18 48%, #030209 100%);
}

.tron-bg::before {
  content: "";
  position: absolute;
  left: -60%;
  right: -60%;
  bottom: -48%;
  height: 95%;
  transform-origin: 50% 100%;
  transform: perspective(720px) rotateX(62deg);
  background-image:
    linear-gradient(to right, rgba(255,59,213,0) 0 47%, rgba(255,59,213,.32) 49%, rgba(255,59,213,.32) 51%, rgba(255,59,213,0) 53% 100%),
    linear-gradient(to bottom, rgba(53,230,255,0) 0 46%, rgba(53,230,255,.32) 49%, rgba(53,230,255,.32) 51%, rgba(53,230,255,0) 54% 100%);
  background-size: 96px 96px;
  filter: drop-shadow(0 0 8px rgba(255,59,213,.36)) drop-shadow(0 0 14px rgba(53,230,255,.24));
  opacity: .34;
  animation: tronDrift 9s linear infinite;
  mask-image: linear-gradient(to top, black 0%, black 44%, transparent 83%);
}

.tron-bg::after {
  content: "";
  position: absolute;
  inset: -20%;
  background:
    linear-gradient(105deg, transparent 0 38%, rgba(255,59,213,.15) 46%, transparent 54% 100%),
    linear-gradient(75deg, transparent 0 58%, rgba(53,230,255,.13) 64%, transparent 72% 100%);
  animation: lightSweep 8s ease-in-out infinite alternate;
  opacity: .55;
}

.horizon {
  position: absolute;
  left: -8vw;
  right: -8vw;
  top: 60%;
  height: min(26vh, 270px);
  overflow: hidden;
  opacity: .26;
  pointer-events: none;
  mask-image: linear-gradient(to bottom, transparent 0%, black 18%, black 66%, transparent 100%);
}

.horizon::before,
.horizon::after {
  content: "";
  position: absolute;
  inset: 0;
  background-repeat: repeat-x;
  background-size: 820px 220px;
  background-position: 50% 38%;
  filter: drop-shadow(0 0 9px rgba(255,59,213,.24)) drop-shadow(0 0 16px rgba(53,230,255,.18));
}

.horizon::before {
  background-image: url("data:image/svg+xml,%3Csvg width='820' height='220' viewBox='0 0 820 220' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 112 C120 52 210 52 330 112 S540 172 660 112 S780 52 900 112' fill='none' stroke='%23ff3bd5' stroke-width='2.4' stroke-opacity='.55'/%3E%3Cpath d='M-50 145 C80 82 190 82 320 145 S560 208 690 145 S840 82 970 145' fill='none' stroke='%2335e6ff' stroke-width='1.8' stroke-opacity='.44'/%3E%3Cpath d='M-20 76 C96 20 206 20 322 76 S538 132 654 76 S786 20 902 76' fill='none' stroke='%23b88cff' stroke-width='1.5' stroke-opacity='.30'/%3E%3C/svg%3E");
  animation: waveDrift 18s linear infinite;
}

.horizon::after {
  background-image: url("data:image/svg+xml,%3Csvg width='820' height='220' viewBox='0 0 820 220' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 108 C80 78 150 74 230 106 S390 145 480 106 S650 68 760 108 S910 146 1010 108' fill='none' stroke='%2335e6ff' stroke-width='1.3' stroke-opacity='.32'/%3E%3Cpath d='M0 132 C90 105 175 102 265 132 S425 164 530 132 S690 100 820 132' fill='none' stroke='%23ff3bd5' stroke-width='1.1' stroke-opacity='.24'/%3E%3C/svg%3E");
  background-size: 620px 190px;
  background-position: 50% 48%;
  opacity: .78;
  animation: waveDriftReverse 24s linear infinite;
}

.horizon-line {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,59,213,.58), rgba(53,230,255,.52), transparent);
  box-shadow: 0 0 24px rgba(255,59,213,.34), 0 0 80px rgba(53,230,255,.18);
}

.orb {
  position: absolute;
  width: 42vw;
  aspect-ratio: 1;
  border-radius: 50%;
  left: 50%;
  top: 3%;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(255,59,213,.12), rgba(53,230,255,.08) 38%, transparent 70%);
  filter: blur(8px);
  opacity: .7;
  animation: pulseOrb 6s ease-in-out infinite alternate;
}

.scanline {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(to bottom, rgba(255,255,255,.025) 0px, rgba(255,255,255,.025) 1px, transparent 1px, transparent 5px);
  opacity: .14;
  mix-blend-mode: screen;
  pointer-events: none;
}

@keyframes tronDrift {
  from { background-position: 0 0, 0 0; }
  to { background-position: 0 96px, 0 96px; }
}
@keyframes lightSweep {
  from { transform: translateX(-3%) translateY(0); }
  to { transform: translateX(4%) translateY(2%); }
}
@keyframes waveDrift {
  from { background-position-x: 0; }
  to { background-position-x: 820px; }
}
@keyframes waveDriftReverse {
  from { background-position-x: 0; }
  to { background-position-x: -620px; }
}
@keyframes pulseOrb {
  from { opacity: .42; transform: translateX(-50%) scale(.94); }
  to { opacity: .78; transform: translateX(-50%) scale(1.06); }
}
@media (prefers-reduced-motion: reduce) {
  .tron-bg::before, .tron-bg::after, .orb, .horizon::before, .horizon::after { animation: none; }
}

.page {
  width: min(1160px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 24px 0 88px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 14px;
  z-index: 5;
  padding: 11px 14px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(7,6,12,.64);
  backdrop-filter: blur(18px);
  border-radius: 999px;
  box-shadow: 0 22px 70px rgba(0,0,0,.35);
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  text-decoration: none;
  font: 900 .98rem/1 var(--mono);
  letter-spacing: .08em;
}
.logo-img {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 0 22px rgba(255,59,213,.22), 0 0 18px rgba(53,230,255,.12);
}

.nav-links { display: flex; align-items: center; gap: 18px; }
.nav a { color: #ebe8ff; text-decoration: none; font-size: .92rem; }
.nav .pill {
  padding: 10px 14px;
  border: 1px solid rgba(255,59,213,.35);
  border-radius: 999px;
  color: #fff;
  background: rgba(255,59,213,.09);
}

.hero { padding: clamp(5rem, 10vw, 9rem) 0 3.5rem; max-width: 960px; }
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 20px;
  color: #8ff3ff;
  text-transform: uppercase;
  letter-spacing: .16em;
  font: 800 .74rem/1 var(--mono);
}
.kicker::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 18px rgba(255,59,213,.85);
}

h1 {
  margin: 0;
  font-size: clamp(2.45rem, 6.8vw, 6.25rem);
  line-height: 1.04;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}
.hero-rotating-line {
  display: block;
  transition: opacity .18s ease, transform .18s ease;
}
.hero-rotating-line.is-changing,
[data-hero-support].is-changing {
  opacity: .18;
  transform: translateY(6px);
}
[data-hero-support] {
  transition: opacity .18s ease, transform .18s ease;
}
h2 {
  margin: 0;
  font-size: clamp(1.9rem, 3.4vw, 3.6rem);
  line-height: 1.12;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}
h3 {
  margin: 0;
  font-size: 1.45rem;
  line-height: 1.2;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}
p { color: var(--muted); line-height: 1.68; }
.hero p {
  max-width: 740px;
  margin: 22px 0 0;
  color: #d5d0e6;
  font-size: clamp(1rem, 1.45vw, 1.18rem);
  line-height: 1.7;
}

.gradient-text {
  background: linear-gradient(135deg, #FF3BD5, #B88CFF 48%, #35E6FF);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.actions { display: flex; gap: 13px; flex-wrap: wrap; margin-top: 28px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  border: 1px solid rgba(255,255,255,.14);
  text-decoration: none;
}
.btn:hover,
.btn:focus-visible { text-decoration: none; }
.primary {
  background: linear-gradient(135deg, #FF3BD5, #B88CFF 52%, #35E6FF);
  color: #07060C;
  box-shadow: 0 0 28px rgba(255,59,213,.35), 0 0 44px rgba(53,230,255,.18);
}
.secondary {
  background: rgba(255,255,255,.12);
  color: #ffffff;
  border-color: rgba(255,255,255,.24);
}

.bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
  margin-top: 30px;
}
.card {
  position: relative;
  min-height: 210px;
  padding: clamp(1.25rem, 2vw, 2rem);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255,255,255,.09), rgba(255,255,255,.045));
  border: 1px solid var(--border);
  box-shadow: 0 30px 90px rgba(0,0,0,.35);
  backdrop-filter: blur(18px);
  overflow: hidden;
}
.card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255,59,213,.15), transparent 38%, rgba(53,230,255,.13));
  opacity: 0;
  transition: opacity .24s ease;
}
.card:hover::before { opacity: .95; }
.card:hover { border-color: rgba(255,59,213,.42); }
.card > * { position: relative; z-index: 1; }
.card p { margin-bottom: 0; }
.card[href],
.product-offer-card {
  color: inherit;
  text-decoration: none;
}

.product-offer-card h2,
.product-offer-card h3,
.product-offer-card p,
.product-offer-card span {
  text-decoration: none;
}

.product-offer-card {
  display: grid;
  align-content: start;
  gap: 16px;
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.product-offer-card h2 {
  font-size: clamp(2.25rem, 3.6vw, 3.8rem);
  line-height: 1.1;
}

.product-offer-card h3 {
  font-size: clamp(1.45rem, 2.1vw, 2rem);
  line-height: 1.18;
}

.product-offer-card:hover,
.product-offer-card:focus-visible {
  border-color: rgba(53,230,255,.34);
  box-shadow: 0 24px 80px rgba(0,0,0,.34), 0 0 34px rgba(53,230,255,.12), 0 0 30px rgba(255,59,213,.1);
  outline: none;
  transform: translateY(-3px);
}

.product-visual {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 14px;
  display: block;
  object-fit: cover;
  object-position: center;
  background: rgba(0,0,0,.22);
}

.card-link-label {
  color: #9ef5ff;
  font: 900 .72rem/1 var(--mono);
  letter-spacing: 0;
  text-transform: uppercase;
}
.span12 { grid-column: span 12; }
.span8 { grid-column: span 8; }
.span7 { grid-column: span 7; }
.span6 { grid-column: span 6; }
.span5 { grid-column: span 5; }
.span4 { grid-column: span 4; }
.span3 { grid-column: span 3; }

.product-summary .card {
  min-height: 190px;
}

.product-grid,
.showcase-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
}

.product-card {
  grid-column: span 4;
  min-height: 250px;
  display: grid;
  align-content: start;
  gap: 14px;
}

.featured-products .product-card {
  min-height: 420px;
}

.product-card-featured {
  grid-column: span 6;
}

.product-card-featured h3 {
  font-size: clamp(1.85rem, 2.7vw, 2.8rem);
}

.product-visual-large {
  aspect-ratio: 16 / 8.4;
}

.compact-products .product-card {
  min-height: 230px;
}

.portfolio-products .product-card {
  min-height: 410px;
}

.portfolio-card-wide {
  grid-column: span 6;
}

.project-status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 8px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,.12);
  color: #d9d5ff;
  font-size: .86rem;
}

.project-status strong {
  color: #f8f7ff;
  font-weight: 800;
  text-align: right;
}

.product-card p {
  align-self: start;
}

.product-card .actions {
  margin-top: 4px;
}

.product-card .btn {
  min-height: 40px;
  padding: 0 14px;
  font-size: .86rem;
}

.price-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,.12);
  color: #f8f7ff;
  font: 900 .82rem/1 var(--mono);
}

.price-line span {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.075);
  border: 1px solid rgba(255,255,255,.12);
}

.price-line span:last-child {
  color: #07060C;
  border-color: transparent;
  background: linear-gradient(135deg, #FF3BD5, #B88CFF 52%, #35E6FF);
}

.showcase-card {
  grid-column: span 4;
  min-height: 260px;
  display: grid;
  align-content: start;
  gap: 14px;
}

.showcase-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font: 800 .78rem/1 var(--mono);
  color: #9ef5ff;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.showcase-head strong {
  color: #ffc2f4;
  font-size: .72rem;
}

.mini-list,
.mini-chat,
.mini-table,
.mini-posts,
.mini-search,
.mini-answer,
.mini-caption {
  position: relative;
  z-index: 1;
}

.mini-list {
  display: grid;
  gap: 9px;
}

.mini-list div,
.mini-table {
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 14px;
  background: rgba(0,0,0,.22);
}

.mini-list div {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 11px;
}

.mini-list span,
.mini-table span,
.mini-caption {
  color: var(--muted);
}

.mini-list strong,
.mini-table strong {
  color: #fff;
  text-align: right;
}

.mini-bars {
  display: grid;
  gap: 8px;
}

.mini-bars span,
.mini-meter {
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, #FF3BD5, #35E6FF);
  box-shadow: 0 0 18px rgba(53,230,255,.2);
}

.mini-chat {
  display: grid;
  gap: 9px;
}

.mini-chat p {
  width: fit-content;
  max-width: 88%;
  margin: 0;
  padding: 10px 12px;
  border-radius: 16px;
  color: #efeaff;
  background: rgba(255,255,255,.075);
  border: 1px solid rgba(255,255,255,.12);
}

.mini-chat p:nth-child(2) {
  justify-self: end;
  color: #07060C;
  border-color: transparent;
  background: linear-gradient(135deg, #FF3BD5, #B88CFF 52%, #35E6FF);
}

.mini-table {
  display: grid;
  grid-template-columns: .75fr 1fr;
  gap: 0;
  overflow: hidden;
}

.mini-table span,
.mini-table strong {
  padding: 11px;
  border-bottom: 1px solid rgba(255,255,255,.10);
}

.mini-table span:nth-last-child(-n + 2),
.mini-table strong:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.mini-search,
.mini-answer {
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 16px;
  padding: 12px;
}

.mini-search {
  color: #fff;
  background: rgba(0,0,0,.24);
}

.mini-answer {
  color: #d5d0e6;
  background: rgba(53,230,255,.08);
}

.mini-posts {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.mini-posts span {
  padding: 9px 10px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px;
  color: #efeaff;
  background: rgba(255,255,255,.07);
  font-size: .86rem;
}

.mini-meter {
  background: rgba(255,255,255,.10);
  overflow: hidden;
}

.mini-meter span {
  display: block;
  width: 72%;
  height: 100%;
  background: linear-gradient(90deg, #FF3BD5, #35E6FF);
}

.mini-image-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.mini-image-pair div {
  display: grid;
  place-items: center;
  min-height: 104px;
  border-radius: 18px;
  color: #fff;
  font-weight: 900;
  background:
    linear-gradient(135deg, rgba(255,255,255,.13), rgba(255,255,255,.03)),
    repeating-linear-gradient(45deg, rgba(255,255,255,.08) 0 8px, transparent 8px 16px);
  border: 1px solid rgba(255,255,255,.13);
}

.mini-image-pair div:last-child {
  color: #07060C;
  background:
    radial-gradient(circle at 50% 40%, #fff 0 18%, transparent 19%),
    linear-gradient(135deg, #FF3BD5, #B88CFF 52%, #35E6FF);
}

.product-note {
  min-height: auto;
}

.web-hero {
  max-width: 1040px;
}

.availability-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 8px 0 24px;
}

.availability-strip div {
  min-height: 118px;
  padding: 18px;
  border: 1px solid rgba(53,230,255,.24);
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(255,59,213,.12), transparent 38%, rgba(53,230,255,.12)),
    rgba(255,255,255,.055);
  box-shadow: 0 28px 80px rgba(0,0,0,.28);
}

.availability-strip strong {
  display: block;
  margin-top: 16px;
  color: #fff;
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  line-height: .92;
  letter-spacing: -.065em;
}

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

.pricing-card {
  min-height: 360px;
}

.pricing-card h3 {
  margin-bottom: 10px;
  font-size: clamp(2rem, 3vw, 3rem);
}

.featured-price {
  border-color: rgba(255,59,213,.45);
  box-shadow: 0 30px 95px rgba(255,59,213,.13), 0 30px 90px rgba(0,0,0,.35);
}

.compact-list {
  gap: 8px;
  margin-top: 20px;
}

.compact-list li {
  padding: 11px 12px;
  border-radius: 14px;
  font-size: .93rem;
}

.pricing-note {
  margin-top: 16px;
  color: var(--muted-strong);
}

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

.add-on-grid .pricing-card {
  min-height: 270px;
}

.add-on-grid .pricing-card h3 {
  font-size: clamp(1.55rem, 2.2vw, 2.25rem);
}

.bundle-card {
  border-color: rgba(53,230,255,.42);
}

.win-card {
  min-height: 260px;
}

.final-cta {
  display: grid;
  gap: 16px;
  min-height: auto;
}

.footer a {
  color: #9ef5ff;
  text-decoration: none;
  text-underline-offset: 3px;
}

.footer a:hover,
.footer a:focus-visible {
  text-decoration: underline;
}

.tag {
  display: inline-flex;
  width: max-content;
  color: #c8fbff;
  background: rgba(53,230,255,.14);
  border: 1px solid rgba(53,230,255,.48);
  border-radius: 999px;
  padding: 8px 11px;
  margin-bottom: 18px;
  font: 850 .74rem/1 var(--mono);
  text-transform: uppercase;
  letter-spacing: .08em;
}
.status {
  color: #ffd6f8;
  border-color: rgba(255,59,213,.4);
  background: rgba(255,59,213,.14);
}

.section { padding: clamp(3rem, 6vw, 6rem) 0 0; }
.section-head { max-width: 760px; margin-bottom: 26px; }
.sales-hero {
  min-height: min(760px, calc(100vh - 64px));
}

.sales-hero h1 {
  max-width: 1060px;
}

.sales-hero p {
  max-width: 740px;
}

.sales-path .bento,
.trust-section .bento {
  align-items: stretch;
}

.sales-package {
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

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

.flow-card {
  min-height: 360px;
  display: grid;
  align-content: start;
  gap: 18px;
}

.flow-before {
  border-color: rgba(255,255,255,.14);
}

.flow-after {
  border-color: rgba(53,230,255,.4);
  box-shadow: 0 24px 80px rgba(0,0,0,.3), 0 0 36px rgba(53,230,255,.1);
}

.flow-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: flow-step;
}

.flow-list li {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 12px;
  align-items: center;
  min-height: 52px;
  padding: 11px 12px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 18px;
  color: var(--muted-strong);
  background: rgba(255,255,255,.045);
}

.flow-list li::before {
  counter-increment: flow-step;
  content: counter(flow-step);
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  color: #07060C;
  background: linear-gradient(135deg, #FF3BD5, #B88CFF 52%, #35E6FF);
  font: 900 .82rem/1 var(--mono);
}

.missed-call-calculator,
.calculator-result {
  min-height: 420px;
}

.missed-call-calculator {
  display: grid;
  gap: 14px;
}

.missed-call-calculator .field-label {
  padding: 14px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 18px;
  background: rgba(255,255,255,.04);
}

.missed-call-calculator .input {
  min-height: 48px;
  margin-top: 2px;
}

.calculator-result {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
  border-color: rgba(255,59,213,.34);
}

.calculator-result strong {
  color: #fff;
  font-size: clamp(3rem, 7vw, 6.6rem);
  line-height: .96;
  letter-spacing: 0;
  text-shadow: 0 0 28px rgba(255,59,213,.24);
}

.calculator-result p {
  max-width: 560px;
  color: var(--muted-strong);
}

.industry-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.industry-cloud a {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  border: 1px solid rgba(53,230,255,.22);
  border-radius: 999px;
  padding: 0 16px;
  color: #f8f7ff;
  background: rgba(255,255,255,.055);
  text-decoration: none;
  font-weight: 800;
}

.industry-cloud a:hover,
.industry-cloud a:focus-visible {
  border-color: rgba(53,230,255,.5);
  background: rgba(53,230,255,.12);
  outline: none;
}

.list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}
.list li {
  padding: 14px 16px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.045);
  border-radius: 18px;
  color: #ddd8ed;
}

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

.faq-item {
  min-height: 190px;
}

.faq-item h3 {
  margin-bottom: 12px;
}

.meta {
  color: #9ef5ff;
  font: 800 .72rem/1 var(--mono);
  letter-spacing: .08em;
  text-transform: uppercase;
}
.footer {
  margin-top: 76px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.12);
  color: var(--muted);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.form {
  display: grid;
  gap: 12px;
}
.input {
  width: 100%;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.28);
  color: var(--text);
  border-radius: 16px;
  padding: 14px 14px;
  font: inherit;
}
.field-label {
  color: var(--muted-strong);
  display: grid;
  font: 800 .72rem/1 var(--mono);
  gap: 7px;
  letter-spacing: 0;
  text-transform: uppercase;
}
textarea.input { min-height: 140px; resize: vertical; }

.chat-widget {
  position: fixed;
  right: clamp(14px, 2.4vw, 28px);
  bottom: clamp(14px, 2.4vw, 28px);
  z-index: 80;
  font-family: var(--font);
  display: grid;
  justify-items: end;
  gap: 10px;
  max-width: min(420px, calc(100vw - 28px));
}

.chat-nudge {
  max-width: min(360px, calc(100vw - 28px));
  display: grid;
  gap: 5px;
  padding: 12px 14px;
  border: 1px solid rgba(53,230,255,.26);
  border-radius: 18px 18px 6px 18px;
  color: #f8f7ff;
  background:
    linear-gradient(145deg, rgba(255,59,213,.16), transparent 34%, rgba(53,230,255,.13)),
    rgba(7,6,12,.9);
  box-shadow: 0 20px 58px rgba(0,0,0,.44), 0 0 28px rgba(53,230,255,.16);
  backdrop-filter: blur(18px);
  transform: translateY(0);
  transition: border-color .18s ease, transform .18s ease, box-shadow .18s ease;
}

.chat-widget.is-open .chat-nudge {
  display: none;
}

.chat-widget.is-attentive .chat-nudge {
  border-color: rgba(255,59,213,.48);
  box-shadow: 0 22px 68px rgba(0,0,0,.48), 0 0 34px rgba(255,59,213,.22), 0 0 30px rgba(53,230,255,.18);
  transform: translateY(-3px);
}

.chat-nudge-label {
  color: #9ef5ff;
  font: 900 .68rem/1 var(--mono);
  letter-spacing: 0;
  text-transform: uppercase;
}

.chat-nudge-text {
  color: #efeaff;
  font-size: .91rem;
  line-height: 1.36;
}

.chat-launcher {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 62px;
  padding: 8px 17px 8px 10px;
  border: 1px solid rgba(53,230,255,.38);
  border-radius: 22px;
  color: #f8f7ff;
  background:
    linear-gradient(135deg, rgba(255,59,213,.16), rgba(53,230,255,.13)),
    rgba(7,6,12,.86);
  box-shadow: 0 18px 60px rgba(0,0,0,.42), 0 0 24px rgba(53,230,255,.18), 0 0 28px rgba(255,59,213,.16);
  backdrop-filter: blur(18px);
  font: 900 .86rem/1 var(--mono);
  letter-spacing: 0;
  cursor: pointer;
  transform: translateZ(0);
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.chat-launcher:hover,
.chat-launcher:focus-visible {
  border-color: rgba(255,59,213,.58);
  box-shadow: 0 22px 70px rgba(0,0,0,.48), 0 0 34px rgba(255,59,213,.22), 0 0 34px rgba(53,230,255,.2);
  outline: none;
  transform: translateY(-2px);
}

.chat-launcher-avatar {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.08);
}

.chat-launcher-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: linear-gradient(135deg, #FF3BD5, #35E6FF);
  box-shadow: 0 0 18px rgba(53,230,255,.8), 0 0 16px rgba(255,59,213,.42);
}

.chat-launcher-copy {
  display: grid;
  gap: 5px;
  text-align: left;
}

.chat-launcher-kicker {
  color: #9ef5ff;
  font-size: .62rem;
  letter-spacing: 0;
  text-transform: uppercase;
}

.chat-panel {
  position: absolute;
  right: 0;
  bottom: 86px;
  width: min(390px, calc(100vw - 28px));
  height: min(610px, calc(100vh - 110px));
  display: grid;
  grid-template-rows: auto 1fr auto;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 24px;
  background:
    linear-gradient(145deg, rgba(255,59,213,.12), transparent 28%, rgba(53,230,255,.10)),
    rgba(7,6,12,.88);
  box-shadow: 0 34px 110px rgba(0,0,0,.62), 0 0 42px rgba(255,59,213,.16), 0 0 42px rgba(53,230,255,.12);
  backdrop-filter: blur(22px);
}

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

.chat-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 16px 16px 14px;
  border-bottom: 1px solid rgba(255,255,255,.12);
}

.chat-title {
  color: #fff;
  font-weight: 900;
  letter-spacing: -.02em;
}

.chat-subtitle {
  margin-top: 4px;
  color: var(--muted);
  font-size: .82rem;
}

.chat-close {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 50%;
  color: #fff;
  background: rgba(255,255,255,.06);
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
}

.chat-close:hover,
.chat-close:focus-visible {
  border-color: rgba(255,59,213,.48);
  outline: none;
}

.chat-messages {
  display: flex;
  flex-direction: column;
  gap: 10px;
  overflow-y: auto;
  padding: 16px;
  scrollbar-width: thin;
  scrollbar-color: rgba(53,230,255,.45) transparent;
}

.chat-bubble {
  max-width: 88%;
  padding: 11px 13px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 17px;
  color: #efeaff;
  background: rgba(255,255,255,.07);
  line-height: 1.45;
  font-size: .94rem;
}

.chat-bubble.assistant {
  align-self: flex-start;
  border-top-left-radius: 6px;
}

.chat-bubble.user {
  align-self: flex-end;
  border-top-right-radius: 6px;
  color: #07060C;
  border-color: transparent;
  background: linear-gradient(135deg, #FF3BD5, #B88CFF 52%, #35E6FF);
}

.chat-bubble.thinking {
  color: #9ef5ff;
  font-family: var(--mono);
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.chat-privacy-note {
  padding: 8px 16px 0;
  color: rgba(216,212,232,.62);
  font-size: .7rem;
  line-height: 1.35;
}

.chat-lead-card {
  align-self: flex-start;
  max-width: 92%;
  display: grid;
  gap: 10px;
  padding: 12px;
  border: 1px solid rgba(53,230,255,.24);
  border-radius: 17px;
  border-top-left-radius: 6px;
  color: #efeaff;
  background: rgba(53,230,255,.08);
}

.chat-lead-card p {
  margin: 0;
  color: #efeaff;
  font-size: .91rem;
  line-height: 1.42;
}

.chat-lead-card .chat-lead-email {
  color: #9ef5ff;
  font-family: var(--mono);
  font-size: .74rem;
  overflow-wrap: anywhere;
}

.chat-lead-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.chat-lead-actions button {
  min-height: 36px;
  border-radius: 999px;
  padding: 0 12px;
  font-weight: 900;
  cursor: pointer;
}

.chat-lead-confirm {
  border: 1px solid rgba(53,230,255,.34);
  color: #07060C;
  background: linear-gradient(135deg, #FF3BD5, #B88CFF 52%, #35E6FF);
}

.chat-lead-cancel {
  border: 1px solid rgba(255,255,255,.16);
  color: #f8f7ff;
  background: rgba(255,255,255,.07);
}

.chat-lead-card.is-sending,
.chat-lead-actions button:disabled {
  cursor: wait;
  opacity: .72;
}

.chat-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  padding: 12px;
  border-top: 1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.18);
}

.chat-input {
  min-height: 42px;
  max-height: 110px;
  resize: none;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 16px;
  padding: 11px 12px;
  color: var(--text);
  background: rgba(0,0,0,.28);
  font: inherit;
  line-height: 1.35;
}

.chat-input:focus {
  border-color: rgba(53,230,255,.5);
  outline: none;
}

.chat-send {
  min-width: 72px;
  border: 1px solid rgba(53,230,255,.34);
  border-radius: 15px;
  color: #07060C;
  background: linear-gradient(135deg, #FF3BD5, #B88CFF 52%, #35E6FF);
  font-weight: 900;
  cursor: pointer;
}

.chat-send:disabled,
.chat-input:disabled {
  cursor: wait;
  opacity: .72;
}

@media (max-width: 820px) {
  .page { width: min(100% - 1.15rem, 1160px); }
  .nav-links a:not(.pill) { display: none; }
  .hero {
    padding-top: 4.25rem;
    padding-bottom: 2.25rem;
  }
  h1 {
    font-size: clamp(2.3rem, 10.4vw, 4.1rem);
    line-height: 1.08;
  }
  h2 {
    font-size: clamp(1.75rem, 8.2vw, 3rem);
    line-height: 1.14;
  }
  h3 { line-height: 1.24; }
  .kicker {
    max-width: 100%;
    flex-wrap: wrap;
    gap: 7px;
    font-size: .66rem;
    line-height: 1.35;
  }
  .hero p {
    margin-top: 18px;
    font-size: 1rem;
    line-height: 1.62;
  }
  .actions {
    display: grid;
    gap: 10px;
    margin-top: 22px;
  }
  .btn { width: 100%; }
  .bento { grid-template-columns: 1fr; }
  .span12,.span8,.span7,.span6,.span5,.span4,.span3 { grid-column: 1 / -1; }
  .product-grid,
  .showcase-grid,
  .pricing-grid,
  .add-on-grid,
  .availability-strip,
  .before-after-grid,
  .calculator-grid {
    grid-template-columns: 1fr;
  }
  .product-card,
  .showcase-card {
    grid-column: 1 / -1;
  }
  .faq-list {
    grid-template-columns: 1fr;
  }
  .price-line {
    align-items: flex-start;
    flex-direction: column;
  }
  .sales-package,
  .flow-card,
  .missed-call-calculator,
  .calculator-result {
    min-height: auto;
  }
  .calculator-result strong {
    font-size: clamp(2.6rem, 17vw, 4.8rem);
  }
  .industry-cloud a {
    flex: 1 1 auto;
    justify-content: center;
  }
  .card { min-height: auto; }
  .horizon {
    top: 70%;
    height: min(22vh, 190px);
    opacity: .18;
  }
  .tron-bg::before { opacity: .24; background-size: 74px 74px; }
  .footer { display: block; }
  .chat-widget {
    right: 12px;
    bottom: 12px;
    left: 12px;
    max-width: none;
  }
  .chat-nudge {
    display: none;
  }
  .chat-launcher {
    margin-left: auto;
    width: 58px;
    min-height: 58px;
    padding: 7px;
    border-radius: 20px;
  }
  .chat-launcher-copy {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
  }
  .chat-panel {
    right: 0;
    left: 0;
    width: auto;
    height: min(570px, calc(100vh - 92px));
    border-radius: 20px;
  }
  .footer a,
  .list a,
  .card p a {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
  }
}
