:root {
  --bg: #03070c;
  --bg-soft: #07131d;
  --panel: rgba(255, 255, 255, 0.07);
  --panel-strong: rgba(255, 255, 255, 0.11);
  --line: rgba(175, 229, 255, 0.18);
  --text: #f8fbff;
  --muted: #9fb2c0;
  --cyan: #18d8ff;
  --green: #38f26f;
  --blue: #1388ff;
  --violet: #b949ff;
  --shadow: 0 26px 80px rgba(0, 0, 0, 0.46);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 50% -10%, rgba(24, 216, 255, 0.15), transparent 30%),
    linear-gradient(180deg, #02070d 0%, #06111a 46%, #02070d 100%);
  color: var(--text);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.38;
  letter-spacing: 0;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -3;
  background:
    linear-gradient(115deg, transparent 0 58%, rgba(24, 216, 255, 0.08) 58% 59%, transparent 59%),
    linear-gradient(120deg, transparent 0 67%, rgba(56, 242, 111, 0.09) 67% 68%, transparent 68%),
    linear-gradient(125deg, transparent 0 75%, rgba(185, 73, 255, 0.08) 75% 76%, transparent 76%);
  opacity: 0.9;
  pointer-events: none;
}

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

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

.page-glow {
  position: fixed;
  inset: auto -20% 4% -20%;
  z-index: -2;
  height: 420px;
  background: radial-gradient(circle, rgba(24, 216, 255, 0.14), transparent 66%);
  filter: blur(24px);
  pointer-events: none;
}

.site-header {
  position: fixed;
  top: 14px;
  left: 50%;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  width: min(calc(100% - 28px), 1180px);
  min-height: 64px;
  gap: 18px;
  border: 1px solid rgba(175, 229, 255, 0.16);
  background: rgba(2, 8, 14, 0.74);
  padding: 10px 12px;
  box-shadow: 0 16px 54px rgba(0, 0, 0, 0.36);
  transform: translateX(-50%);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.brand img {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 0 28px rgba(24, 216, 255, 0.38);
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 18px;
  line-height: 1;
}

.brand small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 12px;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: 28px;
  color: #dcecf4;
  font-size: 14px;
  font-weight: 800;
}

.header-cta {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(24, 216, 255, 0.38);
  padding: 0 18px;
  background: rgba(24, 216, 255, 0.08);
  color: #eaffff;
  font-size: 14px;
  font-weight: 950;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(380px, 0.86fr);
  width: min(calc(100% - 44px), var(--max));
  min-height: 100vh;
  align-items: center;
  gap: 54px;
  margin: 0 auto;
  padding: 124px 0 72px;
}

.hero-copy {
  min-width: 0;
}

.eyebrow,
.section-head p,
.panel-kicker {
  margin: 0;
  color: var(--green);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1,
.section h2,
.result-panel h2,
.emil-card h2,
.cta-card h2 {
  margin: 0;
  font-weight: 950;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 670px;
  margin-top: 14px;
  font-size: clamp(48px, 7vw, 92px);
  line-height: 0.93;
}

.hero h1 span {
  display: block;
}

.hero h1 span:first-child {
  color: var(--cyan);
}

.lead {
  max-width: 600px;
  margin: 24px 0 0;
  color: #d6e8f2;
  font-size: clamp(20px, 2.3vw, 27px);
  font-weight: 750;
}

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

.btn {
  display: inline-flex;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 0 23px;
  font-size: 16px;
  font-weight: 950;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--green), var(--cyan));
  color: #011018;
  box-shadow:
    0 22px 62px rgba(56, 242, 111, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.btn-secondary {
  border-color: rgba(24, 216, 255, 0.38);
  background: rgba(255, 255, 255, 0.035);
  color: #eefbff;
}

.proof-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.proof-row span {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  border: 1px solid rgba(175, 229, 255, 0.14);
  border-radius: 999px;
  padding: 0 13px;
  background: rgba(255, 255, 255, 0.045);
  color: #dbeef7;
  font-size: 14px;
  font-weight: 850;
}

.hero-visual {
  position: relative;
  min-height: 620px;
  display: grid;
  place-items: center;
}

.robot-backdrop {
  position: absolute;
  inset: -4% -20% auto auto;
  width: 520px;
  height: 360px;
  background:
    linear-gradient(180deg, rgba(3, 7, 12, 0), rgba(3, 7, 12, 0.34)),
    url("assets/telegii-robot-clean.png") center / cover no-repeat;
  opacity: 0.74;
  filter: saturate(1.18) contrast(1.04);
  mask-image: radial-gradient(circle at 50% 44%, #000 0 58%, transparent 78%);
  pointer-events: none;
}

.light-rail {
  position: absolute;
  width: 92%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--cyan), var(--green), transparent);
  filter: drop-shadow(0 0 12px rgba(24, 216, 255, 0.8));
  opacity: 0.76;
}

.rail-a {
  top: 28%;
  right: -18%;
  transform: rotate(-36deg);
}

.rail-b {
  right: -24%;
  bottom: 28%;
  transform: rotate(-36deg);
}

.phone {
  position: relative;
  z-index: 3;
  width: min(100%, 366px);
  border: 1px solid rgba(91, 218, 255, 0.55);
  border-radius: 36px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), transparent 16%),
    rgba(7, 17, 26, 0.9);
  padding: 16px;
  box-shadow:
    var(--shadow),
    0 0 0 9px rgba(24, 216, 255, 0.045),
    0 0 92px rgba(24, 216, 255, 0.28);
  backdrop-filter: blur(22px);
}

.phone::before {
  content: "";
  position: absolute;
  inset: -92px;
  z-index: -1;
  background: url("assets/telegii-swirl-transparent.png") center / contain no-repeat;
  opacity: 0.22;
  filter: saturate(1.25);
}

.phone::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -26px;
  z-index: -2;
  width: 92%;
  height: 46px;
  border: 1px solid rgba(24, 216, 255, 0.32);
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(24, 216, 255, 0.28), transparent 68%);
  transform: translateX(-50%);
  filter: blur(1px);
}

.phone-top {
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid rgba(175, 229, 255, 0.12);
  padding: 4px 4px 14px;
}

.phone-top img {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  object-fit: cover;
}

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

.phone-top strong {
  font-size: 14px;
}

.phone-top small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 12px;
}

.chat {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.chat p {
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px 16px 16px 6px;
  background: rgba(255, 255, 255, 0.08);
  padding: 13px 14px;
  color: #eaf6fb;
  font-size: 14px;
  font-weight: 700;
}

.chat .accent {
  border-color: rgba(56, 242, 111, 0.28);
  background: rgba(56, 242, 111, 0.12);
  color: #dffff0;
}

.typing {
  display: flex;
  align-items: center;
  gap: 6px;
  width: max-content;
  margin-top: 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.075);
  padding: 8px 12px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.typing span {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--cyan);
  animation: dotPulse 1.2s infinite ease-in-out;
}

.typing span:nth-child(2) {
  animation-delay: 0.16s;
}

.typing span:nth-child(3) {
  animation-delay: 0.32s;
}

.phone-input {
  min-height: 46px;
  margin-top: 14px;
  border: 1px solid rgba(175, 229, 255, 0.12);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.22);
  padding: 13px 16px;
  color: #78909d;
  font-size: 13px;
  font-weight: 800;
}

.side-pill {
  position: absolute;
  z-index: 4;
  display: grid;
  justify-items: center;
  gap: 6px;
  min-width: 112px;
  border: 1px solid rgba(24, 216, 255, 0.38);
  border-radius: 16px;
  background: rgba(3, 10, 16, 0.72);
  padding: 12px 10px;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(16px);
}

.side-pill b {
  font-size: 24px;
  line-height: 1;
}

.side-pill span {
  color: #e8f8ff;
  font-size: 12px;
  font-weight: 900;
}

.pill-left {
  left: -8px;
}

.pill-right {
  right: -8px;
}

.side-pill.top {
  top: 22%;
}

.side-pill.bottom {
  bottom: 22%;
}

.compact-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 9px;
  width: min(calc(100% - 32px), var(--max));
  margin: -28px auto 0;
  border: 1px solid rgba(175, 229, 255, 0.14);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.055);
  padding: 14px;
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(18px);
}

.compact-strip span {
  border-radius: 999px;
  background: rgba(24, 216, 255, 0.08);
  padding: 8px 12px;
  color: #dff8ff;
  font-size: 13px;
  font-weight: 900;
}

.section {
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
  padding: 78px 0 0;
}

.section-head {
  display: grid;
  max-width: 760px;
  gap: 10px;
  margin-bottom: 26px;
}

.section-head.center {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section h2 {
  color: #f5fbff;
  font-size: clamp(31px, 4.1vw, 54px);
  line-height: 1.02;
}

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

.task-card,
.step-card {
  min-width: 0;
  border: 1px solid rgba(175, 229, 255, 0.14);
  border-radius: 18px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.085), rgba(255, 255, 255, 0.035)),
    rgba(5, 15, 23, 0.72);
  padding: 20px;
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.23);
}

.task-card span {
  display: inline-grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(24, 216, 255, 0.2);
  border-radius: 14px;
  background: rgba(24, 216, 255, 0.08);
  font-size: 25px;
}

.task-card h3,
.step-card h3 {
  margin: 18px 0 0;
  color: #f3fbff;
  font-size: 20px;
}

.task-card p,
.step-card p,
.emil-copy p,
.cta-card p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 15px;
  font-weight: 700;
}

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

.step-card {
  position: relative;
  overflow: hidden;
}

.step-card b {
  color: var(--green);
  font-size: 38px;
  line-height: 1;
}

.step-card::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 80px;
  height: 80px;
  background: radial-gradient(circle, rgba(24, 216, 255, 0.18), transparent 70%);
}

.result-panel,
.emil-card,
.cta-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(175, 229, 255, 0.16);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(24, 216, 255, 0.13), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.035)),
    rgba(5, 15, 23, 0.78);
  box-shadow: var(--shadow);
}

.result-panel {
  display: grid;
  grid-template-columns: 0.7fr 1fr;
  gap: 26px;
  align-items: center;
  padding: 30px;
}

.result-panel h2,
.emil-card h2,
.cta-card h2 {
  margin-top: 8px;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.02;
}

blockquote {
  margin: 0;
  border-left: 3px solid var(--green);
  padding-left: 22px;
  color: #effbff;
  font-size: clamp(20px, 2.7vw, 32px);
  font-weight: 900;
  line-height: 1.16;
}

.emil-card {
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  gap: 26px;
  align-items: center;
  padding: 36px;
  text-align: center;
}

.emil-card::after {
  content: "";
  position: absolute;
  right: -80px;
  bottom: -110px;
  width: 420px;
  height: 420px;
  background: url("assets/telegii-swirl-transparent.png") center / contain no-repeat;
  opacity: 0.18;
  pointer-events: none;
}

.emil-copy {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: center;
  max-width: 800px;
}

.emil-copy p {
  max-width: 690px;
  color: #d7e6ef;
  font-size: 17px;
}

.emil-photo {
  position: relative;
  z-index: 2;
  overflow: hidden;
  margin: 0;
  width: min(100%, 430px);
  border: 1px solid rgba(175, 229, 255, 0.28);
  border-radius: 26px;
  background:
    linear-gradient(135deg, rgba(24, 216, 255, 0.52), rgba(56, 242, 111, 0.26), rgba(255, 255, 255, 0.08)),
    rgba(255, 255, 255, 0.055);
  aspect-ratio: 4 / 5;
  padding: 8px;
  box-shadow:
    0 32px 90px rgba(0, 0, 0, 0.44),
    0 0 54px rgba(24, 216, 255, 0.16),
    0 0 0 1px rgba(255, 255, 255, 0.05);
}

.emil-photo::before {
  content: "";
  position: absolute;
  inset: 14px;
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 20px;
  pointer-events: none;
}

.emil-photo img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 19px;
  object-fit: cover;
  object-position: 63% 50%;
}

.inline-link {
  color: var(--cyan);
  font-weight: 950;
  text-decoration: underline;
  text-decoration-color: rgba(24, 216, 255, 0.38);
  text-underline-offset: 4px;
  transition: color 180ms ease, text-decoration-color 180ms ease;
}

.inline-link:hover {
  color: var(--green);
  text-decoration-color: rgba(56, 242, 111, 0.5);
}

.project-stack {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 860px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.project-stack a,
.project-stack span {
  position: relative;
  min-height: 88px;
  border: 1px solid rgba(175, 229, 255, 0.14);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.055);
  padding: 18px;
  color: #f4fbff;
  font-size: 15px;
  font-weight: 950;
}

.project-stack a {
  transition:
    border-color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.project-stack a::after {
  content: "↗";
  position: absolute;
  right: 14px;
  bottom: 12px;
  color: var(--cyan);
  font-size: 14px;
}

.project-stack a:hover {
  border-color: rgba(24, 216, 255, 0.42);
  background: rgba(24, 216, 255, 0.09);
  transform: translateY(-2px);
}

.cta-card {
  display: grid;
  grid-template-columns: 170px 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 28px;
}

.cta-card img {
  width: 170px;
  border-radius: 20px;
  box-shadow: 0 0 54px rgba(24, 216, 255, 0.2);
}

.footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
  padding: 34px 0 38px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.footer a {
  color: var(--cyan);
}

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

.seo-page .site-header {
  top: 18px;
  border-color: rgba(158, 231, 255, 0.22);
  border-radius: 6px;
  background:
    linear-gradient(90deg, rgba(5, 14, 21, 0.92), rgba(12, 18, 30, 0.78)),
    rgba(3, 7, 12, 0.86);
  box-shadow:
    0 24px 80px rgba(0, 0, 0, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.seo-hero,
.seo-section,
.solution-group {
  width: min(calc(100% - 44px), var(--max));
  margin: 0 auto;
}

.seo-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 430px);
  min-height: 610px;
  align-items: center;
  gap: 62px;
  padding: 138px 0 70px;
}

.seo-hero::before {
  content: "";
  position: absolute;
  top: 94px;
  right: 11%;
  left: 31%;
  z-index: -1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(24, 216, 255, 0.58), rgba(56, 242, 111, 0.42), transparent);
  box-shadow: 0 0 34px rgba(24, 216, 255, 0.32);
}

.seo-hero-copy {
  min-width: 0;
}

.seo-path {
  margin: 0;
  color: #6fe9ff;
  font-size: 13px;
  font-weight: 860;
  letter-spacing: 0;
}

.seo-hero h1 {
  max-width: 900px;
  margin: 16px 0 0;
  color: #f8fbff;
  font-size: clamp(54px, 5.6vw, 82px);
  font-weight: 950;
  line-height: 0.94;
  letter-spacing: 0;
}

.seo-lead {
  max-width: 780px;
  margin: 24px 0 0;
  color: #cfe4ee;
  font-size: 22px;
  font-weight: 720;
  line-height: 1.32;
}

.seo-hero-visual {
  position: relative;
  min-height: 430px;
  display: grid;
  place-items: center;
}

.seo-hero-visual::before {
  content: "";
  position: absolute;
  inset: 14px -40px 8px -28px;
  background:
    linear-gradient(118deg, transparent 0 31%, rgba(24, 216, 255, 0.32) 31.4% 32%, transparent 32.3% 42%, rgba(56, 242, 111, 0.24) 42.4% 43%, transparent 43.3%),
    linear-gradient(128deg, transparent 0 54%, rgba(185, 73, 255, 0.28) 54.3% 55%, transparent 55.3%);
  opacity: 0.72;
  transform: skewY(-7deg);
  pointer-events: none;
}

.agent-console {
  position: relative;
  overflow: hidden;
  width: min(100%, 410px);
  border: 1px solid rgba(175, 229, 255, 0.2);
  border-radius: 10px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.11), transparent 18%),
    linear-gradient(135deg, rgba(24, 216, 255, 0.12), rgba(56, 242, 111, 0.05) 45%, rgba(185, 73, 255, 0.1)),
    rgba(4, 13, 20, 0.9);
  padding: 18px;
  box-shadow:
    0 30px 90px rgba(0, 0, 0, 0.52),
    0 0 0 1px rgba(255, 255, 255, 0.03),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
}

.agent-console::before {
  content: "";
  position: absolute;
  inset: auto -80px -110px auto;
  width: 260px;
  height: 260px;
  background: url("assets/telegii-swirl-transparent.png") center / contain no-repeat;
  opacity: 0.18;
  pointer-events: none;
}

.console-head {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid rgba(175, 229, 255, 0.14);
  padding-bottom: 16px;
}

.console-head img {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 0 34px rgba(24, 216, 255, 0.34);
}

.console-head strong,
.console-head span {
  display: block;
}

.console-head strong {
  color: #f4fbff;
  font-size: 17px;
  font-weight: 950;
  line-height: 1.1;
}

.console-head span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 780;
}

.console-metrics,
.console-list {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

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

.console-metrics div,
.console-list div {
  border: 1px solid rgba(175, 229, 255, 0.13);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
  padding: 13px;
}

.console-metrics b,
.console-metrics span,
.console-list b,
.console-list span {
  display: block;
}

.console-metrics b {
  color: #f8fbff;
  font-size: 25px;
  font-weight: 950;
  line-height: 1;
}

.console-metrics span,
.console-list span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 820;
  line-height: 1.25;
}

.console-list b {
  margin-top: 6px;
  color: #e9f8ff;
  font-size: 14px;
  font-weight: 880;
  line-height: 1.28;
}

.console-flow {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 22px 1fr 22px 1fr;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
}

.console-flow span {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(24, 216, 255, 0.2);
  border-radius: 999px;
  background: rgba(24, 216, 255, 0.06);
  color: #dff8ff;
  font-size: 12px;
  font-weight: 900;
  text-align: center;
}

.console-flow i {
  height: 1px;
  background: linear-gradient(90deg, rgba(24, 216, 255, 0.3), rgba(56, 242, 111, 0.5));
}

.seo-section,
.solution-group {
  padding: 66px 0 0;
}

.two-column,
.split-list,
.action-band,
.prompt-band {
  display: grid;
  grid-template-columns: minmax(240px, 0.44fr) minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.two-column h2,
.seo-list-block h2,
.action-band h2,
.prompt-band h2 {
  margin: 8px 0 0;
  color: #f5fbff;
  font-size: 38px;
  font-weight: 950;
  line-height: 1.05;
  letter-spacing: 0;
}

.seo-copy p {
  margin: 0;
  color: #d7e6ef;
  font-size: 18px;
  font-weight: 720;
  line-height: 1.58;
}

.seo-copy p + p {
  margin-top: 16px;
}

.seo-list-block,
.scenario-card,
.faq-item,
.link-card {
  border: 1px solid rgba(175, 229, 255, 0.14);
  border-radius: 18px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.076), rgba(255, 255, 255, 0.032)),
    rgba(5, 15, 23, 0.72);
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.23);
}

.seo-list-block {
  padding: 24px;
}

.seo-list-block ul,
.action-band ol {
  display: grid;
  gap: 12px;
  margin: 20px 0 0;
  padding-left: 22px;
  color: #d7e6ef;
  font-size: 16px;
  font-weight: 740;
  line-height: 1.45;
}

.seo-list-block li::marker,
.action-band li::marker {
  color: var(--green);
  font-weight: 950;
}

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

.scenario-card {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 14px;
  align-items: start;
  min-height: 132px;
  padding: 20px;
}

.scenario-card span {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(56, 242, 111, 0.24);
  border-radius: 14px;
  background: rgba(56, 242, 111, 0.08);
  color: var(--green);
  font-size: 16px;
  font-weight: 950;
}

.scenario-card p {
  margin: 0;
  color: #e8f6fc;
  font-size: 16px;
  font-weight: 760;
  line-height: 1.42;
}

.action-band {
  overflow: hidden;
  border: 1px solid rgba(175, 229, 255, 0.16);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(56, 242, 111, 0.12), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.035)),
    rgba(5, 15, 23, 0.78);
  padding: 28px;
  box-shadow: var(--shadow);
}

.action-band .btn {
  align-self: center;
}

.prompt-band {
  align-items: center;
  overflow: hidden;
  border: 1px solid rgba(175, 229, 255, 0.16);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(24, 216, 255, 0.12), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.035)),
    rgba(5, 15, 23, 0.78);
  padding: 28px;
  box-shadow: var(--shadow);
}

.prompt-band p {
  margin: 12px 0 0;
  color: #d7e6ef;
  font-size: 16px;
  font-weight: 720;
  line-height: 1.5;
}

.tool-section {
  scroll-margin-top: 110px;
}

.tool-widget {
  display: grid;
  gap: 18px;
  border: 1px solid rgba(175, 229, 255, 0.16);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(24, 216, 255, 0.12), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.035)),
    rgba(5, 15, 23, 0.78);
  padding: 24px;
  box-shadow: var(--shadow);
}

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

.tool-widget label,
.tool-textarea {
  display: grid;
  gap: 8px;
  min-width: 0;
}

.tool-widget label span,
.tool-output span {
  color: var(--green);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.tool-widget input,
.tool-widget textarea {
  width: 100%;
  border: 1px solid rgba(175, 229, 255, 0.16);
  border-radius: 8px;
  background: rgba(2, 8, 13, 0.72);
  color: #f5fbff;
  font: inherit;
  font-size: 15px;
  font-weight: 760;
  line-height: 1.45;
  outline: none;
}

.tool-widget input {
  min-height: 48px;
  padding: 0 13px;
}

.tool-widget textarea {
  min-height: 150px;
  resize: vertical;
  padding: 13px;
}

.tool-widget input:focus,
.tool-widget textarea:focus {
  border-color: rgba(24, 216, 255, 0.48);
  box-shadow: 0 0 0 3px rgba(24, 216, 255, 0.1);
}

.tool-output {
  border: 1px solid rgba(56, 242, 111, 0.22);
  border-radius: 12px;
  background: rgba(56, 242, 111, 0.075);
  padding: 18px;
}

.tool-output strong {
  display: block;
  margin-top: 8px;
  color: #f8fbff;
  font-size: 34px;
  font-weight: 950;
  line-height: 1;
}

.tool-output p {
  max-width: 820px;
  margin: 12px 0 0;
  color: #d7e6ef;
  font-size: 15px;
  font-weight: 720;
  line-height: 1.5;
}

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

.checklist-grid label {
  grid-template-columns: 22px 1fr;
  align-items: start;
  border: 1px solid rgba(175, 229, 255, 0.13);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.045);
  padding: 13px;
  color: #e8f6fc;
  font-size: 15px;
  font-weight: 760;
  line-height: 1.35;
}

.checklist-grid input {
  width: 18px;
  height: 18px;
  min-height: 18px;
  margin: 1px 0 0;
  accent-color: var(--green);
}

.audit-table-wrap {
  overflow-x: auto;
}

.audit-table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: 12px;
}

.audit-table th,
.audit-table td {
  border: 1px solid rgba(175, 229, 255, 0.13);
  padding: 13px;
  text-align: left;
  vertical-align: top;
}

.audit-table th {
  background: rgba(24, 216, 255, 0.12);
  color: #f4fbff;
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
}

.audit-table td {
  color: #d7e6ef;
  font-size: 15px;
  font-weight: 720;
  line-height: 1.45;
}

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

.faq-item {
  padding: 0;
}

.faq-item summary {
  cursor: pointer;
  padding: 20px 22px;
  color: #f4fbff;
  font-size: 17px;
  font-weight: 920;
  line-height: 1.3;
}

.faq-item p {
  margin: 0;
  border-top: 1px solid rgba(175, 229, 255, 0.12);
  padding: 0 22px 20px;
  color: #d5e5ee;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.52;
}

.link-card {
  display: grid;
  gap: 8px;
  min-height: 164px;
  padding: 20px;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.link-card:hover {
  border-color: rgba(24, 216, 255, 0.42);
  background: rgba(24, 216, 255, 0.075);
  transform: translateY(-2px);
}

.link-card span {
  color: var(--green);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.link-card strong {
  color: #f4fbff;
  font-size: 20px;
  font-weight: 950;
  line-height: 1.15;
}

.link-card small {
  color: var(--muted);
  font-size: 14px;
  font-weight: 720;
  line-height: 1.42;
}

.solution-group + .solution-group {
  padding-top: 58px;
}

.solution-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  width: min(calc(100% - 44px), var(--max));
  margin: -26px auto 0;
}

.solution-nav a {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  border: 1px solid rgba(175, 229, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.045);
  padding: 0 14px;
  color: #dff8ff;
  font-size: 13px;
  font-weight: 880;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.solution-nav a:hover {
  border-color: rgba(56, 242, 111, 0.44);
  background: rgba(56, 242, 111, 0.08);
  transform: translateY(-1px);
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 520ms ease,
    transform 520ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes dotPulse {
  0%,
  80%,
  100% {
    opacity: 0.34;
    transform: translateY(0);
  }

  40% {
    opacity: 1;
    transform: translateY(-2px);
  }
}

@media (max-width: 1060px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 18px;
    padding-top: 112px;
  }

  .hero h1,
  .lead,
  .hero-copy {
    max-width: 760px;
  }

  .hero-visual {
    min-height: 560px;
  }

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

  .seo-hero {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 24px;
  }

  .seo-hero-visual {
    max-width: 520px;
    min-height: 390px;
  }

  .two-column,
  .split-list,
  .action-band,
  .prompt-band {
    grid-template-columns: 1fr;
  }

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

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

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

  .emil-card,
  .result-panel,
  .cta-card {
    grid-template-columns: 1fr;
  }

  .emil-photo {
    width: min(100%, 390px);
  }

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

  .cta-card img {
    width: 150px;
  }
}

@media (max-width: 720px) {
  body {
    background:
      radial-gradient(circle at 48% 5%, rgba(24, 216, 255, 0.18), transparent 28%),
      linear-gradient(180deg, #02070d 0%, #06111a 56%, #02070d 100%);
  }

  .site-header {
    top: 10px;
    display: flex;
    justify-content: space-between;
    width: calc(100% - 20px);
    min-height: 58px;
    gap: 8px;
    border-radius: 20px;
    padding: 8px;
  }

  .brand img {
    width: 38px;
    height: 38px;
  }

  .brand strong {
    font-size: 16px;
  }

  .nav-links {
    display: none;
  }

  .header-cta {
    display: none;
  }

  .hero {
    width: min(calc(100% - 22px), 430px);
    min-height: auto;
    padding: 94px 0 38px;
  }

  .eyebrow,
  .section-head p,
  .panel-kicker {
    font-size: 11px;
  }

  .hero h1 {
    margin-top: 10px;
    font-size: clamp(36px, 10.5vw, 43px);
    line-height: 0.97;
  }

  .seo-hero,
  .seo-section,
  .solution-group {
    width: min(calc(100% - 22px), 430px);
  }

  .seo-hero {
    padding: 94px 0 28px;
  }

  .seo-hero h1 {
    margin-top: 10px;
    font-size: 38px;
    line-height: 1.02;
  }

  .seo-path {
    font-size: 12px;
    line-height: 1.35;
  }

  .seo-lead {
    margin-top: 16px;
    font-size: 18px;
    line-height: 1.34;
  }

  .seo-hero-visual {
    min-height: auto;
    margin-top: 8px;
  }

  .seo-hero-visual::before {
    inset: 20px -26px 0 -20px;
    opacity: 0.48;
  }

  .agent-console {
    width: 100%;
    border-radius: 8px;
    padding: 14px;
  }

  .console-metrics {
    grid-template-columns: 1fr;
  }

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

  .console-flow i {
    display: none;
  }

  .lead {
    margin-top: 16px;
    font-size: 19px;
    line-height: 1.25;
  }

  .hero-actions {
    display: grid;
    gap: 10px;
    margin-top: 22px;
  }

  .btn {
    width: 100%;
    min-height: 54px;
    border-radius: 14px;
    padding: 0 16px;
    font-size: 15px;
  }

  .proof-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-top: 16px;
  }

  .proof-row span {
    width: 100%;
    min-height: 34px;
    justify-content: center;
    padding: 0 10px;
    font-size: 12px;
    white-space: nowrap;
  }

  .proof-row span:nth-child(3) {
    grid-column: 1 / -1;
  }

  .hero-visual {
    min-height: 472px;
    margin-top: 10px;
  }

  .robot-backdrop {
    inset: 0 auto auto 50%;
    width: 430px;
    height: 290px;
    opacity: 0.46;
    transform: translateX(-50%);
  }

  .phone {
    width: min(100%, 318px);
    border-radius: 30px;
    padding: 13px;
  }

  .phone::before {
    inset: -72px;
    opacity: 0.18;
  }

  .chat p {
    border-radius: 14px 14px 14px 5px;
    padding: 11px 12px;
    font-size: 12px;
  }

  .phone-top {
    padding-bottom: 12px;
  }

  .phone-top img {
    width: 38px;
    height: 38px;
  }

  .phone-top strong {
    font-size: 12px;
  }

  .phone-top small,
  .phone-input,
  .typing {
    font-size: 11px;
  }

  .side-pill {
    min-width: 74px;
    border-radius: 13px;
    padding: 9px 7px;
  }

  .side-pill b {
    font-size: 18px;
  }

  .side-pill span {
    font-size: 10px;
  }

  .pill-left {
    left: -2px;
  }

  .pill-right {
    right: -2px;
  }

  .side-pill.top {
    top: 17%;
  }

  .side-pill.bottom {
    bottom: 17%;
  }

  .light-rail {
    width: 112%;
  }

  .rail-a {
    top: 26%;
    right: -31%;
  }

  .rail-b {
    right: -36%;
    bottom: 25%;
  }

  .compact-strip {
    width: min(calc(100% - 22px), 430px);
    justify-content: flex-start;
    margin-top: 0;
    border-radius: 18px;
    padding: 11px;
  }

  .compact-strip span {
    padding: 7px 10px;
    font-size: 12px;
  }

  .section {
    width: min(calc(100% - 22px), 430px);
    padding-top: 54px;
  }

  .seo-section,
  .solution-group {
    padding-top: 50px;
  }

  .section-head {
    gap: 8px;
    margin-bottom: 18px;
  }

  .section h2,
  .result-panel h2,
  .emil-card h2,
  .cta-card h2 {
    font-size: 31px;
    line-height: 1.04;
  }

  .two-column h2,
  .seo-list-block h2,
  .action-band h2,
  .prompt-band h2 {
    font-size: 28px;
    line-height: 1.06;
  }

  .seo-copy p {
    font-size: 16px;
    line-height: 1.5;
  }

  .cards-grid,
  .steps,
  .project-stack,
  .scenario-grid,
  .link-grid,
  .tool-grid,
  .checklist-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .task-card,
  .step-card,
  .result-panel,
  .emil-card,
  .cta-card,
  .seo-list-block,
  .scenario-card,
  .faq-item,
  .link-card,
  .tool-widget,
  .tool-output,
  .action-band,
  .prompt-band {
    border-radius: 18px;
    padding: 18px;
  }

  .task-card {
    display: grid;
    grid-template-columns: 44px 1fr;
    column-gap: 13px;
    align-items: start;
  }

  .task-card span {
    width: 44px;
    height: 44px;
    grid-row: span 2;
  }

  .task-card h3 {
    margin: 1px 0 0;
    font-size: 18px;
  }

  .task-card p,
  .step-card p,
  .emil-copy p,
  .cta-card p {
    font-size: 14px;
  }

  .step-card b {
    font-size: 32px;
  }

  .scenario-card {
    min-height: auto;
    grid-template-columns: 42px 1fr;
    gap: 12px;
  }

  .scenario-card span {
    width: 42px;
    height: 42px;
    font-size: 14px;
  }

  .scenario-card p,
  .faq-item p,
  .seo-list-block ul,
  .action-band ol,
  .tool-widget input,
  .tool-widget textarea,
  .audit-table td {
    font-size: 14px;
  }

  .tool-output strong {
    font-size: 28px;
  }

  .faq-item {
    padding: 0;
  }

  .faq-item summary {
    padding: 17px 18px;
    font-size: 15px;
  }

  .faq-item p {
    padding: 0 18px 17px;
  }

  .link-card {
    min-height: auto;
  }

  .link-card strong {
    font-size: 18px;
  }

  blockquote {
    padding-left: 15px;
    font-size: 21px;
  }

  .project-stack a,
  .project-stack span {
    min-height: auto;
    padding: 15px;
  }

  .cta-card {
    gap: 18px;
  }

  .cta-card img {
    width: 128px;
  }

  .footer {
    width: min(calc(100% - 22px), 430px);
    flex-direction: column;
    align-items: flex-start;
    padding-top: 28px;
  }

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

@media (max-width: 380px) {
  .hero {
    width: min(calc(100% - 18px), 380px);
    padding-top: 90px;
  }

  .hero h1 {
    font-size: 39px;
  }

  .lead {
    font-size: 17px;
  }

  .phone {
    width: 292px;
  }

  .side-pill {
    display: none;
  }
}

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