@font-face {
  font-family: "Manrope Local";
  src: url("../fonts/manrope-400.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "Manrope Local";
  src: url("../fonts/manrope-600.ttf") format("truetype");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}
@font-face {
  font-family: "Manrope Local";
  src: url("../fonts/manrope-800.ttf") format("truetype");
  font-style: normal;
  font-weight: 800;
  font-display: swap;
}
@font-face {
  font-family: "Unbounded Local";
  src: url("../fonts/unbounded-500.ttf") format("truetype");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: "Unbounded Local";
  src: url("../fonts/unbounded-700.ttf") format("truetype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

:root {
  --black: #07090d;
  --graphite: #0d1118;
  --graphite-2: #151b26;
  --ink: #111827;
  --text: #3f4857;
  --muted: #7b8595;
  --silver: #c9d0da;
  --line: rgba(17, 24, 39, .13);
  --line-dark: rgba(255, 255, 255, .12);
  --ivory: #f2efe7;
  --paper: #faf9f6;
  --white: #ffffff;
  --indigo: #7167ff;
  --indigo-dark: #5248dd;
  --ice: #59d5ff;
  --champagne: #d4b478;
  --emerald: #3ec6a8;
  --display: "Unbounded Local", "Arial Black", sans-serif;
  --body: "Manrope Local", "Segoe UI", sans-serif;
  --shadow: 0 32px 90px rgba(3, 7, 18, .2);
  --shadow-soft: 0 24px 70px rgba(15, 23, 42, .1);
  --radius: 24px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  background: var(--paper);
  font: 400 16px/1.68 var(--body);
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button { color: inherit; }
.container { width: min(1180px, calc(100% - 48px)); margin-inline: auto; }
.narrow { max-width: 820px; }
.skip-link {
  position: fixed; left: 12px; top: -80px; z-index: 100;
  padding: 10px 16px; border-radius: 8px; background: var(--white); color: var(--black);
}
.skip-link:focus { top: 12px; }

.site-header {
  position: sticky; top: 0; z-index: 20;
  border-bottom: 1px solid var(--line-dark);
  background: rgba(7, 9, 13, .88);
  color: var(--white);
  backdrop-filter: blur(20px) saturate(140%);
}
.site-header .header-inner { transition: min-height .25s ease; }
.site-header.is-scrolled { background: rgba(7,9,13,.95); box-shadow: 0 12px 36px rgba(0,0,0,.18); }
.site-header.is-scrolled .header-inner { min-height: 68px; }
.header-inner { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.brand {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--display); font-size: 14px; font-weight: 700; letter-spacing: .02em;
}
.brand-mark {
  display: block; width: 40px; height: 40px;
  filter: drop-shadow(0 10px 18px rgba(113,103,255,.28));
}
.brand-mark img { display: block; width: 100%; height: 100%; }
.site-nav { display: flex; align-items: center; gap: 30px; color: #b9c0cc; font-size: 13px; font-weight: 600; }
.site-nav a { padding-block: 10px; transition: color .2s ease; }
.site-nav a:hover, .site-nav a:focus-visible { color: var(--white); }
.menu-button {
  display: none; padding: 8px 13px; border: 1px solid var(--line-dark);
  border-radius: 10px; background: rgba(255,255,255,.06); color: var(--white);
}

.motion-banner { position: relative; min-height: clamp(390px, 54vw, 670px); overflow: hidden; color: var(--white); background: #080a0f; }
.motion-banner-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; filter: saturate(.86) contrast(1.06) brightness(.72); transform: scale(1.02); }
.motion-banner-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(5,7,11,.92) 0%, rgba(5,7,11,.55) 48%, rgba(5,7,11,.12) 100%), linear-gradient(0deg, rgba(5,7,11,.52), transparent 55%); }
.motion-banner-content { position: relative; min-height: clamp(390px, 54vw, 670px); display: flex; align-items: end; justify-content: space-between; gap: 40px; padding-block: 68px; }
.motion-banner-content > div { max-width: 760px; }
.motion-banner-content .eyebrow { color: var(--ice); }
.motion-banner-content h1 { max-width: 900px; margin-bottom: 20px; color: var(--white); font-size: clamp(44px, 6vw, 78px); }
.motion-banner-content p:not(.eyebrow) { margin: 0; color: #aeb7c4; font-size: 18px; }
.video-toggle { flex: 0 0 auto; display: inline-flex; align-items: center; gap: 10px; min-height: 46px; padding: 9px 15px; border: 1px solid rgba(255,255,255,.2); border-radius: 999px; background: rgba(7,9,13,.62); color: var(--white); cursor: pointer; backdrop-filter: blur(14px); font-size: 12px; font-weight: 800; transition: background .2s ease, border-color .2s ease, transform .2s ease; }
.video-toggle:hover { transform: translateY(-2px); border-color: rgba(89,213,255,.48); background: rgba(7,9,13,.82); }
.video-toggle-icon { display: grid; width: 25px; height: 25px; place-items: center; border-radius: 50%; background: rgba(113,103,255,.28); color: var(--ice); font-size: 11px; }

.eyebrow {
  margin: 0 0 16px; color: var(--indigo);
  font-size: 11px; font-weight: 800; letter-spacing: .2em; text-transform: uppercase;
}
.demo-section .eyebrow, .catalog-section .eyebrow { color: var(--ice); }
h1, h2, h3 { margin-top: 0; color: var(--ink); line-height: 1.15; letter-spacing: -.04em; }
h1, h2 { font-family: var(--display); font-weight: 500; }
h1 { max-width: 780px; margin-bottom: 26px; color: var(--white); font-size: clamp(42px, 5.4vw, 70px); }
h2 { margin-bottom: 22px; font-size: clamp(32px, 4vw, 49px); }
h3 { margin-bottom: 10px; font-size: 21px; }
p { margin-top: 0; }
.hero-lead, .section-lead { font-size: clamp(18px, 2vw, 21px); line-height: 1.62; }
.hero-lead { max-width: 690px; color: #aeb7c6; }
.section-lead { color: #687386; }
.hero-actions, .product-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.button {
  display: inline-flex; min-height: 54px; align-items: center; justify-content: center;
  padding: 13px 23px; border: 1px solid transparent; border-radius: 14px;
  font-size: 14px; font-weight: 800;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button:focus-visible, button:focus-visible, summary:focus-visible, a:focus-visible {
  outline: 3px solid rgba(89,213,255,.45); outline-offset: 3px;
}
.button-primary {
  background: linear-gradient(120deg, var(--indigo) 0%, #665cf4 52%, #499dc6 125%);
  color: var(--white); box-shadow: 0 16px 42px rgba(93,84,231,.3);
}
.button-primary:hover { box-shadow: 0 20px 54px rgba(93,84,231,.42); }
.button-quiet { border-color: rgba(255,255,255,.2); background: rgba(255,255,255,.045); color: var(--white); }
.button-quiet:hover { border-color: rgba(255,255,255,.4); }
.button-dark { border-color: var(--black); background: var(--black); color: var(--white); }
.button-dark:hover { box-shadow: 0 16px 38px rgba(7,9,13,.22); }
.trust-list {
  display: flex; flex-wrap: wrap; gap: 16px 25px; margin: 34px 0 0; padding: 0;
  list-style: none; color: #8893a4; font-size: 12px; font-weight: 600; letter-spacing: .02em;
}
.trust-list li::before { content: "◆"; margin-right: 8px; color: var(--champagne); font-size: 8px; vertical-align: 2px; }

.profession-strip { padding: 22px 0; border-block: 1px solid var(--line); background: var(--ivory); }
.profession-strip .container { display: flex; align-items: center; gap: 22px; }
.profession-strip p { min-width: max-content; margin: 0; color: var(--ink); font-size: 13px; font-weight: 800; }
.profession-buttons { display: flex; overflow-x: auto; gap: 8px; padding: 2px; scrollbar-width: thin; }
.profession-buttons button {
  flex: 0 0 auto; padding: 8px 14px; cursor: pointer;
  border: 1px solid rgba(17,24,39,.14); border-radius: 999px;
  background: rgba(255,255,255,.7); font-size: 12px; font-weight: 600;
}
.profession-buttons button.active {
  border-color: var(--black); background: var(--black); color: var(--white);
  box-shadow: 0 8px 24px rgba(7,9,13,.16);
}

.section { padding: 112px 0; }
.section-warm { background: linear-gradient(145deg, var(--ivory), #faf9f5 72%); }
.demo-section {
  position: relative; overflow: hidden; color: #c7cfda;
  background:
    radial-gradient(circle at 84% 25%, rgba(113,103,255,.2), transparent 26%),
    linear-gradient(135deg, #0b0e14, #111827);
}
.demo-section h2, .catalog-section h2 { color: var(--white); }
.demo-section .section-lead { color: #9ba6b6; }
.demo-grid, .product-grid, .faq-layout {
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(360px, .78fr);
  gap: clamp(48px, 8vw, 102px); align-items: center;
}
.demo-form { display: grid; gap: 28px; margin-top: 42px; }
.demo-form label { display: grid; grid-template-columns: 1fr auto; gap: 11px; color: var(--white); font-size: 14px; font-weight: 600; }
.demo-form label span { color: #9da8b8; font-variant-numeric: tabular-nums; }
.demo-form input { grid-column: 1 / -1; width: 100%; accent-color: var(--indigo); }
.result-card {
  padding: clamp(32px, 5vw, 54px); border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(255,255,255,.11), rgba(255,255,255,.035));
  box-shadow: 0 32px 90px rgba(0,0,0,.3); backdrop-filter: blur(8px);
}
.result-card > span {
  display: inline-flex; padding: 6px 11px; border: 1px solid rgba(62,198,168,.3);
  border-radius: 999px; background: rgba(62,198,168,.1); color: #8ce1ce;
  font-size: 11px; font-weight: 800;
}
.result-card p { margin: 30px 0 5px; color: #aab3c0; }
.result-card strong { color: var(--white); font-size: clamp(48px, 6vw, 72px); line-height: 1; }
.result-scale { height: 7px; margin: 31px 0 21px; border-radius: 10px; background: rgba(255,255,255,.1); }
.result-scale span { display: block; height: 100%; border-radius: inherit; background: linear-gradient(90deg, var(--indigo), var(--ice)); box-shadow: 0 0 22px rgba(89,213,255,.32); }
.result-scale-default { width: 62%; }
.result-card small { color: #8792a2; }

.product-subtitle { color: var(--indigo-dark); font-size: 22px; font-weight: 600; }
.feature-list { display: grid; gap: 13px; margin: 27px 0 0; padding: 0; list-style: none; }
.feature-list li { position: relative; padding-left: 31px; }
.feature-list li::before { content: "◆"; position: absolute; left: 2px; color: var(--indigo); font-size: 10px; top: 7px; }
.feature-list-large { gap: 18px; font-size: 18px; }
.large-price { color: var(--ink); font-size: 29px; font-weight: 800; }
.contents-card {
  position: relative; overflow: hidden; padding: 40px;
  border: 1px solid rgba(17,24,39,.1); border-radius: var(--radius);
  background: rgba(255,255,255,.78); box-shadow: var(--shadow-soft); backdrop-filter: blur(10px);
}
.contents-card::before {
  content: ""; position: absolute; width: 170px; height: 170px; right: -65px; top: -70px;
  border-radius: 50%; background: rgba(113,103,255,.12); filter: blur(2px);
}
.format-chip, .status {
  display: inline-flex; padding: 6px 10px; border-radius: 999px;
  background: rgba(113,103,255,.1); color: var(--indigo-dark);
  font-size: 10px; font-weight: 800; letter-spacing: .11em; text-transform: uppercase;
}
.contents-card h3 { margin-top: 24px; }
.contents-card dl { margin: 25px 0 0; }
.contents-card dl div { display: flex; justify-content: space-between; gap: 20px; padding: 15px 0; border-top: 1px solid var(--line); }
.contents-card dt { color: var(--muted); }
.contents-card dd { margin: 0; color: var(--ink); font-weight: 800; }

.steps { counter-reset: premium-step; display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin: 48px 0 0; padding: 0; list-style: none; }
.steps li {
  position: relative; min-height: 236px; padding: 27px 23px;
  border: 1px solid var(--line); border-radius: 19px; background: rgba(255,255,255,.56);
  transition: transform .2s ease, box-shadow .2s ease;
}
.steps li:hover { transform: translateY(-4px); box-shadow: var(--shadow-soft); }
.steps span { color: var(--indigo); font-size: 12px; font-weight: 800; letter-spacing: .12em; }
.steps h3 { margin: 46px 0 10px; font-size: 18px; }
.steps p { margin: 0; color: var(--muted); font-size: 14px; }

.catalog-section {
  color: #bdc5d1;
  background:
    radial-gradient(circle at 12% 82%, rgba(89,213,255,.09), transparent 24%),
    linear-gradient(145deg, #080a0f, #111620);
}
.catalog-filter { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 32px; }
.catalog-filter button {
  padding: 9px 14px; border: 1px solid var(--line-dark); border-radius: 999px;
  background: rgba(255,255,255,.04); color: #aeb7c4; cursor: pointer;
  font-size: 12px; font-weight: 700;
}
.catalog-filter button:hover { border-color: rgba(255,255,255,.28); color: var(--white); }
.catalog-filter button.active {
  border-color: var(--indigo); background: var(--indigo); color: var(--white);
  box-shadow: 0 10px 30px rgba(113,103,255,.24);
}
.catalog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 46px; }
.catalog-card[hidden] { display: none; }
.catalog-card {
  min-height: 285px; display: flex; flex-direction: column; align-items: flex-start; padding: 27px;
  border: 1px solid var(--line-dark); border-radius: 19px;
  background: rgba(255,255,255,.035); backdrop-filter: blur(8px);
}
.catalog-card.featured {
  border-color: rgba(113,103,255,.48);
  background: linear-gradient(145deg, rgba(113,103,255,.2), rgba(255,255,255,.055));
  box-shadow: 0 24px 65px rgba(0,0,0,.25);
}
.catalog-card h3, .catalog-card strong { color: var(--white); }
.status { background: rgba(255,255,255,.08); color: #aeb7c4; }
.status.ready { background: rgba(62,198,168,.12); color: #82dfca; }
.catalog-card h3 { margin-top: 27px; font-size: 19px; }
.catalog-card p { color: #858f9f; font-size: 14px; }
.catalog-card > small { margin: 2px 0 18px; color: #687386; font-size: 10px; }
.catalog-card strong { margin-top: auto; font-size: 21px; }
.catalog-number { position: absolute; right: 24px; top: 22px; color: rgba(255,255,255,.18); font-family: var(--display); font-size: 22px; font-weight: 700; }
.catalog-card a { margin-top: 13px; color: var(--ice); font-size: 13px; font-weight: 800; }
.catalog-links { display: flex; flex-wrap: wrap; gap: 9px 16px; margin-top: 13px; }
.catalog-links a { margin-top: 0; }
.catalog-links a:last-child { color: #aeb7c4; }
.catalog-empty { margin: 36px 0 0; color: #909aaa; }

.demo-page {
  min-height: 75vh; padding: 76px 0 108px; color: #c6ced9;
  background:
    radial-gradient(circle at 82% 12%, rgba(113,103,255,.2), transparent 27%),
    radial-gradient(circle at 15% 78%, rgba(89,213,255,.08), transparent 24%),
    linear-gradient(145deg, #07090d, #111827);
}
.demo-back { display: inline-block; margin-bottom: 40px; color: #9da7b7; font-size: 13px; font-weight: 800; }
.demo-back:hover { color: var(--white); }
.demo-heading { display: flex; align-items: end; justify-content: space-between; gap: 36px; margin-bottom: 46px; }
.demo-heading > div { max-width: 780px; }
.demo-heading h1 { margin-bottom: 18px; font-size: clamp(38px, 5vw, 62px); }
.demo-heading p:not(.eyebrow) { margin: 0; color: #9ba6b6; font-size: 18px; }
.demo-format {
  flex: 0 0 auto; padding: 8px 12px; border: 1px solid var(--line-dark); border-radius: 999px;
  color: #aeb7c4; font-size: 11px; font-weight: 800; letter-spacing: .05em;
}
.demo-workspace {
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(360px, .78fr); gap: 18px;
  padding: 18px; border: 1px solid var(--line-dark); border-radius: 28px;
  background: rgba(255,255,255,.035); box-shadow: 0 35px 90px rgba(0,0,0,.28);
}
.demo-controls {
  display: grid; align-content: center; gap: 34px; min-height: 470px; padding: clamp(28px, 5vw, 56px);
  border-radius: 20px; background: rgba(255,255,255,.035);
}
.demo-controls label { display: grid; grid-template-columns: 1fr auto; gap: 12px; color: var(--white); font-size: 14px; font-weight: 600; }
.demo-controls label span { color: #9da8b8; font-variant-numeric: tabular-nums; }
.demo-controls input { grid-column: 1 / -1; width: 100%; accent-color: var(--indigo); }
.demo-result-panel {
  display: flex; min-height: 470px; flex-direction: column; justify-content: center;
  padding: clamp(32px, 5vw, 56px); border: 1px solid rgba(113,103,255,.28); border-radius: 20px;
  background: linear-gradient(145deg, rgba(113,103,255,.19), rgba(255,255,255,.05));
}
.demo-result-panel > span { color: #aeb7c4; font-size: 12px; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }
.demo-result-panel > strong { margin: 12px 0 34px; color: var(--white); font-size: clamp(56px, 7vw, 88px); line-height: 1; }
.demo-metric-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.demo-metric-grid div { padding: 17px; border: 1px solid var(--line-dark); border-radius: 14px; background: rgba(7,9,13,.24); }
.demo-metric-grid small { display: block; min-height: 36px; color: #8893a3; line-height: 1.35; }
.demo-metric-grid b { display: block; margin-top: 8px; color: var(--white); font-size: 20px; }
.demo-meter {
  width: 100%; height: 7px; margin: 30px 0 20px; overflow: hidden;
  border: 0; border-radius: 10px; background: rgba(255,255,255,.1);
  appearance: none;
}
.demo-meter::-webkit-progress-bar { border-radius: 10px; background: rgba(255,255,255,.1); }
.demo-meter::-webkit-progress-value { border-radius: 10px; background: linear-gradient(90deg, var(--indigo), var(--ice)); transition: width .25s ease; }
.demo-meter::-moz-progress-bar { border-radius: 10px; background: linear-gradient(90deg, var(--indigo), var(--ice)); }
.demo-result-panel p { margin: 0; color: #929cac; font-size: 13px; }
.demo-upgrade {
  display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 42px;
  margin-top: 74px; padding-top: 52px; border-top: 1px solid var(--line-dark);
}
.demo-upgrade h2 { margin-bottom: 14px; color: var(--white); font-size: clamp(28px, 3.6vw, 42px); }
.demo-upgrade p:not(.eyebrow) { max-width: 700px; margin: 0; color: #8f99a9; }

.faq-layout { align-items: start; }
.faq-list details { border-top: 1px solid var(--line); }
.faq-list details:last-child { border-bottom: 1px solid var(--line); }
.faq-list summary { cursor: pointer; padding: 21px 34px 21px 0; color: var(--ink); font-weight: 800; }
.faq-list details p { padding: 0 0 21px; color: var(--muted); }

.page-hero { padding: 96px 0 76px; background: linear-gradient(145deg, var(--ivory), var(--paper)); }
.page-hero h1 { margin-top: 20px; color: var(--ink); }
.page-hero .hero-lead { color: #687386; }
.back-link { display: inline-block; margin-bottom: 34px; color: var(--indigo-dark); font-weight: 800; }
.test-note { color: var(--muted); font-size: 13px; }
.notice { margin-top: 46px; padding: 24px; border-left: 4px solid var(--champagne); background: var(--ivory); }
.notice strong { color: var(--ink); }
.notice p { margin: 5px 0 0; }
.legal-hero h1 { font-size: clamp(38px, 5.5vw, 58px); }
.document-date { margin-top: 22px; color: var(--muted); font-size: 12px; font-weight: 700; }
.legal-content article { padding: 27px 0; border-top: 1px solid var(--line); }
.legal-content article h2 { margin-bottom: 8px; font-family: var(--body); font-size: 26px; font-weight: 800; }
.legal-content article p { margin: 0; }
.state-page { min-height: 68vh; display: grid; place-items: center; padding: 80px 20px; background: var(--ivory); }
.state-card {
  width: min(640px, 100%); padding: clamp(34px, 7vw, 66px);
  border: 1px solid var(--line); border-radius: var(--radius); background: var(--white);
  text-align: center; box-shadow: var(--shadow-soft);
}
.state-card h1 { color: var(--ink); font-size: clamp(33px, 5vw, 52px); }
.state-icon { display: grid; width: 58px; height: 58px; place-items: center; margin: 0 auto 22px; border-radius: 50%; background: rgba(62,198,168,.12); color: #18856d; font-size: 26px; font-weight: 900; }
.state-code { color: var(--indigo); font-size: 58px; font-weight: 900; }
.order-page { min-height: 76vh; padding: 82px 0 110px; color: #aeb7c4; background: radial-gradient(circle at 80% 18%, rgba(113,103,255,.22), transparent 28%), linear-gradient(145deg, #07090d, #131b29); }
.order-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(380px, .68fr); align-items: center; gap: clamp(60px, 10vw, 130px); }
.order-back { margin-bottom: 48px; color: #9aa5b5; }
.order-copy h1 { max-width: 760px; font-size: clamp(42px, 5.5vw, 68px); }
.order-lead { max-width: 690px; color: #a8b2c0; font-size: 19px; }
.order-main-button { margin-top: 24px; }
.order-handle { margin-top: 16px; color: #727d8d; font-size: 11px; font-weight: 700; }
.order-summary { padding: 34px; border: 1px solid rgba(255,255,255,.14); border-radius: 24px; background: rgba(255,255,255,.055); box-shadow: 0 40px 100px rgba(0,0,0,.34); backdrop-filter: blur(14px); }
.order-summary-head { display: flex; justify-content: space-between; padding-bottom: 20px; border-bottom: 1px solid var(--line-dark); color: #788394; font-size: 11px; text-transform: uppercase; letter-spacing: .1em; }
.order-summary-head b { color: var(--ice); }
.order-summary h2 { margin: 31px 0 8px; color: var(--white); font-size: 31px; }
.order-summary > p { color: #8f99a9; }
.order-summary dl { margin: 30px 0; }
.order-summary dl div { display: flex; justify-content: space-between; gap: 20px; padding: 13px 0; border-top: 1px solid var(--line-dark); }
.order-summary dt { color: #7e8999; }
.order-summary dd { margin: 0; color: var(--white); font-weight: 800; }
.order-total { display: flex; justify-content: space-between; align-items: end; gap: 24px; padding-top: 24px; border-top: 1px solid var(--line-dark); }
.order-total span { color: #8b95a5; font-size: 12px; }
.order-total strong { color: var(--white); font-size: 34px; }
.order-summary > small { display: block; margin-top: 18px; color: #717c8c; }

.site-footer { padding: 68px 0 25px; border-top: 1px solid var(--line-dark); background: var(--black); color: #8f99a8; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 52px; }
.footer-grid > div { display: flex; flex-direction: column; align-items: flex-start; gap: 8px; }
.footer-grid strong { color: var(--white); }
.footer-grid p, .footer-grid a { margin: 0; font-size: 13px; }
.footer-grid a:hover { color: var(--white); }
.footer-note { margin-top: 46px; padding-top: 21px; border-top: 1px solid var(--line-dark); font-size: 12px; }

/* Product detail */
.product-detail-hero {
  position: relative; overflow: hidden; padding: 44px 0 96px; color: #b9c2cf;
  background:
    radial-gradient(circle at 77% 22%, rgba(113,103,255,.24), transparent 27%),
    radial-gradient(circle at 92% 83%, rgba(89,213,255,.08), transparent 24%),
    linear-gradient(145deg, #07090d, #111827 70%, #10182a);
}
.product-detail-hero::before {
  content: ""; position: absolute; inset: 0; opacity: .16; pointer-events: none;
  background-image: linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 64px 64px; mask-image: linear-gradient(to bottom, black, transparent 92%);
}
.product-detail-hero .container { position: relative; }
.breadcrumbs { display: flex; flex-wrap: wrap; gap: 9px; margin-bottom: 58px; color: #6f7989; font-size: 12px; font-weight: 700; }
.breadcrumbs a:hover { color: var(--white); }
.breadcrumbs [aria-current="page"] { color: #a8b2c0; }
.product-detail-grid { display: grid; grid-template-columns: minmax(0, .92fr) minmax(440px, .88fr); align-items: center; gap: clamp(52px, 7vw, 98px); }
.product-detail-copy h1 { max-width: 700px; margin: 17px 0 16px; font-size: clamp(43px, 5vw, 68px); }
.product-detail-copy .eyebrow { margin-top: 27px; color: var(--ice); }
.product-badges { display: flex; flex-wrap: wrap; gap: 8px; }
.product-badges span { padding: 6px 10px; border: 1px solid rgba(255,255,255,.12); border-radius: 999px; background: rgba(255,255,255,.045); color: #aab4c2; font-size: 10px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.product-badges span:first-child { border-color: rgba(62,198,168,.28); background: rgba(62,198,168,.1); color: #85dfcb; }
.product-detail-subtitle { margin-bottom: 22px; color: #d4b478; font-size: 20px; font-weight: 700; }
.product-detail-lead { max-width: 690px; color: #a9b3c1; font-size: 18px; line-height: 1.7; }
.product-proof { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 38px; border-block: 1px solid var(--line-dark); }
.product-proof div { display: grid; gap: 2px; padding: 20px 15px 20px 0; }
.product-proof div + div { padding-left: 20px; border-left: 1px solid var(--line-dark); }
.product-proof strong { color: var(--white); font-size: 24px; }
.product-proof span { color: #737e8e; font-size: 11px; }
.product-buy-row { display: grid; grid-template-columns: auto 1fr; align-items: end; gap: 28px; margin-top: 35px; }
.product-buy-row > div:first-child { display: grid; }
.product-buy-row > div:first-child > span, .product-buy-row small { color: #7f8999; font-size: 11px; }
.product-buy-row > div:first-child > strong { color: var(--white); font-size: 34px; line-height: 1.2; }
.product-buy-row .product-actions { justify-content: flex-end; margin: 0; }
.product-safe-note { margin: 18px 0 0; color: #717c8c; font-size: 11px; }
.product-file-stage { transform: perspective(1100px) rotateY(-3deg) rotateZ(.6deg); }
.file-window { overflow: hidden; border: 1px solid rgba(255,255,255,.16); border-radius: 23px; background: #ecf0f4; box-shadow: 0 48px 110px rgba(0,0,0,.48), 0 0 0 8px rgba(255,255,255,.025); }
.file-window-bar { height: 52px; display: flex; align-items: center; gap: 7px; padding: 0 17px; background: #151b26; }
.file-window-bar span { width: 8px; height: 8px; border-radius: 50%; background: #4c5667; }
.file-window-bar span:first-child { background: var(--indigo); }
.file-window-bar b { margin-left: auto; color: #9aa5b5; font-size: 10px; letter-spacing: .05em; }
.file-window img { display: block; width: 100%; height: auto; }
.file-stage-footer { display: flex; justify-content: space-between; gap: 20px; padding: 20px 6px 0; color: #778293; font-size: 11px; font-weight: 700; }
.file-stage-footer b { margin-right: 8px; color: var(--champagne); }
.product-value-section { padding-block: 88px; background: linear-gradient(145deg, #f0ece1, #faf9f5); }
.product-value-grid { display: grid; grid-template-columns: 1.35fr .65fr; align-items: center; gap: clamp(46px, 8vw, 110px); }
.product-value-grid h2 { max-width: 830px; margin: 0; font-size: clamp(30px, 3.5vw, 45px); }
.audience-card { padding: 28px; border: 1px solid rgba(17,24,39,.11); border-radius: 18px; background: rgba(255,255,255,.7); box-shadow: var(--shadow-soft); }
.audience-card span { color: var(--indigo-dark); font-size: 10px; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
.audience-card p { margin: 13px 0 0; color: var(--ink); font-weight: 700; }
.product-inside-section { background: var(--paper); }
.product-inside-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(390px, .72fr); align-items: start; gap: clamp(54px, 9vw, 120px); }
.sheet-index { overflow: hidden; border: 1px solid var(--line); border-radius: 22px; background: var(--white); box-shadow: var(--shadow-soft); }
.sheet-index-head { display: flex; justify-content: space-between; padding: 24px 26px; background: var(--graphite); color: #aeb7c4; font-size: 12px; }
.sheet-index-head strong { color: var(--white); }
.sheet-index ol { margin: 0; padding: 0; list-style: none; }
.sheet-index li { display: grid; grid-template-columns: 38px 1fr auto; align-items: center; gap: 12px; min-height: 59px; padding: 11px 25px; border-top: 1px solid var(--line); }
.sheet-index li span { color: var(--indigo); font-size: 11px; font-weight: 800; }
.sheet-index li b { color: var(--ink); font-size: 14px; }
.sheet-index li em { padding: 4px 8px; border-radius: 999px; background: rgba(62,198,168,.11); color: #19836b; font-size: 9px; font-style: normal; font-weight: 800; text-transform: uppercase; }
.product-steps-section { color: #aeb7c4; background: linear-gradient(145deg, #080a0f, #121824); }
.product-steps-section h2 { color: var(--white); }
.product-use-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin: 48px 0 0; padding: 0; list-style: none; }
.product-use-steps li { min-height: 235px; padding: 27px 24px; border: 1px solid var(--line-dark); border-radius: 18px; background: rgba(255,255,255,.035); }
.product-use-steps li > span { color: var(--ice); font-size: 11px; font-weight: 800; letter-spacing: .12em; }
.product-use-steps h3 { margin-top: 44px; color: var(--white); font-size: 18px; }
.product-use-steps p { margin: 0; color: #7f8999; font-size: 13px; }
.product-license-section { background: var(--ivory); }
.license-grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: clamp(50px, 9vw, 125px); }
.license-list { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; border: 1px solid var(--line); background: var(--line); }
.license-list div { padding: 29px; background: rgba(255,255,255,.72); }
.license-list strong { color: var(--ink); }
.license-list p { margin: 8px 0 0; color: var(--muted); font-size: 13px; }
.product-final-cta { padding: 80px 0; background: var(--paper); }
.product-final-card { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 60px; padding: clamp(34px, 6vw, 66px); border: 1px solid rgba(113,103,255,.3); border-radius: 28px; background: radial-gradient(circle at 85% 20%, rgba(113,103,255,.25), transparent 25%), linear-gradient(145deg, #0b0e14, #151c2a); box-shadow: var(--shadow); }
.product-final-card h2 { margin-bottom: 13px; color: var(--white); }
.product-final-card p:not(.eyebrow) { max-width: 720px; margin: 0; color: #909aaa; }
.final-price { display: grid; min-width: 230px; gap: 6px; }
.final-price > span { color: #7f8999; font-size: 11px; }
.final-price > strong { margin-bottom: 13px; color: var(--white); font-size: 35px; }
.related-section { padding-top: 30px; }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 40px; }
.related-card { min-height: 230px; display: flex; flex-direction: column; padding: 27px; border: 1px solid var(--line); border-radius: 18px; background: rgba(255,255,255,.62); transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; }
.related-card:hover { transform: translateY(-4px); border-color: rgba(113,103,255,.35); box-shadow: var(--shadow-soft); }
.related-card > span { color: var(--indigo-dark); font-size: 10px; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }
.related-card h3 { margin-top: 27px; }
.related-card p { color: var(--muted); font-size: 13px; }
.related-card strong { margin-top: auto; color: var(--ink); }
.related-card i { margin-left: 7px; color: var(--indigo); font-style: normal; }
.addons-section { color: #b9c2cf; background: radial-gradient(circle at 82% 18%, rgba(113,103,255,.18), transparent 27%), linear-gradient(145deg, #080a0f, #131a27); }
.addons-layout { display: grid; grid-template-columns: minmax(0, .9fr) minmax(420px, 1.1fr); align-items: center; gap: clamp(55px, 9vw, 120px); }
.addons-section h2 { color: var(--white); }
.addons-section p:not(.eyebrow) { max-width: 620px; color: #8792a2; }
.addon-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 13px; }
.addon-grid article { min-height: 210px; display: flex; flex-direction: column; padding: 28px; border: 1px solid var(--line-dark); border-radius: 19px; background: rgba(255,255,255,.045); }
.addon-grid article > span { color: var(--ice); font-size: 10px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.addon-grid h3 { margin-top: 42px; color: var(--white); font-size: 18px; }
.addon-grid strong { margin-top: auto; color: var(--champagne); font-size: 25px; }

/* Motion system: transform and opacity only for smooth rendering. */
.motion-ready [data-reveal] {
  opacity: 0; transform: translate3d(0, 24px, 0);
  transition: opacity .72s cubic-bezier(.2,.7,.2,1), transform .72s cubic-bezier(.2,.7,.2,1);
  transition-delay: calc(var(--reveal-order, 0) * 65ms);
}
.motion-ready [data-reveal="left"] { transform: translate3d(-28px, 0, 0); }
.motion-ready [data-reveal="right"] { transform: translate3d(28px, 0, 0); }
.motion-ready [data-reveal].is-visible { opacity: 1; transform: translate3d(0, 0, 0); }
.product-file-stage { animation: stage-float 7s .6s ease-in-out infinite; }
.brand-mark { transition: transform .35s cubic-bezier(.2,.8,.2,1), filter .35s ease; }
.brand:hover .brand-mark { transform: rotate(-4deg) scale(1.06); filter: drop-shadow(0 13px 24px rgba(113,103,255,.42)); }
.button-primary { position: relative; overflow: hidden; isolation: isolate; }
.button-primary::after { content: ""; position: absolute; z-index: -1; inset: -2px auto -2px -42%; width: 34%; transform: skewX(-20deg); background: linear-gradient(90deg, transparent, rgba(255,255,255,.34), transparent); transition: left .6s ease; }
.button-primary:hover::after { left: 120%; }
.catalog-card, .related-card, .steps li, .product-use-steps li, .support-topic-grid article { will-change: transform; }
.catalog-card { position: relative; overflow: hidden; transition: transform .28s cubic-bezier(.2,.8,.2,1), border-color .28s ease, background .28s ease, box-shadow .28s ease; }
.catalog-card::after { content: ""; position: absolute; width: 150px; height: 150px; right: -90px; top: -90px; border-radius: 50%; background: rgba(113,103,255,.18); filter: blur(14px); opacity: 0; transition: opacity .28s ease, transform .45s ease; pointer-events: none; }
.catalog-card:hover { transform: translateY(-7px); border-color: rgba(113,103,255,.48); box-shadow: 0 28px 70px rgba(0,0,0,.28); }
.catalog-card:hover::after { opacity: 1; transform: translate(-28px, 28px); }
.result-card strong, .demo-result-panel > strong { transition: transform .22s ease, color .22s ease; }
.demo-result-panel.is-updating > strong { transform: translateY(-2px) scale(1.015); color: #d9f6ff; }

@keyframes stage-float { 0%, 100% { translate: 0 0; } 50% { translate: 0 -8px; } }

/* Support */
.support-fab {
  position: fixed; right: 22px; bottom: 22px; z-index: 18; display: inline-flex; align-items: center; gap: 10px;
  min-height: 50px; padding: 10px 16px 10px 12px; border: 1px solid rgba(255,255,255,.16); border-radius: 999px;
  background: rgba(13,17,24,.92); color: var(--white); box-shadow: 0 18px 50px rgba(0,0,0,.3); backdrop-filter: blur(16px);
  font-size: 12px; font-weight: 800; transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}
.support-fab::before { content: ""; position: absolute; inset: -5px; z-index: -1; border: 1px solid rgba(89,213,255,.18); border-radius: inherit; animation: support-pulse 2.8s ease-out infinite; }
.support-fab:hover { transform: translateY(-3px); border-color: rgba(89,213,255,.5); box-shadow: 0 22px 58px rgba(20,103,150,.28); }
.support-fab svg { width: 25px; height: 25px; fill: #59d5ff; }
@keyframes support-pulse { 0% { opacity: .65; transform: scale(.94); } 72%, 100% { opacity: 0; transform: scale(1.15); } }
.support-strip { padding: 70px 0; color: #aeb7c4; background: radial-gradient(circle at 82% 18%, rgba(113,103,255,.22), transparent 28%), linear-gradient(145deg, #0a0d13, #151c2a); }
.support-strip-inner { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 50px; }
.support-strip h2 { margin-bottom: 12px; color: var(--white); font-size: clamp(29px, 3.5vw, 43px); }
.support-strip p:not(.eyebrow) { margin: 0; color: #8e98a8; }
.support-page { position: relative; overflow: hidden; padding: 96px 0 112px; color: #aeb7c4; background: radial-gradient(circle at 80% 16%, rgba(113,103,255,.22), transparent 27%), radial-gradient(circle at 20% 86%, rgba(89,213,255,.08), transparent 24%), linear-gradient(145deg, #07090d, #121a28); }
.support-page::before { content: ""; position: absolute; inset: 0; opacity: .14; background-image: linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px); background-size: 64px 64px; pointer-events: none; }
.support-hero-grid { position: relative; display: grid; grid-template-columns: minmax(0, 1fr) minmax(380px, .7fr); align-items: center; gap: clamp(58px, 9vw, 120px); }
.support-page h1 { max-width: 780px; font-size: clamp(42px, 5.3vw, 68px); }
.support-lead { max-width: 700px; color: #a8b2c0; font-size: 19px; }
.support-main-button { margin-top: 24px; }
.support-privacy { max-width: 620px; margin: 18px 0 0; color: #707b8b; font-size: 11px; }
.support-chat { padding: 18px; border: 1px solid var(--line-dark); border-radius: 24px; background: rgba(255,255,255,.055); box-shadow: 0 42px 100px rgba(0,0,0,.35); backdrop-filter: blur(12px); }
.support-chat-head { display: grid; grid-template-columns: 46px 1fr 9px; align-items: center; gap: 13px; padding: 6px 7px 19px; border-bottom: 1px solid var(--line-dark); }
.support-avatar { display: grid; width: 46px; height: 46px; place-items: center; border-radius: 15px; background: linear-gradient(145deg, var(--indigo), #4a9ec6); color: var(--white); font-family: var(--display); font-size: 15px; }
.support-chat-head strong, .support-chat-head small { display: block; }
.support-chat-head strong { color: var(--white); }
.support-chat-head small { color: #758091; font-size: 11px; }
.support-chat-head i { width: 9px; height: 9px; border-radius: 50%; background: var(--emerald); box-shadow: 0 0 0 5px rgba(62,198,168,.1); }
.support-message, .support-reply { max-width: 88%; margin-top: 18px; padding: 17px 19px; border-radius: 17px; font-size: 13px; }
.support-message { border-bottom-left-radius: 5px; background: rgba(255,255,255,.08); color: #c1c9d4; }
.support-message ol { margin: 10px 0 0; padding-left: 20px; color: #8994a4; }
.support-reply { margin-left: auto; border-bottom-right-radius: 5px; background: linear-gradient(145deg, rgba(113,103,255,.32), rgba(89,213,255,.14)); color: var(--white); }
.support-topics { background: var(--ivory); }
.support-topic-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 42px; }
.support-topic-grid article { min-height: 240px; padding: 28px; border: 1px solid var(--line); border-radius: 19px; background: rgba(255,255,255,.7); transition: transform .25s ease, box-shadow .25s ease; }
.support-topic-grid article:hover { transform: translateY(-5px); box-shadow: var(--shadow-soft); }
.support-topic-grid article > span { color: var(--indigo); font-size: 11px; font-weight: 800; letter-spacing: .12em; }
.support-topic-grid h3 { margin-top: 45px; }
.support-topic-grid p { margin: 0; color: var(--muted); font-size: 14px; }

@media (max-width: 940px) {
  .demo-grid, .product-grid, .faq-layout { grid-template-columns: 1fr; }
  .steps, .catalog-grid { grid-template-columns: repeat(2, 1fr); }
  .profession-strip .container { align-items: flex-start; flex-direction: column; gap: 11px; }
  .demo-heading { align-items: flex-start; flex-direction: column; }
  .demo-workspace { grid-template-columns: 1fr; }
  .demo-controls, .demo-result-panel { min-height: 390px; }
  .product-detail-grid, .product-value-grid, .product-inside-grid, .license-grid { grid-template-columns: 1fr; }
  .product-detail-copy { max-width: 760px; }
  .product-file-stage { width: min(720px, 100%); transform: none; }
  .product-use-steps, .related-grid { grid-template-columns: repeat(2, 1fr); }
  .product-final-card { grid-template-columns: 1fr; }
  .final-price { width: min(320px, 100%); }
  .support-hero-grid { grid-template-columns: 1fr; }
  .order-grid { grid-template-columns: 1fr; }
  .support-chat { width: min(620px, 100%); }
  .support-topic-grid { grid-template-columns: repeat(2, 1fr); }
  .addons-layout { grid-template-columns: 1fr; }
}

@media (max-width: 680px) {
  .container { width: min(100% - 28px, 1180px); }
  .header-inner { min-height: 68px; }
  .menu-button { display: block; }
  .site-nav {
    position: absolute; inset: 68px 14px auto; display: none; align-items: stretch; flex-direction: column; gap: 0;
    padding: 12px; border: 1px solid var(--line-dark); border-radius: 14px;
    background: rgba(13,17,24,.98); box-shadow: var(--shadow);
  }
  .site-nav.open { display: flex; }
  .site-nav a { padding: 12px; }
  h1 { font-size: clamp(37px, 11vw, 52px); }
  .hero-actions .button, .product-actions .button { width: 100%; }
  .section { padding: 80px 0; }
  .demo-grid, .product-grid, .faq-layout { gap: 48px; }
  .steps, .catalog-grid, .footer-grid { grid-template-columns: 1fr; }
  .steps { gap: 10px; }
  .steps li { min-height: 210px; }
  .catalog-card { min-height: 225px; }
  .footer-grid { gap: 31px; }
  .demo-page { padding: 52px 0 78px; }
  .demo-workspace { padding: 10px; border-radius: 20px; }
  .demo-controls, .demo-result-panel { min-height: auto; padding: 28px 22px; }
  .demo-controls { gap: 28px; }
  .demo-metric-grid { grid-template-columns: 1fr; }
  .demo-upgrade { grid-template-columns: 1fr; gap: 28px; margin-top: 58px; }
  .demo-upgrade .button { width: 100%; }
  .product-detail-hero { padding: 30px 0 68px; }
  .breadcrumbs { margin-bottom: 40px; }
  .product-detail-grid { gap: 50px; }
  .product-detail-copy h1 { font-size: clamp(38px, 12vw, 52px); }
  .product-proof { grid-template-columns: 1fr; }
  .product-proof div + div { padding-left: 0; border-left: 0; border-top: 1px solid var(--line-dark); }
  .product-buy-row { grid-template-columns: 1fr; align-items: stretch; }
  .product-buy-row .product-actions { justify-content: stretch; }
  .file-stage-footer { align-items: flex-start; flex-direction: column; gap: 5px; }
  .product-use-steps, .related-grid, .license-list { grid-template-columns: 1fr; }
  .product-use-steps li { min-height: 205px; }
  .product-final-card { gap: 35px; border-radius: 21px; }
  .final-price, .final-price .button { width: 100%; }
  .support-strip-inner { grid-template-columns: 1fr; gap: 28px; }
  .support-strip .button, .support-main-button { width: 100%; }
  .support-topic-grid { grid-template-columns: 1fr; }
  .support-fab { right: 14px; bottom: 14px; width: 50px; justify-content: center; padding: 10px; }
  .support-fab span { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
  .motion-banner-content { align-items: flex-start; flex-direction: column; justify-content: end; padding-block: 45px; }
  .motion-banner-content h1 { font-size: clamp(40px, 12vw, 57px); }
  .motion-banner-shade { background: linear-gradient(0deg, rgba(5,7,11,.94), rgba(5,7,11,.28) 85%); }
  .addon-grid { grid-template-columns: 1fr; }
  .order-main-button { width: 100%; }
}

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