:root {
  color-scheme: dark;
  --bg: #071425;
  --bg-deep: #05101d;
  --surface: rgba(15, 35, 59, 0.84);
  --surface-solid: #102842;
  --line: rgba(162, 194, 220, 0.16);
  --text: #f6fbff;
  --muted: #a9bbcd;
  --teal: #24c7b7;
  --blue: #3e8bd8;
  --violet: #7969e7;
  --gold: #e7b66f;
  --gradient: linear-gradient(135deg, var(--teal), var(--blue) 55%, var(--violet));
  --shadow: 0 30px 80px rgba(0, 6, 18, 0.38);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 2% -4%, rgba(36, 199, 183, 0.18), transparent 29rem),
    radial-gradient(circle at 98% 8%, rgba(121, 105, 231, 0.18), transparent 31rem),
    linear-gradient(180deg, #0a1a2e, var(--bg) 38%, var(--bg-deep));
  color: var(--text);
  font-size: 16px;
  line-height: 1.65;
}

a { color: inherit; }
.skip-link { position: fixed; left: 12px; top: -60px; z-index: 100; padding: 10px 14px; border-radius: 10px; background: #fff; color: #071425; }
.skip-link:focus { top: 12px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  width: min(1180px, calc(100% - 32px));
  margin: 14px auto 0;
  padding: 10px 12px 10px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(7, 20, 37, 0.82);
  box-shadow: 0 14px 42px rgba(0, 4, 16, 0.28);
  backdrop-filter: blur(18px);
}

.brand { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; }
.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  background: var(--gradient);
  box-shadow: 0 10px 25px rgba(36, 199, 183, 0.23);
  color: #fff;
  font-size: 20px;
  font-weight: 900;
}
.brand strong, .brand small { display: block; }
.brand strong { font-size: 15px; letter-spacing: -0.02em; }
.brand small { color: var(--muted); font-size: 11px; }

.site-nav { display: flex; align-items: center; gap: 8px; }
.site-nav a { padding: 8px 11px; border-radius: 10px; color: #c6d4e2; font-size: 13px; font-weight: 650; text-decoration: none; }
.site-nav a:hover, .site-nav a:focus-visible { background: rgba(255,255,255,.06); color: #fff; }
.site-nav .nav-cta { margin-left: 4px; padding: 9px 15px; background: var(--gradient); color: #fff; }
.menu-button { display: none; }

.hero {
  width: min(1180px, calc(100% - 40px));
  min-height: 760px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(460px, .9fr);
  align-items: center;
  gap: 70px;
  padding: 92px 0 72px;
}

.eyebrow { display: inline-block; color: #72e0d5; font-size: 12px; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.hero h1 { margin: 18px 0 22px; max-width: 690px; font-size: clamp(48px, 6.1vw, 82px); line-height: .98; letter-spacing: -.055em; }
.hero h1 span { background: var(--gradient); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero-copy > p { max-width: 650px; margin: 0; color: #b8c8d7; font-size: clamp(17px, 2vw, 21px); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.button { min-height: 48px; display: inline-flex; align-items: center; justify-content: center; padding: 11px 20px; border: 1px solid var(--line); border-radius: 14px; font-size: 14px; font-weight: 800; text-decoration: none; transition: transform .18s ease, border-color .18s ease, background .18s ease; }
.button:hover { transform: translateY(-2px); }
.button.primary { border-color: rgba(108, 225, 215, .46); background: var(--gradient); box-shadow: 0 12px 28px rgba(43, 146, 180, .22); color: #fff; }
.button.secondary { background: rgba(255,255,255,.045); color: #e9f2fa; }
.button.secondary:hover { border-color: rgba(88, 211, 200, .42); background: rgba(37, 183, 174, .09); }
.trust-row { display: flex; flex-wrap: wrap; gap: 10px 20px; margin-top: 30px; color: #8fa6ba; font-size: 12px; }
.trust-row span::before { content: ""; width: 6px; height: 6px; display: inline-block; margin-right: 8px; border-radius: 50%; background: var(--teal); box-shadow: 0 0 12px rgba(36,199,183,.7); vertical-align: 1px; }

.product-stage { position: relative; min-height: 620px; display: grid; place-items: center; }
.glow { position: absolute; border-radius: 50%; filter: blur(7px); }
.glow-one { width: 340px; height: 340px; right: -40px; top: 55px; background: rgba(121,105,231,.16); }
.glow-two { width: 260px; height: 260px; left: 5px; bottom: 35px; background: rgba(36,199,183,.13); }
.product-window {
  position: relative;
  width: min(430px, 100%);
  padding: 10px;
  border: 1px solid rgba(126,177,211,.20);
  border-radius: 25px;
  background: linear-gradient(145deg, rgba(15, 40, 67, .98), rgba(7, 19, 35, .98));
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255,255,255,.06);
  transform: rotate(1.2deg);
}

.product-window.tilt-left { --ry: -3.5deg; }
.product-window.tilt-right { --ry: 3.5deg; }
.product-window.tilt-up { --rx: 3deg; }
.product-window.tilt-down { --rx: -3deg; }
.window-bar { height: 37px; display: flex; align-items: center; gap: 9px; padding: 0 6px 8px; color: #c9d6e3; font-size: 11px; }
.window-bar span { width: 17px; height: 17px; border-radius: 6px; background: var(--gradient); }
.window-bar i { width: 7px; height: 7px; margin-left: auto; border-radius: 50%; background: #64819a; }
.product-account, .tool-card, .usage-row, .mock-field { border: 1px solid var(--line); background: rgba(18,44,73,.74); }
.product-account { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 10px; padding: 13px; border-radius: 16px; }
.mini-mark { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 12px; background: var(--gradient); font-weight: 900; }
.product-account strong, .product-account small { display: block; }
.product-account strong { font-size: 12px; }.product-account small { color: var(--muted); font-size: 9px; }
.product-account em { padding: 5px 8px; border-radius: 999px; background: rgba(36,199,183,.14); color: #8de8df; font-size: 8px; font-style: normal; font-weight: 900; }
.product-tabs { display: grid; grid-template-columns: repeat(4,1fr); gap: 5px; margin: 9px 0; padding: 5px; border: 1px solid var(--line); border-radius: 14px; background: rgba(5,15,29,.78); }
.product-tabs span { padding: 7px 3px; border-radius: 9px; color: #8fa7ba; font-size: 8px; font-weight: 800; text-align: center; }
.product-tabs .active { background: linear-gradient(135deg,rgba(36,199,183,.22),rgba(121,105,231,.22)); color: #fff; }
.tool-card { padding: 14px; border-radius: 16px; }.tool-card small { color: #72e0d5; font-size: 8px; font-weight: 900; letter-spacing: .1em; }.tool-card h2 { margin: 4px 0 3px; font-size: 18px; }.tool-card p { margin: 0; color: var(--muted); font-size: 9px; }
.usage-row { display: flex; justify-content: space-between; gap: 10px; margin-top: 9px; padding: 10px 12px; border-radius: 13px; color: var(--muted); font-size: 9px; }.usage-row strong { color: #e8f2fa; }
.mock-field { display: block; margin-top: 9px; padding: 10px; border-radius: 13px; }.mock-field span, .mock-field b { display: block; }.mock-field span { margin-bottom: 6px; color: var(--muted); font-size: 8px; }.mock-field b { padding: 9px 10px; border-radius: 9px; background: rgba(4,15,28,.64); font-size: 10px; font-weight: 500; }.mock-field.compact b { padding: 7px 10px; }
.mock-actions { display: grid; grid-template-columns: 1fr .65fr; gap: 7px; margin-top: 9px; }.mock-actions strong, .mock-actions span { display: grid; place-items: center; min-height: 38px; border-radius: 11px; font-size: 10px; }.mock-actions strong { background: var(--gradient); }.mock-actions span { border: 1px solid var(--line); background: rgba(255,255,255,.04); }

.section { width: min(1180px, calc(100% - 40px)); margin: 0 auto; padding: 96px 0; }
.section-heading { max-width: 720px; margin-bottom: 38px; }
.section-heading h2, .workflow-copy h2, .final-cta h2 { margin: 10px 0 12px; font-size: clamp(34px, 4vw, 52px); line-height: 1.08; letter-spacing: -.04em; }
.section-heading p, .workflow-copy > p { margin: 0; color: var(--muted); font-size: 17px; }
.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.feature-card { position: relative; min-height: 270px; padding: 24px; overflow: hidden; border: 1px solid var(--line); border-radius: 22px; background: linear-gradient(145deg, rgba(18,43,73,.84), rgba(8,23,41,.84)); box-shadow: 0 18px 45px rgba(0,5,18,.20); }
.feature-card::after { content: ""; position: absolute; right: -45px; bottom: -55px; width: 150px; height: 150px; border-radius: 50%; background: var(--card-accent); opacity: .12; filter: blur(2px); }
.feature-card > span { color: var(--card-accent); font-size: 12px; font-weight: 900; }.feature-card h3 { margin: 42px 0 10px; font-size: 21px; }.feature-card p { margin: 0; color: var(--muted); font-size: 14px; }
.accent-teal { --card-accent: var(--teal); }.accent-blue { --card-accent: #59a9ee; }.accent-violet { --card-accent: #9d8bf5; }.accent-gold { --card-accent: var(--gold); }

.workflow-section { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.steps { display: grid; gap: 13px; margin: 0; padding: 0; list-style: none; }
.steps li { display: grid; grid-template-columns: auto 1fr; gap: 16px; align-items: center; padding: 18px; border: 1px solid var(--line); border-radius: 18px; background: var(--surface); }
.steps li > span { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 13px; background: linear-gradient(135deg,rgba(36,199,183,.18),rgba(121,105,231,.22)); color: #8fe7df; font-weight: 900; }.steps strong { font-size: 16px; }.steps p { margin: 2px 0 0; color: var(--muted); font-size: 13px; }

.plan-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; align-items: stretch; }
.plan { position: relative; display: flex; flex-direction: column; padding: 28px; border: 1px solid var(--line); border-radius: 24px; background: linear-gradient(145deg,rgba(17,41,68,.90),rgba(8,23,41,.90)); box-shadow: 0 18px 48px rgba(0,5,18,.22); }
.plan.featured { border-color: rgba(57,202,190,.42); transform: translateY(-10px); background: linear-gradient(145deg,rgba(20,65,81,.86),rgba(25,31,70,.90)); }.popular { position: absolute; right: 18px; top: 18px; padding: 5px 9px; border-radius: 999px; background: rgba(36,199,183,.16); color: #8ce8df; font-size: 9px; font-weight: 900; text-transform: uppercase; }.plan-name { color: #83e5dc; font-size: 13px; font-weight: 900; text-transform: uppercase; letter-spacing: .08em; }.price { margin: 14px 0 5px; font-size: 40px; font-weight: 900; letter-spacing: -.04em; }.price small { color: var(--muted); font-size: 12px; font-weight: 600; letter-spacing: 0; }.plan > p { min-height: 48px; margin: 0; color: var(--muted); font-size: 14px; }.plan ul { flex: 1; display: grid; gap: 10px; margin: 22px 0 25px; padding: 0; list-style: none; }.plan li { color: #c7d5e2; font-size: 13px; }.plan li::before { content: "✓"; margin-right: 9px; color: var(--teal); font-weight: 900; }

.final-cta { width: min(1120px, calc(100% - 40px)); margin: 70px auto 90px; padding: 72px 30px; border: 1px solid rgba(83,206,195,.25); border-radius: 30px; background: radial-gradient(circle at 18% 20%,rgba(36,199,183,.15),transparent 35%), radial-gradient(circle at 82% 70%,rgba(121,105,231,.17),transparent 38%), rgba(13,31,54,.78); text-align: center; box-shadow: var(--shadow); }.final-cta h2 { max-width: 720px; margin: 13px auto 28px; }
.site-footer { width: min(1180px, calc(100% - 40px)); margin: 0 auto; padding: 32px 0 42px; display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 12px 30px; border-top: 1px solid var(--line); color: var(--muted); font-size: 12px; }.site-footer > p { grid-column: 1; margin: 0; }.site-footer > div:last-child { grid-column: 2; grid-row: 1 / span 2; display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 16px; }.site-footer a { text-decoration: none; }.site-footer a:hover { color: #fff; }

@media (max-width: 980px) {
  .hero { grid-template-columns: 1fr; padding-top: 78px; }.hero-copy { text-align: center; }.hero-copy > p { margin-inline: auto; }.hero-actions,.trust-row { justify-content: center; }.product-stage { min-height: 580px; }.feature-grid { grid-template-columns: repeat(2,1fr); }.workflow-section { grid-template-columns: 1fr; gap: 38px; }.plan-grid { grid-template-columns: 1fr; }.plan.featured { transform: none; }
}

@media (max-width: 760px) {
  .site-header { width: calc(100% - 20px); margin-top: 10px; }.menu-button { display: inline-flex; min-height: 40px; align-items: center; padding: 8px 13px; border: 1px solid var(--line); border-radius: 11px; background: rgba(255,255,255,.04); color: #fff; font: inherit; font-size: 12px; font-weight: 800; }.site-nav { position: absolute; top: calc(100% + 8px); right: 0; left: 0; display: none; padding: 10px; border: 1px solid var(--line); border-radius: 17px; background: #0a1b2f; box-shadow: var(--shadow); }.site-nav.open { display: grid; }.site-nav .nav-cta { margin-left: 0; text-align: center; }.hero { width: min(100% - 30px, 680px); grid-template-columns: minmax(0,1fr); gap: 34px; min-height: auto; padding: 65px 0 35px; }.hero h1 { font-size: clamp(45px,14vw,68px); }.product-stage { min-height: 540px; }.product-window { transform: none; }.section { width: min(100% - 30px,680px); padding: 70px 0; }.feature-grid { grid-template-columns: 1fr; }.feature-card { min-height: auto; }.site-footer { grid-template-columns: 1fr; text-align: center; }.site-footer .brand { justify-content: center; }.site-footer > p, .site-footer > div:last-child { grid-column: 1; grid-row: auto; justify-content: center; }
}

@media (max-width: 460px) {
  .brand strong { font-size: 13px; }.site-header .brand small { display: none; }.product-stage { min-height: 510px; }.product-window { width: 100%; }.product-tabs span { font-size: 7px; }.section-heading h2,.workflow-copy h2,.final-cta h2 { font-size: 34px; }.final-cta { padding: 55px 20px; }.hero-actions .button { width: 100%; }
}

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

.policy-shell { width: min(880px, calc(100% - 40px)); margin: 0 auto; padding: 95px 0 80px; }
.policy-hero { margin-bottom: 30px; text-align: center; }
.policy-hero h1 { margin: 10px 0 2px; font-size: clamp(44px, 7vw, 70px); line-height: 1; letter-spacing: -.055em; }
.policy-hero p { margin: 14px 0 0; color: var(--muted); }
.policy-card { padding: clamp(25px, 5vw, 58px); border: 1px solid var(--line); border-radius: 28px; background: linear-gradient(145deg, rgba(16,40,66,.92), rgba(7,21,38,.94)); box-shadow: var(--shadow); }
.policy-card section + section { margin-top: 36px; padding-top: 32px; border-top: 1px solid var(--line); }
.policy-card h2 { margin: 0 0 10px; font-size: 21px; letter-spacing: -.02em; }
.policy-card p { margin: 0; color: #b9c9d7; }
.policy-card p + p { margin-top: 13px; }
.policy-card ul { display: grid; gap: 10px; margin: 0; padding-left: 20px; color: #b9c9d7; }
.policy-card strong { color: #eef7ff; }
.policy-card a { color: #7be1d7; }
.policy-footer { margin-top: 0; }
@media (max-width: 760px) { .privacy-nav { position: static; display: flex; padding: 0; border: 0; background: transparent; box-shadow: none; }.privacy-nav a { padding: 7px; }.policy-shell { width: min(100% - 28px, 680px); padding-top: 65px; } }


/* v1.10.1 light premium website */
:root {
  color-scheme: light;
  --bg: #f4f7fb;
  --bg-deep: #edf2f7;
  --surface: rgba(255, 255, 255, 0.90);
  --surface-solid: #ffffff;
  --line: rgba(28, 51, 79, 0.12);
  --text: #17253a;
  --muted: #65778b;
  --teal: #0f817b;
  --blue: #3f63b7;
  --violet: #674db2;
  --gold: #c98b32;
  --gradient: linear-gradient(135deg, var(--teal), var(--blue) 55%, var(--violet));
  --shadow: 0 28px 72px rgba(35, 55, 82, 0.13);
}

body {
  background:
    radial-gradient(circle at 2% -4%, rgba(23, 167, 160, 0.12), transparent 29rem),
    radial-gradient(circle at 98% 8%, rgba(121, 97, 201, 0.11), transparent 31rem),
    linear-gradient(180deg, #fbfcfe, var(--bg) 42%, var(--bg-deep));
  color: var(--text);
}

.site-header {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 14px 38px rgba(35, 55, 82, 0.10);
}

.brand strong,
.hero h1,
.section-heading h2,
.workflow-copy h2,
.final-cta h2,
.feature-card h3,
.plan,
.policy-hero h1,
.policy-card h2 {
  color: var(--text);
}

.brand small,
.hero-copy > p,
.section-heading p,
.workflow-copy > p,
.feature-card p,
.steps p,
.plan > p,
.policy-hero p,
.policy-card p,
.policy-card ul,
.site-footer {
  color: var(--muted);
}

.site-nav a {
  color: #4f6277;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: rgba(23, 167, 160, 0.08);
  color: #17364d;
}

.site-nav .nav-cta,
.button.primary {
  color: #ffffff;
}

.button.secondary {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.84);
  color: #24374e;
  box-shadow: 0 8px 22px rgba(35, 55, 82, 0.07);
}

.button.secondary:hover {
  border-color: rgba(23, 167, 160, 0.33);
  background: #f1faf9;
}

.trust-row {
  color: #60758a;
}

.glow-one {
  background: rgba(121, 97, 201, 0.10);
}

.glow-two {
  background: rgba(23, 167, 160, 0.10);
}

.product-window {
  border-color: rgba(28, 51, 79, 0.13);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(244, 248, 252, 0.98));
  box-shadow: var(--shadow), inset 0 1px 0 #ffffff;
}

.window-bar {
  color: #51657a;
}

.window-bar i {
  background: #9aabbb;
}

.product-account,
.tool-card,
.usage-row,
.mock-field {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.92);
}

.product-account strong,
.tool-card h2,
.usage-row strong,
.mock-field b {
  color: #1c2c40;
}

.product-account small,
.tool-card p,
.usage-row,
.mock-field span {
  color: var(--muted);
}

.product-tabs {
  border-color: var(--line);
  background: #f3f6fa;
}

.product-tabs span {
  color: #6b7e92;
}

.product-tabs .active {
  background: linear-gradient(135deg, rgba(23, 167, 160, 0.14), rgba(121, 97, 201, 0.12));
  color: #17364d;
}

.mock-field b {
  background: #f5f7fa;
}

.mock-actions span {
  border-color: var(--line);
  background: #ffffff;
  color: #31465c;
}

.feature-card,
.steps li,
.plan,
.policy-card {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.91);
  box-shadow: 0 18px 48px rgba(35, 55, 82, 0.09);
}

.steps li > span {
  background: linear-gradient(135deg, rgba(23, 167, 160, 0.12), rgba(121, 97, 201, 0.11));
  color: #147f7a;
}

.plan.featured {
  border-color: rgba(23, 167, 160, 0.30);
  background: linear-gradient(145deg, #edf9f7, #f3f1fb);
}

.plan li {
  color: #50657a;
}

.final-cta {
  border-color: rgba(23, 167, 160, 0.20);
  background:
    radial-gradient(circle at 18% 20%, rgba(23, 167, 160, 0.10), transparent 35%),
    radial-gradient(circle at 82% 70%, rgba(121, 97, 201, 0.10), transparent 38%),
    rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow);
}

.site-footer {
  border-top-color: var(--line);
}

.site-footer a:hover,
.policy-card strong {
  color: #1d3045;
}

.policy-card a {
  color: #147f7a;
}

.policy-card section + section {
  border-top-color: var(--line);
}

@media (max-width: 760px) {
  .menu-button {
    border-color: var(--line);
    background: #ffffff;
    color: #24374e;
  }

  .site-nav {
    border-color: var(--line);
    background: #ffffff;
    box-shadow: var(--shadow);
  }

  .privacy-nav {
    background: transparent;
    box-shadow: none;
  }
}

/* v1.11.2 interactive product screens and pricing correction */
.product-tabs button {
  position: relative;
  min-width: 0;
  padding: 8px 3px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: #5a6883;
  font: inherit;
  font-size: 8px;
  font-weight: 800;
  text-align: center;
  cursor: pointer;
  transition: background 160ms ease, color 160ms ease;
}

.product-tabs button:hover,
.product-tabs button:focus-visible {
  background: #f4f7fb;
  color: #17243a;
  outline: none;
}

.product-tabs button:focus-visible {
  box-shadow: inset 0 0 0 2px rgba(47,111,237,.28);
}

.product-tabs button.active {
  background: #eef4ff;
  color: #225bcc;
}

.product-tabs button.active::after {
  content: "";
  position: absolute;
  right: 18%;
  bottom: 1px;
  left: 18%;
  height: 2px;
  border-radius: 999px;
  background: #2f6fed;
}

.product-screens {
  min-height: 326px;
  position: relative;
}

.product-screen[hidden] { display: none; }

.product-screen.active {
  animation: previewScreenIn 260ms cubic-bezier(.2,.75,.25,1) both;
}

.product-screen .tool-card { margin-bottom: 9px; }

.preview-list,
.recognition-card {
  display: grid;
  gap: 7px;
  padding: 10px;
  border: 1px solid #dfe6ef;
  border-radius: 13px;
  background: #f8fafc;
}

.preview-list > div {
  display: grid;
  grid-template-columns: auto minmax(0,1fr) auto;
  align-items: center;
  gap: 9px;
  min-height: 42px;
  padding: 7px 9px;
  border: 1px solid #e3e9f1;
  border-radius: 10px;
  background: #ffffff;
}

.preview-list strong {
  overflow: hidden;
  color: #17243a;
  font-size: 10px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.preview-list span {
  color: #6b7890;
  font-size: 8px;
}

.colour-preview i {
  width: 29px;
  height: 29px;
  border: 1px solid rgba(14,23,38,.10);
  border-radius: 8px;
}

.swatch-blue { background: #2f6fed; }
.swatch-ink { background: #0e1726; }
.swatch-ground { background: #f3f5f9; }
.swatch-slate { background: #5a6883; }

.recognition-card {
  min-height: 158px;
  align-content: start;
}

.recognition-card span {
  width: max-content;
  padding: 4px 7px;
  border-radius: 999px;
  background: #e8f7f1;
  color: #188a68;
  font-size: 8px;
  font-weight: 900;
  text-transform: uppercase;
}

.recognition-card strong {
  margin-top: 7px;
  color: #17243a;
  font-size: 14px;
  line-height: 1.35;
}

.recognition-card p {
  margin: 0;
  color: #5a6883;
  font-size: 9px;
}

.clipboard-preview > div {
  grid-template-columns: minmax(0,1fr) auto;
}

.product-screen .mock-actions {
  margin-top: 9px;
}

.plan.featured > .popular {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 3;
  width: auto;
  margin: 0;
  padding: 5px 9px;
  white-space: nowrap;
}

.plan.featured > .plan-name {
  display: block;
  min-height: 28px;
  padding-right: 105px;
}

@keyframes previewScreenIn {
  from { opacity: 0; transform: translateX(8px); }
}

@media (max-width: 460px) {
  .product-tabs button { font-size: 7px; }
  .product-screens { min-height: 320px; }
}

@media (prefers-reduced-motion: reduce) {
  .product-screen.active { animation: none; }
}

/* v1.11 premium motion website */
body {
  position: relative;
  isolation: isolate;
}

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

.site-ambient {
  position: fixed;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  pointer-events: none;
}

.site-orb {
  position: absolute;
  border-radius: 999px;
  opacity: .68;
  will-change: transform;
}

.site-orb-one {
  width: 520px;
  height: 520px;
  top: -260px;
  right: -120px;
  background: radial-gradient(circle, rgba(121,97,201,.20), rgba(121,97,201,0) 68%);
  animation: siteDriftOne 22s ease-in-out infinite alternate;
}

.site-orb-two {
  width: 620px;
  height: 620px;
  top: 36%;
  left: -350px;
  background: radial-gradient(circle, rgba(23,167,160,.16), rgba(23,167,160,0) 69%);
  animation: siteDriftTwo 26s ease-in-out infinite alternate;
}

.site-orb-three {
  width: 480px;
  height: 480px;
  right: -270px;
  bottom: -120px;
  background: radial-gradient(circle, rgba(63,99,183,.15), rgba(63,99,183,0) 70%);
  animation: siteDriftThree 24s ease-in-out infinite alternate;
}

.site-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(42,70,104,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(42,70,104,.035) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.48), transparent 72%);
}

.site-header {
  animation: navEntrance 560ms cubic-bezier(.2,.8,.2,1) both;
}

.brand-mark {
  background-size: 220% 220%;
  animation: brandHover 5.5s ease-in-out infinite, gradientTravel 9s ease infinite;
}

.hero-copy {
  animation: heroEntrance 680ms 90ms cubic-bezier(.2,.8,.2,1) both;
}

.hero h1 span {
  background-size: 220% 220%;
  animation: gradientTravel 7s ease infinite;
}

.button,
.nav-cta {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.button::after,
.nav-cta::after {
  content: "";
  position: absolute;
  inset: -75% auto -75% -40%;
  z-index: -1;
  width: 34%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.52), transparent);
  transform: translateX(-240%) rotate(14deg);
  transition: transform 560ms ease;
  pointer-events: none;
}

.button:hover::after,
.nav-cta:hover::after {
  transform: translateX(560%) rotate(14deg);
}

.button:active {
  transform: translateY(0) scale(.98);
}

.product-stage {
  perspective: 1100px;
  animation: productEntrance 760ms 160ms cubic-bezier(.2,.8,.2,1) both;
}

.product-window {
  --rx: 0deg;
  --ry: 0deg;
  transform: rotateX(var(--rx)) rotateY(var(--ry)) rotate(1.2deg) translateY(var(--lift, 0));
  transform-style: preserve-3d;
  transition: transform 180ms ease-out, box-shadow 220ms ease;
  will-change: transform;
}

.product-stage:hover .product-window {
  --lift: -5px;
  box-shadow: 0 38px 95px rgba(35,55,82,.18), inset 0 1px 0 #fff;
}

.product-window > * {
  transform: translateZ(10px);
}

.glow-one { animation: glowBreatheOne 8s ease-in-out infinite; }
.glow-two { animation: glowBreatheTwo 9s ease-in-out infinite; }

.floating-cue {
  position: absolute;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  border: 1px solid rgba(28,51,79,.11);
  border-radius: 999px;
  background: rgba(255,255,255,.88);
  box-shadow: 0 14px 38px rgba(35,55,82,.12);
  backdrop-filter: blur(14px);
  color: #3d5369;
  font-size: 10px;
  font-weight: 800;
  white-space: nowrap;
}

.floating-cue i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gradient);
  box-shadow: 0 0 0 5px rgba(23,167,160,.09);
}

.cue-detect { top: 16%; left: -3%; animation: cueFloat 6.4s ease-in-out infinite; }
.cue-export { right: -7%; bottom: 24%; animation: cueFloat 7.2s .8s ease-in-out infinite; }
.cue-private { left: 4%; bottom: 9%; animation: cueFloat 6.8s 1.4s ease-in-out infinite; }

.capability-rail {
  width: 100%;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,.58);
  backdrop-filter: blur(16px);
}

.rail-track {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 15px 0;
  color: #586d82;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .10em;
  text-transform: uppercase;
  animation: capabilityScroll 28s linear infinite;
}

.rail-track i {
  color: var(--teal);
  font-style: normal;
}

.feature-card,
.steps li,
.plan,
.final-cta {
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.feature-card:hover,
.steps li:hover,
.plan:hover {
  transform: translateY(-7px);
  border-color: rgba(23,167,160,.26);
  box-shadow: 0 28px 64px rgba(35,55,82,.14);
}

.feature-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(125deg, transparent 25%, rgba(255,255,255,.54) 50%, transparent 75%);
  transform: translateX(-125%);
  transition: transform 650ms ease;
  pointer-events: none;
}

.feature-card:hover::before {
  transform: translateX(125%);
}

.plan.featured {
  overflow: hidden;
}

.plan.featured::after {
  content: "";
  position: absolute;
  inset: -55%;
  background: conic-gradient(from 0deg, transparent, rgba(23,167,160,.10), rgba(121,97,201,.12), transparent 62%);
  animation: planAura 13s linear infinite;
  pointer-events: none;
}

.plan.featured > * { position: relative; z-index: 1; }

.final-cta {
  overflow: hidden;
  background-size: 160% 160%;
  animation: ctaBreath 10s ease-in-out infinite;
}

.motion-ready .reveal-target {
  opacity: 0;
  transform: translateY(24px) scale(.985);
  transition:
    opacity 620ms cubic-bezier(.2,.8,.2,1) var(--delay, 0ms),
    transform 620ms cubic-bezier(.2,.8,.2,1) var(--delay, 0ms);
}

.motion-ready .reveal-target.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.motion-ready .feature-grid .reveal-target:nth-child(2),
.motion-ready .steps .reveal-target:nth-child(2),
.motion-ready .plan-grid .reveal-target:nth-child(2) { --delay: 65ms; }
.motion-ready .feature-grid .reveal-target:nth-child(3),
.motion-ready .steps .reveal-target:nth-child(3),
.motion-ready .plan-grid .reveal-target:nth-child(3) { --delay: 130ms; }
.motion-ready .feature-grid .reveal-target:nth-child(4) { --delay: 195ms; }

@keyframes navEntrance { from { opacity: 0; transform: translateY(-14px); } }
@keyframes heroEntrance { from { opacity: 0; transform: translateY(20px); } }
@keyframes productEntrance { from { opacity: 0; transform: translateY(26px) scale(.96); } }
@keyframes siteDriftOne { to { transform: translate(-130px, 150px) scale(1.12); } }
@keyframes siteDriftTwo { to { transform: translate(210px, -130px) scale(.86); } }
@keyframes siteDriftThree { to { transform: translate(-120px, -160px) scale(1.16); } }
@keyframes brandHover { 0%,100% { transform: translateY(0) rotate(0); } 50% { transform: translateY(-3px) rotate(2deg); } }
@keyframes gradientTravel { 0%,100% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } }
@keyframes glowBreatheOne { 0%,100% { transform: scale(.92); opacity: .65; } 50% { transform: scale(1.12) translate(-14px, 18px); opacity: 1; } }
@keyframes glowBreatheTwo { 0%,100% { transform: scale(1.06); opacity: .72; } 50% { transform: scale(.90) translate(22px, -15px); opacity: 1; } }
@keyframes cueFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }
@keyframes capabilityScroll { to { transform: translateX(-50%); } }
@keyframes planAura { to { transform: rotate(360deg); } }
@keyframes ctaBreath { 0%,100% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } }

@media (max-width: 760px) {
  .floating-cue { font-size: 9px; }
  .cue-detect { left: -1%; }
  .cue-export { right: -1%; }
  .cue-private { left: 2%; }
  .product-window { transform: none; }
  .product-stage:hover .product-window { transform: translateY(-4px); }
}

@media (max-width: 460px) {
  .floating-cue { display: none; }
  .rail-track { gap: 20px; font-size: 9px; }
}

@media (prefers-reduced-motion: reduce) {
  .site-orb,
  .brand-mark,
  .hero-copy,
  .site-header,
  .product-stage,
  .glow,
  .floating-cue,
  .rail-track,
  .plan.featured::after,
  .final-cta {
    animation: none !important;
  }

  .motion-ready .reveal-target,
  .motion-ready .reveal-target.is-visible {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .product-window,
  .product-stage:hover .product-window {
    transform: none !important;
  }
}

/* v1.11.1 RightClickMagic Teaser v2 alignment */
:root {
  color-scheme: light;
  --bg: #f3f5f9;
  --bg-deep: #edf1f6;
  --surface: #ffffff;
  --surface-solid: #ffffff;
  --line: #dfe6ef;
  --text: #0e1726;
  --muted: #5a6883;
  --teal: #188a68;
  --blue: #2f6fed;
  --violet: #2f6fed;
  --gold: #c98b32;
  --gradient: #2f6fed;
  --shadow: 0 18px 46px rgba(25, 43, 69, .10);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body {
  background: #f3f5f9;
  color: #0e1726;
}

.site-ambient,
.glow,
.floating-cue { display: none; }

.site-header {
  border-color: #dfe6ef;
  background: rgba(255,255,255,.96);
  box-shadow: 0 9px 28px rgba(25,43,69,.08);
  backdrop-filter: blur(14px);
}

.brand-mark,
.mini-mark {
  border-radius: 9px;
  background: #2f6fed;
  color: #ffffff;
  box-shadow: none;
  animation: none;
}

.brand strong,
.hero h1,
.section-heading h2,
.workflow-copy h2,
.final-cta h2,
.feature-card h3,
.plan,
.policy-hero h1,
.policy-card h2 {
  color: #0e1726;
}

.brand small,
.hero-copy > p,
.section-heading p,
.workflow-copy > p,
.feature-card p,
.steps p,
.plan > p,
.policy-hero p,
.policy-card p,
.policy-card ul,
.site-footer {
  color: #5a6883;
}

.site-nav a { color: #52617a; }

.site-nav a:hover,
.site-nav a:focus-visible {
  background: #f1f5fb;
  color: #17243a;
}

.site-nav .nav-cta,
.button.primary,
.mock-actions strong {
  border-color: #2f6fed;
  background: #2f6fed;
  color: #ffffff;
  box-shadow: 0 9px 22px rgba(47,111,237,.20);
}

.button::after,
.nav-cta::after { content: none; }

.button {
  border-radius: 10px;
}

.button.primary:hover,
.site-nav .nav-cta:hover {
  background: #2865dc;
  color: #ffffff;
}

.button.secondary {
  border-color: #dfe6ef;
  background: #ffffff;
  color: #17243a;
  box-shadow: none;
}

.button.secondary:hover {
  border-color: #cbd7e6;
  background: #f7f9fc;
}

.eyebrow {
  color: #2f6fed;
  letter-spacing: .10em;
}

.hero-copy { animation: heroEntrance 560ms 80ms cubic-bezier(.2,.75,.25,1) both; }

.hero h1 span {
  background: none;
  color: #0e1726;
  animation: none;
}

.trust-row { color: #52617a; }

.trust-row span {
  padding: 6px 10px;
  border: 1px solid #dfe6ef;
  border-radius: 999px;
  background: rgba(255,255,255,.76);
}

.trust-row span::before {
  background: #2f6fed;
  box-shadow: none;
}

.product-window {
  border-color: #dfe6ef;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 22px 55px rgba(25,43,69,.13);
}

.product-stage:hover .product-window {
  box-shadow: 0 28px 68px rgba(25,43,69,.16);
}

.window-bar { color: #52617a; }
.window-bar span { background: #2f6fed; }
.window-bar i { background: #9aa8ba; }

.product-account,
.tool-card,
.usage-row,
.mock-field {
  border-color: #dfe6ef;
  background: #ffffff;
}

.product-account strong,
.tool-card h2,
.usage-row strong,
.mock-field b { color: #0e1726; }

.product-account small,
.tool-card p,
.usage-row,
.mock-field span { color: #5a6883; }

.product-account em,
.popular {
  background: #eaf2ff;
  color: #225bcc;
}

.product-tabs {
  border-color: #dfe6ef;
  background: #ffffff;
}

.product-tabs span { color: #5a6883; }

.product-tabs .active {
  position: relative;
  background: #eef4ff;
  color: #225bcc;
}

.product-tabs .active::after {
  content: "";
  position: absolute;
  right: 18%;
  bottom: 1px;
  left: 18%;
  height: 2px;
  border-radius: 999px;
  background: #2f6fed;
}

.tool-card small { color: #2f6fed; }

.mock-field b {
  background: #f7f9fc;
  color: #17243a;
}

.mock-actions span {
  border-color: #dfe6ef;
  background: #ffffff;
  color: #17243a;
}

.capability-rail {
  border-color: #dfe6ef;
  background: rgba(255,255,255,.90);
  backdrop-filter: blur(12px);
}

.rail-track { color: #17243a; }
.rail-track i { color: #2f6fed; }

.feature-card,
.steps li,
.plan,
.policy-card {
  border-color: #dfe6ef;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 10px 28px rgba(25,43,69,.07);
}

.feature-card::before,
.feature-card::after,
.plan.featured::after { content: none; }

.feature-card > span,
.plan-name { color: #2f6fed; }

.feature-card:hover,
.steps li:hover,
.plan:hover {
  transform: translateY(-5px);
  border-color: #cbd7e6;
  box-shadow: 0 18px 40px rgba(25,43,69,.11);
}

.steps li > span {
  background: #eaf2ff;
  color: #225bcc;
}

.plan.featured {
  border-color: #a9c3f7;
  background: #f4f8ff;
}

.plan li { color: #52617a; }
.plan li::before { color: #2f6fed; }

.final-cta {
  border-color: #cbdaf8;
  background: #ffffff;
  box-shadow: var(--shadow);
  animation: none;
}

.site-footer { border-top-color: #dfe6ef; }
.site-footer a:hover,
.policy-card strong { color: #17243a; }
.policy-card a { color: #225bcc; }

@media (max-width: 760px) {
  .menu-button {
    border-color: #dfe6ef;
    background: #ffffff;
    color: #17243a;
  }

  .site-nav {
    border-color: #dfe6ef;
    background: #ffffff;
  }
}
