@font-face {
  font-family: "Source Sans 3";
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url("/fonts/source-sans-3-latin-ext-300-normal.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: "Source Sans 3";
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url("/fonts/source-sans-3-latin-300-normal.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Source Sans 3";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("/fonts/source-sans-3-latin-ext-500-normal.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: "Source Sans 3";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("/fonts/source-sans-3-latin-500-normal.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Source Sans 3";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("/fonts/source-sans-3-latin-ext-600-normal.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: "Source Sans 3";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("/fonts/source-sans-3-latin-600-normal.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  color-scheme: dark;
  --v2-bg: #111315;
  --v2-bg-soft: #171a1d;
  --v2-panel: #1d2125;
  --v2-panel-2: #252a2f;
  --v2-line: rgba(255, 255, 255, 0.11);
  --v2-text: #f5f7f8;
  --v2-muted: #aeb7bd;
  --v2-accent: #ead84d;
  --v2-accent-dark: #211d06;
  --v2-green: #68d391;
  --v2-yellow: #f5c451;
  --v2-max: 1180px;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--v2-bg);
  color: var(--v2-text);
  font-family: "Source Sans 3", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

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

.v2-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: 72px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 0 max(24px, calc((100vw - var(--v2-max)) / 2));
  border-bottom: 1px solid transparent;
  background: rgba(17, 19, 21, 0.72);
  backdrop-filter: blur(14px);
  transition: background 180ms ease, border-color 180ms ease;
}

.v2-header.is-scrolled {
  background: rgba(17, 19, 21, 0.94);
  border-color: var(--v2-line);
}

.v2-brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  width: fit-content;
  text-decoration: none;
}

.v2-brand img {
  width: 154px;
  height: auto;
}

.v2-preview-label {
  padding: 3px 8px;
  border: 1px solid rgba(213, 237, 74, 0.45);
  border-radius: 999px;
  color: var(--v2-accent);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.v2-nav {
  display: flex;
  gap: 30px;
}

.v2-nav a,
.v2-header-login {
  color: #d7dde1;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}

.v2-nav a:hover,
.v2-header-login:hover {
  color: #fff;
}

.v2-header-login {
  padding: 8px 14px;
  border: 1px solid var(--v2-line);
  border-radius: 7px;
}

.v2-header-tools {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 12px;
}

.v2-lang-switch {
  display: inline-flex;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 6px;
}

.v2-lang-switch button {
  min-width: 29px;
  height: 29px;
  padding: 0 6px;
  border: 0;
  border-right: 1px solid rgba(255,255,255,.1);
  background: transparent;
  color: #aeb7bd;
  font: inherit;
  font-size: 10px;
  font-weight: 600;
  cursor: pointer;
}

.v2-lang-switch button:last-child { border-right: 0; }
.v2-lang-switch button:hover { background: rgba(255,255,255,.07); color: #fff; }
.v2-lang-switch button.is-active { background: rgba(234,216,77,.16); color: var(--v2-accent); }

.v2-hero {
  position: relative;
  overflow: hidden;
  min-height: 760px;
  padding: 160px max(24px, calc((100vw - var(--v2-max)) / 2)) 80px;
  background:
    radial-gradient(circle at 74% 35%, rgba(213, 237, 74, 0.11), transparent 31%),
    radial-gradient(circle at 22% 14%, rgba(255, 255, 255, 0.045), transparent 27%),
    linear-gradient(180deg, #15181b 0%, var(--v2-bg) 100%);
}

.v2-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(to bottom, black, transparent 78%);
}

.v2-hero-copy {
  position: relative;
  z-index: 2;
  width: min(54%, 630px);
}

.v2-eyebrow {
  margin: 0 0 16px;
  color: var(--v2-accent);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.v2-hero h1 {
  max-width: 680px;
  margin: 0;
  font-size: clamp(48px, 5.2vw, 76px);
  font-weight: 300;
  letter-spacing: -0.035em;
  line-height: 0.98;
}

.v2-hero-lead {
  max-width: 620px;
  margin: 28px 0 0;
  color: #c9d0d5;
  font-size: clamp(19px, 2vw, 23px);
  line-height: 1.48;
}

.v2-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.v2-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 7px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 150ms ease, background 150ms ease, border-color 150ms ease;
}

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

.v2-button--primary {
  background: var(--v2-accent);
  color: #161a05;
  box-shadow: 0 12px 32px rgba(213, 237, 74, 0.12);
}

.v2-button--primary:hover {
  background: #e1f65f;
}

.v2-button--ghost {
  border-color: rgba(255,255,255,.17);
  background: rgba(255,255,255,.035);
  color: #eef1f2;
}

.v2-trust-line {
  margin: 17px 0 0;
  color: #8f999f;
  font-size: 14px;
}

.v2-trust-line span:first-child {
  color: var(--v2-accent);
  margin-right: 5px;
}

.v2-product-stage {
  position: absolute;
  z-index: 1;
  top: 150px;
  left: calc(50% + 20px);
  width: min(650px, 47vw);
  height: 450px;
  perspective: 1200px;
}

.v2-monitor {
  position: relative;
  width: 100%;
  transform: rotateY(-5deg) rotateX(1.5deg);
  transform-origin: left center;
}

.v2-product-window {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: auto;
  border: 8px solid #0b0d0f;
  border-bottom-width: 14px;
  border-radius: 9px 9px 7px 7px;
  background: #20252a;
  box-shadow:
    0 35px 80px rgba(0,0,0,.48),
    inset 0 0 0 1px rgba(255,255,255,.08);
}

.v2-product-window > img {
  display: block;
  width: 100%;
  height: auto;
}

.v2-product-window::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  transform: translateX(-50%);
  background: rgba(234,216,77,.72);
  box-shadow: 0 0 7px rgba(234,216,77,.32);
}

.v2-monitor__stand {
  position: relative;
  z-index: -1;
  width: 52px;
  height: 38px;
  margin: -1px auto 0;
  background: linear-gradient(90deg, #111416, #31363a 48%, #111416);
  box-shadow: 0 8px 18px rgba(0,0,0,.28);
}

.v2-monitor__stand::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -10px;
  width: 190px;
  height: 14px;
  border-radius: 50% 50% 6px 6px;
  transform: translateX(-50%);
  background: linear-gradient(180deg, #34393d, #0c0e10 72%);
  clip-path: polygon(18% 0, 82% 0, 100% 100%, 0 100%);
  box-shadow: 0 9px 18px rgba(0,0,0,.35);
}

.v2-product-window__bar {
  height: 42px;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0 14px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  background: #30353a;
  color: #aeb6bb;
  font-size: 12px;
}

.v2-product-window__bar span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #646b70;
}

.v2-product-window__bar strong {
  margin-left: 10px;
  font-weight: 600;
}

.v2-product-window__body {
  display: grid;
  grid-template-columns: 165px 1fr;
  height: calc(100% - 42px);
}

.v2-product-sidebar {
  padding: 20px 16px;
  border-right: 1px solid rgba(255,255,255,.08);
  background: #292e33;
}

.v2-ui-label {
  margin: 0 0 4px;
  color: #7f898f;
  font-size: 10px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.v2-product-sidebar > strong {
  display: block;
  margin-bottom: 24px;
  font-size: 14px;
}

.v2-ui-field {
  margin-bottom: 9px;
  padding: 9px;
  border-radius: 5px;
  background: #1f2428;
  font-size: 10px;
}

.v2-ui-field span,
.v2-ui-field b {
  display: block;
}

.v2-ui-field span { color: #849097; }
.v2-ui-field b { margin-top: 2px; color: #ecf0f2; font-size: 12px; }

.v2-ui-status {
  margin-top: 24px;
  color: #bfc6ca;
  font-size: 10px;
}

.v2-ui-status span {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 5px;
  border-radius: 50%;
  background: var(--v2-accent);
  box-shadow: 0 0 12px rgba(234,216,77,.65);
}

.v2-floorplan {
  display: grid;
  place-items: center;
  padding: 26px;
  background: #191d20;
}

.v2-room {
  position: relative;
  width: 390px;
  height: 250px;
  border: 3px solid #98a2a8;
  background: #252a2e;
}

.v2-room::before {
  content: "";
  position: absolute;
  top: -3px;
  left: 88px;
  width: 62px;
  border-top: 3px solid #252a2e;
}

.v2-desk {
  position: absolute;
  width: 90px;
  height: 42px;
  border: 1px solid #566168;
  border-radius: 3px;
  background: #30373c;
}

.v2-desk--one { top: 45px; right: 35px; }
.v2-desk--two { right: 35px; bottom: 45px; }

.v2-grid {
  position: absolute;
  inset: 22px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(3, 1fr);
}

.v2-grid::before,
.v2-grid::after {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(90deg, rgba(234,216,77,.18) 0 1px, transparent 1px 25%);
  pointer-events: none;
}

.v2-grid::after {
  background: repeating-linear-gradient(0deg, rgba(234,216,77,.18) 0 1px, transparent 1px 33.333%);
}

.v2-grid i {
  position: relative;
  align-self: center;
  justify-self: center;
  width: 10px;
  height: 10px;
  border: 2px solid var(--v2-accent);
  border-radius: 50%;
  background: #202528;
  z-index: 1;
}

.v2-grid i::after {
  content: attr(data-value);
  position: absolute;
  top: 9px;
  left: 50%;
  transform: translateX(-50%);
  color: #d9e0e3;
  font: normal 8px/1 sans-serif;
}

.v2-phone {
  position: absolute;
  right: 2%;
  bottom: 0;
  width: 156px;
  height: auto;
  aspect-ratio: 9 / 19.5;
  padding: 4px;
  overflow: visible;
  border: 2px solid #747c84;
  border-radius: 31px;
  background: linear-gradient(90deg, #202428 0%, #8c949c 4%, #1a1d20 9%, #111315 91%, #747b82 96%, #202428 100%);
  box-shadow:
    0 30px 60px rgba(0,0,0,.55),
    inset 0 0 0 1px rgba(255,255,255,.28),
    inset 0 0 0 3px #080a0b;
  text-align: center;
}

.v2-phone__screen {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border: 3px solid #07090a;
  border-radius: 24px;
  background: #1c2023;
}

.v2-phone__screen > img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.v2-phone::before {
  content: "";
  position: absolute;
  z-index: 4;
  top: 12px;
  left: 50%;
  width: 10px;
  height: 10px;
  border: 2px solid #202428;
  border-radius: 50%;
  transform: translateX(-50%);
  background: radial-gradient(circle at 42% 38%, #263f58 0 18%, #080a0c 24% 100%);
  box-shadow: 0 0 0 1px rgba(0,0,0,.85);
}

.v2-phone::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: 72px;
  right: -5px;
  width: 4px;
  height: 40px;
  border-radius: 0 3px 3px 0;
  background: linear-gradient(90deg, #171a1d, #777f87);
  box-shadow: 0 53px 0 #4f565d;
}

.v2-phone__speaker {
  position: absolute;
  top: 8px;
  left: 50%;
  width: 38px;
  height: 4px;
  border-radius: 5px;
  transform: translateX(-50%);
  background: #0b0d0e;
}

.v2-phone p { margin: 12px 0 0; color: #8f999f; font-size: 10px; }
.v2-phone > strong { display: block; font-size: 13px; }
.v2-phone__value { margin: 34px 0; color: #fff; font-size: 32px; font-weight: 600; }
.v2-phone__value small { color: #9ba4aa; font-size: 12px; }
.v2-phone button { width: 100%; padding: 10px 3px; border: 0; border-radius: 5px; background: var(--v2-accent); color: #171b06; font-size: 10px; font-weight: 700; }

.v2-flow {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  width: min(100%, var(--v2-max));
  margin: 100px auto 0;
  padding: 0;
  border: 1px solid var(--v2-line);
  border-radius: 9px;
  background: rgba(28,32,35,.76);
  list-style: none;
  backdrop-filter: blur(12px);
}

.v2-flow li {
  position: relative;
  padding: 17px 20px;
  border-right: 1px solid var(--v2-line);
  color: #e5eaed;
  font-size: 15px;
  font-weight: 600;
}

.v2-flow li:last-child { border: 0; }
.v2-flow li:not(:last-child)::after { content: "→"; position: absolute; top: 50%; right: -8px; z-index: 1; color: var(--v2-accent); transform: translateY(-50%); }
.v2-flow span { margin-right: 8px; color: #667078; font-size: 11px; }
.v2-flow b { font-weight: 600; }

.v2-section {
  width: 100%;
  padding: 110px max(24px, calc((100vw - var(--v2-max)) / 2));
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 500ms ease, transform 500ms ease;
}

.v2-section.is-visible,
.v2-step.is-visible {
  opacity: 1;
  transform: none;
}

.v2-section-heading {
  max-width: 720px;
}

.v2-section-heading h2,
.v2-field-copy h2,
.v2-result-copy h2,
.v2-pricing-heading h2,
.v2-trial h2 {
  margin: 0;
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 300;
  letter-spacing: -0.025em;
  line-height: 1.08;
}

.v2-section-heading > p:last-child,
.v2-field-copy > p,
.v2-result-copy > p,
.v2-trial > div > p:last-child {
  color: var(--v2-muted);
  font-size: 19px;
}

.v2-section--workflow {
  background: #f1f2ef;
  color: #202427;
}

.v2-section--workflow .v2-eyebrow { color: #7d7118; }
.v2-section--workflow .v2-section-heading > p:last-child { color: #5b6368; }

.v2-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  margin-top: 58px;
}

.v2-step {
  position: relative;
  min-width: 0;
  padding: 18px;
  border: 1px solid #d7dcd9;
  border-radius: 10px;
  background: #fff;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 450ms ease, transform 450ms ease, box-shadow 180ms ease;
}

.v2-step:nth-child(2) { transition-delay: 70ms; }
.v2-step:nth-child(3) { transition-delay: 140ms; }
.v2-step:nth-child(4) { transition-delay: 210ms; }
.v2-step:nth-child(5) { transition-delay: 280ms; }
.v2-step:hover { box-shadow: 0 16px 34px rgba(28,35,31,.08); }

.v2-step-number { color: #889096; font-size: 12px; font-weight: 700; }
.v2-step h3 { margin: 19px 0 8px; font-size: 19px; line-height: 1.2; }
.v2-step p { margin: 0; color: #697176; font-size: 15px; line-height: 1.45; }

.v2-step-visual {
  height: 125px;
  display: grid;
  place-items: center;
  margin-top: 14px;
  border-radius: 7px;
  background: #edf0ed;
}

.v2-mini-room {
  position: relative;
  width: 118px;
  height: 74px;
  border: 3px solid #687279;
  background: #fafbf9;
}

.v2-mini-room::before { content: ""; position: absolute; top: -3px; left: 21px; width: 23px; border-top: 3px solid #edf0ed; }
.v2-mini-room span { position: absolute; border: 1px solid #afb7b4; background: #dfe3e0; }
.v2-mini-room span:nth-child(1) { width: 32px; height: 18px; top: 12px; right: 12px; }
.v2-mini-room span:nth-child(2) { width: 32px; height: 18px; right: 12px; bottom: 12px; }
.v2-mini-room span:nth-child(3) { width: 21px; height: 21px; left: 15px; bottom: 15px; border-radius: 50%; }

.v2-mini-grid { width: 128px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 17px; }
.v2-mini-grid i { width: 8px; height: 8px; border: 2px solid #829414; border-radius: 50%; background: #fff; }
.v2-step-visual--measure { align-content: center; gap: 4px; background: #252b2f; color: #fff; }
.v2-measure-value { font-size: 29px; font-weight: 600; }
.v2-measure-value small { color: #9ca5aa; font-size: 12px; }
.v2-step-visual--measure span { color: #a8b0b5; font-size: 11px; }
.v2-step-visual--result { grid-template-columns: 1fr 1fr; padding: 13px; background: #252b2f; color: #fff; }
.v2-step-visual--result div { padding: 12px 6px; text-align: center; }
.v2-step-visual--result div + div { border-left: 1px solid rgba(255,255,255,.12); }
.v2-step-visual--result small, .v2-step-visual--result strong { display: block; }
.v2-step-visual--result small { color: #9ca5aa; }
.v2-step-visual--result strong { color: var(--v2-accent); }

.v2-mini-page { position: relative; width: 76px; height: 98px; padding: 12px 9px; background: #fff; box-shadow: 0 7px 18px rgba(0,0,0,.12); }
.v2-mini-page b { display: block; margin-bottom: 11px; color: #30363a; font-size: 7px; }
.v2-mini-page span { display: block; height: 3px; margin: 5px 0; background: #d8ddda; }
.v2-mini-page span:nth-of-type(2) { width: 74%; }
.v2-mini-page em { position: absolute; right: 5px; bottom: 5px; padding: 2px 4px; background: #30363a; color: #fff; font-size: 6px; font-style: normal; }

.v2-section--field {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 100px;
  overflow: hidden;
  background: #171a1d;
}

.v2-field-visual {
  position: relative;
  width: min(100%, 640px);
  min-height: 0;
  justify-self: center;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.v2-field-photo {
  position: relative;
  width: 100%;
  aspect-ratio: 1672 / 941;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 14px;
  background: #202326;
  box-shadow: 0 34px 80px rgba(0,0,0,.45);
}

.v2-field-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.v2-field-phone {
  width: 224px;
  min-height: 0;
  aspect-ratio: 945 / 2048;
  padding: 4px;
  overflow: hidden;
  border: 2px solid #747c84;
  border-radius: 31px;
  background: linear-gradient(90deg, #202428 0%, #8c949c 4%, #1a1d20 9%, #111315 91%, #747b82 96%, #202428 100%);
  box-shadow:
    0 34px 80px rgba(0,0,0,.62),
    0 10px 28px rgba(0,0,0,.42),
    inset 0 0 0 1px rgba(255,255,255,.26),
    inset 0 0 0 3px #080a0b;
}

.v2-field-phone__screen {
  width: 100%;
  height: 100%;
  overflow: hidden;
  border: 3px solid #07090a;
  border-radius: 24px;
  background: #111315;
}

.v2-field-phone__screen img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.v2-field-phone__top { padding: 24px 18px 15px; border-bottom: 1px solid var(--v2-line); color: #c9d0d4; font-size: 13px; }
.v2-field-phone__map { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; padding: 45px 26px; background-image: linear-gradient(rgba(234,216,77,.06) 1px, transparent 1px), linear-gradient(90deg, rgba(234,216,77,.06) 1px, transparent 1px); background-size: 42px 42px; }
.v2-field-phone__map span { display: grid; place-items: center; width: 23px; height: 23px; border: 1px solid #89939a; border-radius: 50%; color: #9aa3a8; font-size: 9px; }
.v2-field-phone__map .is-done { border-color: #766b1e; background: #443f15; color: #f0e58a; }
.v2-field-phone__map .is-active { border: 3px solid var(--v2-accent); background: #262b2e; color: #fff; box-shadow: 0 0 0 6px rgba(234,216,77,.12); }
.v2-field-phone__entry { margin: 0 18px; padding: 17px; border-radius: 8px; background: #191d20; text-align: center; }
.v2-field-phone__entry small, .v2-field-phone__entry b { display: block; }
.v2-field-phone__entry small { color: #8c969c; }
.v2-field-phone__entry b { font-size: 27px; }

.v2-field-stat {
  position: absolute;
  right: 6%;
  bottom: 13%;
  min-width: 168px;
  padding: 16px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 9px;
  background: rgba(44,49,53,.91);
  box-shadow: 0 18px 35px rgba(0,0,0,.35);
}
.v2-field-stat span, .v2-field-stat strong, .v2-field-stat small { display: block; }
.v2-field-stat span { color: #8e989e; font-size: 10px; text-transform: uppercase; }
.v2-field-stat strong { margin: 4px 0; color: var(--v2-accent); font-size: 20px; }
.v2-field-stat small { color: #d3d9dc; }

.v2-check-list { margin: 32px 0 0; padding: 0; list-style: none; }
.v2-check-list li { position: relative; margin: 14px 0; padding-left: 30px; color: #d5dbde; }
.v2-check-list li::before { content: "✓"; position: absolute; left: 0; color: var(--v2-accent); font-weight: 700; }

.v2-section--result {
  min-height: 740px;
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  align-items: center;
  gap: 90px;
  background: #eef0ed;
  color: #22272a;
}

.v2-section--result .v2-eyebrow { color: #7d7118; }
.v2-section--result .v2-result-copy > p { color: #5f686d; }
.v2-result-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 30px; }
.v2-result-tags span { padding: 7px 11px; border: 1px solid #cbd1cd; border-radius: 999px; background: rgba(255,255,255,.55); color: #4c555a; font-size: 13px; }

.v2-report-stack { position: relative; min-height: 560px; }
.v2-report-page { --v2-page-rotation: 0deg; position: absolute; width: 335px; aspect-ratio: 1076 / 1522; margin: 0; padding: 0; overflow: hidden; border: 1px solid #d8dcd9; border-radius: 3px; background: #fff; box-shadow: 0 18px 38px rgba(37,44,40,.14); cursor: pointer; transform: rotate(var(--v2-page-rotation)); transition: left .48s cubic-bezier(.22,.7,.2,1), top .48s cubic-bezier(.22,.7,.2,1), transform .48s cubic-bezier(.22,.7,.2,1), box-shadow .32s ease; }
.v2-report-page img { display: block; width: 100%; height: 100%; object-fit: contain; }
.v2-report-page:nth-child(1) { --v2-page-rotation: 6deg; top: 0; left: 190px; z-index: 1; }
.v2-report-page:nth-child(2) { --v2-page-rotation: 3deg; top: 22px; left: 130px; z-index: 2; }
.v2-report-page:nth-child(3) { --v2-page-rotation: 0deg; top: 45px; left: 68px; z-index: 3; }
.v2-report-page:nth-child(4) { --v2-page-rotation: -3deg; top: 68px; left: 8px; z-index: 4; box-shadow: 0 30px 60px rgba(37,44,40,.2); }
.v2-report-page:hover { transform: translateY(-6px) rotate(var(--v2-page-rotation)); }
.v2-report-stack.is-expanded::before { content: ""; position: fixed; inset: 0; z-index: 1000; background: rgba(15,20,18,.56); backdrop-filter: blur(3px); }
.v2-report-page.is-expanded,
.v2-report-page.is-expanded:hover { position: fixed; top: 50%; left: 50%; z-index: 1001; width: min(610px, calc(100vw - 40px), 60vh); transform: translate(-50%, -50%) rotate(0deg); box-shadow: 0 42px 110px rgba(0,0,0,.42); cursor: zoom-out; }
.v2-report-page:focus-visible { outline: 3px solid var(--v2-accent); outline-offset: 5px; }
@media (prefers-reduced-motion: reduce) { .v2-report-page { transition: none; } }

.v2-section--fit { background: var(--v2-bg); }
.v2-benefit-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 55px; }
.v2-benefit-grid article { padding: 28px; border: 1px solid var(--v2-line); border-radius: 10px; background: var(--v2-bg-soft); }
.v2-benefit-grid span { color: var(--v2-accent); font-size: 12px; font-weight: 700; }
.v2-benefit-grid h3 { margin: 25px 0 8px; font-size: 22px; }
.v2-benefit-grid p { margin: 0; color: var(--v2-muted); }

.v2-section--demo { background: #171a1d; }
.v2-video-shell { position: relative; overflow: hidden; aspect-ratio: 16 / 8.5; max-width: 1040px; margin: 52px auto 0; border: 1px solid var(--v2-line); border-radius: 14px; background: #0a0b0c; box-shadow: 0 28px 70px rgba(0,0,0,.32); }
.v2-video-shell video { width: 100%; height: 100%; display: none; object-fit: contain; }
.v2-video-shell video.is-ready { display: block; }
.v2-video-fallback { position: absolute; inset: 0; display: grid; place-content: center; gap: 10px; text-align: center; background: radial-gradient(circle, #252b2f, #111315 70%); }
.v2-video-fallback[hidden] { display: none; }
.v2-video-fallback__play { width: 68px; height: 68px; display: grid; place-items: center; margin: 0 auto 12px; border-radius: 50%; background: var(--v2-accent); color: #151904; padding-left: 4px; }
.v2-video-fallback strong { font-size: 21px; }
.v2-video-fallback span { color: var(--v2-muted); font-size: 14px; }

.v2-section--pricing {
  background: #111315;
}

.v2-pricing-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, .9fr);
  align-items: end;
  gap: 70px;
}

.v2-pricing-heading h2 {
  max-width: 650px;
}

.v2-pricing-lead {
  margin: 0 0 7px;
  color: var(--v2-muted);
  font-size: 15px;
}

.v2-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 58px;
}

.v2-pricing-card {
  position: relative;
  min-height: 300px;
  padding: 30px;
  border: 1px solid var(--v2-line);
  border-radius: 12px;
  background: #1a1e21;
}

.v2-pricing-card--featured {
  border-color: rgba(213, 237, 74, .62);
  background: linear-gradient(180deg, rgba(234,216,77,.075), transparent 45%), #1a1e21;
  box-shadow: 0 18px 55px rgba(0,0,0,.22);
}

.v2-pricing-card__badge {
  position: absolute;
  top: 19px;
  right: 19px;
  padding: 4px 8px;
  border-radius: 999px;
  background: var(--v2-accent);
  color: #171b06;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.v2-pricing-card__kicker {
  margin: 0 0 7px;
  color: #858f95;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.v2-pricing-card h3 {
  margin: 0;
  font-size: 30px;
  font-weight: 500;
}

.v2-pricing-card__seats {
  margin: 5px 0 38px;
  color: var(--v2-muted);
  font-size: 14px;
}

.v2-pricing-price {
  margin: 0;
  color: var(--v2-accent);
  font-size: clamp(25px, 2.6vw, 34px);
  font-weight: 600;
  line-height: 1.15;
}

.v2-pricing-compare {
  display: flex;
  align-items: baseline;
  gap: 9px;
  margin: 12px 0 0;
  color: #828c92;
  font-size: 13px;
}

.v2-pricing-compare[hidden] {
  display: none;
}

.v2-pricing-compare del {
  color: #b1b9bd;
}

.v2-pricing-addon {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
  margin-top: 16px;
  padding: 25px 30px;
  border: 1px solid var(--v2-line);
  border-radius: 12px;
  background: #171a1d;
}

.v2-pricing-addon[hidden] {
  display: none;
}

.v2-pricing-addon > div:first-child > span {
  color: var(--v2-accent);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.v2-pricing-addon h3 {
  margin: 5px 0 1px;
  font-size: 22px;
}

.v2-pricing-addon > div:first-child > p {
  margin: 0;
  color: var(--v2-muted);
  font-size: 14px;
}

.v2-pricing-addon__price {
  min-width: 270px;
  text-align: right;
}

.v2-pricing-addon__price .v2-pricing-price {
  display: block;
  font-size: 25px;
}

.v2-pricing-addon__price .v2-pricing-compare {
  justify-content: flex-end;
}

.v2-pricing-footer {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid var(--v2-line);
}

.v2-pricing-footer p {
  margin: 0 0 10px;
  color: #929ca2;
  font-size: 13px;
}

.v2-pricing-footer .v2-button {
  width: fit-content;
  margin-top: 9px;
}

.v2-section--trial {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  align-items: center;
  gap: 70px;
  background: var(--v2-accent);
  color: #171b06;
}
.v2-section--trial .v2-eyebrow { color: #56640a; }
.v2-section--trial .v2-trial > div > p:last-child,
.v2-section--trial > div > p:last-child { color: #4e570e; }
.v2-trial-action { display: flex; flex-direction: column; align-items: flex-start; gap: 13px; }
.v2-section--trial .v2-button--primary { background: #191d0b; color: #f1f6c2; box-shadow: none; }
.v2-section--trial .v2-button--primary:hover { background: #090b03; }
.v2-button--large { min-height: 56px; padding-inline: 29px; font-size: 18px; }
.v2-trial-action span { color: #5e6813; font-size: 13px; }

.v2-footer {
  min-height: 150px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
  padding: 40px max(24px, calc((100vw - var(--v2-max)) / 2));
  background: #0c0e0f;
}
.v2-footer img { width: 150px; height: auto; }
.v2-footer nav { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 12px 24px; }
.v2-footer a { color: #89939a; font-size: 13px; text-decoration: none; }
.v2-footer a:hover { color: #fff; }

@media (max-width: 1040px) {
  .v2-header { grid-template-columns: 1fr auto; }
  .v2-nav { display: none; }
  .v2-hero { padding-top: 135px; }
  .v2-hero-copy { width: 65%; }
  .v2-product-stage { left: 44%; width: min(600px, 54vw); opacity: .92; }
  .v2-phone { right: auto; left: 18%; }
  .v2-flow { margin-top: 115px; }
  .v2-steps { grid-template-columns: repeat(2, 1fr); }
  .v2-step:last-child { grid-column: 1 / -1; }
  .v2-section--field, .v2-section--result { gap: 50px; }
  .v2-report-stack { transform: scale(.86); transform-origin: left center; }
}

@media (max-width: 760px) {
  body { font-size: 16px; }
  .v2-header { height: 64px; padding-inline: 18px; }
  .v2-brand { gap: 8px; }
  .v2-brand img { width: 126px; }
  .v2-preview-label { display: none; }
  .v2-header-tools { gap: 6px; }
  .v2-lang-switch button { min-width: 22px; height: 26px; padding: 0 3px; font-size: 8px; }
  .v2-header-login { padding: 6px 8px; font-size: 12px; }
  .v2-hero { min-height: auto; padding: 115px 20px 55px; }
  .v2-hero-copy { width: 100%; }
  .v2-hero h1 { font-size: clamp(45px, 14vw, 62px); }
  .v2-hero-lead { font-size: 18px; }
  .v2-actions { flex-direction: column; }
  .v2-button { width: 100%; }
  .v2-product-stage { position: relative; inset: auto; width: 110%; height: 280px; margin: 60px 0 0; opacity: 1; }
  .v2-monitor { transform: none; }
  .v2-product-window { height: auto; }
  .v2-product-window__body { grid-template-columns: 105px 1fr; }
  .v2-product-sidebar { padding: 13px 9px; }
  .v2-product-sidebar > strong { font-size: 10px; }
  .v2-floorplan { padding: 13px; }
  .v2-room { width: 285px; height: 185px; }
  .v2-phone { right: -3%; left: auto; width: 110px; height: auto; padding: 3px; border-width: 2px; border-radius: 24px; }
  .v2-phone__screen { border-width: 2px; border-radius: 18px; }
  .v2-phone::before { top: 9px; width: 8px; height: 8px; border-width: 1px; }
  .v2-phone__value { margin: 20px 0; font-size: 24px; }
  .v2-flow { grid-template-columns: 1fr; margin-top: 38px; }
  .v2-flow li { border-right: 0; border-bottom: 1px solid var(--v2-line); }
  .v2-flow li:not(:last-child)::after { top: auto; right: 18px; bottom: -12px; transform: rotate(90deg); }
  .v2-section { padding: 76px 20px; }
  .v2-section-heading h2, .v2-field-copy h2, .v2-result-copy h2, .v2-pricing-heading h2, .v2-trial h2 { font-size: 36px; }
  .v2-steps { grid-template-columns: 1fr; }
  .v2-step:last-child { grid-column: auto; }
  .v2-section--field, .v2-section--result, .v2-section--trial { grid-template-columns: 1fr; }
  .v2-section--field { gap: 58px; }
  .v2-field-visual { width: 100%; min-height: 0; order: 2; }
  .v2-field-stat { right: 2%; }
  .v2-section--result { min-height: auto; gap: 45px; overflow: hidden; }
  .v2-report-stack { width: 520px; margin-left: -15px; transform: scale(.72); transform-origin: top left; margin-bottom: -140px; }
  .v2-benefit-grid { grid-template-columns: 1fr; }
  .v2-video-shell { aspect-ratio: 4 / 3; }
  .v2-pricing-heading { grid-template-columns: 1fr; gap: 22px; }
  .v2-pricing-grid { grid-template-columns: 1fr; }
  .v2-pricing-card { min-height: 260px; }
  .v2-pricing-addon { align-items: flex-start; flex-direction: column; }
  .v2-pricing-addon__price { min-width: 0; text-align: left; }
  .v2-pricing-addon__price .v2-pricing-compare { justify-content: flex-start; }
  .v2-pricing-footer { grid-template-columns: 1fr; gap: 16px; }
  .v2-pricing-footer .v2-button { width: 100%; }
  .v2-section--trial { gap: 35px; }
  .v2-footer { align-items: flex-start; flex-direction: column; }
  .v2-footer nav { justify-content: flex-start; }
}

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