:root {
  --bg: #f4f6f4;
  --paper: #fbfcfb;
  --ink: #162124;
  --muted: #647173;
  --line: #d9e3e3;
  --soft: #eaf4f5;
  --dark: #162124;
  --dark-2: #203034;
  --blue: #dff3fb;
  --green: #dff6f3;
  --sand: #f5edd4;
  --accent: #00aeea;
  --accent-2: #5ce1e6;
  --yellow: #fdd54f;
  --orange: #e96129;
  --radius: 8px;
  --shadow: 0 24px 60px rgba(22, 33, 36, 0.14);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-smooth: cubic-bezier(0.16, 1, 0.3, 1);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  width: 100%;
  background: rgba(244, 246, 244, 0.9);
  backdrop-filter: blur(18px);
  box-shadow: 0 1px 0 rgba(22, 33, 36, 0.05);
  transition: background 260ms var(--ease-out), box-shadow 260ms var(--ease-out), transform 260ms var(--ease-out);
}

.site-header.is-scrolled {
  background: rgba(251, 252, 251, 0.94);
  box-shadow: 0 14px 36px rgba(22, 33, 36, 0.08);
}

.site-header-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 68px;
  margin: 0 auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 126px;
}

.brand img {
  display: block;
  width: 126px;
  height: auto;
}

.brand-mark {
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border: 1.5px solid var(--ink);
  border-radius: 6px;
  font-size: 12px;
  line-height: 1;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  color: #3a3935;
  font-size: 13px;
}

.nav-links a {
  position: relative;
  transition: color 180ms ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  border-radius: 999px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 220ms var(--ease-out);
}

.nav-links a:hover {
  color: var(--accent);
}

.nav-links a:hover::after,
.nav-links a[aria-current="page"]::after {
  transform: scaleX(1);
}

.header-cta {
  justify-self: end;
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 10px 22px rgba(22, 33, 36, 0.1);
  transition: transform 180ms var(--ease-out), box-shadow 180ms var(--ease-out), background 180ms ease;
}

.header-cta:hover {
  background: #203034;
  box-shadow: 0 16px 30px rgba(22, 33, 36, 0.16);
  transform: translateY(-2px);
}

.hero-brandline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  border: 1px solid rgba(0, 174, 234, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  padding: 8px 14px;
  box-shadow: 0 14px 28px rgba(22, 33, 36, 0.06);
}

.hero-brandline span {
  color: #3b494c;
  font-size: 13px;
  font-weight: 720;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
}

.menu-toggle span {
  display: block;
  width: 16px;
  height: 1.5px;
  margin: 4px auto;
  background: var(--ink);
}

.hero {
  display: grid;
  gap: 54px;
  padding: 78px 0 94px;
}

.hero-copy {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

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

h1 {
  margin-bottom: 18px;
  font-size: clamp(42px, 5.2vw, 66px);
  font-weight: 760;
  line-height: 0.98;
  letter-spacing: -0.052em;
}

h2 {
  font-size: clamp(30px, 3.5vw, 48px);
  font-weight: 740;
  line-height: 0.98;
  letter-spacing: -0.05em;
}

h3 {
  font-size: 18px;
  line-height: 1.1;
  letter-spacing: -0.025em;
}

p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
}

.hero-copy p {
  max-width: 600px;
  margin: 0 auto 26px;
  font-size: 18px;
}

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

.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 22px;
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 750;
  transition: transform 180ms var(--ease-out), box-shadow 180ms var(--ease-out), background 180ms ease, border-color 180ms ease, color 180ms ease;
}

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

.button:active,
.header-cta:active {
  transform: translateY(0) scale(0.98);
}

.button-dark {
  background: var(--ink);
  color: #fff;
  box-shadow: 0 12px 25px rgba(23, 23, 21, 0.12);
}

.button-dark:hover {
  background: #203034;
  box-shadow: 0 18px 34px rgba(22, 33, 36, 0.16);
}

.button-soft,
.button-outline {
  background: var(--paper);
  border-color: var(--line);
  color: var(--ink);
}

.button-soft:hover,
.button-outline:hover {
  border-color: rgba(0, 174, 234, 0.26);
  box-shadow: 0 16px 34px rgba(22, 33, 36, 0.08);
}

.button-light {
  background: #fff;
  color: var(--ink);
}

.button-ghost {
  border-color: rgba(255, 255, 255, 0.24);
  color: #fff;
}

.hero-rating {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 13px;
}

.stars {
  color: var(--orange);
  letter-spacing: 1px;
}

.hero .product-window {
  display: none;
}

.hero-product {
  position: relative;
  width: min(1280px, calc(100vw - 44px));
  margin: 0 50%;
  transform: translateX(-50%);
}

.hero-product::before {
  content: "";
  position: absolute;
  inset: 11% 4% -6%;
  z-index: -1;
  border-radius: 28px;
  background: radial-gradient(circle at 50% 30%, rgba(0, 31, 63, 0.16), transparent 58%);
  filter: blur(20px);
}

.hero-image-frame {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(8, 27, 55, 0.12);
  border-radius: 14px;
  background: #061a33;
  box-shadow: 0 36px 90px rgba(14, 20, 34, 0.18);
  transition: transform 420ms var(--ease-smooth), box-shadow 420ms var(--ease-smooth);
}

.hero-image-frame:hover {
  box-shadow: 0 42px 105px rgba(14, 20, 34, 0.22);
  transform: translateY(-4px);
}

.hero-image-frame img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.hero-product {
  width: min(960px, calc(100vw - 44px));
  margin: 0 auto;
  transform: none;
}

@media (max-width: 820px) {
  .hero-product {
    width: 100%;
    margin: 0 auto;
    transform: none;
  }

  .hero {
    padding: 56px 0 70px;
  }
}

@media (max-width: 640px) {
  .hero {
    padding: 48px 0 56px;
  }

  .hero-copy {
    padding: 0 12px;
  }

  .hero-product {
    width: 100%;
  }
}

.product-window {
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(90deg, rgba(120, 138, 130, 0.55), rgba(230, 222, 207, 0.3)),
    var(--dark);
  box-shadow: var(--shadow);
  transition: transform 360ms var(--ease-smooth), box-shadow 360ms var(--ease-smooth);
}

.product-window:hover {
  box-shadow: 0 30px 76px rgba(22, 33, 36, 0.18);
  transform: translateY(-4px);
}

.hero-window {
  width: 100%;
  max-width: 940px;
  margin: 0 auto;
}

.window-tabs {
  display: flex;
  gap: 8px;
  padding: 18px 22px 0;
}

.window-tabs span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  border-radius: 999px;
  padding: 0 18px;
  background: rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.8);
  font-size: 12px;
  font-weight: 700;
}

.window-tabs .active {
  background: #fff;
  color: var(--ink);
}

.dashboard-grid {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 0;
  margin: 18px 22px 26px;
  overflow: hidden;
  border-radius: 6px;
  background: #11110f;
  color: #fff;
}

.mock-sidebar {
  display: grid;
  align-content: start;
  gap: 6px;
  min-height: 470px;
  padding: 24px 16px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.sidebar-logo {
  margin-bottom: 20px;
  color: #fff;
  font-size: 16px;
  font-weight: 800;
}

.mock-sidebar span:not(.sidebar-logo) {
  border-radius: 6px;
  padding: 10px 12px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
}

.mock-sidebar .selected {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.mock-main {
  padding: 24px;
}

.mock-topbar,
.table-head,
.table-row {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 22px;
  align-items: center;
}

.mock-topbar {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}

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

.metric-row div,
.chart-card,
.table-card {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.045);
}

.metric-row div {
  padding: 16px;
}

small,
.metric-row small {
  display: block;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.4;
}

.metric-row strong {
  display: block;
  margin-top: 8px;
  font-size: 24px;
  letter-spacing: -0.035em;
}

.chart-card {
  display: flex;
  align-items: end;
  gap: 10px;
  height: 132px;
  margin-bottom: 14px;
  padding: 18px;
}

.bar {
  flex: 1;
  min-width: 24px;
  border-radius: 4px 4px 0 0;
  background: linear-gradient(180deg, var(--yellow), var(--accent));
}

.bar.one { height: 48%; }
.bar.two { height: 72%; }
.bar.three { height: 58%; }
.bar.four { height: 88%; }

.table-card {
  padding: 8px 16px;
}

.table-head,
.table-row {
  grid-template-columns: 1.6fr 0.8fr 0.7fr;
  min-height: 46px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  font-size: 13px;
}

.table-head {
  color: rgba(255, 255, 255, 0.46);
}

.table-row:last-child {
  border-bottom: 0;
}

.table-row em {
  width: fit-content;
  border-radius: 999px;
  padding: 5px 10px;
  font-style: normal;
  font-size: 11px;
}

.done {
  background: rgba(46, 182, 125, 0.14);
  color: #4be09b;
}

.pending {
  background: rgba(240, 197, 107, 0.14);
  color: #f0c56b;
}

.proof {
  padding: 24px 0 92px;
}

.proof-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.proof-heading h2 {
  max-width: 560px;
}

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

.proof-card {
  min-height: 260px;
  border-radius: var(--radius);
  padding: 28px;
  transition: transform 220ms var(--ease-out), box-shadow 220ms var(--ease-out);
}

.proof-card:hover {
  box-shadow: 0 24px 52px rgba(22, 33, 36, 0.08);
  transform: translateY(-4px);
}

.proof-card.blue { background: var(--blue); }
.proof-card.sand { background: var(--sand); }
.proof-card.green { background: var(--green); }

.icon {
  display: inline-grid;
  width: 26px;
  height: 26px;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 6px;
  background: rgba(23, 23, 21, 0.08);
  font-weight: 800;
}

.proof-card p {
  min-height: 78px;
  color: #373530;
  font-size: 15px;
}

.proof-card strong {
  display: block;
  margin-top: 28px;
  font-size: 38px;
  line-height: 1;
  letter-spacing: -0.045em;
}

.split-section {
  display: grid;
  grid-template-columns: 0.95fr 1fr;
  gap: 110px;
  align-items: center;
  padding: 18px 0 110px;
}

.phone-panel {
  min-height: 540px;
  border-radius: var(--radius);
  background:
    linear-gradient(rgba(23, 23, 19, 0.2), rgba(23, 23, 19, 0.3)),
    radial-gradient(circle at 30% 20%, #d2dee2, transparent 35%),
    linear-gradient(135deg, #b9a989, #f4efe5 48%, #98b6ad);
  display: grid;
  place-items: center;
  padding: 34px;
}

.phone-card {
  width: min(360px, 100%);
  min-height: 492px;
  border-radius: 8px;
  background:
    linear-gradient(180deg, #171b1c, #101213),
    #141310;
  color: #fff;
  padding: 22px;
  box-shadow: 0 28px 55px rgba(0, 0, 0, 0.25);
}

.phone-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: start;
  margin-bottom: 16px;
}

.phone-head span {
  display: block;
  margin-bottom: 5px;
  font-weight: 820;
}

.phone-head small {
  color: rgba(255, 255, 255, 0.52);
}

.phone-head strong {
  white-space: nowrap;
  font-size: 22px;
  letter-spacing: -0.035em;
}

.pos-meta {
  display: flex;
  justify-content: space-between;
  margin-bottom: 14px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.04);
  padding: 10px 12px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
}

.search-line {
  display: flex;
  min-height: 42px;
  align-items: center;
  margin-bottom: 16px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
  padding: 0 13px;
  color: rgba(255, 255, 255, 0.42);
  font-size: 12px;
}

.product-list {
  display: grid;
  gap: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.035);
}

.product-list span {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 12px;
  color: rgba(255, 255, 255, 0.74);
}

.product-list span:last-child {
  border-bottom: 0;
}

.product-list i {
  font-style: normal;
}

.product-list em {
  color: #fff;
  font-style: normal;
  font-weight: 760;
}

.pos-summary {
  display: grid;
  gap: 8px;
  margin-top: 14px;
  border-top: 1px dashed rgba(255, 255, 255, 0.14);
  padding-top: 14px;
}

.pos-summary span,
.pos-summary strong {
  display: flex;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
}

.pos-summary strong {
  color: #fff;
  font-size: 18px;
}

.pos-summary em {
  color: inherit;
  font-style: normal;
}

.payment-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 7px;
  margin-top: 16px;
}

.payment-row span {
  display: grid;
  min-height: 34px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  font-weight: 740;
}

.payment-row .active {
  border-color: rgba(92, 225, 230, 0.35);
  background: rgba(92, 225, 230, 0.16);
  color: #dffbfc;
}

.phone-card button {
  width: 100%;
  height: 46px;
  margin-top: 16px;
  border: 0;
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  font-weight: 800;
  transition: transform 180ms var(--ease-out), box-shadow 180ms var(--ease-out), background 180ms ease;
}

.phone-card button:hover {
  background: #f7fbfb;
  box-shadow: 0 14px 26px rgba(0, 0, 0, 0.16);
  transform: translateY(-2px);
}

.split-copy h2 {
  max-width: 560px;
}

.check-list {
  display: grid;
  gap: 13px;
  margin: 28px 0;
  padding: 0;
  list-style: none;
  color: #34322f;
}

.check-list li {
  position: relative;
  padding-left: 24px;
  line-height: 1.55;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 7px;
  height: 7px;
  background: var(--ink);
}

.modules {
  padding: 90px 0 116px;
}

.modules-head {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(280px, 0.62fr);
  gap: 44px;
  align-items: end;
  margin-bottom: 34px;
}

.modules-head h2 {
  max-width: 560px;
  margin-bottom: 0;
}

.modules-head p:last-child {
  margin-bottom: 0;
  font-size: 17px;
}

.section-title {
  max-width: 640px;
  margin: 0 auto 46px;
  text-align: center;
}

.section-title p {
  margin-bottom: 0;
}

.module-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-flow: dense;
  gap: 12px;
}

.module-card {
  position: relative;
  display: grid;
  grid-template-rows: auto auto auto 1fr;
  align-content: stretch;
  min-height: 220px;
  overflow: hidden;
  border: 1px solid rgba(23, 23, 21, 0.08);
  border-radius: 12px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.88), rgba(251, 250, 247, 0.5)),
    var(--paper);
  padding: 22px;
  box-shadow: 0 16px 34px rgba(22, 33, 36, 0.06);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.module-card::after {
  content: "";
  position: absolute;
  inset: auto 18px 0;
  height: 3px;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(90deg, var(--accent), var(--yellow), var(--orange));
  opacity: 0;
  transition: opacity 180ms ease;
}

.module-card:hover {
  border-color: rgba(0, 174, 234, 0.28);
  box-shadow: 0 24px 50px rgba(22, 33, 36, 0.11);
  transform: translateY(-3px);
}

.module-card:hover::after {
  opacity: 1;
}

.module-card-featured {
  grid-column: span 2;
  grid-row: span 2;
  min-height: 452px;
  background:
    linear-gradient(145deg, rgba(0, 174, 234, 0.22), rgba(92, 225, 230, 0.12) 48%, rgba(253, 213, 79, 0.14)),
    var(--paper);
  padding: 30px;
}

.module-card-featured::before {
  content: "";
  position: absolute;
  inset: 18px 18px auto auto;
  width: 90px;
  height: 90px;
  border-radius: 28px;
  background:
    linear-gradient(135deg, var(--accent), var(--accent-2) 52%, var(--yellow));
  opacity: 0.16;
  transform: rotate(12deg);
}

.module-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
}

.module-icon {
  display: grid;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0)),
    var(--ink);
  color: #fff;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
  padding: 8px;
  opacity: 0.42;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease, opacity 180ms ease;
}

.module-card-featured .module-icon {
  opacity: 0.68;
}

.module-card:hover .module-icon {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0)),
    var(--accent);
  opacity: 1;
  transform: rotate(-2deg) scale(1.04);
}

.module-grid span,
.timeline span {
  display: inline-flex;
  color: var(--accent);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.module-card h3 {
  max-width: 260px;
  margin-bottom: 10px;
  font-size: 19px;
}

.module-card-featured h3 {
  max-width: 420px;
  font-size: 30px;
  letter-spacing: -0.04em;
}

.module-card strong {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 18px;
  border-radius: 999px;
  background: rgba(0, 174, 234, 0.1);
  color: #08779d;
  padding: 7px 10px;
  font-size: 12px;
  line-height: 1;
}

.module-grid p {
  margin-bottom: 0;
  font-size: 15px;
}

.module-card-featured p {
  max-width: 470px;
  font-size: 16px;
}

.module-flow {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  align-self: end;
  margin-top: 28px;
}

.module-flow span {
  display: grid;
  min-height: 58px;
  place-items: center;
  border: 1px solid rgba(0, 174, 234, 0.16);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.56);
  color: var(--ink);
  font-size: 12px;
  font-weight: 820;
  text-transform: uppercase;
}

.dark-band {
  background: var(--dark);
  color: #fff;
}

.dark-inner {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 72px;
  align-items: center;
  padding: 118px 0;
}

.dark-copy p {
  color: rgba(255, 255, 255, 0.62);
}

.dark-panels {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.dark-card {
  min-height: 230px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  background: var(--dark-2);
  padding: 28px;
}

.dark-card span {
  display: block;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.7);
}

.dark-card strong {
  display: block;
  margin-bottom: 28px;
  font-size: 38px;
  letter-spacing: -0.04em;
}

.dark-card p,
.dark-card li {
  color: rgba(255, 255, 255, 0.64);
}

.wide {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  grid-column: 1 / -1;
  gap: 28px;
}

.mini-line {
  position: relative;
  height: 5px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
}

.mini-line::after {
  content: "";
  position: absolute;
  inset: 0 38% 0 0;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--accent), var(--yellow));
}

.avatar-row {
  display: flex;
  margin-bottom: 22px;
}

.avatar-row i {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  margin-right: -6px;
  border: 2px solid var(--dark-2);
  border-radius: 999px;
  background: var(--yellow);
  color: var(--ink);
  font-style: normal;
  font-weight: 800;
}

.avatar-row i:nth-child(2) { background: var(--accent-2); }
.avatar-row i:nth-child(3) { background: #bdb2ff; }
.avatar-row i:nth-child(4) { background: var(--orange); }

.mini-table {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.6fr;
  align-content: center;
  gap: 0;
  overflow: hidden;
  border-radius: 6px;
  background: #11110f;
  color: #fff;
  font-size: 12px;
}

.mini-table span {
  margin: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 12px;
}

.workflow {
  position: relative;
  width: min(1160px, calc(100% - 44px));
  padding: 100px 0;
}

.workflow-head {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.58fr);
  gap: 42px;
  align-items: end;
  margin-bottom: 36px;
}

.workflow-head h2 {
  max-width: 620px;
  margin-bottom: 0;
}

.workflow-head p:last-child {
  margin-bottom: 0;
  font-size: 17px;
}

.timeline {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
}

.timeline::before {
  display: none;
}

.timeline-card {
  position: relative;
  display: grid;
  align-content: start;
  min-height: 232px;
  border-right: 1px solid var(--line);
  padding: 30px 32px 0;
  transition: background 220ms ease, box-shadow 220ms var(--ease-out), transform 220ms var(--ease-out);
}

.timeline-card:hover {
  background: rgba(255, 255, 255, 0.46);
  box-shadow: 0 18px 40px rgba(22, 33, 36, 0.06);
  transform: translateY(-3px);
}

.timeline-card:first-child {
  border-left: 1px solid var(--line);
}

.timeline-card-support {
  color: var(--ink);
}

.timeline-card-support p {
  color: var(--muted);
}

.timeline-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 22px;
  border: 1px solid rgba(0, 174, 234, 0.18);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.62);
  color: var(--accent);
}

.timeline-card-support .timeline-icon {
  background: rgba(255, 255, 255, 0.62);
  color: var(--accent);
}

.timeline-icon svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.timeline-card h3 {
  margin-bottom: 12px;
  font-size: 22px;
}

.timeline-card p {
  margin-bottom: 0;
  font-size: 15px;
}

.workflow-foot {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  margin-top: 24px;
  border-top: 1px solid var(--line);
  padding-top: 20px;
}

.workflow-foot p {
  max-width: 680px;
  margin: 0;
  font-size: 14px;
}

.pricing {
  position: relative;
  width: min(1160px, calc(100% - 44px));
  overflow: hidden;
  border: 1px solid rgba(23, 23, 21, 0.08);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(220, 233, 246, 0.86), rgba(251, 250, 247, 0.74) 44%, rgba(220, 239, 217, 0.82)),
    #eeece6;
  padding: 64px 34px 38px;
  box-shadow: 0 30px 90px rgba(41, 36, 28, 0.1);
}

.pricing::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(23, 23, 21, 0.045) 1px, transparent 1px),
    linear-gradient(rgba(23, 23, 21, 0.035) 1px, transparent 1px);
  background-size: 84px 84px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.8), transparent 72%);
}

.pricing-head {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  gap: 34px;
  align-items: center;
  margin-bottom: 24px;
}

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

.pricing-copy h2 {
  max-width: 680px;
  margin-bottom: 14px;
}

.pricing-copy p:last-child {
  margin-bottom: 0;
  font-size: 17px;
}

.pricing-controls {
  display: inline-grid;
  grid-template-columns: repeat(2, minmax(110px, 1fr));
  gap: 8px;
  padding: 6px;
  border: 1px solid rgba(23, 23, 21, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 16px 34px rgba(41, 36, 28, 0.08);
}

.pricing-toggle {
  min-height: 42px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font-size: 14px;
  font-weight: 760;
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.pricing-toggle.is-active {
  background: var(--ink);
  color: #fff;
  box-shadow: 0 10px 18px rgba(23, 23, 21, 0.12);
}

.pricing-proof {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.pricing-proof span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  border: 1px solid rgba(23, 23, 21, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.58);
  padding: 0 14px;
  color: #34322f;
  font-size: 13px;
  font-weight: 720;
}

.pricing-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: 14px;
  align-items: stretch;
}

.pricing-card {
  position: relative;
  display: grid;
  grid-template-rows: auto auto auto auto auto 1fr auto;
  align-content: start;
  overflow: hidden;
  border: 1px solid rgba(23, 23, 21, 0.08);
  border-radius: 12px;
  background: rgba(251, 250, 247, 0.88);
  padding: 28px;
  box-shadow: 0 18px 40px rgba(41, 36, 28, 0.07);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.pricing-card:hover {
  border-color: rgba(27, 143, 90, 0.26);
  box-shadow: 0 30px 68px rgba(41, 36, 28, 0.13);
  transform: translateY(-4px);
}

.plan-kicker {
  margin-bottom: 16px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 840;
  text-transform: uppercase;
}

.pricing-grid .featured-plan {
  border-color: rgba(0, 174, 234, 0.28);
  background:
    radial-gradient(circle at top right, rgba(253, 213, 79, 0.22), transparent 28%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(223, 243, 251, 0.86) 48%, rgba(92, 225, 230, 0.2)),
    var(--paper);
  color: var(--ink);
  transform: translateY(-14px);
  box-shadow: 0 32px 76px rgba(0, 174, 234, 0.14), 0 12px 34px rgba(22, 33, 36, 0.08);
}

.pricing-grid .featured-plan:hover {
  transform: translateY(-18px);
}

.plan-ribbon {
  display: inline-flex;
  width: fit-content;
  min-height: 30px;
  align-items: center;
  margin-bottom: 16px;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  padding: 0 12px;
  font-size: 12px;
  font-weight: 820;
}

.pricing-grid .featured-plan .plan-kicker {
  color: var(--accent);
}

.pricing-grid .featured-plan p,
.pricing-grid .featured-plan li {
  color: #516064;
}

.pricing-grid strong {
  display: block;
  margin: 26px 0 14px;
  font-size: 42px;
  line-height: 1;
  letter-spacing: -0.04em;
}

.pricing-grid strong span {
  color: inherit;
}

.pricing-grid strong small {
  color: var(--muted);
  font-size: 14px;
  letter-spacing: 0;
  font-weight: 720;
}

.pricing-grid .featured-plan strong small {
  color: var(--muted);
}

.plan-caption {
  margin-bottom: 22px;
  color: #3d3a34;
  font-size: 14px;
  line-height: 1.6;
}

.pricing-grid .featured-plan .plan-caption {
  color: #445256;
}

.pricing-grid ul {
  display: grid;
  gap: 12px;
  margin: 0 0 30px;
  padding: 0;
  list-style: none;
}

.pricing-grid li {
  position: relative;
  padding-left: 18px;
  color: #4a4741;
  font-size: 14px;
}

.pricing-grid li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--accent);
}

.pricing-grid .featured-plan li::before {
  background: var(--orange);
}

.pricing-grid .featured-plan .button-dark {
  background: var(--ink);
  color: #fff;
  box-shadow: 0 16px 32px rgba(22, 33, 36, 0.16);
}

.pricing-note {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  margin: 22px auto 0;
  border: 1px solid rgba(23, 23, 21, 0.08);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.52);
  padding: 16px;
}

.pricing-note p {
  margin: 0;
  font-size: 14px;
}

.faq {
  padding: 112px 0;
}

.eyebrow {
  margin-bottom: 12px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 820;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.faq-list {
  max-width: 840px;
  margin: 0 auto;
  border-top: 1px solid var(--line);
}

details {
  border-bottom: 1px solid var(--line);
  padding: 24px 0;
  transition: border-color 180ms ease, background 180ms ease, padding 180ms ease;
}

details:hover,
details[open] {
  border-color: rgba(0, 174, 234, 0.28);
}

summary {
  cursor: pointer;
  font-size: 22px;
  font-weight: 730;
  letter-spacing: -0.03em;
  transition: color 180ms ease;
}

summary:hover,
details[open] summary {
  color: var(--accent);
}

details p {
  max-width: 700px;
  margin: 18px 0 0;
}

.cta-band {
  margin-bottom: 76px;
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(var(--dark), var(--dark));
  background-size: 130px 100%, auto;
  color: #fff;
  padding: 84px 28px;
  text-align: center;
  box-shadow: 0 28px 70px rgba(22, 33, 36, 0.14);
}

.cta-band h2 {
  max-width: 680px;
  margin: 0 auto 14px;
}

.cta-band p {
  max-width: 650px;
  margin: 0 auto 28px;
  color: rgba(255, 255, 255, 0.68);
}

.site-footer {
  padding: 60px 0 38px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.7fr 0.7fr 1.4fr;
  gap: 44px;
  align-items: start;
  border-top: 1px solid var(--line);
  padding-top: 34px;
}

.footer-grid h3 {
  margin-bottom: 18px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0;
}

.footer-grid a:not(.brand) {
  display: block;
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 14px;
}

.footer-grid p {
  margin: 0;
  font-size: 14px;
}

.effects-ready .revealable {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 620ms var(--ease-smooth), transform 620ms var(--ease-smooth);
  transition-delay: var(--reveal-delay, 0ms);
}

.effects-ready .revealable.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.effects-ready .hero .revealable {
  transform: translateY(14px);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .revealable,
  .effects-ready .revealable {
    opacity: 1 !important;
    transform: none !important;
  }
}

.changelog-hero {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 26px;
  align-items: end;
  padding: 82px 0 42px;
}

.changelog-hero-copy {
  max-width: 760px;
}

.changelog-hero-copy h1 {
  margin-bottom: 18px;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.02;
}

.changelog-hero-copy p:last-child {
  max-width: 640px;
  margin-bottom: 0;
  font-size: 18px;
}

.changelog-hero-meta {
  display: grid;
  gap: 12px;
}

.changelog-hero-meta div,
.changelog-entry,
.changelog-nav {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.changelog-hero-meta div {
  padding: 20px 22px;
}

.changelog-hero-meta span {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
}

.changelog-hero-meta strong {
  font-size: 16px;
  letter-spacing: -0.02em;
}

.changelog-shell {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
  padding-bottom: 96px;
}

.changelog-nav {
  position: sticky;
  top: 88px;
  padding: 22px;
}

.changelog-nav-head p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.changelog-nav-list {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.changelog-nav-item {
  display: grid;
  gap: 5px;
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  text-align: left;
  transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.changelog-nav-item strong {
  font-size: 15px;
}

.changelog-nav-item span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
}

.changelog-nav-item:hover,
.changelog-nav-item.is-active {
  border-color: rgba(27, 143, 90, 0.34);
  transform: translateY(-1px);
  box-shadow: 0 16px 30px rgba(34, 43, 34, 0.08);
}

.changelog-panels {
  min-width: 0;
}

.changelog-entry {
  padding: 28px;
}

.changelog-entry-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: start;
  margin-bottom: 14px;
}

.changelog-entry-head h2 {
  margin-bottom: 0;
  font-size: 34px;
}

.changelog-badge {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  border-radius: 999px;
  padding: 0 16px;
  background: var(--ink);
  color: #fff;
  font-size: 13px;
  font-weight: 760;
}

.changelog-entry-summary {
  max-width: 760px;
  margin-bottom: 28px;
  font-size: 17px;
}

.changelog-group + .changelog-group {
  margin-top: 22px;
}

.changelog-group h3 {
  margin-bottom: 10px;
  font-size: 15px;
  text-transform: uppercase;
}

.changelog-group ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.changelog-group li,
.changelog-empty {
  border-top: 1px solid var(--line);
  padding-top: 12px;
  color: #34322f;
  font-size: 15px;
  line-height: 1.6;
}

@media (max-width: 920px) {
  .site-header {
    width: 100%;
  }

  .site-header-inner {
    grid-template-columns: 1fr auto;
  }

  .menu-toggle {
    display: block;
    justify-self: end;
  }

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

  .site-header.is-open .nav-links {
    position: absolute;
    top: 66px;
    left: 14px;
    right: 14px;
    display: grid;
    gap: 0;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--paper);
    box-shadow: var(--shadow);
  }

  .site-header.is-open .nav-links a {
    padding: 18px 20px;
    border-bottom: 1px solid var(--line);
    font-size: 15px;
  }

  .dashboard-grid,
  .split-section,
  .dark-inner,
  .wide,
  .changelog-hero,
  .changelog-shell,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .mock-sidebar {
    display: none;
  }

  .proof-cards,
  .timeline,
  .pricing-grid,
  .dark-panels {
    grid-template-columns: 1fr;
  }

  .modules-head {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .workflow-head {
    grid-template-columns: 1fr;
    gap: 16px;
  }

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

  .module-card-featured {
    grid-column: span 2;
    grid-row: auto;
    min-height: auto;
  }

  .pricing-grid .featured-plan {
    transform: none;
  }

  .pricing-grid .featured-plan:hover {
    transform: translateY(-4px);
  }

  .split-section {
    gap: 42px;
  }

  .pricing-head,
  .workflow-foot,
  .pricing-note {
    flex-direction: column;
    align-items: stretch;
  }

  .pricing-controls {
    width: fit-content;
  }

  .pricing {
    padding: 46px 24px 28px;
  }

  .workflow {
    padding: 76px 0;
  }

  .timeline::before {
    display: none;
  }

  .changelog-nav {
    position: static;
  }
}

@media (max-width: 640px) {
  .section-shell,
  .site-header-inner {
    width: min(100% - 28px, 1160px);
  }

  .hero {
    padding-top: 54px;
  }

  h1 {
    font-size: 38px;
  }

  h2 {
    font-size: 31px;
  }

  .hero-copy p {
    font-size: 16px;
  }

  .window-tabs {
    overflow-x: auto;
    padding: 14px 14px 0;
  }

  .hero-product {
    width: min(calc(100vw - 28px), 520px);
    margin: 0 auto;
    transform: none;
  }

  .hero-image-frame {
    border-radius: 10px;
  }

  .hero-image-frame img {
    position: static;
    width: 100%;
    max-width: 100%;
    height: auto;
    object-fit: contain;
  }

  .dashboard-grid {
    margin: 14px;
  }

  .mock-main {
    padding: 16px;
  }

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

  .table-head,
  .table-row {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 12px 0;
  }

  .proof-heading {
    align-items: start;
    flex-direction: column;
  }

  .proof-card,
  .module-grid article,
  .pricing-grid article,
  .dark-card {
    padding: 24px;
  }

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

  .module-card-featured {
    grid-column: auto;
    padding: 24px;
  }

  .module-card-featured h3 {
    font-size: 24px;
  }

  .module-flow {
    grid-template-columns: 1fr;
  }

  .module-flow span {
    min-height: 44px;
  }

  .module-card {
    min-height: auto;
  }

  .phone-panel {
    min-height: 430px;
    padding: 18px;
  }

  .phone-card {
    min-height: 380px;
  }

  .dark-inner,
  .modules,
  .faq {
    padding: 76px 0;
  }

  .workflow {
    width: min(100% - 28px, 1160px);
    padding: 76px 0;
  }

  .timeline-card {
    border-left: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    min-height: auto;
    padding: 26px 22px;
  }

  .timeline-icon {
    margin-bottom: 20px;
  }

  .pricing {
    width: min(100% - 28px, 1160px);
    padding: 34px 16px 18px;
    border-radius: 14px;
  }

  .pricing-controls {
    width: 100%;
  }

  .pricing-proof {
    gap: 8px;
  }

  .pricing-proof span {
    min-height: 32px;
    font-size: 12px;
  }

  .pricing-grid strong {
    font-size: 34px;
  }

  .plan-caption {
    min-height: 0;
  }

  .pricing-grid ul {
    min-height: 0;
  }

  .changelog-hero {
    padding: 54px 0 28px;
  }

  .changelog-shell {
    gap: 18px;
    padding-bottom: 72px;
  }

  .changelog-nav,
  .changelog-entry {
    padding: 20px;
  }

  .changelog-entry-head {
    flex-direction: column;
  }

  .changelog-entry-head h2 {
    font-size: 28px;
  }

  .changelog-entry-summary {
    font-size: 16px;
  }
}
