:root {
  --ink: #101426;
  --ink-soft: #39405a;
  --muted: #68708a;
  --line: #e5e8f0;
  --line-strong: #d4d9e5;
  --paper: #ffffff;
  --paper-soft: #f7f8fc;
  --paper-warm: #fff8f1;
  --brand: #e1262f;
  --brand-dark: #b7101a;
  --brand-soft: #fff0f1;
  --accent: #ffb800;
  --accent-soft: #fff6d9;
  --success: #087a55;
  --success-soft: #e7f8f1;
  --code: #11172b;
  --shadow-sm: 0 10px 30px rgba(17, 24, 45, 0.07);
  --shadow-lg: 0 30px 80px rgba(17, 24, 45, 0.14);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 30px;
  --container: 1180px;
  --header-height: 76px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

button,
input {
  font: inherit;
}

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

button:focus-visible,
a:focus-visible,
input:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(255, 184, 0, 0.7);
  outline-offset: 3px;
}

h1,
h2,
h3,
h4,
p {
  margin-top: 0;
}

h1,
h2,
h3,
h4 {
  letter-spacing: -0.035em;
  line-height: 1.12;
}

p:last-child {
  margin-bottom: 0;
}

.container-wide,
.container-narrow {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.container-narrow {
  max-width: 840px;
}

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 16px;
  color: var(--paper);
  background: var(--ink);
  border-radius: 10px;
  transform: translateY(-150%);
  transition: transform 160ms ease;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  min-height: var(--header-height);
  background: rgba(255, 255, 255, 0.93);
  border-bottom: 1px solid rgba(229, 232, 240, 0.9);
  backdrop-filter: blur(18px);
}

.site-header.is-scrolled {
  box-shadow: 0 8px 28px rgba(17, 24, 45, 0.07);
}

.site-header__inner {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--ink);
  text-decoration: none;
  flex: 0 0 auto;
}

.brand__mark {
  width: 42px;
  height: 42px;
  border-radius: 11px;
  box-shadow: 0 8px 22px rgba(225, 38, 47, 0.2);
}

.brand__name {
  font-size: 1.18rem;
  font-weight: 850;
  letter-spacing: -0.045em;
}

.brand__name span {
  color: var(--brand);
}

.primary-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  margin-inline: auto;
}

.primary-nav a {
  position: relative;
  color: var(--ink-soft);
  font-size: 0.93rem;
  font-weight: 680;
  text-decoration: none;
}

.primary-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  background: var(--brand);
  border-radius: 99px;
  transform: scaleX(0);
  transition: transform 160ms ease;
}

.primary-nav a:hover,
.primary-nav a.is-active {
  color: var(--ink);
}

.primary-nav a:hover::after,
.primary-nav a.is-active::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 9px;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--paper);
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 21px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
  border-radius: 99px;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle[aria-expanded="true"] span:nth-of-type(2) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-of-type(3) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-of-type(4) {
  transform: translateY(-6px) rotate(-45deg);
}

.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 11px 20px;
  border: 1px solid transparent;
  border-radius: 12px;
  font-weight: 760;
  line-height: 1.1;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease, border-color 160ms ease;
}

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

.button--small {
  min-height: 40px;
  padding: 9px 15px;
  font-size: 0.9rem;
}

.button--primary {
  color: #fff;
  background: var(--brand);
  box-shadow: 0 10px 24px rgba(225, 38, 47, 0.2);
}

.button--primary:hover {
  background: var(--brand-dark);
  box-shadow: 0 14px 30px rgba(225, 38, 47, 0.25);
}

.button--dark {
  color: #fff;
  background: var(--ink);
}

.button--dark:hover {
  background: #20263c;
  box-shadow: var(--shadow-sm);
}

.button--quiet {
  color: var(--ink);
  background: transparent;
  border-color: var(--line);
}

.button--quiet:hover {
  background: var(--paper-soft);
  border-color: var(--line-strong);
}

.button--light {
  color: var(--ink);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.button--ghost-light {
  color: #fff;
  background: transparent;
  border-color: rgba(255, 255, 255, 0.3);
}

.button--ghost-light:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.5);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--brand-dark);
  font-weight: 760;
  text-decoration: none;
}

.text-link::after {
  content: "\2192";
  transition: transform 150ms ease;
}

.text-link:hover::after {
  transform: translateX(4px);
}

.eyebrow {
  margin-bottom: 14px;
  color: var(--brand-dark);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section {
  padding: 104px 0;
}

.section--soft {
  background: var(--paper-soft);
}

.section--warm {
  background: var(--paper-warm);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 50px;
}

.section-heading--center {
  margin-inline: auto;
  text-align: center;
}

.section-heading h2 {
  max-width: 720px;
  margin-bottom: 18px;
  font-size: clamp(2rem, 4.2vw, 3.65rem);
  font-weight: 840;
}

.section-heading p:not(.eyebrow) {
  max-width: 650px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.8vw, 1.16rem);
}

.section-heading--center p:not(.eyebrow) {
  margin-inline: auto;
}

.announcement {
  color: #fff;
  background: var(--ink);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.announcement__inner {
  min-height: 43px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
  font-size: 0.83rem;
  font-weight: 650;
}

.announcement__badge {
  padding: 3px 8px;
  color: var(--ink);
  background: var(--accent);
  border-radius: 99px;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.announcement a {
  color: #fff;
  text-underline-offset: 3px;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 92px 0 72px;
  background:
    radial-gradient(circle at 88% 12%, rgba(255, 184, 0, 0.2), transparent 29%),
    radial-gradient(circle at 4% 75%, rgba(225, 38, 47, 0.1), transparent 31%),
    linear-gradient(180deg, #fff 0%, #fafbff 100%);
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  right: max(0px, calc((100vw - var(--container)) / 2));
  width: 48%;
  height: 100%;
  opacity: 0.38;
  background-image: radial-gradient(circle, rgba(16, 20, 38, 0.14) 1.1px, transparent 1.1px);
  background-size: 22px 22px;
  mask-image: linear-gradient(to bottom, #000, transparent 82%);
  pointer-events: none;
}

.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(430px, 0.95fr);
  align-items: center;
  gap: 68px;
}

.hero__content {
  max-width: 670px;
}

.hero__pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 24px;
  padding: 7px 12px 7px 8px;
  color: var(--ink-soft);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 99px;
  box-shadow: var(--shadow-sm);
  font-size: 0.82rem;
  font-weight: 720;
}

.hero__pill::before {
  content: "";
  width: 9px;
  height: 9px;
  background: var(--success);
  border: 3px solid var(--success-soft);
  border-radius: 50%;
  box-sizing: content-box;
}

.hero h1 {
  margin-bottom: 25px;
  font-size: clamp(2.75rem, 6vw, 5.45rem);
  font-weight: 880;
  letter-spacing: -0.065em;
}

.hero h1 span {
  position: relative;
  color: var(--brand);
  white-space: nowrap;
}

.hero h1 span::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 9px;
  z-index: -1;
  background: var(--accent);
  border-radius: 99px;
  transform: rotate(-1.5deg);
}

.hero__lead {
  max-width: 610px;
  margin-bottom: 31px;
  color: var(--ink-soft);
  font-size: clamp(1.08rem, 2vw, 1.27rem);
  line-height: 1.65;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

.hero__proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin: 0;
  padding: 0;
  color: var(--muted);
  list-style: none;
  font-size: 0.87rem;
  font-weight: 650;
}

.hero__proof li {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.hero__proof li::before {
  content: "\2713";
  display: grid;
  width: 19px;
  height: 19px;
  place-items: center;
  color: var(--success);
  background: var(--success-soft);
  border-radius: 50%;
  font-size: 0.7rem;
  font-weight: 900;
}

.product-window {
  position: relative;
  padding: 13px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(212, 217, 229, 0.9);
  border-radius: 26px;
  box-shadow: var(--shadow-lg);
  transform: rotate(1deg);
}

.product-window::after {
  content: "";
  position: absolute;
  inset: 16% -8% -10% 28%;
  z-index: -1;
  background: rgba(225, 38, 47, 0.13);
  filter: blur(45px);
  border-radius: 50%;
}

.product-window__chrome {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 12px 14px;
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 720;
}

.window-dots {
  display: flex;
  gap: 6px;
}

.window-dots span {
  width: 8px;
  height: 8px;
  background: var(--line-strong);
  border-radius: 50%;
}

.window-dots span:first-child {
  background: var(--brand);
}

.window-dots span:nth-child(2) {
  background: var(--accent);
}

.product-window__body {
  overflow: hidden;
  background: var(--code);
  border-radius: 18px;
}

.request-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 19px 20px;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.request-head strong {
  font-size: 0.9rem;
}

.method {
  margin-right: 7px;
  padding: 4px 7px;
  color: #c9ffe9;
  background: rgba(34, 197, 139, 0.16);
  border: 1px solid rgba(34, 197, 139, 0.28);
  border-radius: 6px;
  font-size: 0.65rem;
  letter-spacing: 0.06em;
}

.live-state {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #b9c1d9;
  font-size: 0.73rem;
  font-weight: 670;
}

.live-state::before {
  content: "";
  width: 7px;
  height: 7px;
  background: #22c58b;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(34, 197, 139, 0.13);
}

.request-code {
  padding: 20px;
  color: #dce2f6;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 0.8rem;
  line-height: 1.9;
}

.request-code .key {
  color: #ffbdc1;
}

.request-code .value {
  color: #ffe28f;
}

.request-code .secure {
  color: #7de2bd;
}

.request-statuses {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.08);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.request-status {
  min-height: 91px;
  padding: 17px 19px;
  background: #161e35;
}

.request-status span {
  display: block;
  margin-bottom: 5px;
  color: #8f9ab9;
  font-size: 0.66rem;
  font-weight: 760;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.request-status strong {
  color: #f7f8ff;
  font-size: 0.88rem;
}

.request-status strong.ok {
  color: #77dfb8;
}

.trust-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

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

.trust-item {
  padding: 25px 22px;
  text-align: center;
  border-right: 1px solid var(--line);
}

.trust-item:last-child {
  border-right: 0;
}

.trust-item strong {
  display: block;
  margin-bottom: 2px;
  font-size: 0.94rem;
}

.trust-item span {
  color: var(--muted);
  font-size: 0.79rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.feature-card {
  min-height: 255px;
  padding: 30px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.feature-card:hover {
  border-color: #f0b1b5;
  box-shadow: var(--shadow-sm);
  transform: translateY(-5px);
}

.feature-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  color: var(--brand-dark);
  background: var(--brand-soft);
  border-radius: 14px;
}

.feature-icon svg {
  width: 23px;
  height: 23px;
}

.feature-card:nth-child(2n) .feature-icon {
  color: #856000;
  background: var(--accent-soft);
}

.feature-card:nth-child(3n) .feature-icon {
  color: var(--success);
  background: var(--success-soft);
}

.feature-card h3 {
  margin-bottom: 11px;
  font-size: 1.28rem;
}

.feature-card p {
  color: var(--muted);
  font-size: 0.94rem;
}

.onboarding-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.onboarding-grid::before {
  content: "";
  position: absolute;
  top: 28px;
  left: 12%;
  right: 12%;
  height: 1px;
  background: var(--line-strong);
}

.step-card {
  position: relative;
  z-index: 1;
}

.step-card__number {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  color: #fff;
  background: var(--ink);
  border: 7px solid var(--paper-soft);
  border-radius: 50%;
  box-shadow: 0 0 0 1px var(--line-strong);
  font-size: 0.8rem;
  font-weight: 850;
}

.step-card h3 {
  margin-bottom: 10px;
  font-size: 1.12rem;
}

.step-card p {
  color: var(--muted);
  font-size: 0.9rem;
}

.api-section {
  color: #fff;
  background:
    radial-gradient(circle at 80% 18%, rgba(225, 38, 47, 0.22), transparent 28%),
    var(--ink);
}

.api-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  align-items: center;
  gap: 70px;
}

.api-copy .eyebrow {
  color: #ffb7bb;
}

.api-copy h2 {
  margin-bottom: 20px;
  font-size: clamp(2.15rem, 4.5vw, 3.7rem);
  color: #fff;
}

.api-copy > p:not(.eyebrow) {
  margin-bottom: 27px;
  color: #b9c1d9;
  font-size: 1.04rem;
}

.api-list {
  margin: 0 0 30px;
  padding: 0;
  list-style: none;
}

.api-list li {
  display: flex;
  gap: 11px;
  margin-bottom: 11px;
  color: #dbe1f3;
  font-size: 0.92rem;
}

.api-list li::before {
  content: "\2713";
  color: #77dfb8;
  font-weight: 900;
}

.code-panel {
  overflow: hidden;
  background: #0a0e1d;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.32);
}

.code-panel__tabs {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 15px 13px 19px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.code-panel__tabs span {
  color: #a9b1cc;
  font-size: 0.76rem;
  font-weight: 760;
}

.copy-button {
  padding: 7px 10px;
  color: #e8ecfb;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  font-size: 0.72rem;
  font-weight: 700;
  cursor: pointer;
}

.copy-button:hover {
  background: rgba(255, 255, 255, 0.14);
}

.code-panel pre {
  margin: 0;
  padding: 25px;
  overflow-x: auto;
  color: #e0e5f5;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 0.78rem;
  line-height: 1.75;
  tab-size: 2;
}

.code-note {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 19px;
  color: #909ab9;
  background: rgba(255, 255, 255, 0.035);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.72rem;
}

.template-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 65px;
  align-items: center;
}

.template-copy h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.template-copy > p:not(.eyebrow) {
  margin-bottom: 25px;
  color: var(--muted);
}

.template-rules {
  margin: 0;
  padding: 0;
  list-style: none;
}

.template-rules li {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
  color: var(--ink-soft);
  font-size: 0.93rem;
}

.template-rules li::before {
  content: "";
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  margin-top: 8px;
  background: var(--brand);
  border-radius: 50%;
}

.message-preview {
  position: relative;
  max-width: 500px;
  margin-inline: auto;
  padding: 24px;
  background: #f2f4fa;
  border: 1px solid var(--line);
  border-radius: 34px;
  box-shadow: var(--shadow-lg);
}

.message-preview__top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
}

.message-avatar {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--brand);
  border-radius: 50%;
  font-size: 0.72rem;
  font-weight: 900;
}

.message-preview__top strong,
.message-preview__top span {
  display: block;
}

.message-preview__top span {
  color: var(--muted);
  font-size: 0.74rem;
}

.message-bubble {
  position: relative;
  margin-left: 35px;
  padding: 20px;
  color: var(--ink-soft);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px 18px 18px 5px;
  font-size: 0.94rem;
  line-height: 1.65;
}

.message-bubble strong {
  color: var(--ink);
}

.message-meta {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-top: 15px;
  color: var(--muted);
  font-size: 0.72rem;
}

.message-warning {
  margin-top: 18px;
  padding: 13px 15px;
  color: #6f5400;
  background: var(--accent-soft);
  border: 1px solid #f2dea1;
  border-radius: 11px;
  font-size: 0.78rem;
}

.compliance-band {
  overflow: hidden;
  color: #fff;
  background: var(--brand);
}

.compliance-band__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 45px;
  padding-top: 55px;
  padding-bottom: 55px;
}

.compliance-band h2 {
  margin-bottom: 10px;
  color: #fff;
  font-size: clamp(1.75rem, 3vw, 2.55rem);
}

.compliance-band p {
  max-width: 750px;
  color: rgba(255, 255, 255, 0.86);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
  gap: 20px;
}

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 31px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.price-card--featured {
  border: 2px solid var(--brand);
  box-shadow: var(--shadow-lg);
  transform: translateY(-10px);
}

.price-badge {
  position: absolute;
  top: -13px;
  right: 22px;
  padding: 6px 11px;
  color: #fff;
  background: var(--brand);
  border-radius: 99px;
  font-size: 0.69rem;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.price-card__name {
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 0.77rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.price-card__price {
  margin-bottom: 5px;
  font-size: 2.6rem;
  font-weight: 880;
  letter-spacing: -0.06em;
  line-height: 1;
}

.price-card__price span {
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 650;
  letter-spacing: 0;
}

.price-card__description {
  min-height: 52px;
  margin: 14px 0 22px;
  color: var(--muted);
  font-size: 0.89rem;
}

.price-card ul {
  flex: 1;
  margin: 0 0 26px;
  padding: 0;
  list-style: none;
}

.price-card li {
  display: flex;
  gap: 9px;
  margin-bottom: 11px;
  color: var(--ink-soft);
  font-size: 0.88rem;
}

.price-card li::before {
  content: "\2713";
  color: var(--success);
  font-weight: 900;
}

.pricing-note {
  max-width: 760px;
  margin: 27px auto 0;
  color: var(--muted);
  text-align: center;
  font-size: 0.82rem;
}

.credit-table-wrap {
  margin-top: 48px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.credit-table-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 25px;
  border-bottom: 1px solid var(--line);
}

.credit-table-head h3 {
  margin: 0;
  font-size: 1.12rem;
}

.credit-table-head span {
  color: var(--muted);
  font-size: 0.78rem;
}

.credit-table {
  width: 100%;
  border-collapse: collapse;
}

.credit-table th,
.credit-table td {
  padding: 17px 24px;
  text-align: left;
  border-bottom: 1px solid var(--line);
}

.credit-table tr:last-child td {
  border-bottom: 0;
}

.credit-table th {
  color: var(--muted);
  background: var(--paper-soft);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.credit-table td {
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.credit-table td:last-child {
  color: var(--ink);
  font-weight: 800;
}

.use-case-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.use-case {
  padding: 25px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
}

.use-case span {
  display: inline-block;
  margin-bottom: 28px;
  color: var(--brand);
  font-size: 0.75rem;
  font-weight: 850;
}

.use-case h3 {
  margin-bottom: 9px;
  font-size: 1.12rem;
}

.use-case p {
  color: var(--muted);
  font-size: 0.86rem;
}

.operations-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: 68px;
}

.operations-copy h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 3.35rem);
}

.operations-copy > p:not(.eyebrow) {
  margin-bottom: 27px;
  color: var(--muted);
}

.operations-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 13px;
  margin-bottom: 28px;
}

.operations-list span {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--ink-soft);
  font-size: 0.88rem;
  font-weight: 660;
}

.operations-list span::before {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--success);
  border-radius: 50%;
}

.dashboard-card {
  padding: 19px;
  background: var(--paper-soft);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
}

.dashboard-card__top {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 4px 4px 18px;
}

.dashboard-card__top strong {
  font-size: 0.91rem;
}

.dashboard-card__top span {
  color: var(--success);
  font-size: 0.75rem;
  font-weight: 760;
}

.dashboard-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 10px;
}

.dashboard-stat {
  padding: 17px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
}

.dashboard-stat span,
.dashboard-stat strong {
  display: block;
}

.dashboard-stat span {
  margin-bottom: 7px;
  color: var(--muted);
  font-size: 0.67rem;
  font-weight: 700;
}

.dashboard-stat strong {
  font-size: 1rem;
}

.activity-list {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
}

.activity-row {
  display: grid;
  grid-template-columns: 1.1fr 0.8fr 0.8fr;
  align-items: center;
  gap: 10px;
  padding: 13px 16px;
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 0.72rem;
}

.activity-row:last-child {
  border-bottom: 0;
}

.status-chip {
  justify-self: start;
  padding: 3px 7px;
  color: var(--success);
  background: var(--success-soft);
  border-radius: 99px;
  font-size: 0.65rem;
  font-weight: 780;
}

.faq-list {
  max-width: 850px;
  margin-inline: auto;
  border-top: 1px solid var(--line);
}

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

.faq-item summary {
  position: relative;
  padding: 23px 48px 23px 0;
  font-size: 1rem;
  font-weight: 760;
  list-style: none;
  cursor: pointer;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  top: 18px;
  right: 0;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  color: var(--brand);
  background: var(--brand-soft);
  border-radius: 50%;
  font-size: 1.2rem;
}

.faq-item[open] summary::after {
  content: "\2212";
}

.faq-item__body {
  max-width: 740px;
  padding: 0 48px 24px 0;
  color: var(--muted);
  font-size: 0.93rem;
}

.closing-cta {
  padding: 80px 0;
}

.closing-cta__card {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 40px;
  padding: 55px;
  color: #fff;
  background: var(--ink);
  border-radius: var(--radius-lg);
}

.closing-cta__card::after {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  right: -70px;
  bottom: -150px;
  background: var(--brand);
  border-radius: 50%;
  opacity: 0.34;
}

.closing-cta h2 {
  margin-bottom: 12px;
  color: #fff;
  font-size: clamp(2rem, 4vw, 3.3rem);
}

.closing-cta p {
  max-width: 690px;
  color: #bbc3da;
}

.closing-cta__actions {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 10px;
}

/* Interior and legal pages */
.page-hero,
.legal-hero {
  position: relative;
  overflow: hidden;
  padding: 88px 0 72px;
  background:
    radial-gradient(circle at 88% 10%, rgba(255, 184, 0, 0.18), transparent 28%),
    linear-gradient(180deg, #fff 0%, var(--paper-soft) 100%);
  border-bottom: 1px solid var(--line);
}

.page-hero__inner,
.legal-hero__inner {
  max-width: 800px;
}

.page-hero h1,
.legal-hero h1 {
  margin-bottom: 18px;
  font-size: clamp(2.55rem, 6vw, 5rem);
  font-weight: 870;
  letter-spacing: -0.06em;
}

.page-hero p,
.legal-hero p {
  max-width: 720px;
  color: var(--ink-soft);
  font-size: clamp(1.05rem, 2vw, 1.2rem);
}

.legal-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  margin-top: 25px;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 650;
}

.legal-layout {
  display: grid;
  grid-template-columns: 235px minmax(0, 780px);
  justify-content: center;
  align-items: start;
  gap: 70px;
  padding-top: 65px;
  padding-bottom: 100px;
}

.legal-toc {
  position: sticky;
  top: calc(var(--header-height) + 28px);
  padding: 20px;
  background: var(--paper-soft);
  border: 1px solid var(--line);
  border-radius: 16px;
}

.legal-toc strong {
  display: block;
  margin-bottom: 13px;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.legal-toc a {
  display: block;
  padding: 7px 0;
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.4;
  text-decoration: none;
}

.legal-toc a:hover {
  color: var(--brand-dark);
}

.legal-article {
  min-width: 0;
}

.legal-notice,
.info-callout,
.warning-callout {
  margin-bottom: 38px;
  padding: 20px 22px;
  color: var(--ink-soft);
  background: var(--brand-soft);
  border: 1px solid #f2c4c7;
  border-left: 4px solid var(--brand);
  border-radius: 12px;
  font-size: 0.9rem;
}

.info-callout {
  background: var(--success-soft);
  border-color: #bde6d6;
  border-left-color: var(--success);
}

.warning-callout {
  background: var(--accent-soft);
  border-color: #f1dfa8;
  border-left-color: var(--accent);
}

.legal-section {
  padding: 0 0 36px;
  margin-bottom: 38px;
  border-bottom: 1px solid var(--line);
}

.legal-section:last-child {
  margin-bottom: 0;
  border-bottom: 0;
}

.legal-section h2 {
  margin-bottom: 16px;
  font-size: clamp(1.45rem, 3vw, 2rem);
}

.legal-section h3 {
  margin: 24px 0 10px;
  font-size: 1.08rem;
  letter-spacing: -0.02em;
}

.legal-section p,
.legal-section li {
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.legal-section ul,
.legal-section ol {
  padding-left: 21px;
}

.legal-section li {
  margin-bottom: 9px;
  padding-left: 3px;
}

.legal-section a {
  color: var(--brand-dark);
  text-underline-offset: 3px;
}

.legal-section code,
.template-example code {
  padding: 2px 6px;
  color: var(--brand-dark);
  background: var(--brand-soft);
  border-radius: 5px;
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 0.88em;
}

.legal-table-wrap {
  margin: 22px 0;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 14px;
}

.legal-table {
  width: 100%;
  min-width: 610px;
  border-collapse: collapse;
}

.legal-table th,
.legal-table td {
  padding: 14px 16px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--line);
  font-size: 0.82rem;
}

.legal-table th {
  color: var(--ink);
  background: var(--paper-soft);
  font-weight: 780;
}

.legal-table tr:last-child td {
  border-bottom: 0;
}

.template-example {
  margin: 20px 0;
  padding: 22px;
  background: var(--code);
  border-radius: 14px;
}

.template-example span {
  display: block;
  margin-bottom: 9px;
  color: #aeb8d4;
  font-size: 0.7rem;
  font-weight: 760;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.template-example p {
  margin: 0;
  color: #f4f6ff;
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 0.86rem;
}

.related-policies {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 25px;
}

.related-policies a {
  padding: 16px;
  color: var(--ink);
  background: var(--paper-soft);
  border: 1px solid var(--line);
  border-radius: 12px;
  font-size: 0.84rem;
  font-weight: 730;
  text-decoration: none;
}

.related-policies a:hover {
  border-color: #efaeb2;
  background: var(--brand-soft);
}

/* About and contact */
.values-grid,
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.value-card,
.contact-card {
  padding: 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.value-card span,
.contact-card span {
  display: block;
  margin-bottom: 24px;
  color: var(--brand);
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.value-card h2,
.contact-card h2 {
  margin-bottom: 10px;
  font-size: 1.3rem;
}

.value-card p,
.contact-card p {
  color: var(--muted);
  font-size: 0.9rem;
}

.contact-card a {
  color: var(--brand-dark);
  font-weight: 730;
  text-decoration: none;
}

.contact-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 18px;
}

.contact-card__actions a {
  padding: 9px 12px;
  background: var(--brand-soft);
  border: 1px solid #f2c4c7;
  border-radius: 9px;
  font-size: 0.78rem;
}

.contact-card__actions a:hover {
  background: #ffe4e6;
  border-color: #e9969c;
}

.split-story {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: start;
  gap: 70px;
}

.split-story h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.story-copy p {
  color: var(--ink-soft);
}

.principles {
  display: grid;
  gap: 12px;
}

.principle {
  padding: 19px 20px;
  background: var(--paper-soft);
  border: 1px solid var(--line);
  border-radius: 14px;
}

.principle strong {
  display: block;
  margin-bottom: 4px;
}

.principle p {
  color: var(--muted);
  font-size: 0.86rem;
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 40px;
  padding: 42px;
  background: var(--paper-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}

.contact-panel h2 {
  margin-bottom: 13px;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
}

.contact-panel p {
  color: var(--muted);
}

.contact-details {
  display: grid;
  gap: 10px;
}

.contact-detail {
  padding: 17px 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 13px;
}

.contact-detail span,
.contact-detail strong {
  display: block;
}

.contact-detail span {
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 780;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.contact-detail strong,
.contact-detail a {
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 720;
  text-decoration: none;
}

/* Footer */
.site-footer {
  padding: 74px 0 28px;
  color: #d7dced;
  background: #0b0f1d;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.7fr repeat(3, 1fr);
  gap: 55px;
  padding-bottom: 50px;
}

.brand--footer {
  margin-bottom: 18px;
  color: #fff;
}

.footer-brand p {
  max-width: 370px;
  margin-bottom: 17px;
  color: #9ea7c1;
  font-size: 0.86rem;
}

.footer-email {
  color: #fff;
  font-size: 0.87rem;
  font-weight: 720;
  text-decoration: none;
}

.footer-support-links {
  display: grid;
  justify-items: start;
  gap: 5px;
}

.footer-support-links small {
  margin-top: 7px;
  color: #737d9c;
  font-size: 0.65rem;
  font-weight: 780;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.footer-grid h2 {
  margin: 4px 0 17px;
  color: #fff;
  font-size: 0.76rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.footer-grid ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-grid li {
  margin-bottom: 9px;
}

.footer-grid li a {
  color: #9ea7c1;
  font-size: 0.84rem;
  text-decoration: none;
}

.footer-grid li a:hover,
.footer-email:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding-top: 24px;
  color: #737d9c;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  font-size: 0.72rem;
}

.footer-bottom p {
  margin: 0;
}

/* WordPress product and public integration guide */
.wordpress-promo {
  overflow: hidden;
  background: linear-gradient(135deg, #fff 0%, #fff7f7 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.wordpress-promo__grid,
.plugin-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 0.82fr);
  align-items: center;
  gap: clamp(45px, 8vw, 100px);
}

.wordpress-promo__copy h2 {
  max-width: 700px;
  margin-bottom: 19px;
  font-size: clamp(2.25rem, 5vw, 4rem);
  font-weight: 870;
  letter-spacing: -0.055em;
}

.wordpress-promo__copy > p:not(.eyebrow) {
  max-width: 680px;
  color: var(--muted);
}

.wordpress-card,
.plugin-window {
  overflow: hidden;
  padding: 14px;
  background: var(--ink);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
  transform: rotate(1deg);
}

.wordpress-card__head {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 12px 12px 20px;
  color: #fff;
}

.wordpress-card__head strong,
.wordpress-card__head small {
  display: block;
}

.wordpress-card__head small {
  margin-top: 2px;
  color: #9ea7c1;
}

.wp-mark {
  width: 43px;
  height: 43px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  color: #fff;
  background: var(--brand);
  font: 800 1.25rem Georgia, serif;
}

.wordpress-card__step {
  display: grid;
  grid-template-columns: 34px 1fr auto;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
  padding: 16px;
  color: var(--ink);
  background: #fff;
  border-radius: 12px;
}

.wordpress-card__step > span {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  color: var(--brand-dark);
  background: var(--brand-soft);
  border-radius: 50%;
  font-size: .78rem;
  font-weight: 800;
}

.wordpress-card__step strong,
.wordpress-card__step small {
  display: block;
}

.wordpress-card__step small {
  color: var(--muted);
}

.wordpress-card__step b {
  color: var(--success);
  font-size: .75rem;
}

.wordpress-card__footer {
  padding: 10px 12px 5px;
  color: #9099b4;
  font-size: .75rem;
  text-align: center;
}

.plugin-hero {
  padding: 100px 0 92px;
}

.plugin-hero h1 {
  max-width: 760px;
  font-size: clamp(2.7rem, 6.5vw, 5.6rem);
}

.plugin-hero .page-hero__lead {
  font-size: clamp(1.05rem, 2vw, 1.22rem);
}

.plugin-meta {
  margin-top: 20px;
  color: var(--muted) !important;
  font-size: .8rem !important;
  font-weight: 700;
}

.plugin-window {
  padding: 9px;
  transform: rotate(1.5deg);
}

.plugin-window__bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 9px 10px 14px;
  color: #b8bfd4;
  font-size: .74rem;
}

.plugin-window__bar span {
  width: 8px;
  height: 8px;
  background: #596078;
  border-radius: 50%;
}

.plugin-window__bar span:first-child { background: var(--brand); }
.plugin-window__bar strong { margin-left: auto; }

.plugin-window__body {
  padding: 24px;
  background: #fff;
  border-radius: 16px;
}

.plugin-window__body label {
  display: block;
  margin: 16px 0 6px;
  color: var(--muted);
  font-size: .72rem;
  font-weight: 750;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.plugin-status,
.plugin-shortcode {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.plugin-status {
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.plugin-status strong,
.plugin-input--ok { color: var(--success); }

.plugin-input {
  padding: 11px 13px;
  background: var(--paper-soft);
  border: 1px solid var(--line);
  border-radius: 9px;
  font: .82rem ui-monospace, SFMono-Regular, Menlo, monospace;
}

.plugin-shortcode {
  align-items: center;
  margin-top: 22px;
  padding: 15px;
  background: var(--brand-soft);
  border-radius: 10px;
  font-size: .82rem;
}

.plugin-shortcode code { color: var(--brand-dark); font-weight: 750; }

.docs-layout {
  display: grid;
  grid-template-columns: 230px minmax(0, 790px);
  justify-content: center;
  align-items: start;
  gap: 70px;
}

.docs-toc {
  position: sticky;
  top: calc(var(--header-height) + 28px);
  padding: 20px;
  background: var(--paper-soft);
  border: 1px solid var(--line);
  border-radius: 16px;
}

.docs-toc a {
  display: block;
  padding: 7px 0;
  color: var(--muted);
  font-size: .84rem;
  font-weight: 650;
  text-decoration: none;
}

.docs-toc a:hover { color: var(--brand); }

.docs-section {
  padding: 0 0 58px;
  margin-bottom: 58px;
  border-bottom: 1px solid var(--line);
  scroll-margin-top: calc(var(--header-height) + 30px);
}

.docs-section:last-child { margin-bottom: 0; border-bottom: 0; }
.docs-section h2 { margin-bottom: 18px; font-size: clamp(1.8rem, 4vw, 2.8rem); }
.docs-section h3 { margin: 32px 0 12px; font-size: 1.15rem; }
.docs-section > p { color: var(--muted); }
.docs-kicker { margin-bottom: 8px !important; color: var(--brand) !important; font-size: .75rem; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }

.numbered-guide { counter-reset: guide; margin: 26px 0; padding: 0; list-style: none; }
.numbered-guide li { position: relative; min-height: 36px; padding: 4px 0 18px 48px; color: var(--ink-soft); }
.numbered-guide li::before { counter-increment: guide; content: counter(guide); position: absolute; left: 0; top: 0; width: 32px; height: 32px; display: grid; place-items: center; color: #fff; background: var(--brand); border-radius: 50%; font-size: .75rem; font-weight: 800; }

.docs-callout { margin: 24px 0; padding: 17px 19px; color: var(--ink-soft); background: var(--success-soft); border-left: 4px solid var(--success); border-radius: 4px 12px 12px 4px; }
.docs-callout--warning { background: var(--accent-soft); border-left-color: var(--accent); }

.guide-code {
  overflow-x: auto;
  margin: 18px 0 24px;
  padding: 22px;
  color: #e8ecf7;
  background: var(--code);
  border-radius: 14px;
  font: .78rem/1.7 ui-monospace, SFMono-Regular, Menlo, monospace;
  white-space: pre;
}

.guide-code code { font: inherit; }

@media (max-width: 1040px) {
  .primary-nav {
    gap: 19px;
  }

  .hero__grid {
    grid-template-columns: 1fr 430px;
    gap: 40px;
  }

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

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

  .legal-layout {
    grid-template-columns: 210px minmax(0, 1fr);
    gap: 42px;
  }

  .wordpress-promo__grid,
  .plugin-hero__grid {
    grid-template-columns: 1fr 390px;
    gap: 42px;
  }
}

@media (max-width: 900px) {
  :root {
    --header-height: 68px;
  }

  .site-header__inner {
    gap: 12px;
  }

  .menu-toggle {
    display: block;
    margin-left: auto;
  }

  .primary-nav {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    max-height: calc(100vh - var(--header-height));
    overflow-y: auto;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    margin: 0;
    padding: 18px 20px 112px;
    background: #fff;
    border-top: 1px solid var(--line);
    box-shadow: 0 24px 40px rgba(17, 24, 45, 0.13);
  }

  .primary-nav.is-open {
    display: flex;
  }

  .primary-nav a {
    padding: 15px 4px;
    border-bottom: 1px solid var(--line);
    font-size: 1rem;
  }

  .primary-nav a::after {
    display: none;
  }

  .header-actions .button--quiet {
    display: none;
  }

  .hero {
    padding-top: 70px;
  }

  .hero__grid,
  .api-grid,
  .template-grid,
  .operations-grid,
  .split-story,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .wordpress-promo__grid,
  .plugin-hero__grid,
  .docs-layout {
    grid-template-columns: 1fr;
  }

  .wordpress-card,
  .plugin-window {
    width: min(100%, 600px);
    margin-inline: auto;
    transform: none;
  }

  .docs-toc {
    position: static;
  }

  .docs-toc nav {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0 20px;
  }

  .hero__content {
    max-width: 760px;
  }

  .product-window {
    width: min(100%, 600px);
    margin-inline: auto;
    transform: none;
  }

  .onboarding-grid {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 38px;
  }

  .onboarding-grid::before {
    display: none;
  }

  .api-grid,
  .template-grid,
  .operations-grid,
  .split-story {
    gap: 45px;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 620px;
    margin-inline: auto;
  }

  .price-card--featured {
    transform: none;
  }

  .legal-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .legal-toc {
    position: static;
  }

  .legal-toc nav {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0 20px;
  }

  .values-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 640px) {
  .container-wide,
  .container-narrow {
    width: min(calc(100% - 28px), var(--container));
  }

  .section {
    padding: 78px 0;
  }

  .header-actions .button--primary {
    display: none;
  }

  .announcement__inner {
    min-height: 48px;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px 9px;
    padding-top: 9px;
    padding-bottom: 9px;
    white-space: normal;
  }

  .hero {
    padding: 59px 0 54px;
  }

  .hero h1 {
    font-size: clamp(2.65rem, 14vw, 4.1rem);
  }

  .hero__actions,
  .closing-cta__actions {
    flex-direction: column;
  }

  .hero__actions .button,
  .closing-cta__actions .button {
    width: 100%;
  }

  .hero__proof {
    display: grid;
    gap: 9px;
  }

  .product-window {
    padding: 8px;
    border-radius: 20px;
  }

  .request-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .request-code {
    padding: 16px;
    font-size: 0.7rem;
  }

  .request-statuses {
    grid-template-columns: 1fr;
  }

  .trust-strip__grid,
  .feature-grid,
  .onboarding-grid,
  .use-case-grid,
  .dashboard-stats,
  .operations-list,
  .related-policies {
    grid-template-columns: 1fr;
  }

  .trust-item {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

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

  .feature-card {
    min-height: 0;
  }

  .api-grid,
  .template-grid,
  .operations-grid,
  .split-story,
  .contact-panel {
    gap: 34px;
  }

  .wordpress-card__step {
    grid-template-columns: 30px 1fr;
  }

  .wordpress-card__step b {
    display: none;
  }

  .docs-toc nav {
    grid-template-columns: 1fr;
  }

  .plugin-window__body {
    padding: 18px;
  }

  .code-panel pre {
    padding: 20px 16px;
    font-size: 0.7rem;
  }

  .code-note,
  .credit-table-head,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .message-preview {
    padding: 18px;
  }

  .message-bubble {
    margin-left: 0;
  }

  .compliance-band__inner,
  .closing-cta__card {
    grid-template-columns: 1fr;
  }

  .compliance-band__inner {
    gap: 25px;
  }

  .credit-table-wrap {
    overflow-x: auto;
  }

  .credit-table {
    min-width: 510px;
  }

  .activity-row {
    grid-template-columns: 1fr 1fr;
  }

  .activity-row > :last-child {
    display: none;
  }

  .closing-cta {
    padding: 60px 0;
  }

  .closing-cta__card,
  .contact-panel {
    padding: 32px 24px;
  }

  .page-hero,
  .legal-hero {
    padding: 64px 0 52px;
  }

  .page-hero h1,
  .legal-hero h1 {
    font-size: clamp(2.35rem, 13vw, 3.8rem);
  }

  .legal-layout {
    padding-top: 40px;
    padding-bottom: 75px;
  }

  .legal-toc nav {
    grid-template-columns: 1fr;
  }

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

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

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

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

.floating-whatsapp{position:fixed;right:22px;bottom:22px;z-index:80;width:56px;height:56px;display:grid;place-items:center;border:3px solid #fff;border-radius:50%;background:#25d366;color:#fff;box-shadow:0 13px 34px rgba(20,90,50,.3);transition:transform .18s ease,background .18s ease}.floating-whatsapp:hover{background:#1fbd5b;color:#fff;transform:translateY(-3px)}.floating-whatsapp svg{width:29px;height:29px}@media(max-width:620px){.floating-whatsapp{right:14px;bottom:14px;width:51px;height:51px}.floating-whatsapp svg{width:26px;height:26px}}

@media print {
  .site-header,
  .site-footer,
  .legal-toc,
  .announcement,
  .closing-cta {
    display: none !important;
  }

  .legal-hero,
  .page-hero {
    padding: 20px 0;
    background: #fff;
  }

  .legal-layout {
    display: block;
    width: 100%;
    padding: 20px 0;
  }

  .legal-section {
    break-inside: avoid;
  }
}
