:root {
  --v2-ink: #152033;
  --v2-muted: #677287;
  --v2-blue: #246fe5;
  --v2-blue-dark: #174ea8;
  --v2-green: #1f8a5b;
  --v2-sand: #f5f1e9;
  --v2-card: rgba(255, 255, 255, 0.9);
  --v2-line: #dfe5ec;
  --v2-radius: 26px;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

html,
body {
  font-family: "Manrope", sans-serif;
  color: var(--v2-ink);
  background: var(--v2-sand);
}

body {
  overflow-x: hidden;
}

.page-bg {
  background:
    radial-gradient(circle at 14% 4%, rgba(47, 124, 232, 0.12), transparent 28%),
    radial-gradient(circle at 90% 18%, rgba(34, 151, 98, 0.08), transparent 25%),
    linear-gradient(180deg, #faf8f3 0%, #f3efe7 52%, #f8f6f1 100%);
}

.page-bg::after {
  background-image:
    linear-gradient(rgba(32, 48, 72, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(32, 48, 72, 0.028) 1px, transparent 1px);
  background-size: 44px 44px;
  opacity: 0.7;
}

.site-nav {
  position: sticky;
  top: 12px;
  z-index: 500;
  width: min(1160px, calc(100vw - 28px));
  height: 64px;
  margin: 12px auto 0;
  padding: 8px 10px 8px 14px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 18px;
  border: 1px solid rgba(210, 218, 229, 0.9);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 10px 34px rgba(30, 46, 68, 0.09);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.nav-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  color: var(--v2-ink);
  text-decoration: none;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.nav-brand img {
  width: 38px;
  height: 38px;
  object-fit: cover;
  border-radius: 11px;
  box-shadow: 0 6px 14px rgba(31, 51, 82, 0.12);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-links a {
  padding: 9px 12px;
  border-radius: 10px;
  color: #596477;
  text-decoration: none;
  font-size: 13px;
  font-weight: 650;
  transition: color 0.18s ease, background 0.18s ease;
}

.nav-links a:hover {
  color: var(--v2-ink);
  background: #f0f4f8;
}

.auth-login-btn {
  justify-self: end;
  min-width: 92px;
  height: 44px;
  padding: 0 18px;
  border: 1px solid #cfd8e3;
  border-radius: 12px;
  color: var(--v2-ink);
  background: #fff;
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  font-weight: 750;
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.auth-login-btn:hover {
  border-color: #9bb7da;
  box-shadow: 0 6px 16px rgba(36, 111, 229, 0.12);
  transform: translateY(-1px);
}

.landing-v2 {
  width: min(1160px, calc(100vw - 28px));
  padding: 24px 0 40px;
  overflow: visible;
}

.hero-v2 {
  padding: 56px 0 76px;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(520px, 1.1fr);
  align-items: center;
  gap: 54px;
}

.hero-copy {
  position: relative;
  z-index: 2;
  animation: v2-reveal 0.65s ease both;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #4d6382;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-size: 11px;
  font-weight: 800;
}

.eyebrow span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #37a674;
  box-shadow: 0 0 0 5px rgba(55, 166, 116, 0.12);
}

.hero-v2 h1 {
  max-width: 620px;
  margin: 22px 0 22px;
  color: var(--v2-ink);
  font-size: clamp(42px, 5.2vw, 70px);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.hero-v2 h1 strong {
  display: block;
  margin-top: 12px;
  color: var(--v2-blue);
  font-weight: 800;
}

.hero-lead {
  max-width: 590px;
  margin: 0;
  color: var(--v2-muted);
  font-size: 17px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 11px;
  margin-top: 30px;
}

.button {
  min-height: 50px;
  padding: 0 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid transparent;
  border-radius: 13px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 750;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

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

.button-primary {
  color: #fff;
  background: linear-gradient(135deg, #2879ea, #175dc5);
  box-shadow: 0 12px 24px rgba(29, 100, 205, 0.24);
}

.button-primary:hover {
  box-shadow: 0 16px 30px rgba(29, 100, 205, 0.3);
}

.button-secondary {
  color: #2a3a51;
  border-color: #d5dde7;
  background: rgba(255, 255, 255, 0.78);
}

.play-dot {
  width: 26px;
  height: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  background: #ff4a43;
  font-size: 9px;
}

.hero-facts {
  margin-top: 26px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.hero-facts span {
  min-height: 34px;
  padding: 6px 10px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid #dce3eb;
  border-radius: 999px;
  color: #647085;
  background: rgba(255, 255, 255, 0.68);
  font-size: 11px;
  font-weight: 650;
}

.hero-facts b {
  color: #1d5fb9;
  font-size: 12px;
}

.hero-gift {
  max-width: 570px;
  margin-top: 14px;
  padding: 13px 14px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  border: 1px solid #ccdcef;
  border-radius: 16px;
  color: #142033;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(232, 241, 253, 0.92));
  box-shadow: 0 12px 30px rgba(27, 102, 219, 0.09);
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.hero-gift:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(27, 102, 219, 0.15);
}

.hero-gift-mark {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  color: #fff;
  background: #1b66db;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.hero-gift b,
.hero-gift small {
  display: block;
}

.hero-gift b {
  font-size: 13px;
}

.hero-gift small {
  margin-top: 3px;
  color: #657287;
  font-size: 10px;
  line-height: 1.45;
}

.hero-gift i {
  color: #1b66db;
  font-size: 19px;
  font-style: normal;
}

.hero-product {
  position: relative;
  min-width: 0;
  padding: 14px;
  border: 1px solid rgba(196, 208, 222, 0.9);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 30px 70px rgba(37, 52, 77, 0.18);
  transform: rotate(1.2deg);
  animation: v2-product-in 0.8s 0.12s ease both;
}

.window-bar,
.screen-top {
  height: 38px;
  padding: 0 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #8590a0;
  font-size: 10px;
  font-weight: 700;
}

.window-bar {
  justify-content: space-between;
}

.window-dots {
  display: flex;
  gap: 5px;
}

.window-dots i,
.screen-top i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #d3d9e1;
}

.window-dots i:nth-child(1),
.screen-top i:nth-child(1) { background: #f06d62; }
.window-dots i:nth-child(2),
.screen-top i:nth-child(2) { background: #e8b54f; }
.window-dots i:nth-child(3),
.screen-top i:nth-child(3) { background: #5ebf7b; }

.window-bar span {
  position: absolute;
  left: 50%;
  color: #69758a;
  transform: translateX(-50%);
}

.window-bar em {
  font-style: normal;
  font-size: 9px;
}

.hero-screen {
  height: 425px;
  overflow: hidden;
  border: 1px solid #e0e6ed;
  border-radius: 17px;
  background: #fff;
}

.hero-screen img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: 48% 12%;
}

.floating-note {
  position: absolute;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  gap: 9px;
  border: 1px solid #dce5ef;
  border-radius: 14px;
  color: #22334b;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 13px 30px rgba(29, 48, 76, 0.18);
  transform: rotate(-1.2deg);
}

.floating-note > span {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  color: #fff;
  background: var(--v2-blue);
  font-weight: 800;
}

.floating-note div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.floating-note b {
  font-size: 11px;
}

.floating-note small {
  color: #8190a4;
  font-size: 9px;
}

.floating-note-ai {
  top: 72px;
  right: -32px;
}

.floating-note-accounts {
  bottom: 46px;
  left: -34px;
}

.floating-note-accounts > span {
  color: #166743;
  background: #dff5e9;
}

.offer-strip {
  margin: 0 0 110px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid #dbe2ea;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 12px 36px rgba(39, 53, 73, 0.07);
}

.offer-strip article {
  min-height: 160px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border-right: 1px solid #e2e7ed;
}

.offer-strip article:last-child {
  border-right: 0;
}

.offer-index {
  margin-bottom: auto;
  color: #9aa5b5;
  font-family: "Unbounded", sans-serif;
  font-size: 10px;
}

.offer-strip strong {
  margin-bottom: 7px;
  color: #1d2b40;
  font-size: 16px;
}

.offer-strip p {
  margin: 0;
  color: #737f91;
  font-size: 12px;
  line-height: 1.55;
}

.operating-system,
.product-gallery,
.pricing-section,
.quick-start-v2,
.use-cases {
  margin-top: 110px;
}

.section-intro {
  margin-bottom: 32px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.65fr);
  align-items: end;
  gap: 40px;
}

.section-intro h2,
.pricing-copy h2,
.quick-start-v2 h2,
.final-cta h2 {
  max-width: 760px;
  margin: 10px 0 0;
  color: var(--v2-ink);
  font-size: clamp(31px, 4vw, 52px);
  line-height: 1.04;
  letter-spacing: -0.055em;
}

.section-intro > p {
  margin: 0;
  color: var(--v2-muted);
  font-size: 14px;
  line-height: 1.65;
}

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

.capability-card {
  position: relative;
  min-height: 330px;
  padding: 24px;
  overflow: hidden;
  border: 1px solid #dfe5ec;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 8px 28px rgba(34, 50, 73, 0.05);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.capability-card:hover {
  border-color: #c2d2e6;
  box-shadow: 0 16px 38px rgba(34, 50, 73, 0.1);
  transform: translateY(-4px);
}

.capability-card-accent {
  color: #fff;
  border-color: transparent;
  background:
    radial-gradient(circle at 90% 10%, rgba(119, 187, 255, 0.34), transparent 28%),
    linear-gradient(145deg, #193f75, #1e68c9);
}

.capability-card-wide {
  grid-column: span 2;
}

.capability-icon {
  width: 46px;
  height: 46px;
  margin-bottom: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #d8e1eb;
  border-radius: 14px;
  color: #2467bf;
  background: #f3f7fb;
  font-family: "Unbounded", sans-serif;
  font-size: 17px;
}

.capability-card-accent .capability-icon {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.12);
}

.capability-label {
  position: absolute;
  top: 25px;
  right: 24px;
  color: #8996a8;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  font-size: 9px;
  font-weight: 800;
}

.capability-card-accent .capability-label {
  color: rgba(255, 255, 255, 0.65);
}

.capability-card h3 {
  margin: 0 0 10px;
  color: #1b2a40;
  font-size: 20px;
  letter-spacing: -0.035em;
}

.capability-card p {
  margin: 0;
  color: #6e7b8f;
  font-size: 12px;
  line-height: 1.65;
}

.capability-card-accent h3,
.capability-card-accent p {
  color: #fff;
}

.capability-card-accent p {
  color: rgba(255, 255, 255, 0.77);
}

.capability-card ul {
  margin: 20px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  list-style: none;
}

.capability-card ul li {
  padding: 6px 8px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.08);
  font-size: 9px;
}

.mini-flow {
  margin-top: 24px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.mini-flow span,
.mini-flow b {
  padding: 7px 10px;
  border: 1px solid #d8e1eb;
  border-radius: 9px;
  color: #596b82;
  background: #f7f9fc;
  font-size: 9px;
  font-weight: 750;
}

.mini-flow b {
  color: #fff;
  border-color: var(--v2-blue);
  background: var(--v2-blue);
}

.mini-flow i {
  width: 18px;
  height: 1px;
  background: #b9c5d3;
}

.screen-showcase {
  min-width: 0;
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  border: 1px solid #dce3eb;
  border-radius: var(--v2-radius);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 12px 38px rgba(34, 50, 73, 0.07);
}

.screen-showcase-wide {
  padding: 30px;
  display: grid;
  grid-template-columns: minmax(250px, 0.45fr) minmax(0, 1fr);
  align-items: center;
  gap: 32px;
}

.screen-copy > span {
  color: #2670d5;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 9px;
  font-weight: 800;
}

.screen-copy h3 {
  margin: 10px 0 10px;
  color: #19283d;
  font-size: clamp(21px, 2.6vw, 32px);
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.screen-copy p {
  margin: 0;
  color: #6e7a8d;
  font-size: 12px;
  line-height: 1.65;
}

.screen-pair {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.screen-pair-ui {
  align-items: stretch;
}

.screen-frame {
  min-width: 0;
  overflow: hidden;
  border: 1px solid #d8e0e9;
  border-radius: 18px;
  background: #f8fafc;
  box-shadow: 0 14px 32px rgba(25, 45, 74, 0.1);
}

.screen-top {
  border-bottom: 1px solid #e4e8ee;
  background: #fff;
}

.screen-top span {
  margin-left: 2px;
  color: #8793a4;
  font-size: 9px;
}

.screen-frame img {
  width: 100%;
  display: block;
}

.screen-frame-landscape {
  height: 430px;
}

.screen-frame-landscape img {
  height: calc(100% - 38px);
  object-fit: cover;
  object-position: 50% 8%;
}

.screen-frame-portrait {
  height: 430px;
}

.screen-frame-portrait img {
  height: calc(100% - 38px);
  object-fit: cover;
  object-position: 22% 12%;
}

.screen-frame-crop {
  height: 430px;
}

.screen-frame-crop img {
  height: calc(100% - 38px);
  object-fit: cover;
  object-position: 48% 10%;
}

.screen-frame-product {
  height: 350px;
}

.screen-frame-product img {
  height: calc(100% - 38px);
  object-fit: cover;
  object-position: 50% 0;
}

.ui-screen {
  position: relative;
  height: 360px;
  padding: 18px;
  background:
    linear-gradient(rgba(34, 67, 109, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(34, 67, 109, 0.035) 1px, transparent 1px),
    #f8fafc;
  background-size: 26px 26px;
}

.ai-ui-screen {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ui-header {
  display: flex;
  align-items: center;
  gap: 7px;
}

.ui-header b {
  margin-right: auto;
  color: #244363;
  font-size: 11px;
}

.ui-header em {
  width: 26px;
  height: 26px;
  margin-right: 5px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  color: #fff;
  background: var(--v2-blue);
  font-style: normal;
}

.score {
  padding: 5px 7px;
  border: 1px solid #d8e2ee;
  border-radius: 999px;
  color: #59718e;
  background: #fff;
  font-size: 8px;
  font-weight: 750;
}

.score-green {
  color: #28724f;
  border-color: #cce8d9;
  background: #eff9f3;
}

.ai-summary {
  padding: 14px;
  border: 1px solid #d8e5f3;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.9);
}

.ai-summary small {
  display: block;
  margin-bottom: 5px;
  color: #8a98aa;
  letter-spacing: 0.08em;
  font-size: 7px;
  font-weight: 800;
}

.ai-summary strong {
  display: block;
  color: #253c58;
  font-size: 10px;
}

.ai-summary p {
  margin: 6px 0 0;
  color: #718097;
  font-size: 9px;
  line-height: 1.45;
}

.ai-option {
  padding: 11px;
  display: grid;
  grid-template-columns: 24px 1fr 20px;
  align-items: start;
  gap: 8px;
  border: 1px solid #d4e1ef;
  border-radius: 11px;
  background: #fff;
  box-shadow: 0 4px 12px rgba(34, 60, 91, 0.05);
}

.ai-option b,
.ai-option i {
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 7px;
  color: #2467bc;
  background: #eaf3ff;
  font-size: 8px;
  font-style: normal;
}

.ai-option span {
  padding-top: 3px;
  color: #3e4c61;
  font-size: 9px;
  line-height: 1.5;
}

.map-ui-screen {
  overflow: hidden;
}

.map-ui-screen svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.map-ui-screen path {
  fill: none;
  stroke: #76a7e5;
  stroke-width: 2;
}

.map-node {
  position: absolute;
  width: 124px;
  min-height: 60px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 3px;
  border: 1px solid #cddcee;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 7px 18px rgba(29, 54, 86, 0.1);
}

.map-node small {
  color: #8c99aa;
  letter-spacing: 0.08em;
  font-size: 6px;
  font-weight: 800;
}

.map-node b {
  color: #32445c;
  font-size: 9px;
}

.map-node span {
  color: #75869a;
  font-size: 7px;
}

.map-node-start { left: 20px; top: 145px; }
.map-node-main { left: 43%; top: 145px; transform: translateX(-50%); border-color: #6da4e7; }
.map-node-a { right: 20px; top: 44px; }
.map-node-b { right: 20px; top: 145px; }
.map-node-c { right: 20px; top: 246px; }

.chain-showcase {
  margin-top: 14px;
}

.ai-showcase {
  margin-top: 14px;
}

.chain-ui-screen {
  min-height: 420px;
  display: grid;
  grid-template-columns: 150px 48px 150px 1fr;
  align-items: center;
  gap: 8px;
}

.chain-node {
  min-height: 80px;
  padding: 13px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  border: 1px solid #cfddec;
  border-radius: 13px;
  background: #fff;
  box-shadow: 0 7px 18px rgba(31, 54, 83, 0.09);
}

.chain-node small {
  color: #8b98a9;
  letter-spacing: 0.08em;
  font-size: 6px;
  font-weight: 800;
}

.chain-node b {
  color: #31455f;
  font-size: 10px;
}

.chain-node span {
  color: #7a899c;
  font-size: 7px;
}

.chain-start {
  border-color: #70a5e5;
}

.chain-line {
  height: 2px;
  background: #79a7df;
}

.chain-split {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.chain-split span {
  padding: 5px 7px;
  border-radius: 7px;
  color: #5d7189;
  background: #edf3fa;
  text-align: center;
  font-size: 7px;
  font-weight: 750;
}

.chain-branches {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.chain-branches div {
  min-height: 72px;
  padding: 11px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  border: 1px solid #d6e0eb;
  border-radius: 11px;
  background: #fff;
}

.chain-branches b {
  color: #30445e;
  font-size: 9px;
}

.chain-branches small {
  color: #7f8c9e;
  font-size: 7px;
}

.chain-branches div:first-child {
  color: #fff;
  border-color: #246fe5;
  background: #246fe5;
}

.chain-branches div:first-child b,
.chain-branches div:first-child small {
  color: #fff;
}

.pricing-card {
  position: relative;
  padding: 44px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 0.62fr;
  gap: 34px;
  overflow: hidden;
  border-radius: 30px;
  color: #fff;
  background:
    radial-gradient(circle at 82% 8%, rgba(78, 160, 255, 0.35), transparent 26%),
    linear-gradient(145deg, #112b4f, #174e91 60%, #1d64b2);
  box-shadow: 0 26px 60px rgba(16, 48, 86, 0.24);
}

.pricing-card::after {
  content: "";
  position: absolute;
  right: -100px;
  bottom: -180px;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(255, 255, 255, 0.035), 0 0 0 140px rgba(255, 255, 255, 0.025);
}

.pricing-copy,
.price-block,
.pricing-list {
  position: relative;
  z-index: 1;
}

.pricing-copy .section-kicker {
  color: #9dc7fa;
}

.pricing-copy h2 {
  color: #fff;
}

.pricing-copy p {
  max-width: 570px;
  margin: 18px 0 26px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  line-height: 1.65;
}

.pricing-copy .button-primary {
  color: #184474;
  background: #fff;
  box-shadow: none;
}

.price-block {
  align-self: start;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(10px);
}

.price-block div {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.price-block strong {
  font-size: clamp(38px, 5vw, 58px);
  line-height: 1;
  letter-spacing: -0.06em;
}

.price-block span,
.price-block small {
  color: rgba(255, 255, 255, 0.65);
}

.price-block span {
  font-size: 12px;
}

.price-block small {
  display: block;
  margin-top: 12px;
  font-size: 9px;
}

.pricing-list {
  grid-column: 1 / -1;
  margin: 0;
  padding: 24px 0 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  list-style: none;
}

.pricing-list li {
  position: relative;
  padding-left: 22px;
  color: rgba(255, 255, 255, 0.77);
  font-size: 11px;
  line-height: 1.5;
}

.pricing-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #75e2a7;
  font-weight: 800;
}

.pricing-list b {
  color: #fff;
}

.quick-start-v2 {
  scroll-margin-top: 90px;
}

.quick-start-v2 .quick-start-card {
  padding: 0;
  overflow: hidden;
  border: 1px solid #d9e1ea;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 50px rgba(35, 51, 74, 0.1);
}

.quick-start-v2 .quick-start-body {
  padding: 42px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.72fr);
  align-items: center;
  gap: 40px;
}

.quick-start-v2 h2 {
  margin-top: 8px;
  font-size: clamp(28px, 3.4vw, 42px);
}

.quick-start-v2 .quick-start-text {
  max-width: 620px;
  margin: 14px 0 0;
  color: #6d7a8d;
  font-size: 12px;
  line-height: 1.65;
}

.quick-start-gift {
  margin: 12px 0 0;
  color: #315779;
  font-size: 11px;
  line-height: 1.55;
}

.quick-start-gift b {
  color: #1b66db;
}

.quick-start-v2 .telegram-form {
  position: relative;
  padding: 12px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 9px;
  border: 1px solid #dce3eb;
  border-radius: 17px;
  background: #f7f9fc;
}

.quick-start-v2 .telegram-field {
  height: 50px;
  border: 1px solid #d9e1ea;
  border-radius: 11px;
  background: #fff;
}

.quick-start-v2 .telegram-submit {
  height: 50px;
  padding: 0 17px;
  border-radius: 11px;
  background: var(--v2-blue);
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  font-weight: 750;
}

.form-status {
  grid-column: 1 / -1;
  min-height: 16px;
  padding: 0 3px;
  color: #7b8799;
  font-size: 10px;
}

.form-status:empty {
  display: none;
}

.form-status.is-success { color: #218256; }
.form-status.is-error { color: #c64449; }

.form-gift-link {
  margin-left: 8px;
  color: #1b66db;
  font-weight: 750;
  text-decoration: none;
}

.form-gift-link:hover {
  text-decoration: underline;
}

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

.use-case-grid article {
  min-height: 210px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border: 1px solid #dce3eb;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.7);
}

.use-case-grid span {
  margin-bottom: auto;
  color: #9aa5b3;
  font-family: "Unbounded", sans-serif;
  font-size: 9px;
}

.use-case-grid h3 {
  margin: 0 0 7px;
  color: #23344a;
  font-size: 16px;
}

.use-case-grid p {
  margin: 0;
  color: #748093;
  font-size: 11px;
  line-height: 1.55;
}

.final-cta {
  margin-top: 110px;
  padding: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  border-radius: 28px;
  color: #fff;
  background: #18263a;
}

.final-cta .section-kicker {
  color: #8eb9ec;
}

.final-cta h2 {
  max-width: 730px;
  color: #fff;
  font-size: clamp(28px, 4vw, 48px);
}

.final-cta p {
  margin: 13px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
}

.button-light {
  flex-shrink: 0;
  color: #1b385a;
  background: #fff;
}

.legal-footer {
  margin-top: 34px;
}

.legal-footer-inner {
  border-top-color: #d5dce5;
}

.legal-company,
.legal-links a {
  color: #687488;
}

@keyframes v2-reveal {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes v2-product-in {
  from { opacity: 0; transform: translateY(22px) rotate(2.5deg); }
  to { opacity: 1; transform: translateY(0) rotate(1.2deg); }
}

@media (max-width: 1000px) {
  .site-nav {
    grid-template-columns: 1fr auto;
  }

  .nav-links {
    display: none;
  }

  .hero-v2 {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 44px;
  }

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

  .hero-product {
    width: min(760px, 94%);
    margin: 0 auto;
  }

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

  .capability-card-wide {
    grid-column: span 2;
  }

  .screen-showcase-wide,
  .quick-start-v2 .quick-start-body {
    grid-template-columns: 1fr;
  }

  .use-case-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  html {
    scroll-padding-top: 76px;
  }

  .site-nav {
    top: 8px;
    width: calc(100vw - 16px);
    height: 56px;
    margin-top: 8px;
    padding: 7px 7px 7px 10px;
    border-radius: 15px;
  }

  .nav-brand img {
    width: 34px;
    height: 34px;
  }

  .nav-brand span {
    font-size: 14px;
  }

  .auth-login-btn {
    min-width: 76px;
    height: 40px;
    padding: 0 13px;
  }

  .landing-v2 {
    width: calc(100vw - 18px);
    padding-top: 22px;
  }

  .hero-v2 {
    padding: 40px 0 56px;
  }

  .hero-v2 h1 {
    margin-top: 17px;
    font-size: clamp(39px, 12vw, 55px);
  }

  .hero-lead {
    font-size: 14px;
    line-height: 1.65;
  }

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

  .button {
    width: 100%;
  }

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

  .hero-facts span {
    width: 100%;
    justify-content: center;
  }

  .hero-gift {
    max-width: none;
  }

  .hero-product {
    width: 100%;
    padding: 8px;
    border-radius: 18px;
    transform: none;
  }

  .hero-screen {
    height: 280px;
    border-radius: 12px;
  }

  .window-bar {
    height: 30px;
  }

  .floating-note {
    position: static;
    margin-top: 8px;
    transform: none;
  }

  .floating-note-accounts {
    display: none;
  }

  .offer-strip {
    margin-bottom: 76px;
    grid-template-columns: 1fr;
  }

  .offer-strip article {
    min-height: 130px;
    border-right: 0;
    border-bottom: 1px solid #e2e7ed;
  }

  .offer-strip article:last-child {
    border-bottom: 0;
  }

  .operating-system,
  .product-gallery,
  .pricing-section,
  .quick-start-v2,
  .use-cases {
    margin-top: 76px;
  }

  .section-intro {
    margin-bottom: 22px;
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .section-intro h2,
  .pricing-copy h2,
  .quick-start-v2 h2,
  .final-cta h2 {
    font-size: 34px;
  }

  .capability-grid,
  .screen-pair,
  .use-case-grid {
    grid-template-columns: 1fr;
  }

  .capability-card,
  .capability-card-wide {
    min-height: 290px;
    grid-column: auto;
  }

  .mini-flow {
    overflow-x: auto;
  }

  .screen-showcase,
  .screen-showcase-wide {
    padding: 18px;
    grid-template-columns: 1fr;
  }

  .screen-frame-landscape,
  .screen-frame-portrait,
  .screen-frame-crop,
  .screen-frame-product {
    height: 310px;
  }

  .ui-screen {
    height: 330px;
    padding: 11px;
  }

  .score {
    display: none;
  }

  .map-node {
    width: 105px;
  }

  .map-node-start { left: 8px; }
  .map-node-main { left: 50%; }
  .map-node-a,
  .map-node-b,
  .map-node-c { right: 8px; }

  .chain-ui-screen {
    min-height: 540px;
    grid-template-columns: 1fr;
    align-content: center;
  }

  .chain-line {
    width: 2px;
    height: 20px;
    margin: 0 auto;
  }

  .chain-split {
    flex-direction: row;
    gap: 5px;
  }

  .chain-split span {
    flex: 1;
  }

  .pricing-card {
    padding: 27px 20px;
    grid-template-columns: 1fr;
    gap: 22px;
  }

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

  .quick-start-v2 .quick-start-body {
    padding: 26px 18px;
    gap: 24px;
  }

  .quick-start-v2 .telegram-form {
    grid-template-columns: 1fr;
  }

  .quick-start-v2 .telegram-submit {
    width: 100%;
  }

  .final-cta {
    margin-top: 76px;
    padding: 28px 20px;
    align-items: flex-start;
    flex-direction: column;
  }

  .final-cta .button {
    width: 100%;
  }

  .legal-footer {
    padding-bottom: 20px;
  }
}

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