:root {
  --navy-1000: #030816;
  --navy-950: #061025;
  --navy-900: #0a1630;
  --navy-850: #0e1b38;
  --navy-800: #132446;
  --ink-950: #071126;
  --ink-900: #101a33;
  --ink-800: #1b2947;
  --ink-700: #3f4e6d;
  --ink-600: #62708d;
  --ink-500: #8591aa;
  --blue-700: #214eea;
  --blue-600: #315dff;
  --blue-500: #4d72ff;
  --blue-400: #7290ff;
  --blue-100: #eaf0ff;
  --blue-50: #f4f7ff;
  --violet-600: #6d45ee;
  --violet-500: #8259ff;
  --cyan-500: #29b8ff;
  --green-600: #0baa64;
  --green-500: #20c979;
  --green-100: #e7f9f0;
  --amber-500: #f5a524;
  --red-500: #ef4055;
  --surface: #ffffff;
  --surface-soft: #f8faff;
  --canvas: #f3f6fb;
  --line: #e2e8f2;
  --line-strong: #d2dbea;
  --shadow-sm: 0 4px 16px rgba(17, 37, 78, .06);
  --shadow-md: 0 18px 45px rgba(18, 38, 83, .10);
  --shadow-lg: 0 34px 90px rgba(7, 18, 48, .18);
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 34px;
  --container: 1216px;
  --header-h: 78px;
  --font: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  color: var(--ink-900);
  background: var(--surface);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.menu-open,
body.modal-open { overflow: hidden; }
button,
input,
select,
textarea { font: inherit; }
button { color: inherit; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
svg { display: block; }
::selection { background: rgba(49, 93, 255, .20); }

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

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

.section {
  position: relative;
  padding: 104px 0;
}
.section-tight { padding: 74px 0; }
.section-soft { background: var(--surface-soft); }
.section-canvas { background: var(--canvas); }
.section-dark {
  color: #fff;
  background:
    radial-gradient(circle at 8% 0%, rgba(53, 95, 255, .25), transparent 32%),
    radial-gradient(circle at 94% 80%, rgba(130, 89, 255, .20), transparent 34%),
    linear-gradient(150deg, var(--navy-900), var(--navy-1000));
  overflow: hidden;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 31px;
  padding: 5px 12px;
  border: 1px solid rgba(49, 93, 255, .16);
  border-radius: 999px;
  color: var(--blue-700);
  background: rgba(49, 93, 255, .07);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: .045em;
  text-transform: uppercase;
}
.eyebrow-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green-500);
  box-shadow: 0 0 0 5px rgba(32, 201, 121, .12);
}
.section-dark .eyebrow {
  color: #cbd6ff;
  border-color: rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 52px;
  text-align: center;
}
.section-heading.left {
  max-width: 660px;
  margin-inline: 0;
  text-align: left;
}
.section-heading h1,
.section-heading h2 {
  margin: 17px 0 16px;
  color: var(--ink-950);
  font-size: clamp(36px, 5vw, 58px);
  line-height: 1.04;
  letter-spacing: -.045em;
}
.section-heading h1 { font-size: clamp(42px, 5.8vw, 68px); }
.section-heading p {
  margin: 0;
  color: var(--ink-600);
  font-size: 18px;
}
.section-dark .section-heading h2,
.section-dark .section-heading p { color: #fff; }
.section-dark .section-heading p { color: #aebbd9; }

.gradient-text {
  color: transparent;
  background: linear-gradient(105deg, #2e65ff 0%, #5b72ff 45%, #8a55f5 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.icon {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.85;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: 0 0 auto;
}
.icon-sm { width: 17px; height: 17px; }
.icon-lg { width: 27px; height: 27px; }

/* Header */
.announcement {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 7px 18px;
  color: #dce4ff;
  background: #071126;
  font-size: 12px;
  text-align: center;
}
.announcement strong { color: #fff; }
.announcement a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #9cb1ff;
  font-weight: 700;
}
.announcement a:hover { color: #fff; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 90;
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  color: var(--ink-900);
  background: rgba(255,255,255,.88);
  border-bottom: 1px solid rgba(224,230,241,.86);
  backdrop-filter: blur(16px) saturate(150%);
  transition: box-shadow .2s ease, background .2s ease;
}
.site-header.scrolled {
  background: rgba(255,255,255,.96);
  box-shadow: 0 10px 32px rgba(7, 18, 48, .07);
}
.header-inner {
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-width: max-content;
}
.brand img { width: 39px; height: 39px; }
.brand-word {
  display: grid;
  line-height: 1;
}
.brand-word strong {
  color: var(--ink-950);
  font-size: 20px;
  font-weight: 850;
  letter-spacing: -.02em;
}
.brand-word small {
  margin-top: 5px;
  color: var(--ink-500);
  font-size: 10px;
  font-weight: 650;
  letter-spacing: .045em;
  text-transform: uppercase;
}
.primary-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
}
.primary-nav a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  border-radius: 10px;
  color: var(--ink-700);
  font-size: 14px;
  font-weight: 650;
  transition: color .18s ease, background .18s ease;
}
.primary-nav a:hover,
.primary-nav a.active {
  color: var(--blue-700);
  background: var(--blue-50);
}
.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  min-width: max-content;
}
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.mobile-menu {
  position: fixed;
  inset: calc(34px + var(--header-h)) 0 auto;
  z-index: 89;
  display: none;
  padding: 18px 20px 24px;
  background: rgba(255,255,255,.98);
  border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow-md);
}
.mobile-menu.open { display: block; }
.mobile-menu nav { display: grid; gap: 5px; }
.mobile-menu nav a {
  min-height: 48px;
  display: flex;
  align-items: center;
  padding: 0 13px;
  border-radius: 11px;
  color: var(--ink-800);
  font-weight: 700;
}
.mobile-menu nav a:hover { background: var(--blue-50); color: var(--blue-700); }
.mobile-menu-actions { display: grid; gap: 10px; margin-top: 16px; }
.mobile-overlay {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
  background: rgba(3, 8, 22, .46);
  backdrop-filter: blur(3px);
}
.mobile-overlay.open { display: block; }

/* Buttons */
.btn {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 12px;
  cursor: pointer;
  font-weight: 750;
  font-size: 14px;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease, color .18s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--blue-600), var(--violet-600));
  box-shadow: 0 12px 28px rgba(49, 93, 255, .26);
}
.btn-primary:hover { box-shadow: 0 17px 34px rgba(49, 93, 255, .34); }
.btn-secondary {
  color: var(--ink-900);
  background: #fff;
  border-color: var(--line-strong);
  box-shadow: 0 4px 14px rgba(16, 32, 72, .05);
}
.btn-secondary:hover { border-color: #b8c6e1; color: var(--blue-700); }
.btn-ghost {
  color: var(--ink-700);
  background: transparent;
}
.btn-ghost:hover { color: var(--blue-700); background: var(--blue-50); }
.btn-light {
  color: var(--blue-700);
  background: #fff;
  box-shadow: 0 14px 36px rgba(0,0,0,.18);
}
.btn-outline-light {
  color: #fff;
  border-color: rgba(255,255,255,.20);
  background: rgba(255,255,255,.06);
}
.btn-outline-light:hover { background: rgba(255,255,255,.11); }
.btn-wide { min-width: 168px; }

/* Hero */
.hero {
  position: relative;
  min-height: 760px;
  display: flex;
  align-items: center;
  color: #fff;
  background:
    radial-gradient(circle at 16% 16%, rgba(53, 101, 255, .28), transparent 31%),
    radial-gradient(circle at 84% 18%, rgba(122, 80, 255, .24), transparent 29%),
    linear-gradient(145deg, #071126 0%, #09152d 54%, #060d1f 100%);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .26;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(to bottom, #000, transparent 88%);
}
.hero::after {
  content: "";
  position: absolute;
  width: 680px;
  height: 680px;
  right: -270px;
  bottom: -390px;
  border: 1px solid rgba(104, 130, 255, .16);
  border-radius: 50%;
  box-shadow:
    0 0 0 70px rgba(104,130,255,.04),
    0 0 0 140px rgba(104,130,255,.035),
    0 0 0 210px rgba(104,130,255,.025);
}
.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, .86fr) minmax(560px, 1.14fr);
  align-items: center;
  gap: 64px;
  padding: 92px 0 104px;
}
.hero-copy { max-width: 620px; }
.hero .eyebrow {
  color: #cbd6ff;
  border-color: rgba(255,255,255,.12);
  background: rgba(255,255,255,.065);
}
.hero h1 {
  max-width: 650px;
  margin: 23px 0 22px;
  color: #fff;
  font-size: clamp(48px, 5.2vw, 74px);
  line-height: .99;
  letter-spacing: -.055em;
}
.hero h1 span {
  color: transparent;
  background: linear-gradient(100deg, #74b7ff, #7187ff 43%, #b078ff);
  -webkit-background-clip: text;
  background-clip: text;
}
.hero-lead {
  max-width: 590px;
  margin: 0;
  color: #b6c2dc;
  font-size: 19px;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 31px;
}
.hero-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 20px;
  margin-top: 23px;
  color: #8f9dbd;
  font-size: 12px;
}
.hero-note {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.hero-note .icon { width: 15px; height: 15px; color: var(--green-500); }
.hero-visual {
  position: relative;
  min-width: 0;
}
.browser-shell {
  position: relative;
  overflow: hidden;
  padding: 10px;
  border: 1px solid rgba(255,255,255,.20);
  border-radius: 24px;
  background: linear-gradient(145deg, rgba(255,255,255,.14), rgba(255,255,255,.07));
  box-shadow:
    0 42px 110px rgba(0, 5, 24, .52),
    0 0 0 1px rgba(123,151,255,.08);
  backdrop-filter: blur(14px);
}
.browser-top {
  height: 34px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 10px;
}
.browser-dot { width: 9px; height: 9px; border-radius: 50%; background: rgba(255,255,255,.22); }
.browser-url {
  width: 42%;
  height: 9px;
  margin-left: 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.12);
}
.browser-screen {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 2;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 14px;
  background: #f5f7fb;
}
.browser-screen picture {
  display: block;
  width: 100%;
  height: 100%;
}
.browser-screen img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center top;
}
.hero-float {
  position: absolute;
  z-index: 5;
  min-width: 174px;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 13px 15px;
  border: 1px solid rgba(255,255,255,.19);
  border-radius: 15px;
  color: #fff;
  background: rgba(10, 22, 50, .82);
  box-shadow: 0 18px 48px rgba(0,0,0,.34);
  backdrop-filter: blur(16px);
}
.hero-float strong { display: block; font-size: 15px; line-height: 1.25; }
.hero-float span { display: block; margin-top: 2px; color: #9daaca; font-size: 11px; }
.float-icon {
  width: 39px;
  height: 39px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  color: #9eb0ff;
  background: rgba(76, 105, 255, .18);
}
.hero-float.one { top: 14%; right: -33px; }
.hero-float.two { left: -46px; bottom: 16%; }
.hero-float.three { right: 6%; bottom: -36px; }
.live-pulse {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green-500);
  box-shadow: 0 0 0 6px rgba(32,201,121,.12);
}

/* Trust strip */
.trust-strip {
  position: relative;
  z-index: 4;
  margin-top: -1px;
  color: var(--ink-700);
  background: #fff;
  border-bottom: 1px solid var(--line);
}
.trust-inner {
  min-height: 92px;
  display: grid;
  grid-template-columns: 1.25fr repeat(4, 1fr);
  align-items: center;
  gap: 26px;
}
.trust-intro {
  color: var(--ink-600);
  font-size: 13px;
  font-weight: 650;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink-800);
  font-size: 13px;
  font-weight: 750;
}
.trust-item-icon {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  color: var(--blue-700);
  background: var(--blue-50);
}

/* Feature bento */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
}
.feature-card {
  position: relative;
  min-height: 260px;
  padding: 27px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-sm);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.feature-card:hover {
  transform: translateY(-5px);
  border-color: #ccd8ee;
  box-shadow: var(--shadow-md);
}
.feature-card.large { grid-column: span 7; }
.feature-card.medium { grid-column: span 5; }
.feature-card.third { grid-column: span 4; }
.feature-card.dark-card {
  color: #fff;
  border-color: rgba(255,255,255,.08);
  background:
    radial-gradient(circle at 92% 8%, rgba(74, 109, 255, .26), transparent 30%),
    linear-gradient(145deg, #0d1a38, #071127);
}
.feature-head {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}
.feature-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: var(--blue-700);
  background: var(--blue-50);
}
.dark-card .feature-icon {
  color: #b4c2ff;
  background: rgba(91, 112, 255, .16);
}
.feature-card h3 {
  position: relative;
  z-index: 2;
  margin: 22px 0 9px;
  color: var(--ink-950);
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: -.025em;
}
.dark-card h3 { color: #fff; }
.feature-card p {
  position: relative;
  z-index: 2;
  max-width: 520px;
  margin: 0;
  color: var(--ink-600);
  font-size: 14px;
}
.dark-card p { color: #aebbd7; }
.feature-list {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 9px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}
.feature-list li {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--ink-700);
  font-size: 13px;
  font-weight: 650;
}
.dark-card .feature-list li { color: #c2cce2; }
.feature-list .icon { width: 16px; height: 16px; color: var(--green-600); }
.dark-card .feature-list .icon { color: #4de19a; }
.card-visual {
  position: absolute;
  right: -10px;
  bottom: -12px;
  width: 46%;
  min-width: 190px;
  padding: 13px;
  border: 1px solid rgba(211,220,237,.88);
  border-radius: 16px 0 0 0;
  background: rgba(255,255,255,.92);
  box-shadow: -10px -10px 35px rgba(32, 51, 91, .08);
  transform: rotate(-2deg);
}
.card-visual.dark-visual {
  border-color: rgba(255,255,255,.12);
  background: rgba(255,255,255,.08);
}
.mini-row {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 42px;
  padding: 8px;
  border-bottom: 1px solid var(--line);
}
.mini-row:last-child { border-bottom: 0; }
.mini-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--blue-500); }
.mini-line { flex: 1; height: 7px; border-radius: 99px; background: #e8edf6; }
.mini-line.short { max-width: 44%; }
.dark-visual .mini-row { border-color: rgba(255,255,255,.1); }
.dark-visual .mini-line { background: rgba(255,255,255,.14); }

/* Product tour */
.tour-shell {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: #fff;
  box-shadow: var(--shadow-lg);
}
.tour-tabs {
  display: flex;
  gap: 6px;
  padding: 12px;
  overflow-x: auto;
  border-bottom: 1px solid var(--line);
  background: #fbfcff;
  scrollbar-width: none;
}
.tour-tabs::-webkit-scrollbar { display: none; }
.tour-tab {
  min-height: 46px;
  min-width: max-content;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 0 16px;
  border: 0;
  border-radius: 12px;
  color: var(--ink-600);
  background: transparent;
  cursor: pointer;
  font-weight: 750;
  font-size: 13px;
  transition: color .18s ease, background .18s ease, box-shadow .18s ease;
}
.tour-tab:hover { color: var(--blue-700); background: var(--blue-50); }
.tour-tab.active {
  color: #fff;
  background: linear-gradient(135deg, var(--blue-600), var(--violet-600));
  box-shadow: 0 9px 22px rgba(49,93,255,.22);
}
.tour-content {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, .65fr);
  min-height: 580px;
}
.tour-preview {
  position: relative;
  min-width: 0;
  padding: 28px 0 0 28px;
  background:
    linear-gradient(145deg, #f4f7fd, #eef3fb),
    #f4f7fd;
  overflow: hidden;
}
.tour-preview::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .55;
  background-image:
    linear-gradient(rgba(44,75,138,.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(44,75,138,.055) 1px, transparent 1px);
  background-size: 32px 32px;
}
.tour-image-frame {
  position: relative;
  z-index: 2;
  height: 100%;
  overflow: hidden;
  border: 1px solid #dbe3f1;
  border-right: 0;
  border-bottom: 0;
  border-radius: 18px 0 0 0;
  background: #fff;
  box-shadow: -15px -10px 45px rgba(21,43,87,.12);
}
.tour-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top left;
  transition: opacity .25s ease, transform .35s ease;
}
.tour-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 50px 44px;
  border-left: 1px solid var(--line);
}
.tour-copy-badge {
  width: max-content;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--blue-700);
  background: var(--blue-50);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .045em;
}
.tour-copy h3 {
  margin: 19px 0 12px;
  color: var(--ink-950);
  font-size: 31px;
  line-height: 1.12;
  letter-spacing: -.035em;
}
.tour-copy > p { margin: 0; color: var(--ink-600); font-size: 15px; }
.tour-points { display: grid; gap: 14px; margin-top: 25px; }
.tour-point { display: flex; gap: 11px; }
.tour-point-icon {
  width: 29px;
  height: 29px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 9px;
  color: var(--green-600);
  background: var(--green-100);
}
.tour-point strong { display: block; color: var(--ink-900); font-size: 14px; }
.tour-point span { display: block; margin-top: 2px; color: var(--ink-600); font-size: 12px; }

/* Workflow */
.workflow-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 74px;
  align-items: center;
}
.workflow-copy h2 {
  margin: 17px 0 18px;
  color: #fff;
  font-size: clamp(39px, 4.4vw, 58px);
  line-height: 1.04;
  letter-spacing: -.045em;
}
.workflow-copy > p { margin: 0; color: #aebbd7; font-size: 17px; }
.workflow-steps {
  position: relative;
  display: grid;
  gap: 13px;
}
.workflow-steps::before {
  content: "";
  position: absolute;
  top: 44px;
  bottom: 44px;
  left: 29px;
  width: 1px;
  background: linear-gradient(to bottom, rgba(94,121,255,.8), rgba(130,89,255,.2));
}
.workflow-step {
  position: relative;
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 17px;
  padding: 20px;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 17px;
  background: rgba(255,255,255,.055);
  backdrop-filter: blur(10px);
}
.workflow-number {
  position: relative;
  z-index: 2;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(139,159,255,.30);
  border-radius: 15px;
  color: #fff;
  background: linear-gradient(145deg, rgba(67,97,255,.32), rgba(114,78,232,.22));
  font-size: 18px;
  font-weight: 850;
}
.workflow-step h3 { margin: 2px 0 5px; color: #fff; font-size: 17px; }
.workflow-step p { margin: 0; color: #9faecb; font-size: 13px; }

/* Integration split */
.integration-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.integration-preview {
  position: relative;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: #fff;
  box-shadow: var(--shadow-lg);
}
.integration-preview::before {
  content: "";
  position: absolute;
  inset: -26px 12% auto;
  height: 110px;
  z-index: -1;
  border-radius: 50%;
  background: rgba(49,93,255,.18);
  filter: blur(42px);
}
.integration-preview img { border-radius: 16px; }
.integration-copy h2 {
  margin: 17px 0 18px;
  color: var(--ink-950);
  font-size: clamp(38px, 4.5vw, 58px);
  line-height: 1.05;
  letter-spacing: -.045em;
}
.integration-copy > p { margin: 0; color: var(--ink-600); font-size: 17px; }
.integration-list { display: grid; gap: 15px; margin-top: 27px; }
.integration-item { display: flex; gap: 13px; }
.integration-item-icon {
  width: 39px;
  height: 39px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 12px;
  color: var(--blue-700);
  background: var(--blue-50);
}
.integration-item strong { display: block; color: var(--ink-900); font-size: 14px; }
.integration-item span { display: block; color: var(--ink-600); font-size: 13px; margin-top: 2px; }

/* Pricing */
.pricing-toolbar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: -26px 0 34px;
}
.billing-toggle {
  display: inline-flex;
  gap: 4px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.billing-option {
  min-height: 39px;
  padding: 0 14px;
  border: 0;
  border-radius: 9px;
  color: var(--ink-600);
  background: transparent;
  cursor: pointer;
  font-size: 13px;
  font-weight: 750;
}
.billing-option.active { color: #fff; background: var(--ink-950); }
.billing-saving {
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--green-600);
  background: var(--green-100);
  font-size: 11px;
  font-weight: 800;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  align-items: stretch;
}
.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 610px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-sm);
  transition: transform .22s ease, box-shadow .22s ease;
}
.price-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.price-card.featured {
  color: #fff;
  border-color: rgba(92,111,255,.58);
  background:
    radial-gradient(circle at 95% 0%, rgba(129,86,255,.35), transparent 31%),
    linear-gradient(150deg, #111f43, #071126 76%);
  box-shadow: 0 25px 70px rgba(20,40,92,.24);
}
.popular-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  min-width: max-content;
  padding: 7px 13px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, var(--blue-600), var(--violet-600));
  box-shadow: 0 10px 24px rgba(49,93,255,.26);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.plan-name { color: var(--ink-950); font-size: 21px; font-weight: 850; }
.featured .plan-name { color: #fff; }
.plan-desc { min-height: 48px; margin: 7px 0 0; color: var(--ink-600); font-size: 13px; }
.featured .plan-desc { color: #aebbd7; }
.plan-price { display: flex; align-items: flex-end; gap: 7px; margin: 25px 0 3px; }
.plan-price strong {
  color: var(--ink-950);
  font-size: 46px;
  line-height: 1;
  letter-spacing: -.05em;
}
.featured .plan-price strong { color: #fff; }
.plan-price span { padding-bottom: 5px; color: var(--ink-500); font-size: 12px; }
.featured .plan-price span { color: #9eacc9; }
.plan-annual-note { min-height: 22px; color: var(--ink-500); font-size: 11px; }
.featured .plan-annual-note { color: #8f9dbc; }
.plan-action { margin-top: 22px; }
.plan-action .btn { width: 100%; }
.plan-divider { height: 1px; margin: 25px 0; background: var(--line); }
.featured .plan-divider { background: rgba(255,255,255,.10); }
.plan-includes { margin-bottom: 13px; color: var(--ink-900); font-size: 13px; font-weight: 800; }
.featured .plan-includes { color: #fff; }
.plan-features { display: grid; gap: 12px; margin: 0; padding: 0; list-style: none; }
.plan-features li { display: flex; gap: 10px; color: var(--ink-700); font-size: 13px; }
.featured .plan-features li { color: #c2cce0; }
.plan-features .icon { width: 16px; height: 16px; margin-top: 2px; color: var(--green-600); }
.price-card-footer { margin-top: auto; padding-top: 24px; color: var(--ink-500); font-size: 11px; }
.featured .price-card-footer { color: #8493b1; }
.reseller-card {
  min-height: 0;
  display: grid;
  grid-template-columns: minmax(245px, .85fr) minmax(390px, 1.4fr) minmax(185px, .55fr);
  align-items: center;
  gap: 34px;
  margin-top: 18px;
  padding: 32px 34px;
  color: #fff;
  border-color: rgba(92,111,255,.52);
  background:
    radial-gradient(circle at 90% 0%, rgba(142,88,255,.33), transparent 31%),
    radial-gradient(circle at 0% 100%, rgba(38,150,255,.22), transparent 34%),
    linear-gradient(145deg, #122653, #071126 74%);
  box-shadow: 0 24px 65px rgba(20,40,92,.22);
}
.reseller-card .plan-name,
.reseller-card .plan-price strong,
.reseller-card .plan-includes { color: #fff; }
.reseller-card .plan-desc,
.reseller-card .plan-price span,
.reseller-card .plan-annual-note { color: #aebbd7; }
.reseller-card .plan-price { margin: 18px 0 4px; }
.reseller-card .plan-features { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.reseller-card .plan-features li { color: #cbd5e8; }
.reseller-badge {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 6px 10px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 999px;
  color: #cdd8ff;
  background: rgba(255,255,255,.08);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.reseller-action { display: grid; gap: 10px; text-align: center; }
.reseller-action .btn { width: 100%; }
.reseller-action small { color: #93a3c3; font-size: 11px; }
.pricing-note { margin: 22px auto 0; color: var(--ink-500); font-size: 12px; text-align: center; }

/* Testimonial / reassurance */
.reassurance-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.reassurance-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
}
.reassurance-card .feature-icon { width: 42px; height: 42px; }
.reassurance-card h3 { margin: 18px 0 7px; color: var(--ink-950); font-size: 17px; }
.reassurance-card p { margin: 0; color: var(--ink-600); font-size: 13px; }

/* FAQ */
.faq-wrap { max-width: 860px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-item:first-child { border-top: 1px solid var(--line); }
.faq-question {
  width: 100%;
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0;
  border: 0;
  color: var(--ink-900);
  background: transparent;
  cursor: pointer;
  text-align: left;
  font-size: 17px;
  font-weight: 780;
}
.faq-chevron {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 9px;
  color: var(--ink-600);
  background: var(--surface-soft);
  transition: transform .2s ease, color .2s ease, background .2s ease;
}
.faq-item.open .faq-chevron { transform: rotate(45deg); color: var(--blue-700); background: var(--blue-50); }
.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .24s ease;
}
.faq-answer > div { overflow: hidden; }
.faq-answer p { margin: 0; padding: 0 55px 24px 0; color: var(--ink-600); font-size: 14px; }
.faq-item.open .faq-answer { grid-template-rows: 1fr; }

/* CTA */
.cta-panel {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 32px;
  padding: 48px 52px;
  border-radius: 30px;
  color: #fff;
  background:
    radial-gradient(circle at 80% -20%, rgba(153,104,255,.45), transparent 38%),
    radial-gradient(circle at 0% 120%, rgba(40,166,255,.30), transparent 36%),
    linear-gradient(140deg, #0e1b3c, #071126 68%);
  box-shadow: var(--shadow-lg);
}
.cta-panel::after {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  right: -100px;
  top: -165px;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 50%;
  box-shadow: 0 0 0 55px rgba(255,255,255,.025), 0 0 0 110px rgba(255,255,255,.018);
}
.cta-copy { position: relative; z-index: 2; }
.cta-copy h2 { margin: 0 0 10px; font-size: clamp(32px, 4vw, 48px); line-height: 1.05; letter-spacing: -.04em; }
.cta-copy p { max-width: 640px; margin: 0; color: #aebbd7; font-size: 15px; }
.cta-actions { position: relative; z-index: 2; display: flex; gap: 11px; }

/* Footer */
.site-footer {
  padding: 68px 0 26px;
  color: #b2bed7;
  background: #050b18;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.45fr repeat(3, .85fr);
  gap: 58px;
}
.footer-brand .brand-word strong { color: #fff; }
.footer-brand p { max-width: 330px; margin: 20px 0 0; color: #7f8daa; font-size: 13px; }
.footer-title { margin: 4px 0 16px; color: #fff; font-size: 13px; font-weight: 800; }
.footer-links { display: grid; gap: 10px; }
.footer-links a { color: #8492ad; font-size: 13px; transition: color .18s ease; }
.footer-links a:hover { color: #fff; }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 52px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.07);
  color: #697792;
  font-size: 11px;
}
.footer-bottom-links { display: flex; flex-wrap: wrap; gap: 18px; }
.footer-bottom-links a:hover { color: #fff; }

/* Inner pages */
.inner-hero {
  position: relative;
  min-height: 430px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 18% 12%, rgba(49,93,255,.30), transparent 31%),
    radial-gradient(circle at 85% 40%, rgba(130,89,255,.23), transparent 28%),
    linear-gradient(145deg, #071126, #0a1731);
}
.inner-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .22;
  background-image: linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 52px 52px;
}
.inner-hero-content { position: relative; z-index: 2; max-width: 820px; padding: 90px 0; }
.inner-hero h1 { margin: 20px 0 18px; font-size: clamp(46px, 6vw, 72px); line-height: 1; letter-spacing: -.055em; }
.inner-hero p { max-width: 700px; margin: 0; color: #b5c1dc; font-size: 18px; }

.module-showcase { display: grid; gap: 80px; }
.module-row {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 66px;
  align-items: center;
}
.module-row.reverse .module-visual { order: 2; }
.module-row.reverse .module-copy { order: 1; }
.module-visual {
  padding: 13px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--shadow-md);
}
.module-visual img { border-radius: 14px; }
.module-copy .feature-icon { width: 50px; height: 50px; }
.module-copy h2 { margin: 21px 0 13px; color: var(--ink-950); font-size: clamp(34px, 4vw, 50px); line-height: 1.06; letter-spacing: -.04em; }
.module-copy > p { margin: 0; color: var(--ink-600); font-size: 16px; }
.module-bullets { display: grid; gap: 12px; margin-top: 23px; padding: 0; list-style: none; }
.module-bullets li { display: flex; gap: 10px; color: var(--ink-700); font-size: 14px; }
.module-bullets .icon { width: 17px; height: 17px; margin-top: 3px; color: var(--green-600); }

.comparison-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.comparison-table { width: 100%; min-width: 1000px; border-collapse: collapse; }
.comparison-table th,
.comparison-table td { padding: 17px 20px; border-bottom: 1px solid var(--line); text-align: center; font-size: 13px; }
.comparison-table th:first-child,
.comparison-table td:first-child { width: 38%; text-align: left; }
.comparison-table thead th { color: var(--ink-950); background: #f8faff; font-size: 14px; }
.comparison-table thead th.recommended { color: #fff; background: var(--ink-950); }
.comparison-table tbody tr:last-child td { border-bottom: 0; }
.comparison-table .yes { color: var(--green-600); }
.comparison-table .muted { color: var(--ink-500); }

.contact-layout {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 50px;
  align-items: start;
}
.contact-copy {
  position: sticky;
  top: 110px;
  padding: 34px;
  border-radius: 24px;
  color: #fff;
  background:
    radial-gradient(circle at 90% 5%, rgba(126,83,255,.35), transparent 34%),
    linear-gradient(145deg, #111f43, #071126);
  box-shadow: var(--shadow-md);
}
.contact-copy h2 { margin: 20px 0 12px; font-size: 37px; line-height: 1.05; letter-spacing: -.04em; }
.contact-copy > p { margin: 0; color: #aebbd7; }
.contact-details { display: grid; gap: 14px; margin-top: 28px; }
.contact-detail { display: flex; gap: 12px; align-items: flex-start; }
.contact-detail-icon { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 11px; color: #b8c5ff; background: rgba(89,113,255,.15); }
.contact-detail strong { display: block; color: #fff; font-size: 13px; }
.contact-detail span { display: block; color: #9faccc; font-size: 12px; margin-top: 2px; }
.contact-form-card {
  padding: 36px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.form-field { display: grid; gap: 7px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label { color: var(--ink-800); font-size: 12px; font-weight: 750; }
.form-control {
  width: 100%;
  min-height: 49px;
  padding: 0 14px;
  border: 1px solid var(--line-strong);
  border-radius: 11px;
  color: var(--ink-900);
  background: #fff;
  outline: none;
  transition: border-color .18s ease, box-shadow .18s ease;
}
textarea.form-control { min-height: 140px; padding-top: 13px; resize: vertical; }
.form-control:focus { border-color: var(--blue-500); box-shadow: 0 0 0 4px rgba(49,93,255,.10); }
.form-control::placeholder { color: #a0abc0; }
.form-consent { display: flex; gap: 10px; align-items: flex-start; color: var(--ink-600); font-size: 11px; }
.form-consent input { margin-top: 3px; accent-color: var(--blue-600); }
.form-actions { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-top: 23px; }
.form-note { color: var(--ink-500); font-size: 11px; }

.legal-content { max-width: 850px; margin: 0 auto; }
.legal-content h1 { color: var(--ink-950); font-size: 48px; letter-spacing: -.04em; }
.legal-content h2 { margin: 38px 0 10px; color: var(--ink-950); font-size: 24px; }
.legal-content p,
.legal-content li { color: var(--ink-600); font-size: 14px; }

/* Modal and toast */
.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 22px;
  background: rgba(3, 8, 22, .66);
  backdrop-filter: blur(7px);
}
.modal-backdrop.open { display: flex; }
.modal-card {
  width: min(100%, 620px);
  max-height: min(90vh, 820px);
  overflow-y: auto;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 36px 100px rgba(0,0,0,.36);
  animation: modalIn .22s ease both;
}
@keyframes modalIn { from { opacity: 0; transform: translateY(16px) scale(.98); } to { opacity: 1; transform: translateY(0) scale(1); } }
.modal-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding: 26px 28px 20px;
  border-bottom: 1px solid var(--line);
}
.modal-head h2 { margin: 0; color: var(--ink-950); font-size: 25px; letter-spacing: -.03em; }
.modal-head p { margin: 5px 0 0; color: var(--ink-600); font-size: 13px; }
.modal-close {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: #fff;
  cursor: pointer;
}
.modal-body { padding: 26px 28px 30px; }
.toast-stack {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 150;
  display: grid;
  gap: 10px;
}
.toast {
  min-width: 280px;
  max-width: 420px;
  display: flex;
  align-items: flex-start;
  gap: 11px;
  padding: 14px 15px;
  border: 1px solid #d8e1ee;
  border-radius: 14px;
  color: var(--ink-800);
  background: rgba(255,255,255,.97);
  box-shadow: 0 18px 44px rgba(11, 24, 54, .18);
  animation: toastIn .25s ease both;
}
@keyframes toastIn { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }
.toast-icon { width: 28px; height: 28px; display: grid; place-items: center; flex: 0 0 auto; border-radius: 8px; color: var(--green-600); background: var(--green-100); }
.toast strong { display: block; font-size: 13px; }
.toast span { display: block; margin-top: 2px; color: var(--ink-600); font-size: 11px; }
.toast.error { border-color: rgba(239, 64, 85, .25); }
.toast.error .toast-icon { color: var(--red-500); background: #fff0f2; }

/* Commerce */
.sales-proof-section {
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
  background: #fff;
}
.sales-proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.sales-proof-grid article {
  min-height: 108px;
  padding: 20px 22px;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: linear-gradient(145deg, #fff, #f7f9ff);
  box-shadow: var(--shadow-sm);
}
.sales-proof-grid strong {
  display: block;
  color: var(--ink-950);
  font-size: 25px;
  line-height: 1.15;
  letter-spacing: -.035em;
}
.sales-proof-grid span {
  display: block;
  margin-top: 6px;
  color: var(--ink-600);
  font-size: 13px;
}
.migration-shell {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: 76px;
}
.migration-copy h2 {
  margin: 18px 0 18px;
  color: var(--ink-950);
  font-size: clamp(36px, 4.5vw, 56px);
  line-height: 1.05;
  letter-spacing: -.045em;
}
.migration-copy > p { margin: 0; color: var(--ink-600); font-size: 17px; }
.migration-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.migration-steps {
  display: grid;
  gap: 14px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 25px;
  background: linear-gradient(145deg, #fff, #f5f8ff);
  box-shadow: var(--shadow-md);
}
.migration-steps article {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 16px;
  align-items: start;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255,255,255,.9);
}
.migration-steps article > span {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  color: var(--blue-700);
  background: var(--blue-100);
  font-size: 13px;
  font-weight: 800;
}
.migration-steps strong { display: block; color: var(--ink-950); font-size: 15px; }
.migration-steps p { margin: 4px 0 0; color: var(--ink-600); font-size: 13px; }
.form-honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  pointer-events: none !important;
}
.order-section { padding-top: 76px; }
.order-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, .85fr);
  align-items: start;
  gap: 30px;
}
.order-form-card,
.order-summary {
  border: 1px solid var(--line);
  border-radius: 25px;
  background: #fff;
  box-shadow: var(--shadow-md);
}
.order-form-card { padding: 34px; }
.order-form-card .section-heading { margin-bottom: 30px; }
.order-summary {
  position: sticky;
  top: calc(var(--header-h) + 24px);
  overflow: hidden;
}
.order-summary-head {
  padding: 28px 28px 25px;
  color: #fff;
  background:
    radial-gradient(circle at 100% 0%, rgba(130,89,255,.45), transparent 44%),
    linear-gradient(145deg, var(--navy-900), #101f47);
}
.order-plan-badge {
  display: inline-flex;
  padding: 5px 10px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 999px;
  color: #cfd8ff;
  background: rgba(255,255,255,.08);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.order-summary h2 { margin: 14px 0 4px; font-size: 27px; letter-spacing: -.04em; }
.order-price { display: flex; align-items: baseline; gap: 8px; margin-top: 18px; }
.order-price strong { font-size: 42px; line-height: 1; letter-spacing: -.05em; }
.order-price span { max-width: 160px; color: #aebbd9; font-size: 11px; line-height: 1.35; }
.order-summary-body { padding: 27px 28px; }
.order-feature-list { display: grid; gap: 13px; margin: 0; padding: 0; list-style: none; }
.order-feature-list li { display: flex; align-items: center; gap: 10px; color: var(--ink-700); font-size: 13px; }
.order-feature-list .icon { color: var(--green-600); }
.order-assurance {
  display: grid;
  gap: 12px;
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}
.order-assurance div { display: flex; align-items: flex-start; gap: 11px; }
.order-assurance p { margin: 0; }
.order-assurance .icon { color: var(--blue-600); }
.order-assurance strong { display: block; font-size: 13px; }
.order-assurance span { display: block; margin-top: 1px; color: var(--ink-600); font-size: 11px; }
.order-security-note {
  margin-top: 22px;
  padding: 14px;
  border-radius: 13px;
  color: var(--ink-700);
  background: var(--blue-50);
  font-size: 11px;
  line-height: 1.55;
}
.order-timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 28px;
}
.order-timeline article {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: #fff;
}
.order-timeline strong { display: block; color: var(--ink-950); font-size: 13px; }
.order-timeline span { display: block; margin-top: 4px; color: var(--ink-600); font-size: 11px; }

/* Reveal */
[data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .6s ease, transform .6s ease;
}
[data-reveal].revealed { opacity: 1; transform: translateY(0); }
[data-reveal-delay="1"] { transition-delay: .08s; }
[data-reveal-delay="2"] { transition-delay: .16s; }
[data-reveal-delay="3"] { transition-delay: .24s; }

/* Responsive */
@media (max-width: 1160px) {
  .primary-nav { display: none; }
  .menu-toggle { display: inline-flex; }
  .hero-inner { grid-template-columns: 1fr; gap: 58px; padding-top: 80px; }
  .hero-copy { max-width: 760px; text-align: center; margin-inline: auto; }
  .hero h1 { margin-inline: auto; }
  .hero-lead { margin-inline: auto; }
  .hero-actions, .hero-notes { justify-content: center; }
  .hero-visual { width: min(100%, 900px); margin-inline: auto; }
  .hero-float.one { right: 0; }
  .hero-float.two { left: 0; }
  .trust-inner { grid-template-columns: repeat(4, 1fr); padding: 19px 0; }
  .trust-intro { grid-column: 1 / -1; text-align: center; }
  .workflow-grid { gap: 48px; }
  .tour-content { grid-template-columns: 1.2fr .8fr; }
  .tour-copy { padding: 40px 32px; }
  .footer-grid { grid-template-columns: 1.3fr repeat(3, 1fr); gap: 34px; }
}

@media (max-width: 920px) {
  .section { padding: 82px 0; }
  .feature-card.large,
  .feature-card.medium { grid-column: span 6; }
  .feature-card.third { grid-column: span 6; }
  .tour-content { grid-template-columns: 1fr; }
  .tour-preview { min-height: 520px; padding: 22px 0 0 22px; }
  .tour-copy { border-left: 0; border-top: 1px solid var(--line); }
  .workflow-grid,
  .integration-grid,
  .module-row,
  .contact-layout { grid-template-columns: 1fr; }
  .workflow-copy { text-align: center; }
  .workflow-copy .eyebrow { margin-inline: auto; }
  .integration-copy { order: -1; }
  .module-row.reverse .module-visual,
  .module-row.reverse .module-copy { order: initial; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 620px; margin-inline: auto; }
  .price-card { min-height: auto; }
  .reseller-card { width: min(100%, 620px); grid-template-columns: 1fr; margin: 18px auto 0; }
  .reseller-card .plan-features { grid-template-columns: 1fr; }
  .reassurance-grid { grid-template-columns: 1fr; }
  .cta-panel { grid-template-columns: 1fr; text-align: center; }
  .cta-copy p { margin-inline: auto; }
  .cta-actions { justify-content: center; }
  .contact-copy { position: relative; top: auto; }
  .sales-proof-grid { grid-template-columns: 1fr 1fr; }
  .migration-shell,
  .order-layout { grid-template-columns: 1fr; gap: 42px; }
  .order-summary { position: relative; top: auto; }
  .footer-grid { grid-template-columns: 1.2fr 1fr 1fr; }
  .footer-grid > :last-child { grid-column: 2 / -1; }
}

@media (max-width: 720px) {
  :root { --header-h: 68px; }
  .container { width: min(calc(100% - 28px), var(--container)); }
  .announcement { font-size: 11px; }
  .brand-word small { display: none; }
  .header-actions .btn-secondary,
  .header-actions .btn-primary { display: none; }
  .hero { min-height: auto; }
  .hero-inner { gap: 44px; padding: 68px 0 90px; }
  .hero h1 { font-size: clamp(44px, 13vw, 62px); }
  .hero-lead { font-size: 17px; }
  .hero-actions { display: grid; }
  .hero-actions .btn { width: 100%; }
  .hero-notes { display: grid; justify-content: start; text-align: left; width: max-content; max-width: 100%; margin-inline: auto; }
  .browser-shell { padding: 7px; border-radius: 17px; transform: none; }
  .browser-top { height: 25px; }
  .browser-screen { border-radius: 10px; }
  .hero-float { display: none; }
  .trust-inner { grid-template-columns: 1fr 1fr; gap: 16px; }
  .trust-intro { grid-column: 1 / -1; }
  .feature-card.large,
  .feature-card.medium,
  .feature-card.third { grid-column: 1 / -1; }
  .feature-card { min-height: 240px; padding: 23px; }
  .card-visual { opacity: .62; }
  .tour-shell { border-radius: 22px; }
  .tour-tab { min-height: 42px; padding: 0 13px; }
  .tour-preview { min-height: 360px; padding: 15px 0 0 15px; }
  .tour-copy { padding: 32px 23px; }
  .tour-copy h3 { font-size: 27px; }
  .workflow-grid { gap: 40px; }
  .workflow-step { grid-template-columns: 48px 1fr; padding: 16px; }
  .workflow-number { width: 48px; height: 48px; }
  .workflow-steps::before { left: 24px; }
  .integration-grid { gap: 42px; }
  .pricing-toolbar { flex-wrap: wrap; }
  .price-card { padding: 26px 23px; }
  .cta-panel { padding: 38px 24px; border-radius: 24px; }
  .cta-actions { display: grid; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-grid > :last-child { grid-column: auto; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
  .inner-hero { min-height: 380px; }
  .inner-hero-content { padding: 72px 0; }
  .module-showcase { gap: 60px; }
  .form-grid { grid-template-columns: 1fr; }
  .form-field.full { grid-column: auto; }
  .contact-form-card, .contact-copy { padding: 25px; }
  .form-actions { align-items: stretch; flex-direction: column; }
  .form-actions .btn { width: 100%; }
  .sales-proof-grid,
  .order-timeline { grid-template-columns: 1fr; }
  .migration-actions { display: grid; }
  .migration-actions .btn { width: 100%; }
  .migration-steps,
  .order-form-card { padding: 20px; }
  .order-summary-head,
  .order-summary-body { padding: 24px 21px; }
  .modal-card { border-radius: 19px; }
  .modal-head, .modal-body { padding-left: 20px; padding-right: 20px; }
}

@media (max-width: 460px) {
  .site-header .brand img { width: 34px; height: 34px; }
  .site-header .brand-word strong { font-size: 18px; }
  .trust-inner { grid-template-columns: 1fr; }
  .trust-item { justify-content: center; }
  .feature-card { min-height: auto; }
  .card-visual { display: none; }
  .tour-preview { min-height: 270px; }
  .workflow-step p { font-size: 12px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
  .toast-stack { left: 14px; right: 14px; bottom: 14px; }
  .toast { min-width: 0; max-width: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  [data-reveal] { opacity: 1; transform: none; }
}
