:root {
  color-scheme: light dark;

  --landing-sans: "PingFang SC", "MiSans", "HarmonyOS Sans SC", "Hiragino Sans GB",
    "Noto Sans CJK SC", "Source Han Sans SC", "Microsoft YaHei", system-ui, sans-serif;
  --landing-display: "PingFang SC", "MiSans", "HarmonyOS Sans SC", "Hiragino Sans GB",
    "Noto Sans CJK SC", "Source Han Sans SC", "Microsoft YaHei", system-ui, sans-serif;

  --landing-canvas: #ffffff;
  --landing-surface: #ffffff;
  --landing-surface-soft: #f6f6f8;
  --landing-surface-muted: #eff0f4;
  --landing-ink: #17181b;
  --landing-ink-soft: #5d626a;
  --landing-ink-muted: #858991;
  --landing-line: #dfe1e7;
  --landing-line-strong: #cfd3d8;
  --landing-accent: #54b9ad;
  --landing-accent-hover: #34776e;
  --landing-accent-soft: #e5f6f2;
  --landing-accent-pale: #edf8f5;
  --landing-focus: #4cb8ad;
  --landing-action: #202226;
  --landing-action-hover: #050607;
  --landing-nav: #202226;
  --landing-nav-soft: #2b2d32;
  --landing-header-surface: rgb(245 246 249 / 0.94);
  --landing-header-ink: #202226;
  --landing-header-muted: #777c84;
  --landing-header-hover: #eef0f5;

  --landing-brand-cyan: #5cc8d7;
  --landing-brand-yellow: #f0ce54;
  --landing-brand-rose: #e98978;
  --landing-brand-leaf: #86c58f;

  --landing-shadow-control: 0 1px 1px rgb(15 15 25 / 0.08), 0 0 0 1px rgb(15 15 25 / 0.04);
  --landing-shadow-media: 0 28px 80px rgb(24 52 47 / 0.16);
  --landing-shadow-float: 0 18px 54px rgb(24 25 37 / 0.14);

  --landing-radius-panel: 28px;
  --landing-radius-media: 20px;
  --landing-radius-control: 14px;
  --landing-radius-pill: 999px;

  --landing-shell: 1180px;
  --landing-gutter: clamp(20px, 3.8vw, 48px);
  --landing-header-height: 54px;

  --motion-press: 120ms;
  --motion-ui: 170ms;
  --motion-menu-enter: 180ms;
  --motion-menu-exit: 130ms;
  --motion-reveal: 520ms;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);

  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

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

body {
  min-width: 320px;
  margin: 0;
  overflow-x: clip;
  background: var(--landing-canvas);
  color: var(--landing-ink);
  font-family: var(--landing-sans);
  line-height: 1.6;
}

button,
input,
textarea,
select {
  color: inherit;
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: rgb(83 189 179 / 0.16);
}

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

img {
  display: block;
  max-width: 100%;
}

figure,
fieldset,
h1,
h2,
h3,
p,
ol,
ul {
  margin: 0;
}

fieldset {
  min-width: 0;
  padding: 0;
  border: 0;
}

ol,
ul {
  padding: 0;
  list-style: none;
}

[hidden] {
  display: none !important;
}

::selection {
  background: var(--landing-accent-soft);
  color: var(--landing-ink);
}

:focus-visible {
  outline: 3px solid var(--landing-focus);
  outline-offset: 3px;
}

.site-shell {
  width: min(100%, var(--landing-shell));
  margin-inline: auto;
  padding-right: max(var(--landing-gutter), env(safe-area-inset-right));
  padding-left: max(var(--landing-gutter), env(safe-area-inset-left));
}

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

.site-skip-link {
  position: fixed;
  top: max(10px, env(safe-area-inset-top));
  left: max(16px, env(safe-area-inset-left));
  z-index: 100;
  padding: 10px 16px;
  border-radius: var(--landing-radius-pill);
  background: var(--landing-action);
  color: #fff;
  font-size: 13px;
  font-weight: 650;
  transform: translateY(-180%);
  transition: transform var(--motion-ui) var(--ease-out);
}

.site-skip-link:focus {
  transform: translateY(0);
}

.icon {
  display: inline-block;
  width: 1em;
  height: 1em;
  flex: 0 0 auto;
  background: currentColor;
  -webkit-mask: var(--icon-source) center / contain no-repeat;
  mask: var(--icon-source) center / contain no-repeat;
}

.icon-arrow-right {
  --icon-source: url("/assets/landing/icons/arrow-right.svg");
}

.icon-arrow-up-right {
  --icon-source: url("/assets/landing/icons/arrow-up-right.svg");
}

/* Floating navigation */

.site-header {
  position: fixed;
  top: calc(20px + env(safe-area-inset-top));
  right: 0;
  left: 0;
  z-index: 40;
  pointer-events: none;
}

.site-header-inner {
  width: min(calc(100% - 32px), 820px);
  min-height: var(--landing-header-height);
  padding: 7px 8px 7px 14px;
  border: 1px solid rgb(24 25 37 / 0.08);
  border-radius: var(--landing-radius-pill);
  background: var(--landing-header-surface);
  box-shadow:
    0 14px 38px rgb(24 25 37 / 0.09),
    inset 0 1px 0 rgb(255 255 255 / 0.9);
  -webkit-backdrop-filter: blur(18px) saturate(125%);
  backdrop-filter: blur(18px) saturate(125%);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  pointer-events: auto;
}

.site-brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  width: max-content;
}

.site-brand-mark {
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  object-fit: contain;
  display: block;
}

.site-brand-copy {
  display: grid;
  line-height: 1.05;
}

.site-brand-copy strong {
  color: var(--landing-header-ink);
  font-size: 15px;
  font-weight: 650;
  letter-spacing: -0.02em;
}

.site-brand-copy small {
  margin-top: 4px;
  color: var(--landing-header-muted);
  font-size: 8px;
  font-weight: 500;
  white-space: nowrap;
}

.site-navigation {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.site-navigation > a {
  position: relative;
  padding: 8px 12px;
  border-radius: var(--landing-radius-pill);
  color: var(--landing-header-muted);
  font-size: 12px;
  font-weight: 520;
  transition:
    background-color var(--motion-ui) ease,
    color var(--motion-ui) ease;
}

.site-navigation-mobile-actions {
  display: none;
}

.site-actions {
  display: flex;
  align-items: center;
  gap: 5px;
}

.site-login-link,
.site-primary-link,
.site-navigation-primary {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  border-radius: var(--landing-radius-pill);
  font-size: 12px;
  font-weight: 600;
  transition:
    background-color var(--motion-ui) ease,
    color var(--motion-ui) ease,
    transform var(--motion-press) ease;
}

.site-login-link {
  padding: 0 10px;
  color: var(--landing-header-ink);
}

.site-primary-link,
.site-navigation-primary {
  position: relative;
  min-width: 132px;
  padding: 0 34px;
  background: var(--landing-action);
  color: #fff;
}

.site-primary-link > .icon,
.site-navigation-primary > .icon {
  position: absolute;
  top: 50%;
  right: 14px;
  transform: translateY(-50%);
}

.site-menu-toggle {
  position: relative;
  display: none;
  width: 38px;
  height: 38px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: var(--landing-header-hover);
  color: var(--landing-header-ink);
  cursor: pointer;
}

.site-menu-toggle span {
  position: absolute;
  left: 12px;
  width: 14px;
  height: 1px;
  background: currentColor;
  transition:
    top var(--motion-ui) ease,
    transform var(--motion-ui) ease;
}

.site-menu-toggle span:first-child {
  top: 15px;
}

.site-menu-toggle span:last-child {
  top: 22px;
}

.site-menu-toggle[aria-expanded="true"] span:first-child {
  top: 19px;
  transform: rotate(45deg);
}

.site-menu-toggle[aria-expanded="true"] span:last-child {
  top: 19px;
  transform: rotate(-45deg);
}

/* Shared controls */

.button {
  position: relative;
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 0 42px;
  border: 1px solid transparent;
  border-radius: var(--landing-radius-pill);
  cursor: pointer;
  font-size: 14px;
  font-weight: 620;
  transition:
    background-color var(--motion-ui) ease,
    border-color var(--motion-ui) ease,
    color var(--motion-ui) ease,
    box-shadow var(--motion-ui) ease,
    transform var(--motion-press) ease;
}

.button > .icon {
  position: absolute;
  top: 50%;
  right: 18px;
  transform: translateY(-50%);
}

.button-primary {
  background: var(--landing-action);
  color: #fff;
  box-shadow: 0 12px 30px rgb(24 26 29 / 0.16);
}

.button-secondary {
  border-color: transparent;
  background: var(--landing-surface-soft);
  color: var(--landing-ink);
}

/* Hero */

.hero-section {
  position: relative;
  padding: calc(132px + env(safe-area-inset-top)) 0 0;
  overflow: hidden;
  background: var(--landing-canvas);
}

.hero-grid {
  display: grid;
  justify-items: center;
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 820px;
  text-align: center;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  border-radius: var(--landing-radius-pill);
  background: var(--landing-accent-pale);
  color: var(--landing-accent-hover);
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.05em;
}

.eyebrow::before {
  width: 6px;
  height: 6px;
  margin-right: 7px;
  border-radius: 50%;
  background: var(--landing-accent);
  box-shadow: 0 0 0 5px rgb(83 189 179 / 0.11);
  content: "";
}

.hero-copy h1 {
  max-width: 9.5em;
  margin: 20px auto 0;
  color: var(--landing-ink);
  font-family: var(--landing-display);
  font-size: clamp(54px, 5.2vw, 64px);
  font-weight: 620;
  line-height: 1.07;
  letter-spacing: -0.065em;
}

.hero-copy h1 span {
  display: block;
}

.hero-copy > p {
  max-width: 38em;
  margin: 20px auto 0;
  color: var(--landing-ink-soft);
  font-size: 17px;
  font-weight: 440;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  justify-content: center;
  margin-top: 26px;
  gap: 10px;
}

.hero-value {
  display: flex;
  align-items: stretch;
  justify-content: center;
  margin-top: 34px;
  color: var(--landing-ink-muted);
}

.hero-value > div {
  display: grid;
  align-content: center;
  text-align: center;
}

.hero-value span {
  font-size: 11px;
  font-weight: 520;
}

.hero-value strong {
  margin-top: 4px;
  color: var(--landing-ink);
  font-size: 24px;
  font-weight: 620;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.04em;
}

.hero-value strong small {
  margin-left: 5px;
  color: var(--landing-ink-soft);
  font-size: 11px;
  font-weight: 520;
  letter-spacing: 0;
}

.hero-workspace {
  position: relative;
  width: 100%;
  margin-top: 54px;
  padding: 54px 0 28px;
}

.hero-workspace-frame {
  position: relative;
  width: min(100%, 1100px);
  margin-inline: auto;
  overflow: hidden;
  border: 1px solid rgb(255 255 255 / 0.88);
  border-radius: var(--landing-radius-media);
  background: var(--landing-surface);
  box-shadow: var(--landing-shadow-media);
}

.workspace-chrome {
  display: grid;
  min-height: 46px;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 17px;
  border-bottom: 1px solid var(--landing-line);
  background: rgb(255 255 255 / 0.94);
  color: var(--landing-ink-muted);
  font-size: 10px;
}

.workspace-chrome > span:nth-child(2) {
  color: var(--landing-ink-soft);
  font-weight: 560;
}

.workspace-chrome em {
  justify-self: end;
  color: var(--landing-accent-hover);
  font-size: 9px;
  font-style: normal;
  font-weight: 600;
}

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

.workspace-dots i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #e58b7d;
}

.workspace-dots i:nth-child(2) {
  background: #edc45c;
}

.workspace-dots i:nth-child(3) {
  background: #6dc7b3;
}

.hero-workspace img {
  width: 100%;
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
}

.hero-workspace figcaption {
  position: absolute;
  top: 8px;
  left: 50%;
  padding: 8px 14px;
  border: 1px solid var(--landing-line);
  border-radius: var(--landing-radius-pill);
  background: var(--landing-surface-soft);
  color: #454153;
  box-shadow: 0 8px 24px rgb(24 25 37 / 0.06);
  font-size: 10px;
  font-weight: 580;
  transform: translateX(-50%);
  white-space: nowrap;
}

/* Capability cards */

.capabilities-section {
  padding: 128px 0 136px;
  background: var(--landing-canvas);
}

.section-heading {
  max-width: 700px;
}

.capabilities-section .section-heading,
.pricing-header .section-heading {
  margin-inline: auto;
  text-align: center;
}

.section-heading h2 {
  margin-top: 18px;
  color: var(--landing-ink);
  font-family: var(--landing-display);
  font-size: clamp(42px, 4.8vw, 58px);
  font-weight: 590;
  line-height: 1.12;
  letter-spacing: -0.055em;
}

.section-heading > p {
  max-width: 42em;
  margin: 16px auto 0;
  color: var(--landing-ink-soft);
  font-size: 15px;
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  margin-top: 56px;
  gap: 16px;
}

.capability-card {
  display: grid;
  height: 100%;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  border-radius: var(--landing-radius-panel);
  background: var(--landing-surface-soft);
  transition:
    background-color var(--motion-ui) ease,
    transform var(--motion-ui) var(--ease-out);
}

.capability-card figure {
  width: 100%;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: #eceaf2;
}

.capability-card:first-child figure {
  background: #eee7de;
}

.capability-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 560ms var(--ease-out);
}

.capability-card:first-child img {
  object-position: center 18%;
}

.capability-card > div {
  height: 100%;
  min-height: 188px;
  padding: 26px 26px 30px;
}

.capability-card > div > span {
  display: inline-flex;
  width: 32px;
  height: 32px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--landing-accent-soft);
  color: var(--landing-accent-hover);
  font-size: 10px;
  font-weight: 650;
}

.capability-card:nth-child(2) > div > span {
  background: #e8f2ff;
  color: #3274c9;
}

.capability-card:nth-child(3) > div > span {
  background: #e7f6ef;
  color: #2c8b64;
}

.capability-card h3 {
  margin-top: 17px;
  color: var(--landing-ink);
  font-size: 24px;
  font-weight: 590;
  letter-spacing: -0.035em;
}

.capability-card p {
  margin-top: 8px;
  color: var(--landing-ink-soft);
  font-size: 13px;
  line-height: 1.65;
}

.capability-card small {
  display: block;
  margin-top: 10px;
  color: var(--landing-ink-muted);
  font-size: 10px;
  line-height: 1.6;
}

.demo-disclosure {
  margin-top: 18px;
  color: var(--landing-ink-muted);
  font-size: 10px;
  text-align: right;
}

/* Pricing */

.pricing-section {
  position: relative;
  padding: 128px 0 136px;
  overflow: hidden;
  background: linear-gradient(180deg, #fff 0%, #f7f8f8 24%, #f1f4f3 100%);
}

.pricing-section::before {
  position: absolute;
  top: 38%;
  left: 50%;
  width: min(860px, 78vw);
  height: 320px;
  border-radius: 50%;
  background: rgb(83 189 179 / 0.1);
  content: "";
  filter: blur(90px);
  pointer-events: none;
  transform: translate(-50%, -50%);
}

.pricing-panel {
  position: relative;
  padding: 72px 28px 26px;
  overflow: hidden;
  border: 1px solid rgb(24 25 37 / 0.07);
  border-radius: 40px;
  background: rgb(255 255 255 / 0.82);
  box-shadow:
    0 32px 90px rgb(24 25 37 / 0.08),
    inset 0 1px 0 rgb(255 255 255 / 0.9);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.pricing-panel::before {
  position: absolute;
  top: -180px;
  left: 50%;
  width: 560px;
  height: 300px;
  border-radius: 50%;
  background: rgb(83 189 179 / 0.08);
  content: "";
  filter: blur(70px);
  pointer-events: none;
  transform: translateX(-50%);
}

.pricing-header {
  position: relative;
  display: grid;
  justify-items: center;
  z-index: 1;
}

.pricing-audience-control {
  margin: 28px auto 0;
}

.segment-control {
  display: flex;
  width: max-content;
  padding: 4px;
  border: 1px solid rgb(24 25 37 / 0.06);
  border-radius: var(--landing-radius-pill);
  background: rgb(255 255 255 / 0.88);
  box-shadow: var(--landing-shadow-control);
}

.segment-control label {
  position: relative;
  cursor: pointer;
}

.segment-control input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.segment-control label > span {
  display: flex;
  min-height: 35px;
  align-items: center;
  justify-content: center;
  padding: 0 15px;
  border-radius: var(--landing-radius-pill);
  color: var(--landing-ink-muted);
  font-size: 11px;
  font-weight: 560;
  white-space: nowrap;
  transition:
    background-color var(--motion-ui) ease,
    color var(--motion-ui) ease,
    box-shadow var(--motion-ui) ease;
}

.segment-control label > span small {
  margin-left: 5px;
  color: inherit;
  font-size: 8px;
  font-weight: 600;
}

.segment-control input:checked + span {
  background: var(--landing-nav);
  color: #fff;
  box-shadow: 0 6px 16px rgb(20 20 31 / 0.16);
}

.segment-control input:focus-visible + span {
  outline: 3px solid var(--landing-focus);
  outline-offset: 3px;
}

.pricing-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 44px;
  padding: 10px;
  border: 1px solid rgb(24 25 37 / 0.07);
  border-radius: 32px;
  background: rgb(241 242 244 / 0.9);
  box-shadow:
    inset 0 1px 0 rgb(255 255 255 / 0.9),
    0 18px 50px rgb(24 25 37 / 0.06);
  gap: 9px;
}

.pricing-card {
  position: relative;
  display: flex;
  min-height: 420px;
  flex-direction: column;
  padding: 26px;
  overflow: hidden;
  border: 1px solid rgb(24 25 37 / 0.06);
  border-radius: 23px;
  background: rgb(255 255 255 / 0.96);
  box-shadow:
    0 8px 24px rgb(24 25 37 / 0.035),
    inset 0 1px 0 rgb(255 255 255 / 0.9);
  transition:
    border-color var(--motion-ui) ease,
    box-shadow var(--motion-ui) ease,
    transform var(--motion-ui) var(--ease-out);
}

.pricing-card-featured {
  border-color: rgb(83 189 179 / 0.42);
  background: #fff;
  box-shadow:
    0 16px 40px rgb(47 116 109 / 0.11),
    inset 0 1px 0 rgb(255 255 255 / 0.94);
}

.pricing-card-featured::before {
  position: absolute;
  top: 0;
  right: 26px;
  left: 26px;
  height: 3px;
  border-radius: 0 0 var(--landing-radius-pill) var(--landing-radius-pill);
  background: var(--landing-accent);
  content: "";
}

.pricing-card header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.pricing-card h3 {
  color: var(--landing-ink);
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -0.025em;
}

.pricing-card header > span {
  padding: 6px 10px;
  border-radius: var(--landing-radius-pill);
  background: #f4f3f6;
  color: var(--landing-ink-muted);
  font-size: 9px;
  font-weight: 600;
  white-space: nowrap;
}

.pricing-card-featured header > span {
  background: var(--landing-accent-soft);
  color: var(--landing-accent-hover);
}

.pricing-card header > .plan-discount,
.pricing-card-featured header > .plan-discount {
  background: #fff0e2;
  color: #9a5b2a;
}

.plan-description {
  min-height: 38px;
  margin-top: 13px;
  color: var(--landing-ink-soft);
  font-size: 11px;
  line-height: 1.7;
}

.plan-capacity {
  display: grid;
  grid-template-areas:
    "label amount"
    "detail amount";
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  margin-top: 20px;
  padding: 14px 16px;
  border: 1px solid rgb(24 25 37 / 0.05);
  border-radius: 15px;
  background: #f8f8fa;
  column-gap: 16px;
}

.pricing-card-featured .plan-capacity {
  border-color: rgb(83 189 179 / 0.12);
  background: #f5faf9;
}

.plan-capacity > span {
  grid-area: label;
  color: var(--landing-ink-muted);
  font-size: 9px;
  font-weight: 560;
  letter-spacing: 0.03em;
}

.plan-capacity strong {
  display: flex;
  grid-area: amount;
  align-items: baseline;
  justify-self: end;
  color: var(--landing-ink-soft);
  font-size: clamp(24px, 2.2vw, 28px);
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  line-height: 1;
  letter-spacing: -0.035em;
}

.plan-capacity strong small {
  margin-left: 4px;
  color: var(--landing-ink-muted);
  font-size: 10px;
  font-weight: 540;
  letter-spacing: 0;
}

.plan-capacity p {
  grid-area: detail;
  margin-top: 3px;
  color: var(--landing-ink-muted);
  font-size: 9px;
  font-weight: 520;
}

.plan-capacity p span {
  color: var(--landing-accent-hover);
  font-weight: 650;
}

.plan-price {
  display: flex;
  align-items: baseline;
  margin-top: 28px;
}

.plan-price > span {
  margin-right: 5px;
  color: var(--landing-ink);
  font-size: 17px;
  font-weight: 620;
}

.plan-price strong {
  color: var(--landing-ink);
  font-size: clamp(46px, 4.2vw, 56px);
  font-weight: 660;
  font-variant-numeric: tabular-nums;
  line-height: 0.94;
  letter-spacing: -0.055em;
}

.plan-price small {
  margin-left: 7px;
  color: var(--landing-ink-muted);
  font-size: 12px;
  font-weight: 540;
}

.plan-meta {
  min-height: 22px;
  margin-top: 10px;
  color: var(--landing-ink-muted);
  font-size: 10px;
  line-height: 1.6;
}

.pricing-grid-enterprise .pricing-card {
  min-height: 690px;
}

.pricing-card-enterprise .plan-price {
  margin-top: 18px;
}

.pricing-card-enterprise .plan-capacity {
  margin-top: 16px;
}

.plan-billing {
  display: flex;
  min-height: 28px;
  align-items: center;
  margin-top: 9px;
  gap: 9px;
}

.plan-billing del {
  color: var(--landing-ink-muted);
  font-size: 9px;
  text-decoration-color: rgb(24 25 37 / 0.3);
}

.plan-billing span {
  padding: 5px 8px;
  border-radius: var(--landing-radius-pill);
  background: #f4f3f6;
  color: var(--landing-ink-soft);
  font-size: 8px;
  font-weight: 620;
}

.plan-features {
  display: grid;
  margin: 18px 0 22px;
  padding: 16px 2px 0;
  border-top: 1px solid rgb(24 25 37 / 0.07);
  list-style: none;
  gap: 9px;
}

.plan-features li {
  display: flex;
  align-items: center;
  color: var(--landing-ink-soft);
  font-size: 10px;
  line-height: 1.5;
  gap: 9px;
}

.plan-features li::before {
  width: 5px;
  height: 5px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--landing-accent);
  box-shadow: 0 0 0 3px var(--landing-accent-soft);
  content: "";
}

.pricing-card .button {
  width: 100%;
  min-height: 48px;
  margin-top: auto;
}

.plan-expiry-note {
  min-height: 43px;
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid rgb(24 25 37 / 0.07);
  color: var(--landing-ink-muted);
  font-size: 8px;
  line-height: 1.65;
}

.pricing-note {
  max-width: 76em;
  margin: 22px auto 0;
  color: var(--landing-ink-muted);
  font-size: 10px;
  line-height: 1.75;
  text-align: center;
}

/* Closing call to action */

.final-cta-section {
  padding: 120px 0;
  background: var(--landing-canvas);
}

.final-cta-panel {
  position: relative;
  min-height: 340px;
  padding: 62px;
  overflow: hidden;
  border-radius: 34px;
  background:
    radial-gradient(circle at 18% 8%, rgb(83 189 179 / 0.32), transparent 30%),
    radial-gradient(circle at 88% 86%, rgb(216 237 103 / 0.16), transparent 28%),
    var(--landing-nav);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.final-cta-panel::before {
  position: absolute;
  width: 480px;
  height: 480px;
  border: 1px solid rgb(255 255 255 / 0.1);
  border-radius: 50%;
  content: "";
  transform: translate(58%, -46%);
  pointer-events: none;
}

.final-cta-panel > div {
  position: relative;
}

.final-cta-panel > div > span {
  color: #b9afff;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.final-cta-panel h2 {
  margin-top: 10px;
  color: #fff;
  font-family: var(--landing-display);
  font-size: clamp(44px, 5vw, 60px);
  font-weight: 590;
  line-height: 1.1;
  letter-spacing: -0.055em;
}

.final-cta-panel p {
  margin-top: 14px;
  color: rgb(255 255 255 / 0.62);
  font-size: 14px;
}

.final-cta-panel > .button {
  position: absolute;
  right: 36px;
  bottom: 34px;
  background: var(--landing-accent);
  color: #fff;
  box-shadow: none;
}

/* Footer */

.site-footer {
  padding-top: 64px;
  border-top: 1px solid var(--landing-line);
  background: var(--landing-canvas);
}

.site-footer-main {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) auto;
  gap: 80px;
}

.site-footer .site-brand-copy strong {
  color: var(--landing-ink);
}

.site-footer .site-brand-copy small {
  color: var(--landing-ink-muted);
}

.footer-brand p {
  max-width: 30em;
  margin-top: 20px;
  color: var(--landing-ink-soft);
  font-size: 13px;
}

.footer-brand > span {
  display: block;
  margin-top: 6px;
  color: var(--landing-ink-muted);
  font-size: 10px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(110px, 1fr));
  gap: 52px;
}

.footer-links nav {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-links strong {
  margin-bottom: 4px;
  color: var(--landing-ink);
  font-size: 11px;
  font-weight: 620;
}

.footer-links a {
  width: max-content;
  color: var(--landing-ink-muted);
  font-size: 11px;
  transition: color var(--motion-ui) ease;
}

.footer-disclosure {
  margin-top: 38px;
}

.footer-disclosure details {
  padding: 15px 0;
  border-top: 1px solid var(--landing-line);
  color: var(--landing-ink-muted);
  font-size: 10px;
}

.footer-disclosure summary {
  width: max-content;
  color: var(--landing-ink-soft);
  cursor: pointer;
  font-weight: 560;
}

.footer-disclosure p {
  max-width: 84em;
  margin-top: 10px;
  line-height: 1.8;
}

.site-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  padding-bottom: calc(26px + env(safe-area-inset-bottom));
  border-top: 1px solid var(--landing-line);
  color: var(--landing-ink-muted);
  font-size: 9px;
}

/* Motion */

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity var(--motion-reveal) ease var(--reveal-delay, 0ms),
    transform var(--motion-reveal) var(--ease-out) var(--reveal-delay, 0ms);
}

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

@media (hover: hover) and (pointer: fine) {
  .site-navigation > a:hover {
    background: var(--landing-header-hover);
    color: var(--landing-header-ink);
  }

  .site-login-link:hover {
    color: var(--landing-accent-hover);
  }

  .site-primary-link:hover,
  .site-navigation-primary:hover,
  .button-primary:hover {
    background: var(--landing-action-hover);
  }

  .button-secondary:hover {
    background: var(--landing-surface-muted);
  }

  .capability-card:hover {
    background: #f1f2f4;
    transform: translateY(-3px);
  }

  .capability-card:hover img {
    transform: scale(1.025);
  }

  .pricing-card:hover {
    border-color: rgb(83 189 179 / 0.3);
    transform: translateY(-2px);
  }

  .footer-links a:hover,
  .footer-disclosure summary:hover {
    color: var(--landing-accent-hover);
  }
}

.site-primary-link:active,
.site-navigation-primary:active,
.button:active,
.site-menu-toggle:active {
  transform: translateY(0) scale(0.98);
}

/* Responsive */

@media (max-width: 980px) {
  .hero-workspace {
    padding-inline: 0;
  }

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

  .capability-card > div {
    padding-inline: 20px;
  }

  .pricing-panel {
    padding: 58px 22px 22px;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    padding: 8px;
    gap: 8px;
  }

  .pricing-card {
    display: grid;
    min-height: 0;
    grid-template-columns: minmax(135px, 0.7fr) minmax(210px, 1fr) minmax(170px, 0.75fr);
    grid-template-rows: auto auto;
    align-items: center;
    padding: 22px;
    column-gap: 22px;
    row-gap: 14px;
  }

  .pricing-card header {
    display: grid;
    grid-column: 1;
    grid-row: 1;
    justify-content: start;
  }

  .plan-capacity {
    grid-column: 3;
    grid-row: 1;
    margin-top: 0;
  }

  .plan-price {
    grid-column: 2;
    grid-row: 1 / 3;
    justify-self: start;
    margin-top: 0;
  }

  .plan-meta {
    grid-column: 1;
    grid-row: 2;
    min-height: 0;
    margin-top: 0;
  }

  .pricing-card .button {
    grid-column: 3;
    grid-row: 2;
    margin-top: 0;
  }

  .pricing-grid-enterprise .pricing-card {
    display: flex;
    min-height: 0;
    flex-direction: column;
    align-items: stretch;
  }

  .pricing-grid-enterprise .pricing-card header {
    display: flex;
    justify-content: space-between;
  }

  .pricing-grid-enterprise .plan-capacity,
  .pricing-grid-enterprise .plan-price {
    margin-top: 18px;
  }

  .pricing-grid-enterprise .plan-features {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pricing-grid-enterprise .pricing-card .button {
    margin-top: 0;
  }
}

@media (max-width: 760px) {
  :root {
    --landing-gutter: 20px;
  }

  html {
    scroll-padding-top: 96px;
  }

  .site-header {
    top: calc(14px + env(safe-area-inset-top));
  }

  .site-header-inner {
    width: min(calc(100% - 24px), 680px);
    padding-left: 11px;
    gap: 10px;
  }

  .site-brand-copy small {
    display: none;
  }

  .site-navigation {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    left: 0;
    display: grid;
    max-height: min(70vh, 440px);
    padding: 10px;
    overflow: auto;
    overscroll-behavior: contain;
    border: 1px solid rgb(24 25 37 / 0.08);
    border-radius: 22px;
    background: rgb(250 249 252 / 0.98);
    box-shadow: var(--landing-shadow-float);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px) scale(0.985);
    transform-origin: top;
    transition:
      opacity var(--motion-menu-exit) ease,
      transform var(--motion-menu-exit) ease;
  }

  .site-navigation.is-open,
  html:not(.is-js) .site-header:focus-within .site-navigation {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
    transition-duration: var(--motion-menu-enter);
  }

  .site-navigation.is-instant {
    transition-duration: 0ms;
  }

  .site-navigation > a {
    padding: 12px 13px;
    color: var(--landing-header-muted);
  }

  .site-navigation-mobile-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-top: 5px;
    padding-top: 10px;
    border-top: 1px solid rgb(24 25 37 / 0.07);
    gap: 7px;
  }

  .site-navigation-mobile-actions > a:first-child {
    display: inline-flex;
    min-height: 40px;
    align-items: center;
    justify-content: center;
    border-radius: var(--landing-radius-pill);
    background: var(--landing-header-hover);
    color: var(--landing-header-ink);
    font-size: 12px;
  }

  .site-menu-toggle {
    display: block;
  }

  .site-login-link {
    display: none;
  }

  .site-primary-link {
    min-height: 38px;
    padding-inline: 13px;
  }

  .hero-section {
    padding-top: calc(132px + env(safe-area-inset-top));
  }

  .hero-copy h1 {
    font-size: clamp(48px, 12vw, 62px);
  }

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

  .hero-workspace {
    margin-top: 58px;
    padding: 52px 0 16px;
  }

  .workspace-chrome {
    min-height: 40px;
  }

  .capabilities-section,
  .pricing-section {
    padding: 96px 0;
  }

  .capability-grid {
    grid-template-columns: 1fr;
    margin-top: 42px;
  }

  .capability-card {
    display: grid;
    grid-template-columns: minmax(190px, 0.95fr) minmax(0, 1.05fr);
    grid-template-rows: 1fr;
  }

  .capability-card figure {
    aspect-ratio: auto;
    min-height: 245px;
  }

  .capability-card > div {
    min-height: 0;
    align-self: center;
    padding: 24px;
  }

  .demo-disclosure {
    text-align: left;
  }

  .pricing-panel {
    padding: 52px 16px 16px;
    border-radius: 30px;
  }

  .pricing-card {
    display: flex;
    min-height: 0;
    flex-direction: column;
    align-items: stretch;
    padding: 24px;
    gap: 0;
  }

  .pricing-card header {
    display: flex;
    justify-content: space-between;
  }

  .plan-capacity {
    margin-top: 18px;
  }

  .plan-price {
    margin-top: 24px;
  }

  .plan-meta {
    min-height: 0;
    margin-top: 10px;
  }

  .pricing-card .button {
    margin-top: 22px;
  }

  .pricing-card-enterprise .button {
    margin-top: 0;
  }

  .final-cta-section {
    padding: 88px 0;
  }

  .final-cta-panel {
    min-height: 330px;
    padding: 42px 28px 104px;
  }

  .final-cta-panel > .button {
    right: auto;
    bottom: 34px;
    left: 50%;
    transform: translateX(-50%);
  }

  .site-footer-main {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .footer-links {
    gap: 28px;
  }
}

@media (max-width: 520px) {
  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-value {
    margin-top: 36px;
  }

  .hero-value strong {
    font-size: 22px;
  }

  .workspace-chrome {
    grid-template-columns: 1fr 1fr;
    padding-inline: 12px;
  }

  .workspace-chrome > span:nth-child(2) {
    display: none;
  }

  .workspace-chrome em {
    font-size: 8px;
  }

  .capability-card {
    grid-template-columns: minmax(124px, 0.78fr) minmax(0, 1.22fr);
  }

  .capability-card figure {
    min-height: 210px;
  }

  .capability-card > div {
    padding: 20px 18px;
  }

  .capability-card h3 {
    font-size: 21px;
  }

  .capability-card p {
    font-size: 11px;
  }

  .capability-card small {
    font-size: 9px;
  }

  .pricing-grid {
    margin-top: 34px;
  }

  .pricing-card {
    padding: 22px;
  }

  .pricing-card header {
    display: flex;
  }

  .plan-capacity {
    margin-top: 16px;
    padding: 13px 15px;
  }

  .plan-capacity strong {
    font-size: 25px;
  }

  .pricing-grid-enterprise .plan-features {
    grid-template-columns: 1fr;
  }

  .plan-price {
    margin-top: 22px;
  }

  .plan-meta {
    margin-top: 8px;
  }

  .pricing-card .button {
    min-width: 0;
    margin-top: 20px;
  }

  .site-footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 7px;
  }
}

@media (max-width: 430px) {
  :root {
    --landing-gutter: 18px;
  }

  .site-header-inner {
    width: calc(100% - 20px);
  }

  .site-brand {
    gap: 7px;
  }

  .site-brand-copy strong {
    font-size: 14px;
  }

  .site-primary-link {
    padding-inline: 12px;
    font-size: 11px;
  }

  .hero-copy h1 {
    font-size: clamp(42px, 12vw, 50px);
  }

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

  .section-heading h2,
  .final-cta-panel h2 {
    font-size: 38px;
  }

  .capabilities-section .section-heading h2 span,
  .pricing-section .section-heading h2 span {
    display: block;
  }

  .hero-value strong {
    font-size: 20px;
  }

  .segment-control {
    width: 100%;
  }

  .segment-control label {
    flex: 1;
  }

  .segment-control label > span {
    width: 100%;
    padding-inline: 9px;
  }

  .pricing-audience-control {
    width: min(100%, 270px);
  }

  .pricing-card h3 {
    font-size: 17px;
  }

  .pricing-card header > span {
    font-size: 8px;
  }
}

@media (max-width: 360px) {
  .site-primary-link {
    display: none;
  }

  .capability-card {
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr;
  }

  .capability-card figure {
    min-height: 0;
    aspect-ratio: 16 / 10;
  }

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

  .plan-capacity,
  .plan-price,
  .plan-meta,
  .pricing-card .button {
    grid-column: 1;
    justify-self: stretch;
  }

  .plan-price {
    justify-self: start;
  }
}

/* Dark mode */

@media (prefers-color-scheme: dark) {
  :root {
    --landing-canvas: #111216;
    --landing-surface: #17181b;
    --landing-surface-soft: #202125;
    --landing-surface-muted: #2a2c30;
    --landing-ink: #f4f5f6;
    --landing-ink-soft: #b9bcc2;
    --landing-ink-muted: #858991;
    --landing-line: #2c2e33;
    --landing-line-strong: #3b3e44;
    --landing-accent: #69c9bf;
    --landing-accent-hover: #8dd9d1;
    --landing-accent-soft: #173c38;
    --landing-accent-pale: #101a19;
    --landing-focus: #76d1c7;
    --landing-action: #08080d;
    --landing-action-hover: #000;
    --landing-nav: #08080d;
    --landing-nav-soft: #24262a;
    --landing-header-surface: rgb(36 38 42 / 0.94);
    --landing-header-ink: #f4f2f8;
    --landing-header-muted: #b9b5c5;
    --landing-header-hover: #243b38;
    --landing-shadow-control: 0 1px 1px rgb(0 0 0 / 0.3), 0 0 0 1px rgb(255 255 255 / 0.04);
    --landing-shadow-media: 0 30px 90px rgb(0 0 0 / 0.42);
  }

  .site-brand-mark {
    filter: invert(1);
  }

  .pricing-section {
    background: linear-gradient(180deg, #111216 0%, #141619 28%, #17191d 100%);
  }

  .site-header-inner,
  .site-navigation {
    border-color: rgb(255 255 255 / 0.08);
  }

  .site-navigation {
    background: rgb(36 38 42 / 0.98);
  }

  .pricing-panel {
    border-color: rgb(255 255 255 / 0.07);
    background: rgb(23 23 32 / 0.86);
    box-shadow:
      0 32px 90px rgb(0 0 0 / 0.32),
      inset 0 1px 0 rgb(255 255 255 / 0.04);
  }

  .workspace-chrome {
    background: rgb(23 23 32 / 0.95);
  }

  .hero-workspace figcaption,
  .segment-control {
    border-color: rgb(255 255 255 / 0.06);
    background: rgb(23 23 32 / 0.9);
  }

  .hero-workspace figcaption {
    color: var(--landing-ink-soft);
  }

  .capability-card:hover {
    background: #25272b;
  }

  .pricing-grid {
    border-color: rgb(255 255 255 / 0.06);
    background: #202125;
    box-shadow:
      inset 0 1px 0 rgb(255 255 255 / 0.035),
      0 18px 50px rgb(0 0 0 / 0.18);
  }

  .pricing-card {
    border-color: rgb(255 255 255 / 0.055);
    background: #17181b;
    box-shadow:
      0 8px 24px rgb(0 0 0 / 0.12),
      inset 0 1px 0 rgb(255 255 255 / 0.03);
  }

  .pricing-card-featured {
    border-color: rgb(105 201 191 / 0.42);
    background: #181d1c;
    box-shadow:
      0 16px 40px rgb(0 0 0 / 0.22),
      inset 0 1px 0 rgb(255 255 255 / 0.04);
  }

  .plan-capacity {
    border-color: rgb(255 255 255 / 0.05);
    background: #202125;
  }

  .pricing-card-featured .plan-capacity {
    border-color: rgb(105 201 191 / 0.16);
    background: #17312e;
  }

  .pricing-card-featured header > span {
    background: #214740;
  }

  .pricing-card header > .plan-discount,
  .pricing-card-featured header > .plan-discount {
    background: #4b3228;
    color: #ffc899;
  }

  .plan-billing span {
    background: #25272b;
  }

  .plan-features,
  .plan-expiry-note {
    border-color: rgb(255 255 255 / 0.07);
  }

}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (prefers-reduced-transparency: reduce) {
  .site-header-inner,
  .site-navigation,
  .pricing-panel {
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }

  .site-header-inner,
  .site-navigation {
    background: var(--landing-header-surface);
  }

  .pricing-panel {
    background: var(--landing-surface);
  }

  .hero-workspace figcaption,
  .segment-control {
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    background: var(--landing-surface);
  }
}
