:root {
  --bg: #050507;
  --bg-soft: #0a0a11;
  --panel: rgba(18, 18, 29, 0.78);
  --panel-strong: rgba(22, 22, 36, 0.94);
  --text: #f7f7fb;
  --muted: #aaa9ba;
  --line: rgba(255, 255, 255, 0.1);
  --purple: #8b74ff;
  --blue: #4aa8ff;
  --gold: #d5bc87;
  --green: #5de0a3;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
  --radius: 24px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html.is-returning-top-standard {
  scroll-behavior: auto !important;
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 18% 2%, rgba(117, 85, 255, 0.14), transparent 28rem),
    radial-gradient(circle at 92% 22%, rgba(56, 143, 255, 0.10), transparent 31rem),
    var(--bg);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  content: "";
  pointer-events: none;
  opacity: 0.22;
  background-image: linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(to bottom, black, transparent 72%);
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid rgba(139, 116, 255, 0.8);
  outline-offset: 4px;
}

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

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--line);
  background: rgba(5, 5, 7, 0.82);
  backdrop-filter: blur(18px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  padding: 4px 0 8px;
  gap: 24px;
}

.brand img {
  width: 88px;
  height: auto;
}

.nav-links,
.nav-actions {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-links a,
.language {
  color: #e6e5ed;
  font-size: 0.92rem;
  font-family: "Segoe UI Variable", "Segoe UI", Arial, sans-serif;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.nav-links a:hover,
.language:hover {
  color: #fff;
}

.language {
  padding: 10px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
}

.wa-float {
  position: fixed;
  z-index: 900;
  right: 18px;
  bottom: calc(18px + env(safe-area-inset-bottom));
  display: none;
  width: 56px;
  height: 56px;
  place-items: center;
  color: #fff;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 50%;
  background: #25d366;
  box-shadow: 0 12px 34px rgba(37,211,102,.38);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px) scale(.92);
  pointer-events: none;
  transition: opacity .22s ease, visibility .22s ease, transform .22s ease, box-shadow .22s ease;
}

.wa-float svg {
  width: 31px;
  height: 31px;
  fill: currentColor;
}

.wa-float:hover {
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 15px 38px rgba(37,211,102,.52);
}

.page-back-to-top {
  position: fixed;
  z-index: 890;
  right: 22px;
  bottom: calc(22px + env(safe-area-inset-bottom));
  display: grid;
  width: 46px;
  height: 46px;
  padding: 0;
  place-items: center;
  color: #d8d4e5;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  background: rgba(12, 12, 19, 0.78);
  box-shadow: 0 12px 38px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(14px);
  cursor: pointer;
  touch-action: manipulation;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(10px) scale(0.92);
  transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease, border-color 0.25s ease, background-color 0.25s ease;
}

.page-back-to-top span {
  font-size: 1.05rem;
  line-height: 1;
  transform: translateY(-1px);
}

.page-back-to-top.is-visible {
  opacity: 0.76;
  visibility: visible;
  pointer-events: auto;
  transform: none;
}

.page-back-to-top:hover,
.page-back-to-top:focus-visible {
  color: #fff;
  border-color: rgba(166, 108, 255, 0.62);
  background: rgba(63, 45, 98, 0.78);
  opacity: 1;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 21px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.96rem;
  font-weight: 850;
  line-height: 1.2;
  transition: transform .2s ease, border-color .2s ease, background .2s ease, box-shadow .2s ease;
}

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

.btn-primary {
  color: white;
  background: linear-gradient(135deg, #7657ff, #936eff 55%, #4f9fff);
  box-shadow: 0 14px 34px rgba(119, 86, 255, 0.3);
}

.btn-primary:hover {
  box-shadow: 0 18px 42px rgba(119, 86, 255, 0.4);
}

.btn-secondary {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.045);
}

.btn-secondary:hover {
  border-color: rgba(255, 255, 255, 0.26);
  background: rgba(255, 255, 255, 0.075);
}

.btn-calendar {
  border-color: rgba(139, 116, 255, .48);
  color: #f7f4ff;
  background: rgba(139, 116, 255, .12);
  box-shadow: inset 0 0 24px rgba(139, 116, 255, .05);
}

.btn-calendar:hover {
  border-color: rgba(159, 139, 255, .8);
  background: rgba(139, 116, 255, .2);
  box-shadow: 0 14px 32px rgba(91, 66, 208, .2);
}

.btn-calendar svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.booking-dialog {
  width: min(760px, calc(100% - 32px));
  max-width: none;
  max-height: calc(100dvh - 32px);
  padding: 0;
  overflow: auto;
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 26px;
  background: #0d0d13;
  box-shadow: 0 32px 100px rgba(0, 0, 0, 0.72);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

.booking-dialog::backdrop {
  background: rgba(2, 2, 5, 0.84);
}

.booking-panel {
  position: relative;
  padding: 38px;
  background:
    radial-gradient(circle at 94% 0, rgba(74, 168, 255, 0.11), transparent 260px),
    radial-gradient(circle at 0 0, rgba(139, 116, 255, 0.15), transparent 310px),
    #0d0d13;
}

.booking-close {
  position: absolute;
  top: 18px;
  right: 18px;
  display: grid;
  width: 38px;
  height: 38px;
  padding: 0;
  place-items: center;
  color: #d9d7e3;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  font: inherit;
  font-size: 1.45rem;
  line-height: 1;
  cursor: pointer;
}

.booking-close:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.26);
  background: rgba(255, 255, 255, 0.1);
}

.booking-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 34px;
  color: #fff;
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.035em;
}

.booking-brand img {
  width: 32px;
  height: 32px;
}

.booking-kicker {
  display: block;
  margin-bottom: 9px;
  color: #a993ff;
  font-size: 0.73rem;
  font-weight: 850;
  letter-spacing: 0.16em;
}

.booking-panel h2 {
  max-width: 610px;
  margin: 0;
  color: #fff;
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.booking-panel > p {
  max-width: 590px;
  margin: 16px 0 28px;
  color: #b7b5c2;
  font-size: 1rem;
}

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

.booking-option {
  display: flex;
  min-height: 225px;
  padding: 24px;
  flex-direction: column;
  color: #f8f7fc;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 19px;
  background: #15151d;
  transition: border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.booking-option:hover {
  border-color: rgba(157, 136, 255, 0.66);
  background: #191824;
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.26);
}

.booking-option-featured {
  border-color: rgba(139, 116, 255, 0.38);
  background:
    linear-gradient(145deg, rgba(139, 116, 255, 0.16), rgba(74, 168, 255, 0.08)),
    #15151d;
}

.booking-duration {
  align-self: flex-start;
  margin-bottom: 25px;
  padding: 7px 11px;
  color: #e7e0ff;
  border: 1px solid rgba(169, 147, 255, 0.3);
  border-radius: 999px;
  background: rgba(139, 116, 255, 0.12);
  font-size: 0.78rem;
  font-weight: 800;
}

.booking-option strong {
  margin-bottom: 7px;
  color: #fff;
  font-size: 1.16rem;
  line-height: 1.25;
}

.booking-option small {
  color: #aaa8b6;
  font-size: 0.89rem;
  line-height: 1.5;
}

.booking-action {
  display: flex;
  margin-top: auto;
  padding-top: 22px;
  align-items: center;
  justify-content: space-between;
  color: #b9a8ff;
  font-size: 0.84rem;
  font-weight: 800;
}

.booking-action b {
  color: #65b5ff;
  font-size: 1.1rem;
}

.btn-small {
  min-height: 44px;
  padding-inline: 18px;
  font-size: 0.89rem;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  color: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255,255,255,.045);
  cursor: pointer;
}

.menu-toggle svg {
  width: 23px;
}

.mobile-menu {
  display: none;
  padding: 8px 20px 20px;
  border-top: 1px solid var(--line);
  background: rgba(5, 5, 7, 0.98);
}

.mobile-menu.is-open {
  display: grid;
}

.mobile-menu a {
  padding: 13px 4px;
  color: #e8e7ee;
  border-bottom: 1px solid rgba(255,255,255,.07);
  font-weight: 760;
}

.mobile-menu a:last-child {
  border-bottom: 0;
}

.hero {
  display: grid;
  align-items: center;
  min-height: 720px;
  padding: 78px 0 58px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.06fr .94fr;
  align-items: start;
  column-gap: clamp(44px, 7vw, 92px);
  row-gap: 26px;
}

.hero-heading {
  grid-column: 1 / -1;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 22px;
  padding: 8px 13px;
  color: #ddd8ff;
  border: 1px solid rgba(139, 116, 255, 0.34);
  border-radius: 999px;
  background: rgba(139, 116, 255, 0.08);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 7px;
  height: 7px;
  content: "";
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 15px rgba(93, 224, 163, 0.8);
}

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

h1 {
  max-width: 1180px;
  margin-bottom: 0;
  font-size: clamp(3.25rem, 5.7vw, 5.4rem);
  line-height: .98;
  letter-spacing: -.065em;
}

.headline-line {
  display: block;
}

.gradient-text {
  color: transparent;
  background: linear-gradient(100deg, #f8f8fb 8%, #a892ff 48%, #54adff 88%);
  background-clip: text;
  -webkit-background-clip: text;
}

.hero-copy > p {
  max-width: 690px;
  margin-bottom: 30px;
  color: #c4c2cd;
  font-size: clamp(1.05rem, 1.5vw, 1.23rem);
  line-height: 1.68;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.micro-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 18px;
  margin-top: 24px;
  color: #9391a1;
  font-size: .88rem;
  font-weight: 700;
}

.micro-proof span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.micro-proof span::before {
  width: 5px;
  height: 5px;
  content: "";
  border-radius: 50%;
  background: var(--purple);
}

.credential-band {
  padding: 29px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(90deg, rgba(139,116,255,.035), rgba(74,168,255,.025));
}

.credential-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 13px;
}

.credential-card {
  display: grid;
  grid-template-columns: 54px 1fr;
  align-items: center;
  gap: 14px;
  min-height: 86px;
  padding: 15px 17px;
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 18px;
  background: rgba(255,255,255,.035);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.035);
}

.credential-logo {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  color: #f5f5f8;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 15px;
  background: rgba(255,255,255,.045);
}

.credential-logo svg {
  width: 29px;
  height: 29px;
}

.credential-logo img {
  display: block;
  width: 36px;
  height: auto;
}

.credential-logo.google {
  color: #67d7a0;
  background: rgba(68, 190, 125, .07);
}

.credential-logo.microsoft {
  color: #7db9ff;
  background: rgba(67, 145, 238, .08);
}

.credential-card strong,
.credential-card span {
  display: block;
}

.credential-card strong {
  margin-bottom: 2px;
  color: #eeeef4;
  font-size: .88rem;
  line-height: 1.25;
}

.credential-card span {
  color: #918f9d;
  font-size: .73rem;
  font-weight: 700;
}

.credential-foot {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 22px;
  margin-top: 14px;
  color: #9c9aa6;
  font-size: .74rem;
  font-weight: 700;
  text-align: center;
}

.credential-foot span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.credential-foot span::before {
  color: var(--green);
  content: "✓";
  font-weight: 950;
}

.section {
  padding: 88px 0;
  border-bottom: 1px solid rgba(255,255,255,.07);
}

section[id] {
  scroll-margin-top: 88px;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 36px;
}

.section-kicker {
  display: block;
  margin-bottom: 12px;
  color: #a994ff;
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

h2 {
  margin-bottom: 15px;
  font-size: clamp(2.25rem, 4.4vw, 4rem);
  line-height: 1.06;
  letter-spacing: -.045em;
}

.section-heading p,
.section-intro {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.06rem;
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.solution-card,
.proof-card,
.step-card {
  border: 1px solid var(--line);
  background: var(--panel);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.035);
}

.solution-card {
  position: relative;
  display: flex;
  min-height: 390px;
  padding: 32px;
  flex-direction: column;
  overflow: hidden;
  border-radius: var(--radius);
}

.solution-card.primary {
  background: linear-gradient(145deg, rgba(37, 29, 72, .84), rgba(15, 15, 25, .92));
}

.solution-card::after {
  position: absolute;
  right: -70px;
  bottom: -90px;
  width: 210px;
  height: 210px;
  content: "";
  border-radius: 50%;
  background: rgba(92, 84, 255, .15);
  filter: blur(35px);
}

.card-number {
  display: inline-grid;
  width: 46px;
  height: 46px;
  margin-bottom: 24px;
  place-items: center;
  color: #ddd7ff;
  border: 1px solid rgba(139,116,255,.28);
  border-radius: 14px;
  background: rgba(139,116,255,.1);
  font-size: .78rem;
  font-weight: 900;
}

.solution-card h3 {
  margin-bottom: 10px;
  font-size: 1.65rem;
  letter-spacing: -.025em;
}

.solution-card > p {
  color: var(--muted);
}

.solution-card > .text-link {
  margin-top: auto;
  padding-top: 24px;
}

.automation-outcomes {
  display: grid;
  gap: 10px;
  margin-top: 20px;
}

.automation-outcomes article {
  position: relative;
  z-index: 1;
  display: grid;
  padding: 13px 14px;
  grid-template-columns: 42px 1fr;
  align-items: center;
  gap: 13px;
  border: 1px solid rgba(171, 148, 255, 0.14);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.025);
}

.automation-outcomes article > span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: #cfc6ff;
  border: 1px solid rgba(139, 116, 255, 0.24);
  border-radius: 13px;
  background: rgba(139, 116, 255, 0.09);
  font-size: 0.78rem;
  font-weight: 900;
}

.automation-outcomes strong,
.automation-outcomes small {
  display: block;
}

.automation-outcomes strong {
  margin-bottom: 3px;
  color: #fff;
  font-size: 0.92rem;
}

.automation-outcomes small {
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.45;
}

.ai-capability-panel {
  position: relative;
  display: grid;
  min-height: 190px;
  padding: 28px 30px;
  grid-column: 1 / -1;
  grid-template-columns: minmax(210px, 0.7fr) minmax(0, 2.3fr);
  align-items: center;
  gap: 28px;
  overflow: hidden;
  border: 1px solid rgba(139, 116, 255, 0.2);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 18% 50%, rgba(139, 116, 255, 0.16), transparent 25rem),
    linear-gradient(120deg, rgba(19, 17, 34, 0.96), rgba(11, 14, 23, 0.94));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035);
}

.ai-capability-panel::after {
  position: absolute;
  top: 50%;
  right: -4%;
  width: 240px;
  height: 240px;
  content: "";
  border: 1px solid rgba(61, 167, 255, 0.09);
  border-radius: 50%;
  box-shadow: 0 0 0 36px rgba(139, 116, 255, 0.025), 0 0 0 74px rgba(61, 167, 255, 0.018);
  transform: translateY(-50%);
}

.ai-capability-intro,
.ai-capability-grid {
  position: relative;
  z-index: 1;
}

.ai-capability-intro .section-kicker {
  margin-bottom: 12px;
}

.ai-capability-intro h3 {
  max-width: 13ch;
  margin: 0;
  font-size: clamp(1.55rem, 2.2vw, 2rem);
  line-height: 1.02;
  letter-spacing: -0.035em;
}

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

.ai-capability-grid article {
  min-height: 112px;
  padding: 8px 17px;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.ai-capability-grid strong,
.ai-capability-grid span {
  display: block;
}

.ai-capability-grid strong {
  margin-bottom: 8px;
  color: #f6f3ff;
  font-size: 0.9rem;
  line-height: 1.28;
}

.ai-capability-grid span {
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.48;
}

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

.check-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #dedde5;
  font-size: .94rem;
}

.check-list li::before {
  display: grid;
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
  content: "✓";
  place-items: center;
  color: var(--green);
  border-radius: 50%;
  background: rgba(93,224,163,.08);
  font-size: .72rem;
  font-weight: 950;
}

.text-link {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #c6bbff;
  font-weight: 850;
}

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

.proof-card {
  display: flex;
  min-height: 300px;
  padding: 27px;
  flex-direction: column;
  border-radius: 21px;
}

.proof-tag {
  align-self: flex-start;
  margin-bottom: 25px;
  padding: 6px 10px;
  color: #aeeecb;
  border: 1px solid rgba(93,224,163,.17);
  border-radius: 999px;
  background: rgba(93,224,163,.07);
  font-size: .69rem;
  font-weight: 900;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.proof-card h3 {
  margin-bottom: 8px;
  font-size: 1.35rem;
}

.proof-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: .93rem;
}

.proof-card .text-link {
  margin-top: auto;
  padding-top: 18px;
  font-size: .88rem;
}

.company-proof {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 18px;
  padding: 22px 25px;
  border: 1px solid rgba(213,188,135,.16);
  border-radius: 18px;
  background: rgba(213,188,135,.045);
}

.company-proof strong {
  color: #ead9b4;
}

.company-proof span {
  color: #aaa6b2;
  font-size: .9rem;
}

.founder-section {
  background:
    radial-gradient(circle at 12% 20%, rgba(139, 116, 255, .11), transparent 28rem),
    rgba(255,255,255,.012);
}

.founder-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  align-items: center;
  gap: clamp(42px, 7vw, 92px);
}

.founder-copy h2 {
  max-width: 720px;
}

.founder-copy p {
  max-width: 740px;
  margin-bottom: 15px;
  color: var(--muted);
  font-size: 1.01rem;
}

.founder-copy p:last-child {
  margin-bottom: 0;
}

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

.founder-metrics article {
  min-height: 132px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(18, 18, 29, .75);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.035);
}

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

.founder-metrics strong {
  margin-bottom: 7px;
  color: #eeeafc;
  font-size: 1.08rem;
  line-height: 1.2;
}

.founder-metrics span {
  color: #9693a1;
  font-size: .82rem;
  line-height: 1.45;
}

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

.step-card {
  padding: 27px;
  border-radius: 21px;
}

.step-card b {
  display: block;
  margin-bottom: 19px;
  color: #9280ef;
  font-size: .77rem;
  letter-spacing: .1em;
}

.step-card h3 {
  margin-bottom: 8px;
  font-size: 1.19rem;
}

.step-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: .9rem;
}

.contact-section {
  padding: 82px 0;
}

.contact-box {
  position: relative;
  padding: clamp(32px, 6vw, 68px);
  overflow: hidden;
  text-align: center;
  border: 1px solid rgba(139,116,255,.24);
  border-radius: 30px;
  background: linear-gradient(140deg, rgba(41, 31, 82, .88), rgba(14, 14, 23, .96) 60%);
  box-shadow: var(--shadow);
}

.contact-box::before {
  position: absolute;
  top: -170px;
  left: 50%;
  width: 520px;
  height: 320px;
  content: "";
  transform: translateX(-50%);
  border-radius: 50%;
  background: rgba(112, 85, 255, .22);
  filter: blur(70px);
}

.contact-box > * {
  position: relative;
}

.contact-box h2 {
  max-width: 850px;
  margin-inline: auto;
}

.contact-box p {
  max-width: 700px;
  margin: 0 auto 27px;
  color: #bbb8c7;
  font-size: 1.05rem;
}

.contact-box .contact-backing {
  max-width: 880px;
  margin-top: -8px;
  padding: 12px 16px;
  border: 1px solid rgba(146, 108, 255, 0.2);
  border-radius: 999px;
  color: #9691a4;
  background: rgba(255, 255, 255, 0.025);
  font-size: 0.74rem;
  line-height: 1.45;
}

.contact-box .contact-backing strong {
  color: #cfc5e5;
}

.contact-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer {
  padding: 34px 0;
  border-top: 1px solid var(--line);
  background: rgba(0,0,0,.22);
}

.footer-main {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 30px;
}

.footer-brand img {
  width: 112px;
  margin-bottom: 13px;
}

.footer-brand p {
  max-width: 620px;
  margin-bottom: 5px;
  color: #8f8d99;
  font-size: .79rem;
}

.footer-links {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 10px 18px;
  color: #aaa8b2;
  font-size: .8rem;
  font-weight: 700;
}

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

/* Hero editorial: mensaje principal a gran escala */
.hero-statement {
  position: relative;
  min-height: 790px;
  padding: 96px 0 84px;
  overflow: hidden;
}

.hero-statement::before {
  position: absolute;
  z-index: -1;
  top: 8%;
  left: 50%;
  width: min(1000px, 82vw);
  height: 520px;
  content: "";
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(113, 79, 255, .12), transparent 66%);
  filter: blur(16px);
  pointer-events: none;
}

.hero-statement .hero-grid {
  display: block;
  text-align: center;
}

.hero-statement .hero-heading,
.hero-statement .hero-copy {
  width: 100%;
  margin-inline: auto;
}

.hero-statement .eyebrow {
  margin-bottom: 32px;
}

.hero-statement h1 {
  max-width: 1280px;
  margin-inline: auto;
  font-size: clamp(4.5rem, 8.15vw, 8rem);
  line-height: .88;
  letter-spacing: -.078em;
}

.hero-statement .headline-line + .headline-line {
  margin-top: .09em;
}

.hero-statement .hero-copy {
  max-width: 940px;
  margin-top: 48px;
}

.hero-statement .hero-copy > .hero-promise {
  max-width: none;
  margin-bottom: 26px;
  color: #f7f6fb;
  font-size: clamp(1.85rem, 3vw, 3.25rem);
  font-weight: 780;
  line-height: 1.06;
  letter-spacing: -.045em;
}

.hero-statement .hero-promise span {
  color: #aaa0ff;
}

.hero-statement .hero-copy > .hero-description {
  max-width: 760px;
  margin: 0 auto 32px;
  color: #aaa8b5;
  font-size: clamp(1.03rem, 1.45vw, 1.2rem);
  line-height: 1.65;
}

.hero-statement .hero-actions,
.hero-statement .micro-proof {
  justify-content: center;
}

.hero-statement .micro-proof {
  margin-top: 25px;
}

@media (max-width: 1040px) {
  .nav-links {
    display: none;
  }

  .hero-grid {
    column-gap: 42px;
  }

  h1 {
    font-size: clamp(3.4rem, 7vw, 4.8rem);
  }

  .hero-statement {
    min-height: 720px;
  }

  .hero-statement h1 {
    font-size: clamp(4rem, 9.3vw, 6.4rem);
  }

  .ai-capability-panel {
    grid-template-columns: minmax(190px, 0.6fr) minmax(0, 2.4fr);
    gap: 20px;
  }

  .ai-capability-grid article {
    padding-inline: 12px;
  }

}

@media (max-width: 820px) {
  .nav-actions .btn {
    display: none;
  }

  .nav-actions {
    gap: 8px;
    margin-left: auto;
  }

  .nav-actions .language {
    display: grid;
    width: 46px;
    height: 46px;
    padding: 0;
    place-items: center;
    font-size: .84rem;
  }

  .language-long {
    display: none;
  }

  .menu-toggle {
    display: inline-grid;
    place-items: center;
  }

  .wa-float {
    display: grid;
  }

  .wa-float.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    pointer-events: auto;
  }

  .page-back-to-top {
    right: 25px;
    bottom: calc(86px + env(safe-area-inset-bottom));
    width: 42px;
    height: 42px;
  }

  .hero {
    min-height: auto;
    padding: 64px 0 54px;
  }

  .hero-statement {
    padding: 72px 0 64px;
  }

  .hero-statement .eyebrow {
    margin-bottom: 26px;
  }

  .hero-statement .hero-copy {
    margin-top: 38px;
  }

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

  .ai-capability-panel {
    grid-template-columns: 1fr;
  }

  .ai-capability-intro h3 {
    max-width: none;
  }

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

  .ai-capability-grid article:nth-child(odd) {
    border-left: 0;
  }

  .ai-capability-grid article {
    min-height: 104px;
    padding-block: 10px;
  }

  .hero-heading {
    grid-column: auto;
  }

  .proof-grid,
  .steps-grid,
  .credential-grid,
  .founder-grid {
    grid-template-columns: 1fr;
  }

  .proof-card {
    min-height: 0;
  }

  .founder-grid {
    gap: 30px;
  }

  .company-proof,
  .footer-main {
    align-items: flex-start;
    flex-direction: column;
  }

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

@media (max-width: 600px) {
  .container {
    width: min(calc(100% - 28px), var(--max));
  }

  .nav {
    min-height: 74px;
    padding: 4px 0 8px;
  }

  .brand img {
    width: 78px;
  }

  .hero {
    padding-top: 48px;
  }

  .hero-statement {
    padding: 52px 0 46px;
  }

  h1 {
    margin-bottom: 20px;
    font-size: clamp(2.25rem, 9.5vw, 2.8rem);
    line-height: 1.02;
    letter-spacing: -.055em;
  }

  .hero-statement h1 {
    margin-bottom: 0;
    font-size: clamp(3.05rem, 14.1vw, 4.2rem);
    line-height: .91;
    letter-spacing: -.07em;
  }

  .hero-statement .hero-copy {
    margin-top: 34px;
  }

  .hero-statement .hero-copy > .hero-promise {
    margin-bottom: 22px;
    font-size: clamp(1.35rem, 5.4vw, 1.7rem);
  }

  .hero-statement .hero-copy > .hero-description {
    font-size: 1rem;
  }

  .hero-copy > p {
    margin-bottom: 25px;
    font-size: 1.02rem;
  }

  .hero-actions,
  .hero-actions .btn,
  .contact-actions,
  .contact-actions .btn {
    width: 100%;
  }

  .micro-proof {
    display: grid;
  }

  .credential-band {
    padding: 20px 0;
  }

  .credential-card {
    min-height: 76px;
  }

  .credential-foot {
    display: grid;
    justify-content: flex-start;
    text-align: left;
  }

  .section {
    padding: 66px 0;
  }

  .section-heading {
    margin-bottom: 26px;
  }

  .solution-card {
    min-height: 0;
    padding: 25px;
  }

  .automation-outcomes article {
    padding: 12px;
    grid-template-columns: 38px 1fr;
    gap: 11px;
  }

  .automation-outcomes article > span {
    width: 38px;
    height: 38px;
    border-radius: 12px;
  }

  .ai-capability-panel {
    padding: 24px 20px;
    gap: 18px;
  }

  .ai-capability-grid {
    gap: 0 8px;
  }

  .ai-capability-grid article {
    padding: 12px 10px;
  }

  .ai-capability-grid strong {
    font-size: 0.82rem;
  }

  .ai-capability-grid span {
    font-size: 0.7rem;
  }

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

  .founder-metrics article {
    min-height: 0;
  }

  .contact-section {
    padding: 58px 0;
  }

  .contact-box {
    border-radius: 23px;
  }

  .booking-dialog {
    width: calc(100% - 20px);
    max-height: calc(100dvh - 20px);
    border-radius: 21px;
  }

  .booking-panel {
    padding: 26px 20px 20px;
  }

  .booking-close {
    top: 14px;
    right: 14px;
  }

  .booking-brand {
    max-width: calc(100% - 48px);
    margin-bottom: 29px;
  }

  .booking-panel h2 {
    font-size: clamp(2rem, 10vw, 2.65rem);
  }

  .booking-options {
    grid-template-columns: 1fr;
  }

  .booking-option {
    min-height: 190px;
    padding: 21px;
  }
}

@media (max-width: 380px) {
  .nav {
    gap: 10px;
  }

  .brand img {
    width: 156px;
  }

  .nav-actions {
    gap: 6px;
  }

  .hero-statement h1 {
    font-size: clamp(2.8rem, 13.3vw, 3.2rem);
  }
}

@media (max-width: 620px) {
  .contact-box .contact-backing {
    margin-top: -4px;
    padding: 11px 13px;
    border-radius: 18px;
    font-size: 0.66rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .btn,
  .wa-float {
    transition: none;
  }
}

/* Kept in the markup for easy recovery, intentionally hidden for the current design. */
.wa-float,
.wa-float.is-visible {
  display: none !important;
}
