:root {
  color-scheme: light;
  --ink: #111827;
  --copy: #354052;
  --muted: #697386;
  --line: #d8dee8;
  --line-strong: #c4cdd9;
  --surface: #ffffff;
  --soft: #f4f6f9;
  --soft-blue: #edf3ff;
  --blue: #3565e8;
  --blue-dark: #214ec9;
  --coral: #e96d5f;
  --green: #14936d;
  --amber: #d79b26;
  --header-height: 66px;
  font-family: Inter, -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
  letter-spacing: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--ink);
  background: var(--surface);
  -webkit-font-smoothing: antialiased;
}

body,
button,
input,
textarea {
  font: inherit;
}

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

button {
  cursor: pointer;
}

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

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

svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

[hidden] {
  display: none !important;
}

:focus-visible {
  outline: 3px solid rgba(53, 101, 232, 0.28);
  outline-offset: 3px;
}

.site-shell {
  overflow: clip;
}

.page-wrap {
  width: min(1220px, calc(100% - 44px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  height: var(--header-height);
  border-bottom: 1px solid rgba(226, 230, 237, 0.82);
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(16px);
}

.site-nav.page-wrap {
  width: min(2400px, calc(100% - 64px));
}

.site-nav {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  flex: 0 0 auto;
  font-size: 15px;
  font-weight: 820;
}

.brand img {
  width: 27px;
  height: 27px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-left: 38px;
  color: #4c5768;
  font-size: 12px;
  font-weight: 680;
}

.nav-links a,
.nav-signin {
  transition: color 160ms ease;
}

.nav-links a:hover,
.nav-signin:hover {
  color: var(--blue);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-left: auto;
}

.nav-signin {
  color: #4c5768;
  font-size: 12px;
  font-weight: 720;
}

.language-button,
.menu-button {
  height: 36px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: #465266;
  background: #f8f9fb;
  font-size: 11px;
  font-weight: 750;
  transition: color 160ms ease, border-color 160ms ease, background 160ms ease;
}

.language-button {
  min-width: 48px;
  padding: 0 11px;
}

.language-button:hover,
.menu-button:hover {
  border-color: #b8c2d1;
  color: var(--ink);
  background: #fff;
}

.nav-cta {
  min-height: 38px;
  border-radius: 8px;
  padding-inline: 15px;
  box-shadow: 0 5px 14px rgba(53, 101, 232, 0.16);
}

.menu-button {
  width: 35px;
  display: none;
  place-items: center;
  padding: 0;
}

.menu-button svg {
  width: 17px;
  height: 17px;
}

.button {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid transparent;
  border-radius: 7px;
  padding: 0 16px;
  font-size: 12px;
  font-weight: 760;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button svg {
  width: 16px;
  height: 16px;
}

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

.button--primary {
  color: #fff;
  background: var(--blue);
}

.button--primary:hover {
  background: var(--blue-dark);
}

.button--secondary {
  border-color: var(--line-strong);
  color: #344054;
  background: #fff;
}

.button--secondary:hover {
  border-color: #9eabbc;
  background: #f9fafb;
}

.button--light {
  color: #16213a;
  background: #fff;
}

.button--large {
  min-height: 47px;
  padding-inline: 19px;
  font-size: 13px;
}

.mobile-menu {
  position: fixed;
  inset: var(--header-height) 0 auto;
  z-index: 70;
  display: none;
  padding: 12px 20px 18px;
  border-bottom: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 22px 42px rgba(17, 24, 39, 0.14);
}

.mobile-menu.is-open {
  display: grid;
}

.mobile-menu > a:not(.button) {
  min-height: 45px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #edf0f4;
  font-size: 13px;
  font-weight: 700;
}

.mobile-menu .button {
  margin-top: 11px;
}

.hero {
  position: relative;
  padding: 67px 0 35px;
  background: #f7f8fa;
}

.hero::before {
  display: none;
}

.hero-inner {
  text-align: center;
}

.hero-copy {
  max-width: 870px;
  margin: 0 auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 15px;
  color: var(--blue);
  font-size: 10px;
  font-weight: 830;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 22px;
  height: 2px;
  content: "";
  background: currentColor;
}

.eyebrow--light {
  color: #8eafff;
}

.hero h1 {
  max-width: 870px;
  margin: 0;
  font-size: 68px;
  line-height: 1.02;
  font-weight: 860;
}

.hero-copy > p {
  max-width: 700px;
  margin: 21px auto 0;
  color: #5e6a7d;
  font-size: 16px;
  line-height: 1.7;
}

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

.hero-facts {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 18px;
  color: #687487;
  font-size: 10px;
  font-weight: 700;
}

.hero-facts > span,
.live-indicator,
.sync-legend > span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.fact-dot,
.live-indicator i,
.sync-color {
  width: 7px;
  height: 7px;
  border-radius: 50%;
}

.fact-dot--green,
.live-indicator i,
.sync-color--done {
  background: var(--green);
}

.fact-dot--blue,
.sync-color--working {
  background: var(--blue);
}

.fact-dot--coral,
.sync-color--failed {
  background: var(--coral);
}

.hero-product {
  position: relative;
  height: 690px;
  margin-top: 49px;
  text-align: left;
}

.hero-browser {
  position: absolute;
  inset: 0 7% 39px 0;
  overflow: hidden;
  border: 1px solid #bfc8d5;
  border-radius: 9px;
  background: #fff;
  box-shadow: 0 28px 75px rgba(17, 24, 39, 0.16);
}

.browser-chrome {
  height: 42px;
  display: flex;
  align-items: center;
  gap: 14px;
  border-bottom: 1px solid #d4dbe4;
  padding: 0 13px;
  background: #e9edf2;
}

.traffic {
  display: inline-flex;
  gap: 5px;
}

.traffic i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #aab3bf;
}

.browser-address {
  width: min(390px, 48%);
  height: 25px;
  display: flex;
  align-items: center;
  border: 1px solid #d0d7e0;
  border-radius: 6px;
  padding: 0 11px;
  color: #8a95a5;
  background: #fff;
  font-size: 9px;
}

.browser-tools {
  margin-left: auto;
  color: #7b8796;
}

.ai-workspace {
  height: calc(100% - 42px);
  display: grid;
  grid-template-columns: 176px 1fr;
}

.ai-sidebar {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  border-right: 1px solid #e2e6ec;
  padding: 23px 20px;
  background: #f5f6f8;
}

.ai-logo {
  width: 31px;
  height: 31px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  border-radius: 7px;
  color: #fff;
  background: #151b25;
  font-size: 10px;
  font-weight: 800;
}

.ai-side-line {
  width: 65%;
  height: 7px;
  border-radius: 2px;
  background: #d7dce3;
}

.ai-side-line--wide {
  width: 88%;
}

.ai-main {
  position: relative;
  padding: 66px 500px 110px 52px;
  background: #fff;
}

.ai-title {
  max-width: 450px;
  font-size: 31px;
  line-height: 1.15;
  font-weight: 760;
}

.ai-thread {
  max-width: 470px;
  margin-top: 33px;
}

.ai-message {
  font-size: 11px;
  line-height: 1.65;
}

.ai-message--user {
  border-left: 3px solid var(--blue);
  padding: 12px 14px;
  color: #39465a;
  background: #eff4ff;
}

.ai-message--assistant {
  display: grid;
  gap: 9px;
  margin-top: 25px;
}

.ai-message--assistant span {
  width: 100%;
  height: 7px;
  border-radius: 2px;
  background: #e1e5ea;
}

.ai-message--assistant span:nth-child(2) {
  width: 91%;
}

.ai-message--assistant span:nth-child(3) {
  width: 96%;
}

.ai-message--assistant span:nth-child(4) {
  width: 62%;
}

.ai-composer {
  position: absolute;
  right: 500px;
  bottom: 39px;
  left: 52px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid #d7dde6;
  border-radius: 8px;
  padding: 0 10px 0 15px;
  color: #98a2b3;
  font-size: 10px;
}

.ai-composer b {
  width: 31px;
  height: 31px;
  display: grid;
  place-items: center;
  border-radius: 6px;
  color: #fff;
  background: #151b25;
}

.extension-window {
  position: absolute;
  top: 66px;
  right: 0;
  width: 465px;
  height: 585px;
  overflow: hidden;
  border: 1px solid #acb7c7;
  border-radius: 8px;
  background: #f3f5f8;
  box-shadow: 0 32px 75px rgba(17, 24, 39, 0.24), -12px 0 35px rgba(17, 24, 39, 0.08);
}

.extension-titlebar {
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 12px;
  color: #fff;
  background: #543936;
  font-size: 10px;
}

.extension-titlebar > div {
  display: flex;
  align-items: center;
  gap: 7px;
}

.extension-titlebar img {
  width: 18px;
  height: 18px;
}

.extension-titlebar strong {
  font-size: 10px;
}

.extension-titlebar > span {
  color: rgba(255, 255, 255, 0.76);
}

.extension-panel {
  position: relative;
  height: calc(100% - 38px);
  overflow: hidden;
  background: #f3f5f8;
}

.hero-product-caption {
  position: absolute;
  right: 28px;
  bottom: 0;
  display: flex;
  align-items: center;
  gap: 17px;
  border: 1px solid var(--line-strong);
  border-radius: 7px;
  padding: 10px 13px;
  background: #fff;
  box-shadow: 0 11px 26px rgba(17, 24, 39, 0.11);
  font-size: 9px;
}

.hero-product-caption strong {
  font-size: 10px;
}

.live-indicator {
  color: var(--green);
  font-weight: 760;
}

.asset-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.asset-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.asset-grid article {
  min-height: 108px;
  display: flex;
  align-items: center;
  gap: 14px;
  border-right: 1px solid var(--line);
  padding: 22px;
}

.asset-grid article:last-child {
  border-right: 0;
}

.asset-grid article > span {
  color: var(--blue);
  font-size: 10px;
  font-weight: 820;
}

.asset-grid strong {
  display: block;
  font-size: 15px;
}

.asset-grid p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 9px;
}

.section {
  padding: 104px 0;
}

.center-heading {
  max-width: 830px;
  margin: 0 auto 46px;
  text-align: center;
}

.center-heading .eyebrow {
  justify-content: center;
}

.center-heading h2,
.split-heading h2,
.local-copy h2,
.final-card h2 {
  margin: 0;
  font-size: 55px;
  line-height: 1.04;
  font-weight: 830;
}

.center-heading > p {
  max-width: 690px;
  margin: 18px auto 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.center-heading--compact {
  margin-bottom: 35px;
}

.center-heading--compact h2 {
  font-size: 49px;
}

.capabilities {
  background: #fff;
}

.capability-shell {
  display: grid;
  grid-template-columns: 318px minmax(0, 1fr);
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 26px 64px rgba(17, 24, 39, 0.1);
}

.capability-tabs {
  border-right: 1px solid var(--line);
  padding: 10px;
  background: #f5f7fa;
}

.capability-tab {
  width: 100%;
  min-height: 82px;
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 11px;
  align-items: start;
  border: 1px solid transparent;
  border-radius: 7px;
  padding: 14px 13px;
  color: #667085;
  background: transparent;
  text-align: left;
}

.capability-tab + .capability-tab {
  margin-top: 3px;
}

.capability-tab:hover {
  background: #fff;
}

.capability-tab.is-active {
  border-color: #cbd8f6;
  color: #1e4fc8;
  background: #fff;
  box-shadow: 0 7px 18px rgba(35, 76, 170, 0.08);
}

.capability-icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid #d5dce6;
  border-radius: 7px;
  color: #657187;
  background: #fff;
}

.capability-tab.is-active .capability-icon {
  border-color: var(--blue);
  color: #fff;
  background: var(--blue);
}

.capability-icon svg {
  width: 17px;
  height: 17px;
}

.capability-tab strong,
.capability-tab small {
  display: block;
}

.capability-tab strong {
  margin-top: 1px;
  color: #273247;
  font-size: 12px;
}

.capability-tab.is-active strong {
  color: #1e4fc8;
}

.capability-tab small {
  margin-top: 5px;
  color: #7b8697;
  font-size: 9px;
  line-height: 1.45;
}

.capability-stage {
  position: relative;
  min-width: 0;
  padding: 22px;
  background: #fff;
}

.stage-topline {
  min-height: 55px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.stage-topline > div > span,
.stage-topline strong {
  display: block;
}

.stage-topline > div > span {
  color: var(--blue);
  font-size: 9px;
  font-weight: 820;
  text-transform: uppercase;
}

.stage-topline strong {
  max-width: 600px;
  margin-top: 6px;
  font-size: 16px;
  line-height: 1.35;
}

.stage-play {
  width: 35px;
  height: 35px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 7px;
  color: #445166;
  background: #fff;
}

.stage-play svg {
  width: 15px;
  height: 15px;
}

.stage-play .icon-play,
.stage-play:not(.is-playing) .icon-pause {
  display: none;
}

.stage-play:not(.is-playing) .icon-play {
  display: block;
}

.stage-screen {
  height: 476px;
  margin-top: 13px;
  overflow: hidden;
  border: 1px solid #cbd3df;
  border-radius: 7px;
  background: #f2f4f7;
}

.stage-progress {
  height: 3px;
  margin-top: 14px;
  overflow: hidden;
  background: #e8ecf2;
}

.stage-progress i {
  display: block;
  width: 0;
  height: 100%;
  background: var(--blue);
}

.capability-stage.is-playing .stage-progress i {
  animation: stage-progress 6.8s linear forwards;
}

@keyframes stage-progress {
  to { width: 100%; }
}

.demo-browser {
  height: 100%;
  display: grid;
  grid-template-rows: 31px 1fr;
  background: #fff;
}

.demo-browser-bar {
  display: flex;
  align-items: center;
  gap: 5px;
  border-bottom: 1px solid #d7dde5;
  padding: 0 10px;
  background: #e9edf2;
}

.demo-browser-bar i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #aeb7c3;
}

.demo-browser-bar span {
  width: 180px;
  height: 18px;
  display: flex;
  align-items: center;
  margin-left: 6px;
  border: 1px solid #d1d7df;
  border-radius: 4px;
  padding-left: 8px;
  color: #98a2b3;
  background: #fff;
  font-size: 7px;
}

.demo-workspace {
  min-height: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 342px;
}

.demo-host {
  position: relative;
  padding: 36px 38px;
}

.demo-host h4 {
  max-width: 360px;
  margin: 0;
  font-size: 24px;
  line-height: 1.12;
}

.demo-host p {
  max-width: 410px;
  margin: 11px 0 0;
  color: #697386;
  font-size: 10px;
  line-height: 1.6;
}

.selected-copy {
  max-width: 440px;
  margin-top: 23px;
  border-left: 3px solid var(--blue);
  padding: 12px 14px;
  color: #344054;
  background: #edf3ff;
  font-size: 9px;
  line-height: 1.6;
}

.shortcut-hint {
  position: absolute;
  left: 38px;
  bottom: 32px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #667085;
  font-size: 8px;
}

.shortcut-hint kbd {
  border: 1px solid #cfd6df;
  border-bottom-color: #aeb8c5;
  border-radius: 4px;
  padding: 4px 6px;
  color: #3d495c;
  background: #fff;
  box-shadow: 0 2px 0 #d7dde5;
  font-size: 8px;
}

.demo-panel {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border-left: 1px solid #cbd3df;
  background: #f3f5f8;
}

.demo-panel::before {
  height: 27px;
  display: flex;
  align-items: center;
  padding-left: 9px;
  color: #fff;
  background: #543936;
  content: "Promdock SidePanel";
  font-size: 7px;
  font-weight: 760;
}

.demo-panel-content {
  height: calc(100% - 27px);
  overflow: hidden;
}

.workflows {
  background: #f4f6f8;
}

.split-heading {
  display: grid;
  grid-template-columns: 1.12fr 0.7fr;
  align-items: end;
  gap: 80px;
}

.split-heading > p {
  margin: 0 0 7px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.workflow-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 44px;
  border-bottom: 1px solid var(--line-strong);
}

.workflow-tab {
  min-height: 54px;
  border: 0;
  border-bottom: 3px solid transparent;
  padding: 0 15px;
  color: #717c8e;
  background: transparent;
  font-size: 12px;
  font-weight: 760;
}

.workflow-tab:hover {
  color: #344054;
}

.workflow-tab.is-active {
  border-bottom-color: var(--blue);
  color: var(--blue);
}

.workflow-feature {
  min-height: 545px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-top: 0;
  border-radius: 0 0 8px 8px;
  background: #fff;
  box-shadow: 0 22px 54px rgba(17, 24, 39, 0.08);
}

.workflow-media {
  min-height: 545px;
  background-position: center;
  background-size: cover;
}

.workflow-media--image {
  background-image: url("../assets/card-assets/website-image-workflow-v2.jpg");
}

.workflow-media--commerce {
  background-image: url("../assets/card-assets/website-global-ad-v2.jpg");
}

.workflow-media--content {
  background-image: url("../assets/card-assets/website-product-content-v2.jpg");
}

.workflow-copy {
  position: relative;
  display: flex;
  flex-direction: column;
  border-left: 1px solid var(--line);
  padding: 44px 38px 37px;
}

.workflow-number {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid #c8d4ed;
  border-radius: 7px;
  color: var(--blue);
  background: var(--soft-blue);
  font-size: 10px;
  font-weight: 820;
}

.workflow-copy h3 {
  margin: 23px 0 0;
  font-size: 29px;
  line-height: 1.12;
}

.workflow-copy > p {
  margin: 15px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.workflow-copy ul {
  display: grid;
  gap: 12px;
  margin: 25px 0 0;
  padding: 0;
  list-style: none;
}

.workflow-copy li {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 9px;
  align-items: start;
  color: #455166;
  font-size: 11px;
  line-height: 1.5;
}

.workflow-copy li::before {
  width: 17px;
  height: 17px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--green);
  content: "✓";
  font-size: 8px;
}

.workflow-asset {
  margin-top: auto;
  border-left: 3px solid var(--blue);
  padding: 11px 13px;
  color: #4b576a;
  background: #f4f7fd;
  font-size: 9px;
  line-height: 1.55;
}

.local-first {
  color: #fff;
  background: #151b24;
}

.local-grid {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  align-items: center;
  gap: 88px;
}

.local-copy p {
  margin: 20px 0 0;
  color: #aab4c2;
  font-size: 14px;
  line-height: 1.75;
}

.sync-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 17px;
  margin-top: 25px;
  color: #b7c0cd;
  font-size: 9px;
  font-weight: 700;
}

.sync-console {
  overflow: hidden;
  border: 1px solid #3a4452;
  border-radius: 8px;
  background: #1c2430;
  box-shadow: 0 26px 62px rgba(0, 0, 0, 0.25);
}

.sync-console-head {
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #36404e;
  padding: 0 20px;
  font-size: 13px;
  font-weight: 780;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid #365f53;
  border-radius: 999px;
  padding: 5px 8px;
  color: #75dcb9;
  background: #18342d;
  font-size: 8px;
}

.status-pill i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #42c696;
}

.sync-step {
  display: grid;
  grid-template-columns: 38px 1fr auto;
  gap: 13px;
  align-items: center;
  border-bottom: 1px solid #333e4c;
  padding: 17px 20px;
}

.sync-step-icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid #465365;
  border-radius: 7px;
  color: #88a9fa;
  font-size: 9px;
  font-weight: 800;
}

.sync-step strong,
.sync-step small {
  display: block;
}

.sync-step strong {
  font-size: 11px;
}

.sync-step small {
  margin-top: 4px;
  color: #98a5b6;
  font-size: 8px;
  line-height: 1.45;
}

.sync-check {
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #78dcb9;
  background: #1a3b32;
  font-size: 10px;
}

.sync-usage {
  padding: 18px 20px 20px;
}

.sync-usage > div:first-child {
  display: flex;
  justify-content: space-between;
  color: #aeb8c6;
  font-size: 9px;
}

.sync-usage strong {
  color: #fff;
}

.usage-track {
  height: 5px;
  margin-top: 10px;
  overflow: hidden;
  border-radius: 5px;
  background: #303b49;
}

.usage-track i {
  display: block;
  width: 4%;
  height: 100%;
  background: #6f97f5;
}

.sync-usage small {
  display: block;
  margin-top: 9px;
  color: #7f8c9e;
  font-size: 8px;
}

.proof-section {
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.proof-grid article {
  min-height: 130px;
  border-right: 1px solid var(--line);
  padding: 30px 22px;
}

.proof-grid article:last-child {
  border-right: 0;
}

.proof-grid strong,
.proof-grid span {
  display: block;
}

.proof-grid strong {
  font-size: 27px;
}

.proof-grid span {
  margin-top: 7px;
  color: var(--muted);
  font-size: 9px;
}

.faq-section {
  background: #fff;
}

.faq-wrap {
  width: min(820px, calc(100% - 44px));
  margin: 0 auto;
}

.faq-list {
  border-top: 1px solid var(--line-strong);
}

.faq-item {
  border-bottom: 1px solid var(--line-strong);
}

.faq-item button {
  width: 100%;
  min-height: 67px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border: 0;
  padding: 0;
  color: var(--ink);
  background: transparent;
  text-align: left;
  font-size: 13px;
  font-weight: 740;
}

.faq-item button i {
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: #536074;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
}

.faq-item p {
  max-width: 720px;
  margin: 0;
  padding: 0 48px 22px 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.7;
}

.final-cta {
  padding: 0 0 64px;
  background: #fff;
}

.final-card {
  min-height: 295px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 55px;
  border-radius: 8px;
  padding: 54px 58px;
  color: #fff;
  background: var(--blue);
}

.final-card > div {
  max-width: 780px;
}

.final-card h2 {
  font-size: 51px;
}

.final-card p {
  margin: 16px 0 0;
  color: #dbe6ff;
  font-size: 13px;
  line-height: 1.65;
}

.final-card .button {
  flex: 0 0 auto;
}

.site-footer {
  padding: 52px 0 23px;
  color: #afbac8;
  background: #0f151e;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr repeat(3, 1fr);
  gap: 42px;
}

.footer-brand .brand {
  color: #fff;
}

.footer-brand p {
  max-width: 310px;
  margin: 14px 0 0;
  color: #7f8b9c;
  font-size: 10px;
  line-height: 1.65;
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 11px;
  font-size: 10px;
}

.footer-column strong {
  margin-bottom: 2px;
  color: #fff;
}

.footer-column a:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 36px;
  border-top: 1px solid #293240;
  padding-top: 19px;
  color: #697689;
  font-size: 9px;
}

/* Shared staging-like Side Panel demo */
.panel-scene {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  background: #f3f5f8;
}

.panel-head {
  flex: 0 0 auto;
  border-bottom: 1px solid #dfe4eb;
  padding: 14px 14px 10px;
}

.panel-title-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.panel-title {
  margin: 0;
  font-size: 24px;
  line-height: 1.05;
  font-weight: 850;
}

.panel-subtitle {
  margin: 4px 0 0;
  color: #7a8697;
  font-size: 9px;
}

.panel-count {
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  border: 1px solid #d4dce6;
  border-radius: 999px;
  padding: 0 9px;
  color: #697386;
  background: #f9fafb;
  font-size: 8px;
}

.panel-count strong {
  color: #111827;
  font-size: 12px;
}

.panel-tools {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 7px;
  margin-top: 11px;
}

.panel-search,
.panel-new {
  height: 36px;
  display: flex;
  align-items: center;
  border-radius: 7px;
  font-size: 9px;
}

.panel-search {
  border: 1px solid #d1d8e2;
  padding: 0 10px;
  color: #98a2b3;
  background: #fff;
}

.panel-new {
  justify-content: center;
  padding: 0 13px;
  color: #fff;
  background: var(--blue);
  font-weight: 730;
}

.panel-preset {
  height: 43px;
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: 9px;
  border: 1px solid #d8e2f1;
  border-radius: 7px;
  padding: 0 10px;
  background: #f8fbff;
}

.panel-preset > span:first-child {
  color: var(--blue);
  font-size: 14px;
}

.panel-preset b,
.panel-preset small {
  display: block;
}

.panel-preset b {
  font-size: 9px;
}

.panel-preset small {
  margin-top: 2px;
  color: #7d8898;
  font-size: 7px;
}

.panel-body {
  flex: 1;
  min-height: 0;
  overflow: hidden;
  padding: 11px 14px 59px;
}

.panel-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
}

.extension-panel .pm-v2-card,
.demo-panel .pm-v2-card {
  --pm-v2-media-height: 188px;
  --pm-v2-radius: 8px;
  --pm-v2-action-height: 35px;
  pointer-events: none;
}

.demo-panel .pm-v2-card {
  --pm-v2-media-height: 146px;
  --pm-v2-action-height: 30px;
}

.extension-panel .pm-v2-card__cover,
.demo-panel .pm-v2-card__cover {
  background-position: center;
  background-size: cover;
}

.cover-image {
  background-image: url("../assets/card-assets/website-image-workflow-v2.jpg");
}

.cover-commerce {
  background-image: url("../assets/card-assets/website-ecommerce-v2.jpg");
}

.cover-ad {
  background-image: url("../assets/card-assets/website-global-ad-v2.jpg");
}

.cover-content {
  background-image: url("../assets/card-assets/website-product-content-v2.jpg");
}

.panel-nav {
  position: absolute;
  inset: auto 0 0;
  height: 54px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid #dfe5ec;
  background: #fff;
}

.panel-nav span {
  display: grid;
  place-items: center;
  align-content: center;
  gap: 3px;
  color: #8b95a3;
  font-size: 8px;
}

.panel-nav i {
  width: 15px;
  height: 15px;
  border: 1.7px solid currentColor;
  border-radius: 4px;
}

.panel-nav span.is-active {
  color: var(--blue);
  font-weight: 760;
}

.quick-save-form {
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.fake-field label {
  display: block;
  margin-bottom: 5px;
  color: #475467;
  font-size: 9px;
  font-weight: 680;
}

.fake-input,
.fake-textarea {
  border: 1px solid #d1d8e2;
  border-radius: 7px;
  color: #344054;
  background: #fff;
  font-size: 9px;
}

.fake-input {
  height: 34px;
  display: flex;
  align-items: center;
  padding: 0 9px;
}

.fake-field--grow {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.fake-textarea {
  flex: 1;
  padding: 9px;
  line-height: 1.55;
}

.fake-footer {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7px;
}

.fake-footer span {
  height: 36px;
  display: grid;
  place-items: center;
  border: 1px solid #d2dae4;
  border-radius: 7px;
  color: #475467;
  background: #fff;
  font-size: 9px;
}

.fake-footer span:last-child {
  border-color: var(--blue);
  color: #fff;
  background: var(--blue);
}

.effect-board {
  height: 100%;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  overflow: hidden;
  border: 1px solid #d1d8e2;
  border-radius: 8px;
  background: #fff;
}

.effect-image {
  min-height: 0;
  background: url("../assets/card-assets/website-image-workflow-v2.jpg") center / cover;
}

.effect-meta {
  padding: 10px;
}

.effect-meta-head {
  display: flex;
  justify-content: space-between;
  color: #647084;
  font-size: 9px;
  font-weight: 720;
}

.effect-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  margin-top: 8px;
}

.effect-thumb {
  aspect-ratio: 1.35;
  border: 2px solid transparent;
  border-radius: 6px;
  background-position: center;
  background-size: cover;
}

.effect-thumb.is-active {
  border-color: var(--blue);
}

.effect-thumb--add {
  display: grid;
  place-items: center;
  border: 1px dashed #b8c3d0;
  color: #667085;
  background: #f8fafc;
  font-size: 17px;
}

.edit-overlay {
  position: absolute;
  inset: 0;
  background: rgba(17, 24, 39, 0.18);
}

.edit-sheet {
  position: absolute;
  inset: 57px 7px 7px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid #d1d8e2;
  border-radius: 13px 13px 6px 6px;
  background: #fff;
  box-shadow: 0 -13px 30px rgba(17, 24, 39, 0.16);
}

.edit-handle {
  height: 21px;
  display: grid;
  place-items: center;
}

.edit-handle::after {
  width: 45px;
  height: 4px;
  border-radius: 5px;
  content: "";
  background: #c8cfd8;
}

.edit-sheet-head {
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #e3e7ed;
  padding: 0 12px;
  font-size: 10px;
  font-weight: 760;
}

.synced-pill {
  border: 1px solid #b9dfce;
  border-radius: 999px;
  padding: 2px 6px;
  color: #087f5b;
  background: #f0faf6;
  font-size: 7px;
}

.edit-sheet-body {
  flex: 1;
  min-height: 0;
  padding: 10px 11px;
}

.edit-author {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 8px;
  font-weight: 720;
}

.edit-author img {
  width: 20px;
  height: 20px;
  border-radius: 50%;
}

.edit-image {
  height: 118px;
  margin-top: 8px;
  border-radius: 7px;
  background: url("../assets/card-assets/website-ecommerce-v2.jpg") center / cover;
}

.edit-composer {
  margin-top: 8px;
  overflow: hidden;
  border: 1px solid #d3dae4;
  border-radius: 7px;
}

.edit-composer-head {
  height: 29px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #e3e7ed;
  padding: 0 8px;
  color: #667085;
  background: #f7f8fa;
  font-size: 8px;
}

.edit-composer-text {
  padding: 8px;
  color: #344054;
  font-size: 8px;
  line-height: 1.5;
}

.edit-sheet-foot {
  height: 47px;
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 7px;
  border-top: 1px solid #e1e6ed;
  padding: 7px 9px;
}

.edit-sheet-foot span {
  display: grid;
  place-items: center;
  border: 1px solid #d3dae4;
  border-radius: 7px;
  color: #475467;
  font-size: 9px;
}

.edit-sheet-foot span:last-child {
  border-color: var(--blue);
  color: #fff;
  background: var(--blue);
}

.restore-board {
  height: 100%;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  background: #fff;
}

.restore-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 35px;
}

.restore-copy span {
  color: var(--blue);
  font-size: 8px;
  font-weight: 820;
  text-transform: uppercase;
}

.restore-copy h4 {
  margin: 10px 0 0;
  font-size: 26px;
  line-height: 1.1;
}

.restore-copy p {
  margin: 11px 0 0;
  color: #667085;
  font-size: 10px;
  line-height: 1.6;
}

.restore-flow {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 9px;
  border-left: 1px solid #dde3ea;
  padding: 28px;
  background: #f4f6f8;
}

.restore-row {
  display: grid;
  grid-template-columns: 28px 1fr auto;
  gap: 10px;
  align-items: center;
  border: 1px solid #d3dae4;
  border-radius: 7px;
  padding: 12px;
  background: #fff;
  box-shadow: 0 7px 18px rgba(17, 24, 39, 0.05);
}

.restore-row > span:first-child {
  width: 27px;
  height: 27px;
  display: grid;
  place-items: center;
  border-radius: 6px;
  color: var(--blue);
  background: var(--soft-blue);
  font-size: 8px;
  font-weight: 800;
}

.restore-row strong,
.restore-row small {
  display: block;
}

.restore-row strong {
  font-size: 9px;
}

.restore-row small {
  margin-top: 2px;
  color: #7f8999;
  font-size: 7px;
}

.restore-row > i {
  color: var(--green);
  font-size: 10px;
  font-style: normal;
}

@media (max-width: 1080px) {
  .site-nav.page-wrap {
    width: calc(100% - 44px);
  }

  .nav-links {
    display: none;
  }

  .menu-button {
    display: grid;
  }

  .hero-product {
    height: 660px;
  }

  .hero-browser {
    right: 4%;
  }

  .ai-workspace {
    grid-template-columns: 140px 1fr;
  }

  .ai-main {
    padding-right: 430px;
  }

  .ai-composer {
    right: 430px;
  }

  .extension-window {
    width: 430px;
  }

  .capability-shell {
    grid-template-columns: 270px minmax(0, 1fr);
  }

  .capability-tab {
    min-height: 76px;
  }

  .demo-workspace {
    grid-template-columns: minmax(0, 1fr) 320px;
  }

  .local-grid {
    gap: 50px;
  }
}

@media (max-width: 820px) {
  .hero {
    padding-top: 51px;
  }

  .hero-product {
    height: 602px;
  }

  .hero-browser {
    inset: 0 2% 35px 0;
  }

  .ai-sidebar {
    display: none;
  }

  .ai-workspace {
    grid-template-columns: 1fr;
  }

  .ai-main {
    padding: 50px 395px 95px 35px;
  }

  .ai-composer {
    right: 395px;
    left: 35px;
  }

  .extension-window {
    top: 51px;
    width: 390px;
    height: 520px;
  }

  .extension-panel .pm-v2-card {
    --pm-v2-media-height: 160px;
  }

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

  .asset-grid article:nth-child(2) {
    border-right: 0;
  }

  .asset-grid article:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .capability-shell {
    grid-template-columns: 1fr;
  }

  .capability-tabs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .capability-tab {
    min-height: 66px;
    grid-template-columns: 28px 1fr;
    padding: 10px;
  }

  .capability-icon {
    width: 27px;
    height: 27px;
  }

  .capability-tab small {
    display: none;
  }

  .stage-screen {
    height: 430px;
  }

  .demo-workspace {
    grid-template-columns: 1fr 300px;
  }

  .split-heading,
  .workflow-feature,
  .local-grid {
    grid-template-columns: 1fr;
  }

  .split-heading {
    gap: 20px;
  }

  .workflow-media {
    min-height: 450px;
  }

  .workflow-copy {
    min-height: 430px;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .local-grid {
    gap: 44px;
  }

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

  .proof-grid article:nth-child(2) {
    border-right: 0;
  }

  .proof-grid article:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .final-card {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 620px) {
  :root {
    --header-height: 58px;
  }

  .page-wrap,
  .faq-wrap {
    width: min(100% - 28px, 1220px);
  }

  .site-nav.page-wrap {
    width: calc(100% - 28px);
  }

  .site-header {
    height: var(--header-height);
  }

  .nav-signin,
  .nav-cta {
    display: none;
  }

  .hero {
    padding: 38px 0 22px;
  }

  .hero h1 {
    font-size: 39px;
  }

  .hero-copy > p {
    margin-top: 16px;
    font-size: 12px;
    line-height: 1.62;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    margin-top: 19px;
  }

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

  .hero-facts {
    gap: 10px;
    margin-top: 13px;
    font-size: 8px;
  }

  .hero-product {
    height: 524px;
    margin-top: 29px;
  }

  .hero-browser {
    inset: 0 0 33px;
  }

  .browser-address {
    width: 64%;
  }

  .ai-main {
    display: none;
  }

  .extension-window {
    top: 42px;
    right: 50%;
    width: 465px;
    height: 455px;
    transform: translateX(50%) scale(0.76);
    transform-origin: top center;
  }

  .extension-panel .pm-v2-card {
    --pm-v2-media-height: 143px;
  }

  .hero-product-caption {
    right: 8px;
    bottom: 0;
    left: 8px;
    justify-content: space-between;
  }

  .asset-grid article {
    min-height: 89px;
    padding: 17px 13px;
  }

  .asset-grid p {
    line-height: 1.35;
  }

  .section {
    padding: 72px 0;
  }

  .center-heading {
    margin-bottom: 31px;
  }

  .center-heading h2,
  .split-heading h2,
  .local-copy h2,
  .final-card h2 {
    font-size: 37px;
  }

  .center-heading > p,
  .split-heading > p,
  .local-copy p {
    font-size: 12px;
  }

  .capability-tabs {
    grid-template-columns: repeat(2, 1fr);
    padding: 7px;
  }

  .capability-tab {
    min-height: 52px;
    align-items: center;
  }

  .capability-stage {
    padding: 13px;
  }

  .stage-topline strong {
    font-size: 13px;
  }

  .stage-screen {
    height: 385px;
  }

  .demo-workspace {
    grid-template-columns: 1fr;
  }

  .demo-host {
    display: none;
  }

  .demo-panel {
    border-left: 0;
  }

  .demo-panel .pm-v2-card {
    --pm-v2-media-height: 128px;
  }

  .restore-board {
    grid-template-columns: 1fr;
  }

  .restore-copy {
    display: none;
  }

  .restore-flow {
    border-left: 0;
  }

  .workflow-tabs {
    overflow-x: auto;
  }

  .workflow-tab {
    min-width: 155px;
    font-size: 10px;
  }

  .workflow-feature,
  .workflow-media {
    min-height: 0;
  }

  .workflow-media {
    aspect-ratio: 1.12;
  }

  .workflow-copy {
    min-height: 455px;
    padding: 30px 22px;
  }

  .workflow-copy h3 {
    font-size: 25px;
  }

  .local-first {
    padding: 76px 0;
  }

  .sync-step {
    grid-template-columns: 34px 1fr auto;
    padding: 14px 13px;
  }

  .sync-console-head,
  .sync-usage {
    padding-right: 14px;
    padding-left: 14px;
  }

  .proof-grid article {
    min-height: 105px;
    padding: 23px 15px;
  }

  .proof-grid strong {
    font-size: 22px;
  }

  .faq-item button {
    min-height: 62px;
    font-size: 11px;
  }

  .final-cta {
    padding-bottom: 30px;
  }

  .final-card {
    min-height: 0;
    gap: 28px;
    padding: 37px 24px;
  }

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

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 34px 24px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-column:last-child {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    transition-duration: 1ms !important;
  }
}

/* Website V1.1: media-ready product story */
.chrome-mark {
  font-size: 17px;
  line-height: 1;
}

.hero {
  padding-bottom: 42px;
  background: #f7f9fc;
}

.hero-product {
  height: 724px;
  margin-top: 54px;
}

.hero-browser {
  inset: 0 9% 82px 0;
  border-color: #b9c4d3;
  box-shadow: 0 34px 84px rgba(25, 39, 67, 0.16);
}

.hero-media-slot {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  overflow: hidden;
  color: #344054;
  text-align: center;
}

.hero-media-slot--host {
  height: calc(100% - 42px);
  padding: 54px 430px 54px 52px;
  border: 0;
  background: #f0f3f7;
}

.hero-media-slot--host::before,
.hero-media-slot--panel::before {
  position: absolute;
  inset: 18px;
  border: 1px dashed #b9c5d5;
  border-radius: 7px;
  content: "";
  pointer-events: none;
}

.hero-media-slot--panel::before {
  border-color: #b8c8e8;
}

.media-slot-index {
  position: absolute;
  top: 29px;
  left: 30px;
  color: #8490a3;
  font-size: 9px;
  font-weight: 820;
}

.media-slot-mark,
.media-placeholder__icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border: 1px solid #becbe0;
  border-radius: 8px;
  color: var(--blue);
  background: #fff;
  box-shadow: 0 10px 25px rgba(35, 65, 120, 0.09);
  font-size: 20px;
}

.hero-media-slot strong {
  max-width: 390px;
  margin-top: 17px;
  font-size: 17px;
  line-height: 1.3;
}

.hero-media-slot small {
  max-width: 390px;
  margin-top: 8px;
  color: #748095;
  font-size: 10px;
  line-height: 1.55;
}

.media-slot-spec {
  position: absolute;
  right: 30px;
  bottom: 28px;
  left: 30px;
  display: flex;
  justify-content: space-between;
  color: #7b8798;
  font-size: 8px;
  font-weight: 730;
  text-transform: uppercase;
}

.extension-window {
  top: 94px;
  height: 594px;
  border-color: #9eabc0;
  box-shadow: 0 38px 88px rgba(17, 29, 55, 0.25), -16px 5px 38px rgba(17, 29, 55, 0.1);
}

.hero-media-slot--panel {
  height: calc(100% - 38px);
  padding: 46px 36px;
  color: #24324a;
  background: #eef3fb;
}

.hero-product-caption {
  right: 18px;
  bottom: 0;
  max-width: 465px;
  justify-content: space-between;
  border-color: #bfc9d8;
  padding: 11px 14px;
}

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

.asset-grid article {
  min-width: 0;
  gap: 12px;
  padding: 22px 17px;
}

.asset-grid article > .asset-icon {
  width: 35px;
  height: 35px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border: 1px solid #cbd7ed;
  border-radius: 7px;
  color: var(--blue);
  background: var(--soft-blue);
  font-size: 14px;
}

.asset-grid article:nth-child(2) > .asset-icon {
  border-color: #c7dfd5;
  color: #187758;
  background: #eef8f4;
}

.asset-grid article:nth-child(3) > .asset-icon {
  border-color: #e5d8b9;
  color: #9a6c16;
  background: #fff8e8;
}

.asset-grid article:nth-child(4) > .asset-icon {
  border-color: #e6c9c5;
  color: #b55348;
  background: #fff2f0;
}

.asset-grid article:nth-child(5) > .asset-icon {
  border-color: #c9d3e2;
  color: #53657c;
  background: #f2f5f9;
}

.asset-grid strong {
  font-size: 13px;
}

.asset-grid p {
  font-size: 8px;
  line-height: 1.45;
}

.capability-shell {
  grid-template-columns: 300px minmax(0, 1fr);
  box-shadow: 0 30px 74px rgba(27, 43, 74, 0.1);
}

.capability-stage {
  padding: 24px;
}

.stage-screen {
  height: 490px;
  border-color: #c5cfde;
  background: #f5f7fa;
}

.media-placeholder {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px dashed #aebbd0;
  border-radius: 7px;
  color: #2f3d55;
  background: #f6f8fb;
}

.media-placeholder__top,
.media-placeholder__bottom {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0 16px;
  color: #728096;
  background: #fff;
  font-size: 8px;
  font-weight: 730;
  text-transform: uppercase;
}

.media-placeholder__top {
  border-bottom: 1px solid #dce2eb;
}

.media-placeholder__top b {
  color: var(--blue);
  font-size: 8px;
}

.media-placeholder__bottom {
  min-height: 38px;
  margin-top: auto;
  border-top: 1px solid #dce2eb;
}

.media-placeholder__center {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 30px;
  text-align: center;
}

.media-placeholder__center strong {
  margin-top: 18px;
  font-size: 17px;
  line-height: 1.3;
}

.media-placeholder__center p {
  max-width: 440px;
  margin: 8px 0 0;
  color: #738096;
  font-size: 10px;
  line-height: 1.55;
}

.workflow-feature {
  grid-template-columns: minmax(0, 1.08fr) minmax(390px, 0.92fr);
  min-height: 580px;
}

.workflow-media {
  min-height: 580px;
  padding: 22px;
  background: #e9edf3;
}

.workflow-media--image,
.workflow-media--commerce,
.workflow-media--content {
  background-image: none;
}

.workflow-media-placeholder {
  background: #f4f7fb;
}

.workflow-copy {
  min-height: 580px;
  padding: 42px 38px 34px;
}

.workflow-copy h3 {
  margin-top: 19px;
}

.workflow-steps {
  display: grid;
  gap: 0;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.workflow-steps li {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 12px;
  border-top: 1px solid #e2e7ee;
  padding: 14px 0;
  color: #465267;
}

.workflow-steps li:last-child {
  border-bottom: 1px solid #e2e7ee;
}

.workflow-steps li::before {
  display: none;
}

.workflow-steps li > span {
  color: var(--blue);
  font-size: 9px;
  font-weight: 830;
}

.workflow-steps strong,
.workflow-steps p {
  display: block;
}

.workflow-steps strong {
  color: #253149;
  font-size: 10px;
}

.workflow-steps p {
  margin: 4px 0 0;
  color: #6d788a;
  font-size: 9px;
  line-height: 1.5;
}

.workflow-asset {
  margin-top: 18px;
  border-left-width: 2px;
  background: #f7f9fc;
}

.local-first {
  padding: 86px 0;
  background: #121923;
}

.local-grid {
  grid-template-columns: minmax(0, 0.82fr) minmax(500px, 1.18fr);
  gap: 74px;
}

.trust-principles {
  border-top: 1px solid #394352;
  border-bottom: 1px solid #394352;
}

.trust-principles article {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 15px;
  align-items: center;
  border-bottom: 1px solid #313b49;
  padding: 19px 4px;
}

.trust-principles article:last-child {
  border-bottom: 0;
}

.trust-icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid #40506a;
  border-radius: 7px;
  color: #89aaff;
  background: #1a2534;
  font-size: 13px;
}

.trust-principles strong {
  font-size: 12px;
}

.trust-principles p {
  margin: 5px 0 0;
  color: #95a2b4;
  font-size: 9px;
  line-height: 1.5;
}

.proof-section {
  border-bottom: 1px solid var(--line);
  padding: 32px 0;
  background: #f7f9fc;
}

.rating-proof {
  min-height: 106px;
  display: grid;
  grid-template-columns: 54px auto 1fr auto;
  gap: 18px;
  align-items: center;
  border-top: 1px solid #cfd7e3;
  border-bottom: 1px solid #cfd7e3;
  padding: 20px 8px;
}

.rating-chrome {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid #c6d2e5;
  border-radius: 8px;
  color: var(--blue);
  background: #fff;
  font-size: 23px;
}

.rating-copy span,
.rating-copy strong {
  display: block;
}

.rating-copy span {
  color: #6c788b;
  font-size: 9px;
  font-weight: 720;
}

.rating-copy strong {
  margin-top: 2px;
  font-size: 27px;
  line-height: 1;
}

.rating-stars {
  color: #e1a72a;
  font-size: 18px;
  letter-spacing: 3px;
}

.rating-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #2a55ca;
  font-size: 10px;
  font-weight: 760;
}

.faq-wrap {
  width: min(900px, calc(100% - 44px));
}

.faq-list {
  border-top-color: #cbd3df;
}

.faq-item {
  border-bottom-color: #d7dde6;
}

.faq-item button {
  min-height: 78px;
  font-size: 15px;
}

.faq-item button i {
  width: 32px;
  height: 32px;
  border-color: #cdd5e1;
  color: #445169;
  background: #f8fafc;
}

.faq-item.is-open button i {
  border-color: #a9bce7;
  color: #244fbf;
  background: #edf3ff;
}

.faq-item p {
  max-width: 790px;
  padding-bottom: 28px;
  font-size: 12px;
}

.final-cta {
  padding: 0 0 72px;
}

.final-card {
  position: relative;
  min-height: 318px;
  overflow: hidden;
  border: 1px solid #26344a;
  padding: 58px 62px;
  background: #111a27;
  box-shadow: 0 28px 70px rgba(21, 34, 58, 0.18);
}

.final-card::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  content: "";
  background: var(--blue);
}

.final-card p {
  color: #aebbd0;
}

.final-card .button--light {
  border-color: #fff;
  color: #fff;
  background: transparent;
}

.final-card .button--light:hover {
  color: #16213a;
  background: #fff;
}

@media (max-width: 1080px) {
  .hero-product {
    height: 680px;
  }

  .hero-browser {
    right: 5%;
  }

  .hero-media-slot--host {
    padding-right: 390px;
  }

  .extension-window {
    width: 430px;
    height: 560px;
  }

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

  .asset-grid article:nth-child(3) {
    border-right: 0;
  }

  .asset-grid article:nth-child(-n + 3) {
    border-bottom: 1px solid var(--line);
  }

  .asset-grid article:nth-child(5) {
    border-right: 0;
  }

  .local-grid {
    grid-template-columns: 0.85fr 1.15fr;
    gap: 48px;
  }
}

@media (max-width: 820px) {
  .hero-product {
    height: 624px;
  }

  .hero-browser {
    inset: 0 2% 72px 0;
  }

  .hero-media-slot--host {
    padding: 45px 360px 45px 35px;
  }

  .extension-window {
    top: 78px;
    width: 390px;
    height: 510px;
  }

  .capability-shell {
    grid-template-columns: 1fr;
  }

  .workflow-feature {
    grid-template-columns: 1fr;
  }

  .workflow-media {
    min-height: 440px;
  }

  .workflow-copy {
    min-height: 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .local-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .hero {
    padding-bottom: 26px;
  }

  .hero h1 {
    font-size: 40px;
  }

  .hero-product {
    height: 474px;
    margin-top: 34px;
  }

  .hero-browser {
    inset: 0 0 88px;
  }

  .hero-media-slot--host {
    height: calc(100% - 42px);
    align-items: flex-start;
    justify-content: flex-start;
    padding: 54px 92px 28px 25px;
    text-align: left;
  }

  .hero-media-slot--host::before {
    inset: 12px;
  }

  .hero-media-slot--host .media-slot-mark {
    width: 40px;
    height: 40px;
    font-size: 15px;
  }

  .hero-media-slot--host strong {
    max-width: 165px;
    margin-top: 12px;
    font-size: 12px;
  }

  .hero-media-slot--host small,
  .hero-media-slot--host .media-slot-spec {
    display: none;
  }

  .media-slot-index {
    top: 24px;
    left: 23px;
  }

  .extension-window {
    top: 112px;
    right: 14px;
    width: calc(100% - 42px);
    height: 318px;
    transform: none;
  }

  .hero-media-slot--panel {
    padding: 40px 25px;
  }

  .hero-media-slot--panel::before {
    inset: 12px;
  }

  .hero-media-slot--panel .media-slot-mark {
    width: 44px;
    height: 44px;
    font-size: 17px;
  }

  .hero-media-slot--panel strong {
    margin-top: 13px;
    font-size: 13px;
  }

  .hero-media-slot--panel small {
    max-width: 250px;
    font-size: 8px;
  }

  .hero-media-slot--panel .media-slot-spec {
    right: 22px;
    bottom: 20px;
    left: 22px;
  }

  .hero-product-caption {
    right: 0;
    bottom: 0;
    left: 0;
    gap: 8px;
    padding: 9px 10px;
    font-size: 7px;
  }

  .hero-product-caption strong {
    max-width: 195px;
    font-size: 8px;
    line-height: 1.35;
    text-align: right;
  }

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

  .asset-grid article,
  .asset-grid article:nth-child(3) {
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .asset-grid article:nth-child(2n) {
    border-right: 0;
  }

  .asset-grid article:last-child {
    grid-column: 1 / -1;
    border-right: 0;
    border-bottom: 0;
  }

  .capability-tabs {
    display: flex;
    gap: 5px;
    overflow-x: auto;
    padding: 7px;
    scrollbar-width: none;
  }

  .capability-tabs::-webkit-scrollbar {
    display: none;
  }

  .capability-tab {
    min-width: 142px;
    min-height: 54px;
    margin-top: 0 !important;
  }

  .capability-stage {
    padding: 14px;
  }

  .stage-screen {
    height: 316px;
  }

  .media-placeholder__top,
  .media-placeholder__bottom {
    min-height: 36px;
    gap: 8px;
    padding: 0 11px;
    font-size: 7px;
  }

  .media-placeholder__top b,
  .media-placeholder__bottom span:last-child {
    max-width: 155px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .media-placeholder__center {
    padding: 18px;
  }

  .media-placeholder__icon {
    width: 46px;
    height: 46px;
    font-size: 17px;
  }

  .media-placeholder__center strong {
    margin-top: 13px;
    font-size: 13px;
  }

  .media-placeholder__center p {
    font-size: 8px;
  }

  .workflow-media {
    min-height: 0;
    aspect-ratio: 1.08;
    padding: 12px;
  }

  .workflow-copy {
    min-height: 0;
    padding: 30px 22px;
  }

  .workflow-steps li {
    padding: 13px 0;
  }

  .local-first {
    padding: 72px 0;
  }

  .trust-principles article {
    padding: 16px 2px;
  }

  .rating-proof {
    grid-template-columns: 45px 1fr auto;
    gap: 12px;
    padding: 17px 2px;
  }

  .rating-chrome {
    width: 42px;
    height: 42px;
    font-size: 20px;
  }

  .rating-stars {
    grid-column: 2 / -1;
    grid-row: 2;
    font-size: 14px;
  }

  .rating-link {
    grid-column: 3;
    grid-row: 1;
  }

  .rating-link span {
    display: none;
  }

  .faq-item button {
    min-height: 70px;
    font-size: 12px;
  }

  .faq-item p {
    padding-right: 38px;
    font-size: 10px;
  }

  .final-card {
    padding: 40px 25px;
  }
}

/* Website refinement: real media, true Side Panel geometry, quieter FAQ. */
.hero-product {
  height: 724px;
}

.hero-browser {
  inset: 22px 118px auto 0;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 8px;
  background: #fff;
}

.hero-browser .browser-chrome {
  display: none;
}

.hero-media-slot--host {
  width: 100%;
  height: 100%;
  padding: 0;
  background: #fff;
}

.hero-media-slot--host::before,
.hero-media-slot--panel::before {
  display: none;
}

.hero-host-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.extension-window {
  top: 38px;
  right: 8px;
  width: 465px;
  height: 1036px;
  transform: scale(.66);
  transform-origin: top right;
  border-radius: 9px;
}

.extension-titlebar {
  min-height: 38px;
}

.hero-media-slot--panel {
  height: calc(100% - 38px);
  padding: 0;
  background: #f3f5f8;
}

.capability-stage {
  padding: 22px;
}

.stage-screen {
  height: 610px;
  overflow: hidden;
  border-color: #c8d2e0;
  background: #eef2f7;
}

.capability-media,
.workflow-photo {
  position: relative;
  width: 100%;
  height: 100%;
  margin: 0;
  overflow: hidden;
  background: #eef2f7;
}

.capability-media {
  display: grid;
  place-items: center;
}

.capability-media img,
.workflow-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.workflow-media {
  min-height: 580px;
  padding: 0;
  background: #eef2f7;
}

.faq-section {
  padding: 118px 0 112px;
}

.faq-wrap {
  display: grid;
  width: min(1120px, calc(100% - 44px));
  grid-template-columns: minmax(260px,.72fr) minmax(0,1.28fr);
  align-items: start;
  gap: 96px;
}

.faq-heading {
  padding-top: 6px;
}

.faq-heading h2 {
  max-width: 390px;
  margin: 0;
  color: #111827;
  font-size: clamp(38px,4.2vw,56px);
  font-weight: 720;
  line-height: 1.02;
}

.faq-list {
  border-top: 1px solid #cbd3df;
}

.faq-item {
  border-bottom: 1px solid #d7dde6;
}

.faq-item button {
  min-height: 76px;
  padding: 0 3px;
  font-size: 15px;
  font-weight: 660;
}

.faq-item button .faq-chevron,
.faq-item.is-open button .faq-chevron {
  width: 20px;
  height: 12px;
  margin-right: 5px;
  flex: 0 0 auto;
  overflow: visible;
  fill: none;
  stroke: #64748b;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transform: rotate(0deg);
  transition: transform 180ms ease, stroke 180ms ease;
}

.faq-item.is-open button .faq-chevron {
  stroke: #2563eb;
  transform: rotate(180deg);
}

.faq-item p {
  max-width: 650px;
  padding: 0 42px 26px 3px;
  color: #5f6c80;
  font-size: 12px;
  line-height: 1.75;
}

@media (max-width: 1080px) {
  .hero-product {
    height: 656px;
  }

  .hero-browser {
    inset: 20px 90px auto 0;
  }

  .extension-window {
    right: 2px;
    transform: scale(.58);
  }

  .stage-screen {
    height: 560px;
  }

  .faq-wrap {
    gap: 64px;
  }
}

@media (max-width: 820px) {
  .hero-product {
    height: 580px;
  }

  .hero-browser {
    inset: 18px 66px auto 0;
  }

  .extension-window {
    top: 46px;
    right: 0;
    transform: scale(.5);
  }

  .stage-screen {
    height: 520px;
  }

  .faq-wrap {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .faq-heading h2 {
    max-width: 520px;
  }
}

@media (max-width: 620px) {
  .capability-tabs {
    scroll-padding-inline: 7px;
    scroll-snap-type: x proximity;
  }

  .capability-tab {
    scroll-snap-align: center;
  }

  .workflow-tabs {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    overflow-x: visible;
  }

  .workflow-tab {
    min-width: 0;
    min-height: 58px;
    padding: 0 4px;
    font-size: 9px;
    line-height: 1.3;
    text-wrap: balance;
  }

  .hero-product {
    height: 520px;
    margin-top: 34px;
  }

  .hero-browser {
    inset: 0 0 auto;
    aspect-ratio: 16 / 9;
  }

  .hero-media-slot--host {
    align-items: center;
    justify-content: center;
    padding: 0;
  }

  .extension-window {
    top: 96px;
    right: 10px;
    width: 465px;
    height: 1036px;
    transform: scale(.39);
  }

  .stage-screen {
    height: 438px;
  }

  .workflow-media {
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .faq-section {
    padding: 82px 0 78px;
  }

  .faq-wrap {
    width: min(100% - 32px,1120px);
    gap: 24px;
  }

  .faq-heading h2 {
    font-size: 34px;
  }

  .faq-item button {
    min-height: 68px;
    padding: 0;
    font-size: 12px;
  }

  .faq-item p {
    padding: 0 30px 22px 0;
    font-size: 10px;
  }
}
