:root {
  --bg: #000514;
  --bg-soft: #050b1d;
  --panel: rgba(9, 16, 37, 0.76);
  --panel-strong: rgba(13, 22, 48, 0.92);
  --line: rgba(255, 255, 255, 0.12);
  --line-blue: rgba(14, 102, 255, 0.34);
  --text: #ffffff;
  --muted: #a7b1c2;
  --blue: #0e66ff;
  --blue-2: #3f8cff;
  --purple: #532efa;
  --cyan: #19e6ff;
  --gradient: linear-gradient(120deg, #0e66ff 0%, #532efa 100%);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  background:
    radial-gradient(circle at 20% 5%, rgba(14, 102, 255, 0.2), transparent 28rem),
    radial-gradient(circle at 85% 30%, rgba(83, 46, 250, 0.16), transparent 30rem),
    var(--bg);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  padding: 22px 0;
  backdrop-filter: blur(18px);
}

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

.main-nav {
  display: flex;
  gap: 44px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  font-weight: 650;
}

.main-nav a,
.site-footer a {
  transition: color 180ms ease;
}

.main-nav a:hover,
.site-footer a:hover {
  color: var(--blue-2);
}

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  border-radius: 8px;
  font-weight: 750;
  white-space: nowrap;
}

.header-cta {
  padding: 0 20px;
  border: 1px solid rgba(83, 46, 250, 0.95);
  color: #fff;
  font-size: 14px;
  box-shadow: inset 0 0 0 1px rgba(14, 102, 255, 0.2);
}

.icon-wa,
.icon-wa::before {
  display: block;
  border-radius: 50%;
}

.icon-wa {
  width: 18px;
  height: 18px;
  border: 2px solid var(--blue-2);
  position: relative;
}

.icon-wa::before {
  content: "";
  position: absolute;
  width: 5px;
  height: 5px;
  left: 4px;
  top: 5px;
  border-left: 2px solid var(--blue-2);
  border-bottom: 2px solid var(--blue-2);
  transform: rotate(-30deg);
}

.menu-toggle {
  display: none;
}

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

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 460px;
  gap: 72px;
  min-height: 720px;
  align-items: center;
  padding: 38px 0 74px;
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  inset: 15% 28% auto auto;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: rgba(14, 102, 255, 0.36);
  filter: blur(86px);
}

.hero-mark {
  position: absolute;
  right: 22%;
  top: 30%;
  width: 300px;
  opacity: 0.42;
  filter: blur(1px) drop-shadow(0 0 34px rgba(14, 102, 255, 0.95));
  animation: floatMark 7s ease-in-out infinite;
}

@keyframes floatMark {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(0, -16px, 0) scale(1.03); }
}

.eyebrow {
  margin: 0 0 22px;
  color: var(--blue-2);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 690px;
  margin-bottom: 24px;
  font-size: clamp(42px, 6vw, 78px);
  line-height: 0.98;
  letter-spacing: 0;
}

h1 span,
.metric strong,
.text-link,
.ecosystem-card a {
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-sub {
  max-width: 620px;
  color: var(--muted);
  font-size: 20px;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 26px;
  margin: 28px 0 22px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 17px;
}

.hero-points span + span {
  position: relative;
}

.hero-points span + span::before {
  content: "";
  position: absolute;
  left: -15px;
  top: 12px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--blue-2);
}

.always-on {
  margin: 26px 0 48px;
  color: var(--blue-2);
  font-size: 20px;
  font-weight: 800;
}

.hero-actions,
.final-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.btn {
  min-width: 190px;
  padding: 0 24px;
  border: 1px solid transparent;
  font-size: 15px;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

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

.btn.primary {
  background: var(--gradient);
  box-shadow: 0 16px 34px rgba(14, 102, 255, 0.24);
}

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

.btn.light {
  background: #fff;
  color: var(--purple);
}

.btn.ghost-light {
  border-color: rgba(255, 255, 255, 0.48);
  background: rgba(255, 255, 255, 0.08);
}

.phone-wrap {
  position: relative;
  z-index: 2;
  justify-self: center;
}

.phone {
  width: min(100%, 390px);
  min-height: 626px;
  padding: 22px 18px;
  border: 7px solid #141a25;
  border-radius: 42px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.1), transparent 28%),
    #05080e;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.2),
    0 28px 90px rgba(14, 102, 255, 0.22);
}

.phone-top,
.message-bar {
  display: flex;
  align-items: center;
  gap: 12px;
}

.phone-top {
  padding: 2px 2px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.phone-top img {
  width: 34px;
  height: 34px;
  border-radius: 50%;
}

.phone-top strong {
  display: block;
  font-size: 15px;
}

.phone-top small {
  display: block;
  color: #8eea9a;
  font-size: 12px;
}

.back-arrow {
  width: 12px;
  height: 12px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(45deg);
}

.phone-dots {
  width: 4px;
  height: 20px;
  margin-left: auto;
  background: radial-gradient(circle, #fff 2px, transparent 2px) 0 0 / 4px 8px;
}

.phone-chat {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 24px 0 18px;
  mask-image: none;
}

.bubble {
  position: relative;
  max-width: 84%;
  margin-bottom: 0;
  padding: 12px 14px 20px;
  border-radius: 12px;
  font-size: 13px;
  line-height: 1.35;
  overflow-wrap: break-word;
  white-space: normal;
}

.bubble small {
  position: absolute;
  right: 10px;
  bottom: 5px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 10px;
}

.bubble.client {
  align-self: flex-end;
  color: #071014;
  background: #c8f0a8;
}

.bubble.client small {
  color: rgba(7, 16, 20, 0.45);
}

.bubble.bot {
  align-self: flex-start;
  background: #121a2a;
}

.message-bar {
  margin-top: 8px;
  min-height: 42px;
  padding: 0 12px;
  border-radius: 24px;
  color: rgba(255, 255, 255, 0.45);
  background: #111720;
  font-size: 13px;
}

.message-bar b {
  width: 34px;
  height: 34px;
  margin-left: auto;
  border-radius: 50%;
  background: linear-gradient(135deg, #0fd46f, #0db85f);
}

.metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-block: 1px solid var(--line);
  background: rgba(5, 10, 25, 0.72);
}

.metric {
  min-height: 168px;
  padding: 42px min(3.8vw, 54px);
  border-right: 1px solid var(--line);
}

.metric:last-child {
  border-right: 0;
}

.metric-icon,
.card-icon,
.case-icon,
.eco-icon,
.flow-icon {
  display: block;
  width: 42px;
  height: 42px;
  margin-bottom: 16px;
  background: var(--gradient);
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
}

.metric strong {
  display: block;
  margin-bottom: 8px;
  font-size: 34px;
  line-height: 1;
}

.metric p,
.feature-card p,
.ecosystem-card p,
.step p,
.section-copy p,
.section-heading p {
  color: var(--muted);
}

.metric p {
  max-width: 170px;
  margin-bottom: 0;
  font-size: 14px;
}

.split-section,
.process,
.ecosystem {
  display: grid;
  grid-template-columns: 0.72fr 1fr;
  gap: 56px;
  align-items: center;
  padding: 96px 0;
  border-bottom: 1px solid var(--line);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.08;
  letter-spacing: 0;
}

.section-copy p,
.section-heading p {
  max-width: 650px;
  font-size: 18px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  margin-top: 18px;
  font-weight: 850;
}

.text-link::after,
.ecosystem-card a::after {
  content: "->";
  margin-left: 10px;
}

.demo-panel {
  position: relative;
  padding: 26px;
  border: 1px solid rgba(83, 46, 250, 0.34);
  border-radius: 8px;
  background:
    linear-gradient(120deg, rgba(83, 46, 250, 0.12), transparent 42%),
    rgba(8, 14, 31, 0.8);
}

.demo-panel::before {
  content: "";
  position: absolute;
  left: 48px;
  top: 44px;
  bottom: 44px;
  width: 1px;
  background: linear-gradient(var(--blue), var(--purple));
}

.flow-row {
  position: relative;
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 22px;
  align-items: center;
  margin-bottom: 20px;
}

.flow-row:last-child {
  margin-bottom: 0;
}

.flow-row p {
  min-height: 72px;
  margin-bottom: 0;
  padding: 18px 20px;
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.92);
  background: rgba(255, 255, 255, 0.07);
}

.flow-row small {
  float: right;
  color: rgba(255, 255, 255, 0.42);
}

.flow-icon {
  position: relative;
  z-index: 1;
  width: 48px;
  height: 48px;
  margin-bottom: 0;
  border-radius: 50%;
  background: var(--gradient);
}

.problem-section,
.solution-section,
.use-cases,
.reasons {
  padding: 92px 0;
  border-bottom: 1px solid var(--line);
}

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

.cards-grid {
  display: grid;
  gap: 18px;
}

.cards-grid.four {
  grid-template-columns: repeat(4, 1fr);
}

.cards-grid.three {
  grid-template-columns: repeat(3, 1fr);
}

.feature-card,
.ecosystem-card {
  min-height: 220px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(150deg, rgba(14, 102, 255, 0.12), transparent 46%),
    var(--panel);
  transition: transform 180ms ease, border-color 180ms ease;
}

.feature-card:hover,
.ecosystem-card:hover {
  transform: translateY(-4px);
  border-color: var(--line-blue);
}

.feature-card h3,
.ecosystem-card h3,
.step h3 {
  margin-bottom: 10px;
  font-size: 20px;
  line-height: 1.12;
}

.use-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
  margin-top: 32px;
}

.use-item {
  min-height: 132px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 12px;
  text-align: center;
}

.use-item .case-icon {
  width: 52px;
  height: 52px;
  margin-bottom: 0;
}

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

.step {
  position: relative;
  min-height: 184px;
  padding-top: 8px;
}

.step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 33px;
  right: -8px;
  width: 34px;
  height: 1px;
  background: rgba(255, 255, 255, 0.4);
}

.step span {
  display: grid;
  place-items: center;
  width: 66px;
  height: 66px;
  margin-bottom: 18px;
  border: 1px solid var(--blue);
  border-radius: 50%;
  color: #fff;
  font-weight: 850;
  box-shadow: inset 0 0 32px rgba(83, 46, 250, 0.2);
}

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

.ecosystem-card {
  min-height: 300px;
}

.ecosystem-card strong {
  display: block;
  margin-bottom: 14px;
  color: rgba(255, 255, 255, 0.86);
}

.ecosystem-card a {
  display: inline-flex;
  margin-top: 18px;
  font-weight: 800;
}

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

.reason-list span {
  position: relative;
  min-height: 60px;
  padding: 18px 18px 18px 48px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  font-weight: 750;
}

.reason-list span::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 22px;
  width: 14px;
  height: 8px;
  border-left: 2px solid var(--cyan);
  border-bottom: 2px solid var(--cyan);
  transform: rotate(-45deg);
}

.final-cta {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto 0;
  padding: 42px 48px;
  overflow: hidden;
  border-radius: 8px;
  background: var(--gradient);
  box-shadow: 0 24px 70px rgba(14, 102, 255, 0.25);
}

.final-cta h2 {
  max-width: 650px;
  margin-bottom: 10px;
  font-size: clamp(28px, 4vw, 42px);
}

.final-cta p {
  max-width: 560px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.82);
}

.final-cta img {
  position: absolute;
  right: -28px;
  bottom: -90px;
  width: 250px;
  opacity: 0.16;
}

.final-cta > *:not(img) {
  position: relative;
  z-index: 1;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 38px;
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  padding: 54px 0 34px;
  color: var(--muted);
  font-size: 14px;
}

.site-footer img {
  width: 190px;
  margin-bottom: 18px;
}

.site-footer nav {
  display: grid;
  gap: 10px;
  align-content: start;
}

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

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

.users { mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M16 11c1.66 0 2.99-1.34 2.99-3S17.66 5 16 5s-3 1.34-3 3 1.34 3 3 3Zm-8 0c1.66 0 2.99-1.34 2.99-3S9.66 5 8 5 5 6.34 5 8s1.34 3 3 3Zm0 2c-2.33 0-7 1.17-7 3.5V19h14v-2.5C15 14.17 10.33 13 8 13Zm8 0c-.29 0-.62.02-.97.05 1.16.84 1.97 1.97 1.97 3.45V19h6v-2.5c0-2.33-4.67-3.5-7-3.5Z'/%3E%3C/svg%3E"); }
.clock { mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M12 2a10 10 0 1 0 0 20 10 10 0 0 0 0-20Zm1 11h5v-2h-4V6h-2v7Z'/%3E%3C/svg%3E"); }
.chart { mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M3 17.25 9 11l4 4 7.25-8L22 9V3h-6l2.1 2.1L13 10.7l-4-4L1.5 14.5 3 17.25ZM4 19h17v2H4z'/%3E%3C/svg%3E"); }
.shield { mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M12 1 4 4v6c0 5.55 3.84 10.74 8 12 4.16-1.26 8-6.45 8-12V4l-8-3Zm-1 15-4-4 1.41-1.41L11 13.17l5.59-5.59L18 9l-7 7Z'/%3E%3C/svg%3E"); }
.speed, .chat-card { mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M4 4h16v11H7l-3 3V4Zm4 5h8V7H8v2Zm0 4h6v-2H8v2Z'/%3E%3C/svg%3E"); }
.load, .support { mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M12 2a7 7 0 0 0-7 7v3a3 3 0 0 0 3 3h1V9H7a5 5 0 0 1 10 0h-2v6h2v1a2 2 0 0 1-2 2h-3v2h3a4 4 0 0 0 4-4v-1a3 3 0 0 0 2-2.83V9a7 7 0 0 0-7-7Z'/%3E%3C/svg%3E"); }
.lost, .sales { mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M3 3h18v2H3V3Zm2 4h14l-5 6v6l-4 2v-8L5 7Z'/%3E%3C/svg%3E"); }
.scale { mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M4 18h4V8H4v10Zm6 0h4V4h-4v14Zm6 0h4v-7h-4v7Z'/%3E%3C/svg%3E"); }
.calendar { mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M7 2h2v2h6V2h2v2h3v18H4V4h3V2Zm13 8H4v10h16V10ZM6 12h5v5H6v-5Z'/%3E%3C/svg%3E"); }
.crm, .integration { mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M7 3h10v4H7V3Zm-2 8h6v4H5v-4Zm8 0h6v4h-6v-4ZM5 17h6v4H5v-4Zm8 0h6v4h-6v-4ZM11 7h2v2h6v2H5V9h6V7Z'/%3E%3C/svg%3E"); }
.clinic, .person { mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M12 12a5 5 0 1 0-5-5 5 5 0 0 0 5 5Zm0 2c-4 0-8 2-8 5v2h16v-2c0-3-4-5-8-5Z'/%3E%3C/svg%3E"); }
.realty { mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M3 21V9l8-6 8 6v12h-5v-7H8v7H3Zm14-2V10l-6-4.5L5 10v9h1v-7h10v7h1Z'/%3E%3C/svg%3E"); }
.ecommerce { mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M7 18c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2Zm10 0c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2ZM7.2 14h7.45c.75 0 1.41-.41 1.75-1.03L20 6H6.21l-.94-2H2v2h2l3.6 7.59L6.25 16c-.75 1.34.21 3 1.75 3h12v-2H8l1.2-3Z'/%3E%3C/svg%3E"); }
.law { mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M12 2 3 6v2h18V6l-9-4ZM5 10v8H3v3h18v-3h-2v-8h-3v8h-3v-8h-2v8H8v-8H5Z'/%3E%3C/svg%3E"); }
.car { mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='m5 11 1.5-4.5h11L19 11h1a2 2 0 0 1 2 2v6h-3v-2H5v2H2v-6a2 2 0 0 1 2-2h1Zm2.5-2L6.8 11h10.4l-.7-2H7.5ZM6 15a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3Zm12 0a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3Z'/%3E%3C/svg%3E"); }
.tools { mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='m22 19-6.3-6.3a6 6 0 0 0-7.4-7.4l3.3 3.3-3 3-3.4-3.3a6 6 0 0 0 7.5 7.4L19 22l3-3Z'/%3E%3C/svg%3E"); }
.ai { mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M4 4h16v10H8l-4 4V4Zm4 4h2v2H8V8Zm4 0h2v2h-2V8Zm4 0h2v2h-2V8Z'/%3E%3C/svg%3E"); }
.rocket { mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M12 2c4 0 7 1 10 4-1 4-3 7-6 10l1 5-5-3-5 3 1-5C5 13 3 10 2 6c3-3 6-4 10-4Zm0 7a3 3 0 1 0 0-6 3 3 0 0 0 0 6Z'/%3E%3C/svg%3E"); }
.assistant { mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M12 12a4 4 0 1 0 0-8 4 4 0 0 0 0 8Zm-7 9c0-4 3-7 7-7s7 3 7 7H5Z'/%3E%3C/svg%3E"); }
.check { mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='m9 16.2-3.5-3.5L4 14.2 9 19 20 8l-1.5-1.5L9 16.2Z'/%3E%3C/svg%3E"); }

@media (max-width: 1040px) {
  .hero,
  .split-section,
  .process,
  .ecosystem {
    grid-template-columns: 1fr;
  }

  .hero {
    gap: 34px;
    min-height: auto;
    padding-top: 52px;
  }

  .phone-wrap {
    width: 100%;
    display: grid;
    place-items: center;
  }

  .metrics,
  .cards-grid.four,
  .cards-grid.three,
  .reason-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .use-grid,
  .ecosystem-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .step::after {
    display: none;
  }
}

@media (max-width: 820px) {
  .site-header {
    width: min(var(--max), calc(100% - 32px));
    padding: 16px 0;
  }

  .brand img {
    width: 160px;
  }

  .main-nav,
  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: grid;
    gap: 6px;
    width: 44px;
    height: 44px;
    place-content: center;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.04);
  }

  .menu-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    background: #fff;
  }

  .site-header.is-open .main-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 76px;
    display: grid;
    gap: 0;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(0, 5, 20, 0.96);
  }

  .site-header.is-open .main-nav a {
    padding: 14px;
  }

  .section-shell,
  .final-cta,
  .site-footer {
    width: calc(100% - 32px);
  }

  h1 {
    font-size: 46px;
  }

  .hero-sub,
  .section-copy p,
  .section-heading p {
    font-size: 16px;
  }

  .metrics,
  .cards-grid.four,
  .cards-grid.three,
  .use-grid,
  .ecosystem-grid,
  .reason-list,
  .steps,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .metric {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 30px 24px;
  }

  .metric:last-child {
    border-bottom: 0;
  }

  .split-section,
  .problem-section,
  .solution-section,
  .use-cases,
  .process,
  .ecosystem,
  .reasons {
    padding: 68px 0;
  }

  .phone {
    min-height: 560px;
  }

  .final-cta {
    display: grid;
    padding: 34px 24px;
  }
}

@media (max-width: 520px) {
  h1 {
    font-size: 40px;
  }

  h2 {
    font-size: 31px;
  }

  .hero-points {
    display: grid;
    gap: 10px;
  }

  .hero-points span + span::before {
    display: none;
  }

  .hero-actions,
  .final-actions {
    display: grid;
  }

  .btn {
    width: 100%;
  }

  .demo-panel {
    padding: 18px;
  }

  .flow-row {
    grid-template-columns: 40px 1fr;
    gap: 14px;
  }

  .flow-icon {
    width: 40px;
    height: 40px;
  }

  .demo-panel::before {
    left: 38px;
  }

  .feature-card,
  .ecosystem-card {
    padding: 22px;
  }
}
