:root {
  --api-ink: oklch(24% 0.035 248);
  --api-ink-soft: oklch(38% 0.03 248);
  --api-muted: oklch(53% 0.025 248);
  --api-quiet: oklch(69% 0.02 248);
  --api-paper: oklch(98.5% 0.006 65);
  --api-panel: oklch(99% 0.004 65);
  --api-wash: oklch(96% 0.018 43);
  --api-line: oklch(88% 0.024 39);
  --api-rose: oklch(82% 0.055 32);
  --api-brown: oklch(42% 0.075 42);
  --api-blue: oklch(54% 0.13 246);
  --api-cyan: oklch(66% 0.12 203);
  --api-green: oklch(58% 0.11 157);
  --api-shadow: 0 22px 60px rgba(78, 44, 29, 0.12);
  --api-shadow-soft: 0 12px 34px rgba(33, 61, 88, 0.08);
  color-scheme: light;
}

html {
  scroll-behavior: smooth;
}

body.api-product-page {
  min-width: 320px;
  color: var(--api-ink);
  background:
    linear-gradient(180deg, rgba(255, 250, 246, 0.96) 0%, rgba(252, 253, 255, 0.98) 46%, rgba(248, 243, 239, 0.86) 100%);
  overflow-x: hidden;
}

body.api-product-page .header-area {
  background: rgba(255, 255, 255, 0.96);
}

body.api-product-page main {
  padding-top: 108px;
}

body.api-product-page img {
  display: block;
}

.api-main {
  position: relative;
}

.api-main::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(141, 82, 53, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37, 95, 146, 0.04) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(180deg, #000 0%, transparent 78%);
}

.api-shell {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.api-hero {
  position: relative;
  min-height: 680px;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
  align-items: center;
  gap: 34px;
  padding: 58px 0 42px;
}

.api-hero-copy {
  position: relative;
  z-index: 2;
  max-width: 620px;
  animation: apiFadeUp 0.55s ease both;
}

.api-eyebrow,
.api-section-kicker,
.api-chip {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  border-radius: 999px;
  font-weight: 700;
}

.api-eyebrow {
  gap: 9px;
  min-height: 36px;
  padding: 0 14px;
  border: 1px solid rgba(141, 82, 53, 0.16);
  color: var(--api-brown);
  background: rgba(244, 222, 214, 0.58);
  font-size: 13px;
}

.api-eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--api-green);
  box-shadow: 0 0 0 5px rgba(62, 156, 105, 0.12);
}

.api-hero h1 {
  margin: 24px 0 20px;
  color: var(--api-ink);
  font-size: clamp(44px, 7vw, 76px);
  line-height: 1.02;
  font-weight: 820;
}

.api-hero h1 span {
  color: var(--api-brown);
}

.api-hero-lead {
  max-width: 62ch;
  margin: 0;
  color: var(--api-ink-soft);
  font-size: 18px;
  line-height: 1.9;
  font-weight: 360;
}

.api-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 30px;
}

.api-button {
  position: relative;
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 15px;
  font-weight: 760;
  line-height: 1;
  overflow: hidden;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease,
    color 0.2s ease;
}

.api-button::after {
  content: "";
  position: absolute;
  inset: -30% auto -30% -55%;
  width: 46%;
  transform: skewX(-18deg) translateX(0);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.34), transparent);
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.2s ease,
    transform 0.58s ease;
}

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

.api-button:hover::after {
  opacity: 1;
  transform: skewX(-18deg) translateX(360%);
}

.api-button[aria-disabled="true"] {
  cursor: default;
}

.api-button[aria-disabled="true"]:hover {
  transform: none;
}

.api-button.primary {
  color: oklch(99% 0.004 65);
  background: var(--api-brown);
  box-shadow: 0 15px 28px rgba(133, 73, 45, 0.22);
}

.api-button.primary:hover {
  color: oklch(99% 0.004 65);
  box-shadow: 0 18px 32px rgba(133, 73, 45, 0.28);
}

.api-button.secondary {
  color: var(--api-blue);
  border-color: rgba(38, 114, 183, 0.24);
  background: rgba(255, 255, 255, 0.76);
}

.api-button.secondary:hover {
  color: var(--api-blue);
  border-color: rgba(38, 114, 183, 0.38);
  box-shadow: var(--api-shadow-soft);
}

.api-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
  max-width: 610px;
}

.api-metric {
  min-height: 104px;
  padding: 16px 16px 14px;
  border: 1px solid var(--api-line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 10px 30px rgba(78, 44, 29, 0.05);
  transition:
    border-color 0.22s ease,
    box-shadow 0.22s ease,
    transform 0.22s ease;
}

.api-metric:hover {
  transform: translateY(-3px);
  border-color: rgba(141, 82, 53, 0.2);
  box-shadow: 0 16px 34px rgba(78, 44, 29, 0.09);
}

.api-metric strong {
  display: block;
  color: var(--api-ink);
  font-size: 22px;
  line-height: 1.2;
}

.api-metric span {
  display: block;
  margin-top: 8px;
  color: var(--api-muted);
  font-size: 13px;
  line-height: 1.5;
}

.api-hero-visual {
  position: relative;
  min-height: 620px;
  animation: apiFadeIn 0.7s 0.08s ease both;
}

.api-visual-line {
  position: absolute;
  inset: 78px 12px 74px 12px;
  border: 1px solid rgba(38, 114, 183, 0.14);
  border-radius: 34px;
  transform: skewX(-4deg);
}

.api-phone {
  position: absolute;
  width: 236px;
  aspect-ratio: 890 / 1658;
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid rgba(116, 77, 62, 0.2);
  background: #f8f4f1;
  box-shadow: var(--api-shadow);
  will-change: transform;
}

.api-phone::after {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-140%) skewX(-16deg);
  background: linear-gradient(90deg, transparent 30%, rgba(255, 255, 255, 0.24), transparent 70%);
  pointer-events: none;
  animation: apiPhoneSheen 6.8s ease-in-out infinite;
}

.api-phone.left::after {
  animation-delay: 1.2s;
}

.api-phone.right::after {
  animation-delay: 2.1s;
}

.api-phone img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.api-phone.main {
  z-index: 3;
  width: min(320px, 54%);
  right: 18%;
  top: 24px;
  transform: rotate(1deg);
}

.api-phone.left {
  z-index: 2;
  left: 1%;
  top: 126px;
  transform: rotate(-7deg);
  opacity: 0.96;
}

.api-phone.right {
  z-index: 1;
  right: 1%;
  bottom: 52px;
  transform: rotate(6deg);
  opacity: 0.92;
}

.api-section {
  padding: 58px 0;
}

#billing.api-shell {
  width: min(1120px, calc(100% - 128px));
}

.api-section.compact {
  padding-top: 32px;
}

.api-section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.74fr) minmax(280px, 0.26fr);
  gap: 26px;
  align-items: end;
  margin-bottom: 26px;
}

.api-section-kicker {
  min-height: 32px;
  padding: 0 12px;
  color: var(--api-brown);
  background: rgba(244, 222, 214, 0.62);
  font-size: 13px;
}

.api-section-title {
  margin: 14px 0 0;
  color: var(--api-ink);
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.18;
  font-weight: 820;
}

.api-section-head p {
  margin: 0;
  color: var(--api-muted);
  font-size: 15px;
  line-height: 1.9;
}

.api-preview-section {
  width: min(1180px, calc(100% - 40px));
  max-width: 1180px;
  margin: 0 auto;
  --api-shot-height: clamp(260px, 42vh, 330px);
}

.api-preview-head {
  margin-bottom: 24px;
}

.api-preview-title {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--api-ink);
}

.api-preview-title i {
  color: var(--api-cyan);
  font-size: 26px;
}

.api-preview-title h2 {
  margin: 0;
  color: var(--api-ink);
  font-size: clamp(34px, 4vw, 48px);
  line-height: 1.1;
  font-weight: 860;
}

.api-preview-head p {
  margin: 12px 0 0;
  color: var(--api-ink-soft);
  font-size: 18px;
  line-height: 1.7;
  font-weight: 620;
}

.api-gallery-panel {
  position: relative;
  padding: clamp(24px, 2.8vw, 36px);
  padding-bottom: clamp(44px, 4vw, 64px);
  border: 1px solid rgba(141, 82, 53, 0.12);
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(255, 251, 248, 0.72));
  box-shadow: 0 20px 48px rgba(78, 44, 29, 0.07);
}

.api-gallery-panel::before {
  content: "";
  position: absolute;
  inset: 14px;
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(20, 166, 174, 0.07), transparent 32%),
    linear-gradient(315deg, rgba(141, 82, 53, 0.08), transparent 36%);
  pointer-events: none;
  opacity: 0.72;
}

.api-gallery {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 4px 2px 26px;
  width: 100%;
  scroll-snap-type: x mandatory;
  scroll-padding-left: 0;
  -webkit-overflow-scrolling: touch;
}

.api-gallery::-webkit-scrollbar {
  height: 10px;
}

.api-gallery::-webkit-scrollbar-track {
  background: rgba(141, 82, 53, 0.08);
  border-radius: 999px;
}

.api-gallery::-webkit-scrollbar-thumb {
  background: rgba(141, 82, 53, 0.26);
  border-radius: 999px;
}

.api-shot {
  position: relative;
  flex: 0 0 auto;
  padding: 7px;
  border: 1px solid rgba(141, 82, 53, 0.1);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 44px rgba(78, 44, 29, 0.12);
  overflow: hidden;
  scroll-snap-align: start;
  transition:
    border-color 0.22s ease,
    box-shadow 0.22s ease,
    background 0.22s ease;
}

.api-shot::after {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-120%) skewX(-18deg);
  background: linear-gradient(90deg, transparent 36%, rgba(255, 255, 255, 0.34), transparent 66%);
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.2s ease,
    transform 0.56s ease;
}

.api-shot:hover {
  border-color: rgba(38, 114, 183, 0.2);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 24px 54px rgba(78, 44, 29, 0.15);
}

.api-shot:hover::after {
  opacity: 1;
  transform: translateX(135%) skewX(-18deg);
}

.api-shot img {
  width: auto;
  height: var(--api-shot-height);
  object-fit: contain;
  border-radius: 17px;
  border: 1px solid rgba(141, 82, 53, 0.12);
}

.api-shot-label {
  position: absolute;
  left: 18px;
  bottom: 18px;
  padding: 7px 12px;
  border-radius: 999px;
  color: var(--api-ink);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 10px 22px rgba(78, 44, 29, 0.12);
  font-size: 13px;
  font-weight: 760;
}

.api-feature-band {
  display: grid;
  grid-template-columns: minmax(280px, 0.35fr) minmax(0, 0.65fr);
  gap: 22px;
  align-items: stretch;
}

.api-feature-intro {
  position: relative;
  padding: 30px;
  border-radius: 26px;
  color: oklch(99% 0.004 65);
  background:
    linear-gradient(135deg, rgba(120, 68, 42, 0.96), rgba(66, 45, 35, 0.98));
  box-shadow: var(--api-shadow);
  overflow: hidden;
}

.api-feature-intro::after {
  content: "";
  position: absolute;
  top: -38%;
  bottom: -38%;
  left: -48%;
  width: 34%;
  transform: rotate(18deg);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.12), transparent);
  animation: apiSoftSweep 7.2s ease-in-out infinite;
  pointer-events: none;
}

.api-feature-intro h2 {
  margin: 0;
  color: inherit;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.2;
  font-weight: 820;
}

.api-feature-intro p {
  margin: 18px 0 0;
  color: rgba(255, 250, 246, 0.78);
  font-size: 15px;
  line-height: 1.9;
}

.api-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.api-chip {
  min-height: 34px;
  padding: 0 12px;
  color: rgba(255, 250, 246, 0.95);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 12px;
  transition:
    transform 0.2s ease,
    background 0.2s ease;
}

.api-chip:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.18);
}

.api-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.api-feature {
  position: relative;
  min-height: 154px;
  padding: 22px;
  border: 1px solid var(--api-line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 12px 32px rgba(78, 44, 29, 0.06);
  overflow: hidden;
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease;
}

.api-feature::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    linear-gradient(135deg, rgba(38, 114, 183, 0.08), transparent 42%),
    linear-gradient(315deg, rgba(62, 156, 105, 0.07), transparent 38%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease;
}

.api-feature:hover {
  transform: translateY(-4px);
  border-color: rgba(141, 82, 53, 0.22);
  box-shadow: 0 18px 38px rgba(78, 44, 29, 0.1);
}

.api-feature:hover::before {
  opacity: 1;
}

.api-feature i {
  position: relative;
  z-index: 1;
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  color: var(--api-brown);
  background: rgba(244, 222, 214, 0.78);
  font-size: 17px;
  transition:
    transform 0.22s ease,
    background 0.22s ease;
}

.api-feature:hover i {
  transform: translateY(-2px) rotate(-3deg);
  background: rgba(244, 222, 214, 0.96);
}

.api-feature h3 {
  position: relative;
  z-index: 1;
  margin: 16px 0 8px;
  color: var(--api-ink);
  font-size: 19px;
  line-height: 1.35;
  font-weight: 780;
}

.api-feature p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--api-muted);
  font-size: 14px;
  line-height: 1.8;
  font-weight: 360;
}

.api-billing-board {
  position: relative;
  padding: clamp(26px, 3vw, 38px);
  overflow: visible;
  border: 1px solid var(--api-line);
  border-radius: 32px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 251, 248, 0.86));
  box-shadow: 0 24px 58px rgba(78, 44, 29, 0.08);
}

.api-billing-summary {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.api-billing-summary div {
  position: relative;
  display: flex;
  min-height: 138px;
  flex-direction: column;
  justify-content: center;
  padding: 24px;
  border: 1px solid rgba(141, 82, 53, 0.14);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 10px 24px rgba(78, 44, 29, 0.045);
  overflow: hidden;
  transition:
    border-color 0.22s ease,
    box-shadow 0.22s ease,
    background 0.22s ease;
}

.api-billing-summary div::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, rgba(141, 82, 53, 0.52), rgba(20, 166, 174, 0.52));
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.24s ease;
}

.api-billing-summary div:hover {
  border-color: rgba(141, 82, 53, 0.24);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 16px 30px rgba(78, 44, 29, 0.08);
}

.api-billing-summary div:hover::before {
  transform: scaleX(1);
}

.api-billing-summary strong {
  display: block;
  color: var(--api-ink);
  font-size: 22px;
  line-height: 1.22;
}

.api-billing-summary span {
  display: block;
  margin-top: 8px;
  color: var(--api-muted);
  font-size: 13px;
  line-height: 1.6;
}

.api-rule-compact-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: stretch;
  gap: 20px;
  margin-top: 26px;
  padding-top: 28px;
  border-top: 1px solid rgba(141, 82, 53, 0.12);
}

.api-rule-card {
  position: relative;
  display: flex;
  min-height: 218px;
  height: 100%;
  flex-direction: column;
  padding: 26px 24px 28px;
  border: 1px solid rgba(141, 82, 53, 0.13);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 12px 28px rgba(78, 44, 29, 0.05);
  overflow: hidden;
  transition:
    box-shadow 0.22s ease,
    border-color 0.22s ease;
}

.api-rule-card::after {
  content: "";
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(38, 114, 183, 0.58), rgba(62, 156, 105, 0.46));
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.24s ease;
}

.api-rule-card:hover {
  border-color: rgba(38, 114, 183, 0.2);
  box-shadow: 0 20px 38px rgba(33, 61, 88, 0.1);
}

.api-rule-card:hover::after {
  transform: scaleX(1);
}

.api-rule-card span {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  color: var(--api-blue);
  background: rgba(38, 114, 183, 0.08);
  font-size: 13px;
  font-weight: 820;
  transition: background 0.22s ease;
}

.api-rule-card:hover span {
  background: rgba(38, 114, 183, 0.12);
}

.api-rule-card h3 {
  margin: 14px 0 8px;
  color: var(--api-ink);
  font-size: 18px;
  line-height: 1.35;
  font-weight: 780;
}

.api-rule-card p {
  flex: 1;
  margin: 0;
  color: var(--api-muted);
  font-size: 14px;
  line-height: 1.7;
  font-weight: 360;
}

@keyframes apiFadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes apiFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes apiPhoneSheen {
  0%,
  58% {
    transform: translateX(-140%) skewX(-16deg);
  }
  76%,
  100% {
    transform: translateX(140%) skewX(-16deg);
  }
}

@keyframes apiSoftSweep {
  0%,
  54% {
    transform: translateX(0) rotate(18deg);
    opacity: 0;
  }
  66% {
    opacity: 1;
  }
  88%,
  100% {
    transform: translateX(430%) rotate(18deg);
    opacity: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

@media (max-width: 1120px) {
  .api-hero {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .api-hero-copy {
    max-width: 760px;
  }

  .api-hero-visual {
    min-height: 610px;
  }

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

@media (max-width: 860px) {
  body.api-product-page main {
    padding-top: 88px;
  }

  .api-shell {
    width: min(100% - 28px, 720px);
  }

  #billing.api-shell {
    width: min(100% - 28px, 720px);
  }

  .api-hero {
    padding-top: 42px;
  }

  .api-metrics,
  .api-section-head,
  .api-feature-band,
  .api-rule-compact-grid {
    grid-template-columns: 1fr;
  }

  .api-hero-visual {
    min-height: 520px;
  }

  .api-phone.main {
    width: 260px;
    right: 50%;
    transform: translateX(50%) rotate(1deg);
  }

  .api-phone.left {
    width: 188px;
    left: 1%;
    top: 142px;
  }

  .api-phone.right {
    width: 188px;
    right: 1%;
    bottom: 34px;
  }

  .api-preview-section {
    width: min(100% - 28px, 720px);
    --api-shot-height: 300px;
  }

  .api-gallery-panel {
    padding: 18px;
    padding-bottom: 42px;
  }

  .api-gallery {
    gap: 16px;
    padding: 2px 1px 24px;
  }

}

@media (max-width: 560px) {
  body.api-product-page main {
    padding-top: 78px;
  }

  .api-hero {
    padding-top: 32px;
    gap: 18px;
  }

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

  .api-hero-lead {
    font-size: 16px;
  }

  .api-button {
    width: 100%;
  }

  .api-metric {
    min-height: auto;
  }

  .api-metrics {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    margin-top: 20px;
  }

  .api-metric {
    padding: 12px 10px;
    border-radius: 16px;
  }

  .api-metric strong {
    font-size: 20px;
  }

  .api-metric span {
    margin-top: 5px;
    font-size: 11px;
    line-height: 1.35;
  }

  body.api-product-page .side-float {
    right: 10px;
    bottom: 18px;
    gap: 8px;
  }

  body.api-product-page .side-float .sf-item {
    width: 42px;
    height: 42px;
    border-radius: 13px;
  }

  .api-hero-visual {
    min-height: 470px;
  }

  .api-phone.main {
    width: 226px;
    top: 18px;
  }

  .api-phone.left,
  .api-phone.right {
    width: 156px;
  }

  .api-phone.left {
    top: 122px;
  }

  .api-feature-grid,
  .api-billing-summary {
    grid-template-columns: 1fr;
  }

  .api-preview-section {
    --api-shot-height: 280px;
  }

  .api-gallery-panel {
    padding: 14px;
    padding-bottom: 34px;
    border-radius: 24px;
  }

  .api-section {
    padding: 44px 0;
  }

  .api-feature-intro {
    padding: 24px;
    border-radius: 20px;
  }
}
