:root {
  --bg: #050507;
  --bg-soft: #080a0f;
  --panel: #0c0f16;
  --panel-2: #111522;
  --line: rgba(255, 255, 255, 0.1);
  --line-strong: rgba(255, 255, 255, 0.18);
  --text: #f8fafc;
  --muted: #98a2b3;
  --muted-2: #667085;
  --blue: #5877ff;
  --violet: #9b7cff;
  --cyan: #50e3c2;
  --green: #39d98a;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 50% 0%, rgba(88, 119, 255, 0.18), transparent 34rem),
    radial-gradient(circle at 80% 12%, rgba(155, 124, 255, 0.12), transparent 28rem),
    var(--bg);
  font-family: Inter, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
}

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

button,
input {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(20px, 3vw, 38px);
  border-bottom: 1px solid var(--line);
  background: rgba(5, 5, 7, 0.82);
  backdrop-filter: blur(20px);
}

.brand,
.nav-links,
.header-actions,
.hero-actions,
.trust-band,
.scenario-tabs,
.response-actions,
.console-header,
.console-pills {
  display: flex;
  align-items: center;
}

.brand {
  gap: 14px;
  font-size: 1.28rem;
  font-weight: 800;
  letter-spacing: 0;
}

.brand img {
  display: block;
  width: clamp(94px, 9vw, 116px);
  height: auto;
}

.runtime-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  border: 1px solid rgba(57, 217, 138, 0.22);
  border-radius: 999px;
  color: #c8ffe2;
  background: rgba(57, 217, 138, 0.08);
  box-shadow: inset 0 0 18px rgba(57, 217, 138, 0.08);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav-links {
  gap: clamp(18px, 3vw, 38px);
  color: #c5cad7;
  font-size: 0.94rem;
  font-weight: 700;
}

.nav-links a:hover,
.ghost-link:hover {
  color: var(--text);
}

.header-actions {
  gap: 14px;
}

.ghost-link,
.login-link,
.whatsapp-link,
.nav-cta,
.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 900;
}

.ghost-link {
  padding: 0 18px;
  border: 1px solid var(--line-strong);
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
}

.ghost-link::before {
  content: none;
}

.login-link {
  color: #c5cad7;
  font-weight: 900;
}

.login-link:hover {
  color: #fff;
}

.whatsapp-link {
  width: 44px;
  border: 1px solid var(--line-strong);
  color: #98a2b3;
  background: rgba(255, 255, 255, 0.04);
  transition:
    border-color 160ms ease,
    background 160ms ease,
    color 160ms ease;
}

.whatsapp-link:hover {
  border-color: rgba(37, 211, 102, 0.48);
  color: #35d77f;
  background: rgba(37, 211, 102, 0.14);
}

.whatsapp-link svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.language-toggle {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 4px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  padding: 4px;
  background: rgba(255, 255, 255, 0.045);
}

.language-toggle button {
  display: inline-flex;
  min-width: 42px;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  color: #aeb7c8;
  background: transparent;
  cursor: pointer;
  font-size: 0.82rem;
  font-weight: 900;
}

.language-toggle button.active {
  color: #fff;
  background: #4774ff;
  box-shadow:
    0 0 0 2px rgba(255, 255, 255, 0.72),
    0 10px 24px rgba(71, 116, 255, 0.28);
}

.nav-cta {
  padding: 0 20px;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), #735bff);
  box-shadow: 0 16px 32px rgba(88, 119, 255, 0.32);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: auto;
  padding: clamp(70px, 10vw, 136px) clamp(18px, 4vw, 56px) clamp(68px, 8vw, 104px);
}

.hero::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 76px 76px;
  mask-image: linear-gradient(to bottom, black 0%, transparent 76%);
}

.hero::after {
  position: absolute;
  right: 16%;
  bottom: 22%;
  width: 360px;
  height: 360px;
  border-radius: 999px;
  background: rgba(88, 119, 255, 0.16);
  filter: blur(100px);
  content: "";
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  max-width: 980px;
  margin: 0 auto;
  justify-items: center;
  text-align: center;
}

.runtime-badge {
  margin-bottom: 34px;
  padding: 12px 18px;
  border-color: rgba(88, 119, 255, 0.28);
  color: #aebcff;
  background: rgba(88, 119, 255, 0.1);
}

.runtime-badge::before {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--blue);
  box-shadow: 0 0 18px var(--blue);
  content: "";
}

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

h1 {
  max-width: 1000px;
  margin-bottom: 24px;
  font-size: clamp(3.25rem, 7vw, 5.85rem);
  line-height: 0.95;
  letter-spacing: 0;
}

h1 span {
  color: #f8fafc;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.2rem, 4.4vw, 4.4rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: clamp(1.15rem, 1.7vw, 1.55rem);
  line-height: 1.18;
}

.hero-kicker {
  margin-bottom: 24px;
  color: #b5bdcc;
  font-size: clamp(1.2rem, 2.3vw, 1.65rem);
  font-weight: 800;
}

.hero-lede,
.section-heading p,
.roi-copy p,
.control-copy p,
.scenario-panel p {
  color: var(--muted);
  font-size: clamp(1rem, 1.4vw, 1.16rem);
}

.hero-lede {
  max-width: 720px;
  margin-bottom: 34px;
}

.hero-actions {
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.button {
  min-width: 190px;
  padding: 0 26px;
}

.button.primary {
  color: #050507;
  background: #fff;
  box-shadow: 0 24px 60px rgba(255, 255, 255, 0.12);
}

.button.primary::after {
  margin-left: 10px;
  content: ">";
}

.button.secondary {
  border: 1px solid var(--line-strong);
  color: #fff;
  background: rgba(255, 255, 255, 0.055);
}

.button.secondary::before {
  content: none;
}

.hero-console {
  position: relative;
  z-index: 1;
  max-width: 1120px;
  margin: 72px auto 0;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(17, 20, 31, 0.86), rgba(6, 7, 11, 0.92)),
    radial-gradient(circle at 78% 24%, rgba(88, 119, 255, 0.2), transparent 32%);
  box-shadow: var(--shadow);
}

.console-header {
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
  color: #e9ecf7;
  font-size: 1.05rem;
}

.console-header span {
  color: var(--muted);
  font-size: 0.88rem;
}

.console-header i {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 7px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 16px var(--green);
}

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

.console-grid div,
.impact-card,
.scenario-panel,
.workflow,
.roi-tool,
.control-visual,
.plan-card {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.035);
}

.console-grid div {
  min-height: 118px;
  padding: 20px;
}

.console-grid span,
.console-grid small,
.lead-card span,
.agent-response span,
.metrics-board span,
.queue-row span,
.queue-row small,
.roi-results span {
  color: var(--muted-2);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.console-grid strong {
  display: block;
  margin-top: 8px;
  color: #fff;
  font-size: clamp(1.55rem, 3vw, 2.35rem);
  line-height: 1;
}

.console-grid strong span {
  margin-left: 4px;
  font-size: 0.95rem;
  text-transform: none;
}

.console-grid small {
  display: block;
  margin-top: 14px;
  color: #6df0b3;
}

.console-chart {
  position: relative;
  overflow: hidden;
  height: 150px;
  margin-top: 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
}

.console-chart::before {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 72%;
  background: linear-gradient(180deg, rgba(88, 119, 255, 0.3), transparent);
  clip-path: polygon(0 76%, 15% 60%, 32% 68%, 48% 38%, 64% 70%, 80% 26%, 100% 44%, 100% 100%, 0 100%);
  content: "";
}

.console-chart span {
  position: absolute;
  right: 0;
  bottom: 42px;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--blue), var(--violet), transparent);
}

.console-pills {
  justify-content: center;
  gap: 10px;
  margin-top: -18px;
  flex-wrap: wrap;
}

.console-pills span {
  padding: 10px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #c7ccda;
  background: rgba(6, 7, 11, 0.86);
  font-size: 0.83rem;
  font-weight: 800;
}

.metrics-section {
  padding: clamp(58px, 7vw, 92px) clamp(18px, 4vw, 56px) clamp(46px, 6vw, 74px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(5, 5, 7, 0.72);
}

.metrics-grid {
  display: grid;
  max-width: 1180px;
  margin: 0 auto;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 5vw, 76px);
  text-align: center;
}

.metric-item strong {
  display: block;
  color: #fff;
  font-size: clamp(2.8rem, 5.1vw, 4.4rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.9;
}

.metric-item span,
.pilot-strip p {
  color: #627188;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.metric-item span {
  display: block;
  margin-top: 22px;
  font-size: clamp(0.78rem, 1.45vw, 1.05rem);
}

.pilot-strip {
  max-width: 1180px;
  margin: clamp(54px, 7vw, 84px) auto 0;
  padding-top: clamp(42px, 5vw, 64px);
  border-top: 1px solid var(--line);
  text-align: center;
}

.pilot-strip p {
  margin-bottom: 28px;
  font-size: clamp(0.74rem, 1.2vw, 0.92rem);
}

.industry-pills {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.industry-pills span {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  gap: 11px;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 0 20px;
  color: #aab2c2;
  background: rgba(255, 255, 255, 0.035);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  font-size: 0.94rem;
  font-weight: 900;
}

.industry-pills svg {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  color: #60708a;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.try-section {
  position: relative;
  z-index: 0;
  isolation: isolate;
  display: grid;
  max-width: 1180px;
  grid-template-columns: minmax(0, 0.84fr) minmax(430px, 1fr);
  gap: clamp(28px, 5vw, 56px);
  align-items: center;
}

.try-section::before {
  position: absolute;
  z-index: -1;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 100vw;
  transform: translateX(-50%);
  pointer-events: none;
  content: "";
  background:
    radial-gradient(circle at 82% 42%, rgba(88, 119, 255, 0.12), transparent 28rem),
    linear-gradient(180deg, rgba(9, 12, 20, 0.42), rgba(5, 5, 7, 0));
}

.try-copy h2 {
  max-width: 560px;
  margin-bottom: 16px;
  font-size: clamp(2.12rem, 3.45vw, 3.35rem);
  line-height: 1;
}

.try-copy h2 span {
  color: #8fa1ff;
}

.try-copy p {
  max-width: 560px;
  color: var(--muted);
  font-size: clamp(0.94rem, 1.12vw, 1.02rem);
  font-weight: 650;
  line-height: 1.5;
}

.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  margin-bottom: 16px;
  padding: 7px 12px;
  border: 1px solid rgba(57, 217, 138, 0.28);
  border-radius: 999px;
  color: #48e7a4;
  background: rgba(57, 217, 138, 0.08);
  box-shadow: inset 0 0 18px rgba(57, 217, 138, 0.08);
  font-size: 0.64rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
}

.live-badge span {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 14px var(--green);
}

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

.try-list li {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  color: #c7ccda;
  font-size: 0.86rem;
  font-weight: 800;
}

.try-list li::before {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border: 1px solid rgba(88, 119, 255, 0.5);
  border-radius: 999px;
  color: #5f83ff;
  background: rgba(88, 119, 255, 0.18);
  content: "+";
  font-size: 0.7rem;
}

.try-cta {
  display: inline-flex;
  width: min(100%, 420px);
  min-height: 52px;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  color: #fff;
  background: linear-gradient(135deg, #4774ff, #526fff);
  box-shadow: 0 24px 52px rgba(88, 119, 255, 0.24);
  font-size: 0.88rem;
  font-weight: 900;
}

.try-cta::after {
  margin-left: 10px;
  content: ">";
  font-size: 1.14rem;
}

.agent-demo {
  overflow: hidden;
  border: 1px solid rgba(88, 119, 255, 0.22);
  border-radius: 22px;
  background: #101629;
  box-shadow:
    0 30px 100px rgba(0, 0, 0, 0.48),
    0 0 64px rgba(88, 119, 255, 0.1);
}

.agent-header {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 17px 20px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.agent-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 999px;
  color: #fff;
  background: #4f75ff;
  font-size: 1rem;
  font-weight: 900;
}

.agent-header strong,
.agent-header span {
  display: block;
}

.agent-header strong {
  color: #fff;
  font-size: 0.92rem;
}

.agent-header span {
  color: #35d69c;
  font-size: 0.78rem;
  font-weight: 900;
}

.agent-body {
  min-height: 292px;
  padding: 20px;
}

.agent-message {
  display: flex;
  max-width: 380px;
  margin: 0;
  padding: 12px 16px;
  border-radius: 6px 18px 18px;
  color: #fff;
  background: #2c3346;
  font-size: 0.9rem;
  font-weight: 900;
  width: fit-content;
}

.agent-message.user {
  background: #4774ff;
  border-radius: 18px 18px 6px 18px;
  align-self: flex-end;
  margin-left: auto;
}

.agent-body {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.agent-suggestions {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 0 20px 9px;
}

.agent-suggestions button {
  min-height: 34px;
  flex: 0 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  color: #c7ccda;
  background: rgba(255, 255, 255, 0.07);
  cursor: default;
  font-size: 0.74rem;
  font-weight: 900;
  padding: 0 14px;
}

.agent-input {
  display: flex;
  min-height: 52px;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin: 9px 20px 12px;
  padding: 0 10px 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  color: #717b90;
  background: rgba(255, 255, 255, 0.055);
  font-size: 0.84rem;
  font-weight: 800;
}

.agent-input input {
  flex: 1;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 0.84rem;
  font-weight: 800;
  outline: none;
  min-width: 0;
}

.agent-input input::placeholder {
  color: #717b90;
}

.agent-input button {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 0;
  border-radius: 999px;
  color: #b5c3ff;
  background: rgba(88, 119, 255, 0.56);
  font-size: 1rem;
  font-weight: 900;
}

.agent-footnote {
  margin: 0 0 16px;
  color: #566176;
  text-align: center;
  font-size: 0.78rem;
  font-weight: 900;
}

.agent-footnote a {
  color: #4774ff;
}

.section {
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(86px, 11vw, 138px) clamp(18px, 4vw, 56px);
}

.section-heading {
  max-width: 860px;
  margin-bottom: 34px;
}

.section-heading.compact {
  max-width: 760px;
}

.problem-section {
  padding-top: clamp(48px, 6vw, 72px);
  padding-bottom: clamp(48px, 6vw, 72px);
}

.problem-section .section-heading,
.operation-section .section-heading {
  margin-bottom: 20px;
}

.problem-section h2,
.operation-section h2 {
  max-width: 860px;
  font-size: clamp(1.8rem, 3.05vw, 2.85rem);
  line-height: 1.04;
}

.problem-section .section-heading p,
.operation-section .section-heading p {
  max-width: 820px;
  font-size: 1rem;
}

.eyebrow,
.scenario-label {
  margin: 0 0 14px;
  color: #91a3ff;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.impact-grid,
.plans-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.plans-grid {
  align-items: stretch;
}

.impact-card,
.plan-card {
  min-height: 246px;
  padding: 24px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.impact-card {
  min-height: 178px;
  padding: 18px;
}

.impact-card h3 {
  font-size: 1.12rem;
}

.impact-card p {
  font-size: 0.92rem;
  line-height: 1.45;
}

.impact-card p,
.plan-card p,
.workflow-step p {
  color: var(--muted);
}

.card-icon {
  display: inline-flex;
  margin-bottom: 24px;
  color: #91a3ff;
  font-weight: 900;
}

.impact-card .card-icon {
  margin-bottom: 16px;
}

.operation-section,
.plans-section {
  max-width: none;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 18% 0%, rgba(88, 119, 255, 0.18), transparent 30rem),
    radial-gradient(circle at 82% 68%, rgba(80, 227, 194, 0.07), transparent 26rem),
    linear-gradient(180deg, #0c1019 0%, #080a11 48%, #0a0c13 100%);
}

.operation-section {
  padding-top: clamp(48px, 6vw, 72px);
  padding-bottom: clamp(48px, 6vw, 72px);
}

.operation-section > *,
.plans-section > * {
  max-width: 1180px;
  margin-right: auto;
  margin-left: auto;
}

.operation-layout {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr) 320px;
  gap: 14px;
  align-items: start;
}

.scenario-tabs {
  flex-direction: column;
  align-items: stretch;
  gap: 8px;
}

.scenario-tab {
  min-height: 46px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  color: #c7ccda;
  background: rgba(255, 255, 255, 0.035);
  cursor: pointer;
  font-weight: 900;
  text-align: left;
}

.scenario-tab.active {
  color: #fff;
  border-color: rgba(88, 119, 255, 0.42);
  background: linear-gradient(135deg, rgba(88, 119, 255, 0.38), rgba(155, 124, 255, 0.18));
}

.scenario-panel {
  display: grid;
  gap: 14px;
  padding: 20px;
}

.scenario-panel h3 {
  font-size: 1.2rem;
}

.scenario-panel p,
.scenario-list {
  font-size: 0.95rem;
}

.scenario-list,
.check-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 18px;
  color: #c4cad8;
}

.workflow {
  display: grid;
  gap: 1px;
  overflow: hidden;
  background: var(--line);
}

.workflow-step {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  column-gap: 10px;
  row-gap: 2px;
  align-items: start;
  padding: 12px 14px;
  background: rgba(10, 12, 19, 0.96);
}

.workflow-step span {
  display: inline-grid;
  width: 20px;
  height: 20px;
  margin-top: 1px;
  place-items: center;
  border-radius: 999px;
  color: #fff;
  background: var(--blue);
  font-size: 0.66rem;
  font-weight: 900;
}

.workflow-step strong {
  display: block;
  font-size: 0.92rem;
  line-height: 1.16;
}

.workflow-step p {
  grid-column: 2;
  margin: 3px 0 0;
  font-size: 0.8rem;
  line-height: 1.35;
}

.roi-section,
.control-section {
  position: relative;
  z-index: 0;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 1fr);
  gap: clamp(28px, 6vw, 70px);
  align-items: center;
}

.roi-section::before,
.control-section::before {
  position: absolute;
  z-index: -1;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 100vw;
  transform: translateX(-50%);
  pointer-events: none;
  content: "";
}

.roi-section::before {
  background:
    radial-gradient(circle at 12% 20%, rgba(155, 124, 255, 0.1), transparent 28rem),
    linear-gradient(135deg, rgba(11, 15, 24, 0.46), rgba(5, 5, 7, 0));
}

.roi-tool {
  display: grid;
  gap: 24px;
  padding: clamp(22px, 4vw, 34px);
  box-shadow: var(--shadow);
}

.roi-tool label {
  display: grid;
  gap: 10px;
  color: #fff;
  font-weight: 900;
}

.roi-tool label span {
  color: #8fa1ff;
}

input[type="range"] {
  width: 100%;
  accent-color: var(--blue);
}

.roi-results {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.roi-results div {
  min-height: 118px;
  padding: 18px;
  border: 1px solid rgba(88, 119, 255, 0.28);
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(88, 119, 255, 0.22), rgba(155, 124, 255, 0.08));
}

.roi-results strong {
  display: block;
  margin-top: 8px;
  color: #fff;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
}

.control-section {
  grid-template-columns: minmax(340px, 1fr) minmax(0, 0.9fr);
  gap: clamp(24px, 5vw, 52px);
  padding-top: clamp(52px, 6vw, 76px);
  padding-bottom: clamp(52px, 6vw, 76px);
}

.control-section::before {
  background:
    radial-gradient(circle at 8% 16%, rgba(80, 227, 194, 0.09), transparent 26rem),
    radial-gradient(circle at 92% 86%, rgba(88, 119, 255, 0.1), transparent 26rem),
    linear-gradient(180deg, rgba(9, 14, 21, 0.5), rgba(5, 5, 7, 0));
}

.control-copy h2 {
  max-width: 760px;
  font-size: clamp(1.7rem, 2.7vw, 2.55rem);
  line-height: 1.04;
}

.control-copy p {
  max-width: 720px;
  font-size: 1rem;
  line-height: 1.6;
}

.control-copy .check-list {
  gap: 8px;
  margin-top: 16px;
  font-size: 0.95rem;
}

.control-visual {
  overflow: hidden;
  background: linear-gradient(180deg, rgba(16, 19, 30, 0.92), rgba(8, 9, 14, 0.96));
  box-shadow: var(--shadow);
}

.queue-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.88rem;
}

.queue-header strong {
  color: #fff;
}

.queue-row {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  column-gap: 18px;
  row-gap: 6px;
  align-items: center;
  margin: 10px 12px;
  min-height: 80px;
  padding: 15px 18px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.045);
}

.queue-row.approved {
  border-left: 5px solid var(--green);
}

.queue-row.review {
  border-left: 5px solid #f3ba3f;
}

.queue-row strong {
  justify-self: start;
  color: #fff;
  line-height: 1.22;
}

.queue-row small {
  grid-column: 2;
  justify-self: end;
  text-align: right;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  line-height: 1.18;
  text-transform: uppercase;
  white-space: normal;
}

.plan-card {
  display: grid;
  grid-template-rows: 236px 1fr;
  gap: 0;
  align-content: start;
  min-height: 620px;
  position: relative;
  overflow: hidden;
}

.plan-card::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  background: var(--blue);
  content: "";
}

.plan-card.free::before {
  background: var(--green);
}

.plan-card.professional::before {
  background: var(--blue);
}

.plan-card.growth::before {
  background: var(--violet);
}

.plan-card.advanced::before {
  background: #f59e0b;
}

.plan-heading {
  display: grid;
  min-height: 236px;
  align-content: start;
  gap: 18px;
}

.plan-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.popular-badge {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  border-radius: 999px;
  padding: 0 13px;
  color: #21112e;
  background: #b05cff;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.popular-badge::before {
  margin-right: 6px;
  content: "☆";
}

.plan-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.plan-price strong {
  color: #fff;
  font-size: clamp(2.25rem, 4vw, 3rem);
  line-height: 1;
}

.advanced .plan-price strong {
  font-size: clamp(1.78rem, 2.25vw, 2.08rem);
  white-space: nowrap;
}

.plan-card.advanced .plan-price {
  display: flex;
  gap: 8px;
  align-items: center;
  min-width: 0;
}

.plan-card.advanced .plan-price span {
  display: inline-flex;
  width: fit-content;
  min-height: 22px;
  max-width: 92px;
  align-items: center;
  border: 1px solid rgba(245, 158, 11, 0.28);
  border-radius: 999px;
  padding: 0 7px;
  color: #f7c46a;
  background: rgba(245, 158, 11, 0.08);
  font-size: 0.58rem;
  font-weight: 900;
  letter-spacing: 0.035em;
  text-transform: uppercase;
  white-space: nowrap;
}

.plan-price span,
.plan-card p,
.plan-features small {
  color: var(--muted);
}

.plan-features {
  display: grid;
  gap: 16px;
  margin: 0;
  padding: 24px 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.plan-features li {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 12px;
  align-items: start;
  color: #d8dce8;
  font-size: 0.95rem;
  font-weight: 750;
  line-height: 1.4;
}

.plan-features li::before {
  color: var(--blue);
  content: "✓";
  font-weight: 900;
}

.plan-card.free .plan-features li::before {
  color: var(--green);
}

.plan-card.growth .plan-features li::before {
  color: var(--violet);
}

.plan-card.advanced .plan-features li::before {
  color: #f59e0b;
}

.plan-features small {
  justify-self: end;
  font-weight: 800;
}

.plan-card.featured {
  border-color: rgba(88, 119, 255, 0.5);
  background: linear-gradient(145deg, rgba(88, 119, 255, 0.28), rgba(155, 124, 255, 0.12));
  box-shadow: 0 24px 70px rgba(88, 119, 255, 0.18);
}

.plan-card.growth.featured {
  border-color: rgba(176, 92, 255, 0.62);
  background:
    radial-gradient(circle at 78% 0%, rgba(176, 92, 255, 0.18), transparent 18rem),
    linear-gradient(145deg, rgba(88, 119, 255, 0.16), rgba(155, 124, 255, 0.14));
  box-shadow: 0 24px 70px rgba(176, 92, 255, 0.2);
}

.final-cta {
  display: grid;
  min-height: 560px;
  place-items: center;
  padding: clamp(76px, 10vw, 140px) clamp(18px, 4vw, 56px);
  text-align: center;
  background:
    radial-gradient(circle at 50% 0%, rgba(88, 119, 255, 0.24), transparent 28rem),
    #050507;
  color: #fff;
}

.final-cta h2 {
  max-width: 980px;
}

.final-cta .hero-actions {
  justify-content: center;
}

.site-footer {
  padding: clamp(44px, 7vw, 70px) clamp(18px, 4vw, 56px);
  border-top: 1px solid var(--line);
  background: #050507;
  font-size: 0.88rem;
}

.footer-grid {
  display: grid;
  max-width: 1180px;
  margin: 0 auto;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: clamp(34px, 5vw, 72px);
  align-items: start;
}

.footer-logo {
  display: inline-flex;
  margin-bottom: 24px;
}

.footer-logo img {
  display: block;
  width: 92px;
  height: auto;
}

.footer-brand p,
.footer-block span,
.footer-block a,
.footer-label {
  color: #7e8797;
  font-weight: 800;
}

.footer-brand p {
  max-width: 270px;
  margin: 0;
  font-size: 0.86rem;
  line-height: 1.55;
}

.footer-block {
  display: grid;
  gap: 10px;
  margin: 0;
  font-style: normal;
}

.footer-label {
  margin: 0 0 2px;
  font-size: 0.76rem;
}

.footer-links .footer-label {
  color: #98a2b3;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-block strong {
  color: #fff;
  font-size: 0.96rem;
}

.footer-block a {
  transition: color 160ms ease;
}

.footer-block a:hover {
  color: #fff;
}

@media (max-width: 980px) {
  .nav-links,
  .ghost-link {
    display: none;
  }

  .operation-layout,
  .roi-section,
  .control-section,
  .try-section,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .try-section {
    max-width: 760px;
  }

  .agent-body {
    min-height: 300px;
  }

  .queue-row {
    grid-template-columns: 136px minmax(0, 1fr);
    gap: 14px;
  }

  .footer-grid {
    gap: 34px;
  }

  .console-grid,
  .impact-grid,
  .plans-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .scenario-tabs {
    flex-direction: row;
  }

  .metrics-grid {
    gap: 24px;
  }

  .industry-pills span {
    min-height: 44px;
    padding: 0 16px;
  }
}

@media (max-width: 680px) {
  .site-header {
    min-height: 66px;
  }

  .brand img {
    width: 90px;
  }

  .login-link {
    display: none;
  }

  .nav-cta {
    min-height: 38px;
    padding: 0 14px;
    font-size: 0.86rem;
  }

  .language-toggle {
    min-height: 38px;
    padding: 3px;
  }

  .language-toggle button {
    min-width: 34px;
    min-height: 30px;
    font-size: 0.74rem;
  }

  .whatsapp-link {
    width: 38px;
    min-height: 38px;
  }

  .hero {
    padding-top: 62px;
  }

  .metrics-section {
    padding-top: 46px;
    padding-bottom: 42px;
  }

  .metrics-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .metric-item span {
    margin-top: 12px;
  }

  .pilot-strip {
    margin-top: 40px;
    padding-top: 34px;
  }

  .pilot-strip p {
    margin-bottom: 20px;
  }

  .industry-pills {
    justify-content: flex-start;
    gap: 10px;
  }

  .industry-pills span {
    min-height: 40px;
    border-radius: 14px;
    padding: 0 13px;
    font-size: 0.84rem;
  }

  .problem-section,
  .operation-section {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .problem-section h2,
  .operation-section h2 {
    font-size: clamp(1.8rem, 9vw, 2.7rem);
  }

  .impact-card {
    min-height: auto;
    padding: 14px;
  }

  .impact-grid {
    gap: 10px;
  }

  .impact-card .card-icon {
    margin-bottom: 10px;
  }

  .impact-card h3 {
    font-size: 1rem;
  }

  .impact-card p {
    font-size: 0.86rem;
  }

  .scenario-panel {
    padding: 20px;
  }

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

  .workflow-step {
    min-height: 130px;
  }

  .try-copy h2 {
    font-size: clamp(2rem, 9vw, 2.8rem);
  }

  .try-copy p {
    font-size: 0.9rem;
  }

  .live-badge {
    font-size: 0.62rem;
    letter-spacing: 0.08em;
    white-space: normal;
  }

  .try-list {
    margin: 20px 0;
  }

  .try-list li {
    font-size: 0.82rem;
  }

  .try-cta {
    min-height: 50px;
  }

  h1 {
    font-size: clamp(2.7rem, 15vw, 4.8rem);
  }

  .runtime-badge {
    justify-content: center;
    text-align: center;
  }

  .button {
    width: 100%;
  }

  .console-grid,
  .roi-results,
  .impact-grid,
  .plans-grid {
    grid-template-columns: 1fr;
  }

  .hero-console {
    padding: 18px;
    border-radius: 20px;
  }

  .agent-demo {
    border-radius: 20px;
  }

  .agent-header {
    padding: 18px;
  }

  .agent-icon {
    width: 42px;
    height: 42px;
  }

  .agent-header strong {
    font-size: 0.92rem;
  }

  .agent-header span {
    font-size: 0.78rem;
  }

  .agent-body {
    min-height: 230px;
    padding: 16px;
  }

  .agent-message {
    font-size: 0.84rem;
  }

  .agent-suggestions {
    padding: 0 16px 9px;
  }

  .agent-suggestions button {
    min-height: 34px;
    font-size: 0.72rem;
  }

  .agent-input {
    min-height: 50px;
    margin: 9px 16px 12px;
    padding-left: 14px;
    font-size: 0.8rem;
  }

  .agent-input button {
    width: 34px;
    height: 34px;
  }

  .console-header,
  .queue-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .scenario-tabs {
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .scenario-tab {
    min-width: 130px;
    text-align: center;
  }

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

  .trust-band {
    justify-content: flex-start;
  }
}
