:root {
  --bg: #f7fbff;
  --surface: #ffffff;
  --surface-2: #eef7ff;
  --text: #102033;
  --muted: #5c708a;
  --blue: #0e67d1;
  --blue-2: #1d8bff;
  --green: #1bbf89;
  --green-2: #ddfff3;
  --line: rgba(16, 32, 51, .10);
  --shadow: 0 24px 70px rgba(9, 62, 120, .14);
  --shadow-soft: 0 16px 45px rgba(9, 62, 120, .10);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: 1880px;
}

html.theme-fade * {
  transition: background-color 500ms ease, color 500ms ease, border-color 500ms ease, box-shadow 500ms ease, fill 500ms ease, stroke 500ms ease !important;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(29, 139, 255, .16), transparent 32rem),
    radial-gradient(circle at 78% 8%, rgba(27, 191, 137, .18), transparent 26rem),
    linear-gradient(180deg, #ffffff 0%, var(--bg) 42%, #ffffff 100%);
  overflow-x: hidden;
}

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

.page {
  min-height: 100vh;
}

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

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  background: rgba(255, 255, 255, .78);
  border-bottom: 1px solid rgba(16, 32, 51, .08);
}

.nav {
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 850;
  letter-spacing: -.03em;
  white-space: nowrap;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: block;
  object-fit: contain;
  flex: 0 0 auto;
}

.brand-text {
  font-size: 20px;
}

.menu {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 650;
}

.menu a:hover {
  color: var(--blue);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.theme-button-host {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.theme-switcher {
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 1px solid rgba(16, 32, 51, .10);
  background: rgba(255, 255, 255, .80);
  color: #334155;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 24px rgba(15, 23, 42, .10);
  backdrop-filter: blur(8px);
  transition: .2s ease;
}

.theme-switcher:hover {
  transform: translateY(-2px);
  border-color: rgba(14, 103, 209, .24);
  box-shadow: 0 14px 32px rgba(15, 23, 42, .14);
}

.theme-switcher--inline {
  position: relative;
  top: auto;
  right: auto;
}

.theme-switcher svg {
  width: 22px;
  height: 22px;
  display: block;
}

.theme-switcher__icon-wrap {
  position: relative;
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.theme-switcher.theme-switcher--auto-large .theme-switcher__icon-wrap,
.theme-switcher.theme-switcher--auto-large svg {
  width: 30px;
  height: 30px;
}

.theme-switcher__icon {
  position: absolute;
  inset: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

@keyframes theme-arc-in {
  0% { opacity: 0; transform: translate(-20px, 20px) scale(.68); }
  100% { opacity: 1; transform: translate(0, 0) scale(1); }
}

@keyframes theme-arc-out {
  0% { opacity: 1; transform: translate(0, 0) scale(1); }
  100% { opacity: 0; transform: translate(20px, 20px) scale(.62); }
}

.theme-switcher__icon--in-rise,
.theme-switcher__icon--in-set {
  animation: theme-arc-in .5s linear both;
}

.theme-switcher__icon--out-rise,
.theme-switcher__icon--out-set {
  animation: theme-arc-out .5s linear both;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 13px 18px;
  border-radius: 999px;
  font-weight: 750;
  font-size: 15px;
  border: 1px solid transparent;
  transition: .2s ease;
  cursor: pointer;
  white-space: nowrap;
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--blue-2));
  box-shadow: 0 16px 30px rgba(14, 103, 209, .24);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 40px rgba(14, 103, 209, .28);
}

.btn-ghost {
  color: var(--text);
  background: rgba(255, 255, 255, .75);
  border-color: rgba(16, 32, 51, .10);
}

.btn-ghost:hover {
  border-color: rgba(14, 103, 209, .25);
  color: var(--blue);
  transform: translateY(-2px);
}

.hero {
  padding: 84px 0 72px;
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(420px, .98fr);
  align-items: center;
  gap: 56px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(27, 191, 137, .12);
  border: 1px solid rgba(27, 191, 137, .20);
  color: #0b7f5a;
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 22px;
}

.pulse {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 8px rgba(27, 191, 137, .14);
}

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

h1 {
  font-size: clamp(44px, 6vw, 76px);
  line-height: .96;
  letter-spacing: -.075em;
  margin-bottom: 24px;
}

.gradient-text {
  background: linear-gradient(135deg, var(--blue), #079e72);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-subtitle {
  max-width: 650px;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.55;
  margin-bottom: 30px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 30px;
}

.hero-note {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  font-size: 15px;
}

.avatars {
  display: flex;
  align-items: center;
}

.avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 3px solid #fff;
  margin-left: -9px;
  background: linear-gradient(135deg, var(--blue), var(--green));
}

.avatar:first-child {
  margin-left: 0;
}

.hero-visual {
  position: relative;
  min-height: 540px;
}

.visual-card {
  position: absolute;
  inset: 0;
  border-radius: 42px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .94), rgba(255, 255, 255, .72)),
    radial-gradient(circle at 28% 20%, rgba(29, 139, 255, .18), transparent 20rem),
    radial-gradient(circle at 70% 74%, rgba(27, 191, 137, .20), transparent 18rem);
  border: 1px solid rgba(16, 32, 51, .10);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.visual-card:before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(14, 103, 209, .055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(14, 103, 209, .055) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: linear-gradient(180deg, #000, transparent 88%);
}

.browser {
  position: absolute;
  left: 34px;
  right: 34px;
  top: 40px;
  min-height: 315px;
  border-radius: 24px;
  background: #fff;
  border: 1px solid rgba(16, 32, 51, .10);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.browser-top {
  height: 52px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 18px;
  border-bottom: 1px solid rgba(16, 32, 51, .08);
  background: #f8fbff;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(92, 112, 138, .28);
}

.address {
  margin-left: 10px;
  flex: 1;
  height: 28px;
  border-radius: 999px;
  background: #edf5ff;
  color: var(--muted);
  display: flex;
  align-items: center;
  padding: 0 14px;
  font-size: 12px;
  font-weight: 700;
}

.browser-body {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 18px;
  padding: 20px;
}

.site-mock {
  min-height: 220px;
  border-radius: 20px;
  background: linear-gradient(135deg, #f4f9ff, #ffffff);
  border: 1px solid rgba(16, 32, 51, .08);
  padding: 18px;
}

.mock-line {
  height: 12px;
  border-radius: 999px;
  background: #d8eaff;
  margin-bottom: 12px;
}

.mock-line.w1 {
  width: 70%;
}

.mock-line.w2 {
  width: 45%;
}

.mock-line.w3 {
  width: 86%;
}

.mock-cta {
  width: 112px;
  height: 36px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--blue), var(--green));
  margin-top: 22px;
}

.chat {
  border-radius: 22px;
  background: #fff;
  border: 1px solid rgba(16, 32, 51, .10);
  box-shadow: 0 18px 44px rgba(9, 62, 120, .10);
  overflow: hidden;
}

.chat-head {
  padding: 14px 16px;
  background: linear-gradient(135deg, var(--blue), var(--green));
  color: #fff;
  font-weight: 850;
  display: flex;
  align-items: center;
  gap: 10px;
}

.bot-icon {
  width: 28px;
  height: 28px;
  border-radius: 10px;
  background: rgba(255, 255, 255, .22);
  display: grid;
  place-items: center;
}

.chat-body {
  padding: 14px;
}

.bubble {
  padding: 11px 13px;
  border-radius: 16px;
  font-size: 13px;
  line-height: 1.35;
  margin-bottom: 10px;
}

.bubble.ai {
  background: #edf8ff;
  color: #1e3a56;
  border-bottom-left-radius: 5px;
}

.bubble.user {
  margin-left: 34px;
  color: #fff;
  background: var(--blue);
  border-bottom-right-radius: 5px;
}

.agent-panel {
  position: absolute;
  left: 58px;
  right: 58px;
  bottom: 38px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.mini-card {
  padding: 16px;
  border-radius: 20px;
  background: rgba(255, 255, 255, .96);
  border: 1px solid rgba(16, 32, 51, .10);
  box-shadow: 0 18px 42px rgba(9, 62, 120, .08);
}

.mini-card strong {
  display: block;
  font-size: 14px;
  margin-bottom: 7px;
}

.mini-card span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(.2px);
}

.orb.one {
  width: 86px;
  height: 86px;
  right: -20px;
  top: 52px;
  background: rgba(27, 191, 137, .23);
}

.orb.two {
  width: 118px;
  height: 118px;
  left: -34px;
  bottom: 64px;
  background: rgba(14, 103, 209, .15);
}

section {
  padding: 76px 0;
}

.section-head {
  max-width: 780px;
  margin-bottom: 34px;
}

.kicker {
  color: var(--blue);
  font-weight: 850;
  letter-spacing: .02em;
  text-transform: uppercase;
  font-size: 13px;
  margin-bottom: 12px;
}

h2 {
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.03;
  letter-spacing: -.055em;
  margin-bottom: 18px;
}

.section-text {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
}

.product-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, .8fr);
  gap: 38px;
  align-items: center;
  padding: clamp(24px, 4vw, 42px);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .92), rgba(239, 248, 255, .88));
  border: 1px solid rgba(16, 32, 51, .10);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  position: relative;
}

.product-card:after {
  content: "";
  position: absolute;
  right: -110px;
  top: -110px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: rgba(27, 191, 137, .15);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 11px;
  border-radius: 999px;
  background: var(--green-2);
  color: #087a56;
  font-size: 13px;
  font-weight: 850;
  margin-bottom: 16px;
}

.product-title {
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1;
  letter-spacing: -.05em;
  margin-bottom: 16px;
  font-weight: 900;
}

.product-desc {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.62;
  margin-bottom: 22px;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 0;
  margin: 0 0 26px;
  list-style: none;
}

.feature-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: #25415f;
  font-weight: 650;
  line-height: 1.35;
}

.check {
  width: 21px;
  height: 21px;
  border-radius: 7px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--green);
  font-size: 13px;
  margin-top: -1px;
}

.dashboard {
  position: relative;
  z-index: 1;
  min-height: 340px;
  border-radius: 28px;
  background: #fff;
  border: 1px solid rgba(16, 32, 51, .10);
  box-shadow: 0 18px 44px rgba(9, 62, 120, .11);
  padding: 18px;
}

.dash-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(16, 32, 51, .08);
  margin-bottom: 16px;
}

.dash-title {
  font-weight: 900;
  letter-spacing: -.02em;
}

.status {
  padding: 6px 10px;
  border-radius: 999px;
  color: #077050;
  background: #dffff4;
  font-size: 12px;
  font-weight: 850;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 14px;
}

.metric {
  border-radius: 18px;
  background: #f4f9ff;
  border: 1px solid rgba(16, 32, 51, .07);
  padding: 14px;
}

.metric b {
  display: block;
  font-size: 22px;
  margin-bottom: 4px;
  letter-spacing: -.04em;
}

.metric span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.flow {
  border-radius: 20px;
  background: linear-gradient(135deg, #f1f8ff, #f4fff9);
  padding: 16px;
  border: 1px solid rgba(16, 32, 51, .08);
}

.flow-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 9px 0;
  color: #25415f;
  font-size: 14px;
  font-weight: 750;
}

.flow-icon {
  width: 30px;
  height: 30px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--green));
  flex: 0 0 auto;
}

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

.card {
  background: rgba(255, 255, 255, .82);
  border: 1px solid rgba(16, 32, 51, .10);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: 0 14px 34px rgba(9, 62, 120, .07);
  transition: .2s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 46px rgba(9, 62, 120, .10);
}

.card-icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--green));
  box-shadow: 0 14px 28px rgba(14, 103, 209, .18);
}

.card h3 {
  font-size: 22px;
  letter-spacing: -.03em;
  margin-bottom: 10px;
}

.card p {
  color: var(--muted);
  line-height: 1.55;
  margin-bottom: 0;
}

.roadmap {
  background: linear-gradient(180deg, rgba(239, 248, 255, .65), rgba(255, 255, 255, .78));
  border-top: 1px solid rgba(16, 32, 51, .06);
  border-bottom: 1px solid rgba(16, 32, 51, .06);
}

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

.road-card {
  position: relative;
  min-height: 245px;
  padding: 24px;
  border-radius: var(--radius-lg);
  background: #fff;
  border: 1px solid rgba(16, 32, 51, .10);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.road-card:after {
  content: "";
  position: absolute;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  right: -56px;
  bottom: -70px;
  background: rgba(14, 103, 209, .09);
}

.road-status {
  display: inline-flex;
  padding: 7px 10px;
  border-radius: 999px;
  background: #e9f6ff;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  margin-bottom: 18px;
}

.road-card:nth-child(1) .road-status {
  background: #e7fff6;
  color: #087a56;
}

.road-card h3 {
  position: relative;
  z-index: 1;
  font-size: 24px;
  margin-bottom: 12px;
  letter-spacing: -.03em;
}

.road-card p {
  position: relative;
  z-index: 1;
  color: var(--muted);
  line-height: 1.55;
  margin-bottom: 0;
}

.delivery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.delivery .card {
  min-height: 190px;
}

.summary-section {
  padding-top: 0;
}

.summary-box {
  padding: clamp(24px, 4vw, 40px);
  border: 1px solid rgba(16, 32, 51, .10);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .92), rgba(239, 248, 255, .82));
  box-shadow: var(--shadow-soft);
}

.summary-box h2 {
  max-width: 980px;
}

.summary-box p {
  max-width: 1080px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.summary-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 18px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.summary-list li {
  position: relative;
  padding-left: 26px;
  color: #25415f;
  font-weight: 700;
  line-height: 1.45;
}

.summary-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .55em;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--blue), var(--green));
}

.trust {
  padding: 34px;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(135deg, rgba(14, 103, 209, .94), rgba(19, 167, 123, .92));
  color: #fff;
  box-shadow: 0 28px 70px rgba(14, 103, 209, .24);
  overflow: hidden;
  position: relative;
}

.trust:before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .08) 1px, transparent 1px);
  background-size: 30px 30px;
  mask-image: linear-gradient(90deg, #000, transparent);
}

.trust-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 34px;
  align-items: start;
}

.trust h2 {
  margin-bottom: 14px;
}

.trust p {
  color: rgba(255, 255, 255, .82);
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 0;
}

.trust-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.trust-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .15);
  font-weight: 750;
}

.cta {
  text-align: center;
  padding: 76px 0 92px;
}

.cta-box {
  padding: clamp(28px, 5vw, 56px);
  border-radius: 42px;
  background:
    radial-gradient(circle at 20% 20%, rgba(29, 139, 255, .14), transparent 22rem),
    radial-gradient(circle at 78% 50%, rgba(27, 191, 137, .16), transparent 20rem),
    #fff;
  border: 1px solid rgba(16, 32, 51, .10);
  box-shadow: var(--shadow);
}

.cta-layout {
  display: grid;
  grid-template-columns: minmax(0, .94fr) minmax(360px, .86fr);
  gap: 28px;
  align-items: start;
  text-align: left;
}

.contact-preview {
  padding: 24px;
  border-radius: 28px;
  background: rgba(255, 255, 255, .88);
  border: 1px solid rgba(16, 32, 51, .09);
  box-shadow: 0 18px 36px rgba(9, 62, 120, .08);
}

.contact-preview h3 {
  margin: 0 0 12px;
  font-size: 24px;
  letter-spacing: -.03em;
}

.contact-preview p {
  margin: 0 0 18px;
  color: var(--muted);
  line-height: 1.55;
}

.contact-preview-list {
  margin: 0;
  padding-left: 20px;
  color: var(--text);
  line-height: 1.8;
}

.cta-copy {
  max-width: 720px;
}

.cta h2 {
  max-width: 800px;
  margin: 0 0 18px;
}

.cta p {
  max-width: 680px;
  margin: 0 0 28px;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.55;
}

.contact-form {
  display: grid;
  gap: 14px;
  padding: 24px;
  border-radius: 28px;
  background: rgba(255, 255, 255, .88);
  border: 1px solid rgba(16, 32, 51, .09);
  box-shadow: 0 18px 36px rgba(9, 62, 120, .08);
}

.contact-form--modal {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.contact-form-title {
  margin: 0;
  font-size: 24px;
  letter-spacing: -.03em;
}

.contact-form-note {
  margin: -2px 0 4px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

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

.contact-field {
  display: grid;
  gap: 8px;
}

.contact-field.is-full {
  grid-column: 1 / -1;
}

.contact-label {
  font-size: 13px;
  font-weight: 800;
  color: #26425f;
}

.contact-input,
.contact-textarea {
  width: 100%;
  border: 1px solid rgba(16, 32, 51, .12);
  border-radius: 16px;
  background: #fff;
  color: var(--text);
  font: inherit;
  padding: 14px 16px;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.contact-input:focus,
.contact-textarea:focus {
  outline: none;
  border-color: rgba(14, 103, 209, .35);
  box-shadow: 0 0 0 4px rgba(14, 103, 209, .10);
}

.contact-textarea {
  min-height: 142px;
  resize: vertical;
}

.contact-honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.contact-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.contact-consent input {
  width: 18px;
  height: 18px;
  margin-top: 1px;
  accent-color: var(--blue);
  flex: 0 0 auto;
}

.contact-consent a {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.contact-submit {
  width: 100%;
}

.contact-feedback {
  display: block;
  padding: 12px 14px;
  border-radius: 14px;
  font-size: 14px;
  line-height: 1.5;
  border: 1px solid rgba(16, 32, 51, .10);
  background: #f4f9ff;
  color: #26425f;
}

.contact-feedback[hidden] {
  display: none;
}

.contact-feedback.is-success {
  color: #0b7f5a;
  background: #effff8;
  border-color: rgba(27, 191, 137, .18);
}

.contact-feedback.is-error {
  color: #9b1d35;
  background: #fff4f6;
  border-color: rgba(187, 35, 72, .16);
}

.contact-modal-shell {
  width: min(100%, 720px);
}

.contact-modal .buttons {
  display: flex;
}

.contact-modal .buttons .btn.primary {
  width: 100%;
  min-height: 46px;
  padding: 13px 18px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--blue-2));
  box-shadow: 0 16px 30px rgba(14, 103, 209, .24);
  border: 1px solid transparent;
  font-weight: 750;
  font-size: 15px;
  transition: .2s ease;
}

.contact-modal .buttons .btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 40px rgba(14, 103, 209, .28);
}

.footer {
  padding: 34px 0;
  border-top: 1px solid rgba(16, 32, 51, .08);
  background: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
}

.footer p {
  color: var(--muted);
  margin: 8px 0 0;
  font-size: 14px;
}

.legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px 20px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
}

.legal a:hover {
  color: var(--blue);
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: max(16px, env(safe-area-inset-bottom));
  width: min(920px, calc(100vw - 32px));
  margin: 0 auto;
  z-index: 95;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px 18px;
  align-items: center;
  padding: 16px 18px;
  border: 1px solid rgba(16, 32, 51, .12);
  border-radius: 20px;
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 18px 42px rgba(15, 33, 51, .16);
  backdrop-filter: blur(14px);
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner__text {
  margin: 0;
  color: #30424a;
  font-size: 14px;
  line-height: 1.6;
}

.cookie-banner__text a {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-banner__actions {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 8px;
}

.cookie-banner .btn {
  min-height: 42px;
  padding: 10px 16px;
  width: auto;
  font-size: 13px;
}

[data-theme="dark"] {
  --bg: #08131f;
  --surface: #0f1d2e;
  --surface-2: #11253b;
  --text: #d8e7fb;
  --muted: #8ca8c7;
  --blue: #4a96ff;
  --blue-2: #2db0ff;
  --green: #27d79b;
  --green-2: rgba(39, 215, 155, .16);
  --line: rgba(131, 177, 233, .16);
  --shadow: 0 24px 70px rgba(0, 0, 0, .38);
  --shadow-soft: 0 16px 45px rgba(0, 0, 0, .28);
  background-color: #08131f;
}

[data-theme="dark"] body {
  background:
    radial-gradient(circle at top left, rgba(74, 150, 255, .16), transparent 32rem),
    radial-gradient(circle at 78% 8%, rgba(39, 215, 155, .12), transparent 26rem),
    linear-gradient(180deg, #0d1826 0%, #08131f 42%, #060d18 100%);
}

[data-theme="dark"] .header {
  background: rgba(8, 17, 29, .78);
  border-bottom-color: rgba(131, 177, 233, .12);
}

[data-theme="dark"] .hero-shot-wrap,
[data-theme="dark"] .product-shot-wrap {
  background: linear-gradient(180deg, #0f2033 0%, #091523 100%);
  border: 1px solid rgb(84 97 115 / 72%);
}

[data-theme="dark"] .hero-shot-wrap {
  padding: 18px;
}

[data-theme="dark"] .product-shot-wrap {
  padding: 14px;
}

[data-theme="dark"] .hero-shot-wrap::before,
[data-theme="dark"] .product-shot-wrap::before {
  display: none;
}

[data-theme="dark"] .hero-shot-shell,
[data-theme="dark"] .product-shot-shell {
  background: linear-gradient(180deg, #0f2033 0%, #091523 100%);
}

[data-theme="dark"] .btn-ghost {
  background: rgba(17, 37, 59, .84);
  color: var(--text);
  border-color: var(--line);
}

[data-theme="dark"] .btn-ghost:hover {
  color: #cfe3ff;
  border-color: rgba(74, 150, 255, .28);
}

[data-theme="dark"] .visual-card,
[data-theme="dark"] .product-card,
[data-theme="dark"] .card,
[data-theme="dark"] .eco-card,
[data-theme="dark"] .summary-box,
[data-theme="dark"] .contact-preview,
[data-theme="dark"] .contact-form,
[data-theme="dark"] .cookie-banner,
[data-theme="dark"] .ecosystem-pill {
  background: #272738;
  border-color: var(--line);
  box-shadow: var(--shadow-soft);
}

[data-theme="dark"] .roadmap {
  background: linear-gradient(180deg, rgba(9, 20, 33, .88), rgba(8, 19, 31, .92));
  border-color: rgba(131, 177, 233, .08);
}

[data-theme="dark"] .feature-list li {
  color: #c8ddf5;
}

[data-theme="dark"] .section-text,
[data-theme="dark"] .hero-subtitle,
[data-theme="dark"] .card p,
[data-theme="dark"] .product-desc,
[data-theme="dark"] .summary-box p,
[data-theme="dark"] .trust p,
[data-theme="dark"] .cookie-banner__text,
[data-theme="dark"] .footer p,
[data-theme="dark"] .legal,
[data-theme="dark"] .menu,
[data-theme="dark"] .eco-desc,
[data-theme="dark"] .contact-form-note,
[data-theme="dark"] .contact-consent,
[data-theme="dark"] .contact-preview-list {
  color: var(--muted);
}

[data-theme="dark"] .summary-list li {
  color: #c8ddf5;
}

[data-theme="dark"] .gradient-text {
  background: linear-gradient(135deg, #8fc0ff, #4de0b0);
  -webkit-background-clip: text;
  background-clip: text;
}

[data-theme="dark"] .eyebrow,
[data-theme="dark"] .badge,
[data-theme="dark"] .eco-badge,
[data-theme="dark"] .ecosystem-brand,
[data-theme="dark"] .ecosystem-pill {
  border-color: rgba(74, 150, 255, .20);
}

[data-theme="dark"] .eco-badge,
[data-theme="dark"] .ecosystem-brand {
  background: rgba(74, 150, 255, .12);
  color: #9ac4ff;
}

[data-theme="dark"] .ecosystem-pill {
  color: #dbe9ff;
}

[data-theme="dark"] .eco-badge.is-green {
  background: rgba(39, 215, 155, .12);
  border-color: rgba(39, 215, 155, .18);
  color: #85ebc9;
}

[data-theme="dark"] .trust {
  background: linear-gradient(135deg, rgba(20, 56, 103, .96), rgba(13, 94, 78, .92));
}

[data-theme="dark"] .eco-ill {
  background: linear-gradient(180deg, #0f2135, #0a1625);
  box-shadow: inset 0 0 0 1px rgba(131, 177, 233, .10);
}

[data-theme="dark"] .eco-ill img {
  background: linear-gradient(180deg, #12263b 0%, #0b1726 100%);
}

[data-theme="dark"] .ecosystem-hub-circle {
  background: linear-gradient(180deg, rgba(20, 38, 61, .98), rgba(11, 24, 40, .94));
  border-color: rgba(131, 177, 233, .16);
  box-shadow: 0 22px 52px rgba(0, 0, 0, .34);
}

[data-theme="dark"] .ecosystem-hub-circle::before {
  border-color: rgba(74, 150, 255, .18);
}

[data-theme="dark"] .cta-box {
  background:
    radial-gradient(circle at 20% 20%, rgba(74, 150, 255, .14), transparent 22rem),
    radial-gradient(circle at 78% 50%, rgba(39, 215, 155, .10), transparent 20rem),
    linear-gradient(180deg, rgba(14, 27, 45, .98), rgba(10, 20, 34, .94));
  border-color: rgba(131, 177, 233, .14);
  box-shadow: var(--shadow);
}

[data-theme="dark"] .contact-input,
[data-theme="dark"] .contact-textarea {
  background: #252536;
  border-color: rgba(131, 177, 233, .16);
  color: var(--text);
}

[data-theme="dark"] input[type="tel"].contact-input {
  background: #252536;
  border-color: rgba(131, 177, 233, .16);
  color: var(--text);
}

[data-theme="dark"] .contact-label,
[data-theme="dark"] .eco-title,
[data-theme="dark"] .product-title,
[data-theme="dark"] h1,
[data-theme="dark"] h2,
[data-theme="dark"] h3 {
  color: var(--text);
}

[data-theme="dark"] .footer {
  background: rgba(8, 17, 29, .66);
  border-top-color: rgba(131, 177, 233, .10);
}

[data-theme="dark"] .ecosystem-base svg ellipse {
  fill: #102338;
}

[data-theme="dark"] .theme-switcher {
  background: rgba(10, 21, 36, .94);
  color: #d8e7fb;
  border-color: rgba(131, 177, 233, .18);
  box-shadow: 0 12px 28px rgba(0, 0, 0, .34);
}

[data-theme="dark"] .theme-switcher::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background-image:
    radial-gradient(circle at 24% 22%, #e2e8f0 .9px, transparent 1.4px),
    radial-gradient(circle at 73% 17%, #cbd5e1 .8px, transparent 1.2px),
    radial-gradient(circle at 78% 74%, #94a3b8 .8px, transparent 1.2px),
    radial-gradient(circle at 18% 68%, #cbd5e1 .7px, transparent 1.1px);
  opacity: .7;
}

/* --- image assets integration --- */
.hero-visual {
  min-height: auto;
}

.hero-shot-wrap,
.product-shot-wrap {
  position: relative;
  border-radius: 34px;
  background: linear-gradient(180deg, rgba(255, 255, 255, .94), rgba(239, 248, 255, .84));
  border: 1px solid rgba(16, 32, 51, .10);
  box-shadow: var(--shadow);
  overflow: hidden;
  will-change: transform;
}

.hero-shot-wrap {
  padding: 18px;
}

.theme-image-wrap {
  position: relative;
  display: block;
  width: 100%;
}

.theme-image {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
}

picture.theme-image {
  object-fit: unset;
  object-position: unset;
}

picture.theme-image img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
}

.theme-image--dark {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
}

[data-theme="light"] .theme-image--dark,
html:not([data-theme="dark"]) .theme-image--dark {
  display: none;
}

[data-theme="dark"] .theme-image--light {
  display: none;
}

[data-theme="dark"] .theme-image--dark {
  display: block;
  opacity: 1;
  pointer-events: auto;
}

.hero-shot-wrap:before,
.product-shot-wrap:before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 14%, rgba(29, 139, 255, .14), transparent 18rem),
    radial-gradient(circle at 78% 18%, rgba(27, 191, 137, .16), transparent 18rem);
  pointer-events: none;
}

.hero-shot,
.product-shot {
  position: absolute;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 24px;
}

.hero-shot {
  box-shadow: 0 22px 52px rgba(9, 62, 120, .14);
}

.hero-floating-note {
  position: absolute;
  left: 20px;
  bottom: 20px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, .97);
  box-shadow: 0 16px 36px rgba(9, 62, 120, .10);
  border: 1px solid rgba(16, 32, 51, .08);
  font-size: 13px;
  font-weight: 750;
  color: #24405d;
}

.hero-floating-note b {
  color: var(--blue);
}

.hero-floating-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 8px rgba(27, 191, 137, .12);
  flex: 0 0 auto;
}

.product-shot-wrap {
  padding: 14px;
}

.product-shot {
  border-radius: 24px;
}

.hero-shot-shell,
.product-shot-shell {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
}

.hero-shot-shell {
  aspect-ratio: 1672 / 941;
}

.product-shot-shell {
  aspect-ratio: 1448 / 1086;
}

[data-theme="dark"] .theme-image-frame {
  box-shadow: inset 0 0 0 2px rgba(216, 231, 251, .72);
}

.road-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding-bottom: 18px;
}

.road-card p {
  margin-bottom: 14px;
}

.road-figure {
  position: relative;
  z-index: 1;
  margin-top: auto;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(16, 32, 51, .08);
  background: linear-gradient(180deg, #fff, #f6fbff);
  box-shadow: 0 12px 26px rgba(9, 62, 120, .08);
}

.road-figure img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5.6;
  object-fit: cover;
  object-position: center top;
}

.road-caption {
  display: none;
}

/* --- ecosystem section rebuilt closer to reference --- */
.ecosystem-section {
  background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}

.ecosystem-wrap {
  position: relative;
  padding: 8px 0 22px;
  overflow: hidden;
}

.ecosystem-head {
  text-align: center;
  margin-bottom: 14px;
  position: relative;
  z-index: 3;
}

.ecosystem-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: clamp(30px, 3.2vw, 46px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -.06em;
  color: #0b2f78;
  margin-bottom: 14px;
}

.ecosystem-brand-mark {
  width: 48px;
  height: 48px;
  display: block;
  object-fit: contain;
  flex: 0 0 auto;
}

.ecosystem-subtitle {
  margin: 0;
  color: #7688a8;
  font-size: clamp(18px, 2.1vw, 26px);
  letter-spacing: -.03em;
}

.ecosystem-network {
  position: relative;
  --eco-branch-gap: 22px;
  --eco-branch-height: 88px;
  --eco-line-width: 4px;
  --eco-line-blue: #0e67d1;
  --eco-line-center: #2b73f5;
  --eco-line-green: #1bbf89;
  margin: 12px auto 0;
  max-width: 1620px;
  padding-top: 78px;
  z-index: 1;
}

.ecosystem-lines {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 200px;
  overflow: visible;
  z-index: 1;
  pointer-events: none;
}

.ecosystem-hub {
  position: absolute;
  top: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}

.ecosystem-hub-circle {
  width: 112px;
  height: 112px;
  border-radius: 50%;
  background: linear-gradient(180deg, #ffffff 0%, #f5f9ff 100%);
  border: 1px solid rgba(16, 32, 51, .08);
  box-shadow: 0 20px 46px rgba(9, 62, 120, .12);
  display: grid;
  place-items: center;
  position: relative;
}

.ecosystem-hub-circle::before {
  content: "";
  position: absolute;
  inset: 12px;
  border-radius: 50%;
  border: 1px solid rgba(29, 139, 255, .14);
}

.ecosystem-stack {
  position: relative;
  width: 48px;
  height: 36px;
}

.ecosystem-stack span {
  position: absolute;
  left: 50%;
  transform: translateX(-50%) skewX(-16deg);
  border-radius: 7px;
  box-shadow: 0 8px 16px rgba(14, 103, 209, .12);
}

.ecosystem-stack span:nth-child(1) {
  top: 0;
  width: 40px;
  height: 12px;
  background: linear-gradient(135deg, #0e67d1, #2f7eff);
}

.ecosystem-stack span:nth-child(2) {
  top: 12px;
  width: 36px;
  height: 11px;
  background: linear-gradient(135deg, #1bbf89, #13c082);
}

.ecosystem-stack span:nth-child(3) {
  top: 22px;
  width: 32px;
  height: 10px;
  background: linear-gradient(135deg, #2a73f5, #18b88d);
}

.ecosystem-cards {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
  padding-top: 108px;
}

.eco-card {
  position: relative;
  background: #fff;
  border: 1px solid rgba(16, 32, 51, .08);
  border-radius: 28px;
  box-shadow: 0 20px 44px rgba(9, 62, 120, .08);
  padding: 26px 22px 20px;
  min-height: 100%;
  overflow: visible;
  isolation: isolate;
  will-change: transform;
}

.eco-card::before,
.eco-card::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.eco-card::after {
  left: 50%;
  top: 0;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}

.eco-card--docs::before {
  left: 50%;
  top: calc(-1 * var(--eco-branch-height));
  width: calc(100% + var(--eco-branch-gap));
  height: var(--eco-branch-height);
  border-top: var(--eco-line-width) solid var(--eco-line-blue);
  border-left: var(--eco-line-width) solid var(--eco-line-blue);
  border-top-left-radius: 34px;
  z-index: -1;
}

.eco-card--docs::after {
  background: var(--eco-line-blue);
}

.eco-card--lowcode::before {
  left: 50%;
  top: calc(-1 * var(--eco-branch-height));
  width: 0;
  height: var(--eco-branch-height);
  border-left: var(--eco-line-width) solid var(--eco-line-center);
  transform: translateX(-50%);
  border-radius: 999px;
  z-index: -1;
}

.eco-card--lowcode::after {
  background: var(--eco-line-center);
}

.eco-card--maketka::before {
  right: 50%;
  top: calc(-1 * var(--eco-branch-height));
  width: calc(100% + var(--eco-branch-gap));
  height: var(--eco-branch-height);
  border-top: var(--eco-line-width) solid var(--eco-line-green);
  border-right: var(--eco-line-width) solid var(--eco-line-green);
  border-top-right-radius: 34px;
  z-index: -1;
}

.eco-card--maketka::after {
  background: var(--eco-line-green);
}

.eco-card-icon {
  width: 84px;
  height: 84px;
  position: absolute;
  left: 22px;
  top: 30px;
  transform: translateY(-50%);
  margin: 0;
  border-radius: 50%;
  background: linear-gradient(180deg, #ffffff, #f4f8ff);
  border: 1px solid rgba(16, 32, 51, .06);
  box-shadow: 0 14px 28px rgba(9, 62, 120, .12);
  display: grid;
  place-items: center;
  overflow: hidden;
}

.eco-card-icon .icon-circle {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  display: block;
  object-fit: cover;
}

.eco-headrow {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 10px;
  padding-top: 22px;
}

.eco-title {
  margin: 40px 0 0 0px;
  color: #0c2d74;
  font-size: clamp(23px, 2.3vw, 31px);
  line-height: 1.04;
  letter-spacing: -.05em;
  flex: 1;
}

.eco-title .muted-inline {
  display: block;
  font-size: .73em;
  color: #6d7ea1;
  margin-top: 4px;
  letter-spacing: -.03em;
}

.eco-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: #f2f7ff;
  border: 1px solid rgba(14, 103, 209, .12);
  color: #2a73f5;
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
  margin-top: 2px;
}

.eco-badge.is-green {
  background: #effff8;
  border-color: rgba(27, 191, 137, .16);
  color: #14aa77;
}

.eco-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
  opacity: .85;
  flex: 0 0 auto;
}

.eco-desc {
  margin: 0 0 12px;
  color: #7385a5;
  font-size: 14px;
  line-height: 1.48;
  max-width: 260px;
  padding-left: 0;
}

.eco-ill {
  margin-top: auto;
  border-radius: 18px;
  overflow: hidden;
  background: linear-gradient(180deg, #fff, #f7fbff);
  min-height: 222px;
  display: flex;
  align-items: flex-end;
  box-shadow: inset 0 0 0 1px rgba(16, 32, 51, .05);
}

.eco-ill img {
  display: block;
  width: 100%;
  height: 220px;
  object-fit: contain;
  object-position: center center;
  background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
}

.eco-ill-shell,
.eco-ill-shell .theme-image {
  height: 220px;
}

.eco-ill-shell .theme-image {
  object-fit: contain;
  object-position: center center;
}

.ecosystem-base {
  position: relative;
  max-width: 1160px;
  height: 160px;
  margin: -8px auto 0;
  z-index: 0;
}

.ecosystem-base svg {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: auto;
  display: block;
}

.ecosystem-pill svg {
    width: 60px;
    height: 45px;
    display: block;
}

.ecosystem-pill {
    position: absolute;
    left: 50%;
    bottom: 32px;
    height: 50px;
    transform: translateX(-50%);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 66px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .96);
    border: 1px solid rgba(16, 32, 51, .08);
    box-shadow: 0 14px 32px rgba(9, 62, 120, .08);
    color: #496384;
    font-weight: 700;
    white-space: nowrap;
    font-size: 22px;
}

.ecosystem-pill-icon {
  width: 22px;
  height: 22px;
  color: #17bb87;
  flex: 0 0 auto;
}

/* ── Burger button ───────────────────────────────────── */
.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 4px;
  border-radius: 8px;
  flex: 0 0 auto;
}

.nav-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform .22s ease, opacity .18s ease;
  transform-origin: center;
}

.nav-burger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-burger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.nav-burger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ── Mobile nav drawer ───────────────────────────────── */
.mobile-nav {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 49;
  background: rgba(255, 255, 255, .97);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(16, 32, 51, .10);
  padding: 16px 20px 20px;
  flex-direction: column;
  gap: 4px;
  box-shadow: 0 12px 32px rgba(15, 23, 42, .10);
}

.mobile-nav.is-open {
  display: flex;
}

.mobile-nav__links {
  display: flex;
  flex-direction: column;
}

.mobile-nav__link {
  padding: 12px 4px;
  font-size: 16px;
  font-weight: 650;
  color: var(--text);
  border-bottom: 1px solid rgba(16, 32, 51, .07);
  transition: color .15s ease;
}

.mobile-nav__link:last-child {
  border-bottom: none;
}

.mobile-nav__link:hover {
  color: var(--blue);
}

.mobile-nav__cta {
  margin-top: 14px;
  display: block;
  text-align: center;
}

[data-theme="dark"] .mobile-nav {
  background: rgba(8, 17, 29, .97);
  border-bottom-color: rgba(131, 177, 233, .12);
}

[data-theme="dark"] .mobile-nav__link {
  border-bottom-color: rgba(131, 177, 233, .10);
}

/* ── Legacy (kept for compat) ────────────────────────── */
.mobile-menu {
  display: none;
}

@media (max-width: 1020px) {
  .menu {
    display: none;
  }

  .nav-burger {
    display: flex;
  }

  .nav-actions__desktop-only {
    display: none;
  }

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

  .hero-visual {
    min-height: auto;
  }

  .product-card {
    grid-template-columns: 1fr;
  }

  #agent .product-shot-wrap {
    order: 2;
  }

  .cta-layout {
    grid-template-columns: 1fr;
  }

  .contact-preview {
    padding: 20px;
    border-radius: 22px;
  }

  .trust-content {
    grid-template-columns: 1fr;
  }

  .cards-grid,
  .roadmap-grid,
  .summary-list {
    grid-template-columns: 1fr;
  }

  .ecosystem-network {
    padding-top: 0;
  }

  .ecosystem-base {
    display: none;
  }

  .ecosystem-hub {
    position: relative;
    top: 0;
    left: auto;
    transform: none;
    margin: 0 auto 18px;
    width: fit-content;
  }

  .ecosystem-cards {
    grid-template-columns: 1fr;
    gap: 26px;
    padding-top: 0;
  }

  .eco-card::before,
  .eco-card::after {
    display: none;
  }

  .delivery {
    grid-template-columns: 1fr;
  }

  .mobile-menu {
    display: inline-flex;
  }
}

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

  .nav {
    height: 68px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .brand-text {
    font-size: 18px;
  }

  .nav-actions .btn-ghost {
    display: none;
  }

  .hero {
    padding: 54px 0 42px;
  }

  h1 {
    font-size: clamp(40px, 12vw, 56px);
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-floating-note {
    position: static;
    margin: 12px 14px 0;
  }

  .btn {
    width: 100%;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-form {
    padding: 20px;
    border-radius: 22px;
  }

  .cookie-banner {
    left: 10px;
    right: 10px;
    bottom: max(10px, env(safe-area-inset-bottom));
    width: auto;
    grid-template-columns: 1fr;
    padding: 14px;
    border-radius: 16px;
  }

  .cookie-banner__actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .cookie-banner .btn {
    width: 100%;
  }

  .hero-note {
    align-items: flex-start;
  }

  .hero-visual {
    min-height: auto;
  }

  .visual-card {
    position: relative;
    min-height: 520px;
    border-radius: 28px;
  }

  .browser {
    left: 16px;
    right: 16px;
    top: 18px;
    min-height: auto;
  }

  .browser-body {
    grid-template-columns: 1fr;
  }

  .site-mock {
    min-height: 150px;
  }

  .agent-panel {
    left: 16px;
    right: 16px;
    bottom: 16px;
    grid-template-columns: 1fr;
  }

  .mini-card {
    padding: 13px;
  }

  section {
    padding: 54px 0;
  }

  .feature-list {
    grid-template-columns: 1fr;
  }

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

  .product-card,
  .trust,
  .cta-box {
    border-radius: 26px;
  }

  .ecosystem-brand {
    font-size: 28px;
    gap: 10px;
  }

  .ecosystem-brand-mark {
    width: 40px;
    height: 40px;
  }

  .ecosystem-subtitle {
    font-size: 18px;
  }

  .ecosystem-hub-circle {
    width: 96px;
    height: 96px;
  }

  .eco-card {
    border-radius: 24px;
    padding: 22px 18px 18px;
  }

  .eco-headrow {
    flex-direction: column;
    align-items: flex-start;
  }

  .eco-card-icon {
    width: 60px;
    height: 60px;
    left: 18px;
    top: 0;
    transform: translateY(-50%);
  }

  .eco-card-icon .icon-circle {
    width: 44px;
    height: 44px;
  }

  .eco-desc {
    max-width: none;
  }

  .eco-ill img {
    height: 210px;
  }

  .eco-ill-shell,
  .eco-ill-shell .theme-image {
    height: 210px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .legal {
    justify-content: flex-start;
  }
}

@media (max-width: 420px) {
  .visual-card {
    min-height: 600px;
  }

  .agent-panel {
    position: static;
    padding: 360px 16px 16px;
  }
}
