.promo-body {
  padding: 0 18px 48px;
}

.site-nav {
  position: sticky;
  top: 14px;
  z-index: 40;
  width: min(var(--content-width), calc(100vw - 36px));
  margin: 14px auto 0;
  padding: 12px 14px;
  border: 1px solid rgba(65, 85, 102, 0.88);
  border-radius: 18px;
  background: rgba(12, 18, 24, 0.78);
  backdrop-filter: blur(16px);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.24);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  transition:
    padding 180ms ease,
    gap 180ms ease,
    top 180ms ease,
    border-radius 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.site-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}

.site-brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  border: 1px solid rgba(77, 166, 195, 0.48);
  background:
    linear-gradient(135deg, rgba(10, 183, 222, 0.25), rgba(3, 131, 162, 0.1)),
    rgba(17, 26, 34, 0.95);
  display: grid;
  place-items: center;
  box-shadow: inset 0 0 18px rgba(10, 183, 222, 0.08);
  transition: width 180ms ease, height 180ms ease, border-radius 180ms ease;
}

.site-brand-mark::before {
  content: "";
  width: 17px;
  height: 17px;
  border-radius: 5px;
  border: 2px solid #96ebfb;
  border-top-color: transparent;
  transform: rotate(45deg);
}

.site-brand-copy {
  display: grid;
  gap: 2px;
}

.site-brand-title {
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.02em;
  transition: font-size 180ms ease;
}

.site-brand-subtitle {
  font-size: 12px;
  color: var(--muted);
  transition: opacity 180ms ease, max-height 180ms ease;
}

.site-nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex: 1;
  min-width: 0;
  flex-wrap: wrap;
  transition: gap 180ms ease;
}

.site-nav-links a {
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: color 160ms ease, font-size 180ms ease;
}

.site-nav-links a:hover,
.site-nav-links a.active {
  color: var(--text);
}

.site-nav-actions {
  display: grid;
  justify-items: end;
  gap: 5px;
  flex-shrink: 0;
  transition: gap 180ms ease;
}

.site-nav-cta-row {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}

.site-nav-cta-row .button {
  white-space: nowrap;
}

.site-account-state {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
  color: #a8bfcc;
  font-size: 11px;
  line-height: 1.3;
  white-space: nowrap;
  transition: font-size 180ms ease;
}

.site-account-state[hidden] {
  display: none;
}

.site-account-label {
  color: #93adbb;
}

.site-account-email {
  max-width: 180px;
  display: inline-block;
  overflow: hidden;
  text-overflow: ellipsis;
  vertical-align: bottom;
  font-weight: 600;
  color: #d7e8f1;
}

.site-account-signout {
  padding: 0;
  border: 0;
  background: transparent;
  color: #93e2f2;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
}

.site-account-signout:hover,
.site-account-signout:focus-visible {
  color: #b8f3ff;
  text-decoration: underline;
}

.promo-main {
  width: min(var(--content-width), 100%);
  margin: 0 auto;
}

.section-shell {
  padding: 54px 0 0;
}

.section-shell:first-of-type {
  padding-top: 44px;
}

.section-band {
  position: relative;
  overflow: hidden;
  padding: 28px;
  border: 1px solid rgba(60, 78, 92, 0.85);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(24, 37, 47, 0.96), rgba(16, 25, 33, 0.96)),
    rgba(21, 33, 43, 0.94);
  box-shadow: var(--shadow);
}

.section-band::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 42%;
  height: 1px;
  background: linear-gradient(90deg, rgba(10, 183, 222, 0.48), rgba(10, 183, 222, 0));
}

.section-band.alt {
  background:
    linear-gradient(180deg, rgba(17, 27, 35, 0.98), rgba(12, 19, 25, 0.96)),
    rgba(18, 28, 36, 0.96);
}

.section-head {
  max-width: 760px;
  display: grid;
  gap: 10px;
  margin-bottom: 26px;
}

.section-head h1,
.section-head h2 {
  margin: 0;
  line-height: 1.04;
}

.section-head h1 {
  font-size: clamp(42px, 6vw, 76px);
  letter-spacing: -0.04em;
}

.section-head h2 {
  font-size: clamp(30px, 4vw, 44px);
  letter-spacing: -0.03em;
}

.section-head p,
.hero-summary {
  margin: 0;
  color: #cedbe6;
  font-size: 18px;
  line-height: 1.6;
}

.hero-band {
  padding: 34px;
}

.hero-band .section-head {
  text-align: center;
  margin: 0 auto 24px;
}

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

.demo-frame {
  position: relative;
  margin-top: 28px;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(66, 86, 101, 0.95);
  background: #0d151b;
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.32);
}

.browser-bar {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 16px;
  border-bottom: 1px solid rgba(53, 72, 86, 0.82);
  background: linear-gradient(180deg, #18242f, #111a22);
}

.browser-dots {
  display: flex;
  gap: 8px;
}

.browser-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #415360;
}

.browser-dots span:nth-child(1) {
  background: #dc5d59;
}

.browser-dots span:nth-child(2) {
  background: #f0b04a;
}

.browser-dots span:nth-child(3) {
  background: #4fb866;
}

.browser-address {
  flex: 1;
  min-width: 0;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(62, 81, 95, 0.85);
  background: rgba(9, 15, 20, 0.72);
  color: #b8cad6;
  font-size: 13px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.demo-frame iframe {
  width: 100%;
  height: 700px;
  border: 0;
  background: #111a22;
  display: block;
}

.demo-mobile-shot {
  width: 100%;
  height: 360px;
  object-fit: cover;
  object-position: top center;
  background: #111a22;
  display: block;
}

.demo-mobile-launch {
  display: none;
  width: 100%;
  padding: 0;
  border: 0;
  margin: 0;
  background: transparent;
  color: inherit;
  text-align: left;
  cursor: pointer;
}

.demo-mobile-preview-hint {
  display: none;
  padding: 12px 16px 16px;
  color: #9eb8c6;
  font-size: 13px;
  line-height: 1.5;
}

.demo-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 16px;
  background: rgba(6, 10, 14, 0.78);
}

.demo-modal.show {
  display: flex;
}

.demo-modal-card {
  width: min(100%, 560px);
  max-height: min(92vh, 860px);
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(65, 85, 102, 0.9);
  background: #0d151b;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.demo-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px 0;
}

.demo-modal-title {
  font-size: 16px;
  font-weight: 700;
}

.browser-bar-modal {
  border-top: 0;
}

.demo-modal iframe {
  width: 100%;
  height: min(76vh, 760px);
  border: 0;
  display: block;
  background: #111a22;
}

.media-lightbox {
  position: fixed;
  inset: 0;
  z-index: 125;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 18px;
  background: rgba(6, 10, 14, 0.82);
}

.media-lightbox.show {
  display: flex;
}

.media-lightbox-card {
  width: min(100%, 1040px);
  max-height: min(92vh, 980px);
  overflow: auto;
  border-radius: 22px;
  border: 1px solid rgba(65, 85, 102, 0.9);
  background: linear-gradient(180deg, rgba(18, 27, 35, 0.98), rgba(10, 16, 21, 0.98));
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
  padding: 16px;
}

.media-lightbox-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.media-lightbox-title {
  font-size: 16px;
  font-weight: 700;
}

.media-lightbox-image {
  width: 100%;
  max-height: min(74vh, 820px);
  object-fit: contain;
  display: block;
  border-radius: 16px;
  border: 1px solid rgba(48, 65, 77, 0.88);
  background: #101820;
}

.media-lightbox-caption {
  margin-top: 12px;
  color: var(--muted);
  line-height: 1.6;
}

body.promo-overlay-open {
  overflow: hidden;
}

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

.workflow-card {
  position: relative;
  padding: 18px;
  border: 1px solid rgba(58, 77, 91, 0.9);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(25, 38, 48, 0.96), rgba(15, 24, 31, 0.94));
  box-shadow: var(--shadow-soft);
  display: grid;
  grid-template-rows: auto auto minmax(0, 1fr) auto;
  row-gap: 12px;
  align-items: start;
}

.workflow-media {
  margin: 0;
  overflow: hidden;
  border-radius: 14px;
  border: 1px solid rgba(62, 81, 95, 0.9);
  background: rgba(10, 16, 21, 0.72);
  align-self: end;
}

.workflow-media img {
  width: 100%;
  height: 210px;
  display: block;
  object-fit: cover;
  object-position: top center;
}

.workflow-media-contain img {
  object-fit: contain;
  object-position: center;
  background: #101820;
}

.expandable-media {
  position: relative;
  cursor: zoom-in;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.expandable-media:hover {
  transform: translateY(-2px);
  border-color: rgba(83, 118, 139, 0.96);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.26);
}

.expandable-media:focus-visible {
  outline: 2px solid rgba(10, 183, 222, 0.45);
  outline-offset: 4px;
}

.workflow-step {
  color: #8fdff0;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.workflow-card h3,
.feature-card h3,
.showcase-copy h3 {
  margin: 0;
  font-size: 19px;
  line-height: 1.2;
}

.workflow-card p,
.feature-card p,
.showcase-copy p,
.pricing-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.workflow-fragment {
  min-height: 112px;
  border-radius: 14px;
  border: 1px solid rgba(62, 81, 95, 0.9);
  background: rgba(10, 16, 21, 0.72);
  padding: 14px;
  display: grid;
  gap: 10px;
  align-content: start;
}

.ui-line,
.ui-chip-row,
.ui-tree-row,
.ui-field {
  display: flex;
  align-items: center;
  gap: 10px;
}

.ui-line {
  justify-content: space-between;
  color: #d5e3ee;
  font-size: 13px;
}

.ui-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid rgba(54, 73, 87, 0.88);
  background: rgba(17, 26, 34, 0.96);
  color: #c6d8e4;
  font-size: 12px;
}

.ui-chip.dot::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}

.ui-chip.warn::before {
  background: #f0b04a;
}

.ui-chip.alert::before {
  background: var(--danger);
}

.ui-url {
  flex: 1;
  min-width: 0;
  padding: 8px 10px;
  border-radius: 10px;
  border: 1px solid rgba(54, 73, 87, 0.88);
  background: #0f171e;
  color: #bbcfdb;
  font-size: 12px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ui-button {
  padding: 8px 10px;
  border-radius: 10px;
  background: linear-gradient(180deg, var(--accent), var(--accent-2));
  color: #08202a;
  font-size: 12px;
  font-weight: 700;
}

.ui-tree-row {
  justify-content: space-between;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(53, 73, 86, 0.85);
  background: rgba(18, 29, 38, 0.96);
  color: #e1edf5;
  font-size: 13px;
}

.ui-tree-row.sub {
  margin-left: 18px;
  color: #b7c9d5;
}

.ui-tree-left {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.ui-chevron {
  width: 18px;
  height: 18px;
  border-radius: 6px;
  border: 1px solid rgba(83, 118, 139, 0.82);
  background: rgba(28, 45, 57, 0.98);
  display: grid;
  place-items: center;
  color: #a7e6f5;
  font-size: 11px;
  line-height: 1;
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(460px, 1.08fr);
  gap: 26px;
  align-items: center;
}

.section-grid.reverse {
  grid-template-columns: minmax(460px, 1.08fr) minmax(0, 0.92fr);
}

.section-grid-top-align {
  align-items: start;
}

.section-grid-equal-cards {
  align-items: stretch;
}

.section-grid-equal-cards > .shot-frame {
  height: 100%;
}

.showcase-copy {
  display: grid;
  gap: 14px;
}

.showcase-media {
  display: grid;
  gap: 12px;
  align-content: start;
}

.shot-link-button {
  justify-self: start;
}

.section-grid-spaced {
  margin-top: 24px;
}

.showcase-copy ul,
.pricing-card ul {
  margin: 0;
  padding-left: 18px;
  color: #d1e0ea;
  display: grid;
  gap: 8px;
  line-height: 1.5;
}

.showcase-copy ul li::marker,
.pricing-card ul li::marker {
  color: #7fdcec;
}

.ui-shot {
  padding: 18px;
  border-radius: 20px;
  border: 1px solid rgba(61, 81, 96, 0.88);
  background:
    linear-gradient(180deg, rgba(22, 33, 43, 0.98), rgba(14, 22, 29, 0.96)),
    rgba(20, 31, 40, 0.98);
  box-shadow: var(--shadow);
  display: grid;
  gap: 14px;
}

.shot-frame {
  padding: 16px;
  border-radius: 20px;
  border: 1px solid rgba(61, 81, 96, 0.88);
  background:
    linear-gradient(180deg, rgba(22, 33, 43, 0.98), rgba(14, 22, 29, 0.96)),
    rgba(20, 31, 40, 0.98);
  box-shadow: var(--shadow);
  display: grid;
  gap: 10px;
  margin: 0;
}

.shot-frame img {
  width: 100%;
  display: block;
  border-radius: 14px;
  border: 1px solid rgba(48, 65, 77, 0.88);
  background: #101820;
}

.shot-frame-compact img,
.shot-frame-equal-thumb img {
  height: 280px;
  object-fit: cover;
  object-position: top center;
}

.shot-frame-contain-thumb img {
  object-fit: contain;
  object-position: center top;
}

.shot-frame-privacy-thumb img {
  object-position: left top;
}

.shot-frame-live img,
.shot-frame-wide img {
  min-height: 340px;
  object-fit: cover;
  object-position: top center;
}

.shot-caption {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.branding-showcase {
  display: grid;
  gap: 18px;
}

.branding-showcase .shot-frame img {
  min-height: 360px;
  object-fit: cover;
  object-position: top center;
}

.ui-shot-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.ui-shot-title {
  font-size: 14px;
  font-weight: 700;
}

.ui-shot-subtitle {
  color: var(--muted);
  font-size: 12px;
}

.dashboard-toolbar,
.settings-toolbar {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.toolbar-chip,
.status-badge {
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid rgba(53, 72, 86, 0.88);
  background: rgba(17, 26, 34, 0.94);
  color: #c6d7e2;
  font-size: 12px;
}

.status-badge.online {
  color: #9bf1a9;
}

.status-badge.offline {
  color: #f0c36d;
}

.dashboard-table,
.mini-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 12px;
}

.dashboard-table th,
.dashboard-table td,
.mini-table th,
.mini-table td {
  padding: 10px 8px;
  border-bottom: 1px solid rgba(45, 62, 74, 0.88);
  text-align: left;
}

.dashboard-table th,
.mini-table th {
  color: #8fb0c3;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 11px;
}

.mount-dot {
  display: inline-flex;
  width: 9px;
  height: 9px;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--accent);
}

.mount-dot.offline {
  background: #f0b04a;
}

.settings-stack {
  display: grid;
  gap: 12px;
}

.settings-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(50, 67, 79, 0.88);
  background: rgba(16, 25, 33, 0.88);
}

.settings-row span {
  font-size: 13px;
  color: #dbe6ee;
}

.toggle {
  position: relative;
  width: 50px;
  height: 28px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--accent), var(--accent-2));
}

.toggle::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 25px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #edf6fb;
}

.toggle.off {
  background: #263642;
}

.toggle.off::after {
  left: 3px;
}

.settings-help-box {
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(50, 67, 79, 0.88);
  background: rgba(17, 27, 35, 0.92);
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.field-stack {
  display: grid;
  gap: 12px;
}

.field-card {
  display: grid;
  gap: 6px;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(50, 67, 79, 0.88);
  background: rgba(16, 25, 33, 0.9);
}

.field-label {
  color: var(--muted);
  font-size: 12px;
}

.field-value {
  min-height: 38px;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid rgba(46, 63, 77, 0.95);
  background: #111a22;
  color: #dce7ef;
  font-size: 13px;
}

.dns-grid {
  display: grid;
  gap: 10px;
}

.dns-row {
  display: grid;
  grid-template-columns: 90px 1fr 1fr;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(50, 67, 79, 0.88);
  background: rgba(16, 25, 33, 0.9);
  font-size: 12px;
  color: #d6e4ed;
}

.qr-layout {
  display: grid;
  grid-template-columns: 156px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
}

.qr-label {
  padding: 12px;
  border-radius: 18px;
  border: 1px solid rgba(56, 74, 88, 0.88);
  background: rgba(13, 21, 27, 0.9);
  display: grid;
  gap: 8px;
  justify-items: center;
}

.qr-code {
  width: 104px;
  height: 104px;
  border-radius: 12px;
  background:
    linear-gradient(90deg, #0c1116 10px, transparent 10px) 0 0 / 26px 26px,
    linear-gradient(#0c1116 10px, transparent 10px) 0 0 / 26px 26px,
    linear-gradient(90deg, transparent 16px, #0c1116 16px 20px, transparent 20px) 0 0 / 26px 26px,
    linear-gradient(transparent 16px, #0c1116 16px 20px, transparent 20px) 0 0 / 26px 26px,
    #f5fbff;
  border: 6px solid #f5fbff;
}

.qr-meta {
  display: grid;
  gap: 10px;
}

.phone-preview {
  justify-self: end;
  width: 164px;
  border-radius: 28px;
  border: 1px solid rgba(54, 72, 86, 0.88);
  background: linear-gradient(180deg, #0c1319, #111a22);
  padding: 10px;
  box-shadow: var(--shadow-soft);
}

.phone-notch {
  width: 80px;
  height: 12px;
  margin: 0 auto 10px;
  border-radius: 999px;
  background: #0a0f13;
}

.phone-screen {
  border-radius: 20px;
  background: linear-gradient(180deg, #17222c, #101820);
  padding: 12px;
  display: grid;
  gap: 10px;
}

.phone-header {
  display: grid;
  gap: 4px;
}

.phone-title {
  font-size: 13px;
  font-weight: 700;
}

.phone-subtitle {
  color: var(--muted);
  font-size: 11px;
}

.phone-row {
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(45, 62, 74, 0.88);
  background: rgba(17, 26, 34, 0.94);
  color: #dce7ef;
  font-size: 11px;
}

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

.stat-card {
  padding: 14px;
  border-radius: 16px;
  border: 1px solid rgba(58, 77, 91, 0.9);
  background: rgba(15, 24, 31, 0.92);
  display: grid;
  gap: 6px;
}

.stat-card strong {
  font-size: 24px;
  letter-spacing: -0.03em;
}

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

.feature-card {
  padding: 18px;
  border: 1px solid rgba(58, 77, 91, 0.9);
  border-radius: 18px;
  background: rgba(18, 28, 36, 0.9);
  display: grid;
  gap: 10px;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.feature-card:hover {
  transform: translateY(-3px);
  border-color: rgba(82, 134, 155, 0.95);
  box-shadow: var(--shadow-soft);
}

.feature-card-kicker {
  width: fit-content;
}

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

.pricing-card {
  padding: 24px;
  border-radius: 22px;
  border: 1px solid rgba(58, 77, 91, 0.9);
  background: linear-gradient(180deg, rgba(22, 33, 43, 0.98), rgba(13, 21, 28, 0.96));
  display: grid;
  gap: 16px;
  box-shadow: var(--shadow-soft);
}

.pricing-card > ul {
  align-self: start;
}

.pricing-card.featured {
  border-color: rgba(90, 150, 174, 0.95);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.24), inset 0 1px 0 rgba(152, 219, 235, 0.12);
}

.pricing-topline {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.pricing-title {
  display: grid;
  gap: 6px;
}

.pricing-title h3 {
  margin: 0;
  font-size: 26px;
}

.pricing-title p {
  margin: 0;
  color: var(--muted);
}

.pricing-price {
  font-size: 14px;
  color: #b8d4e1;
}

.pricing-actions {
  margin-top: auto;
  display: grid;
  gap: 10px;
  align-content: start;
}

.pricing-actions .button {
  justify-self: start;
}

.promo-billing-status {
  min-height: 18px;
  font-size: 13px;
}

.promo-billing-status-placeholder {
  visibility: hidden;
}

.promo-billing-status.error {
  color: #ff9f9b;
}

.promo-billing-status.success {
  color: #86e8fb;
}

.final-cta {
  text-align: center;
  padding: 34px 28px;
  background:
    radial-gradient(circle at top, rgba(10, 183, 222, 0.18), transparent 36%),
    linear-gradient(180deg, rgba(14, 22, 29, 0.98), rgba(9, 15, 20, 0.98));
}

.final-cta .section-head {
  margin: 0 auto 20px;
}

.site-footer {
  width: min(var(--content-width), 100%);
  margin: 22px auto 0;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 0 4px;
  color: var(--muted);
  font-size: 13px;
}

.site-footer a {
  color: #b8d6e2;
  text-decoration: none;
}

.billing-modal {
  position: fixed;
  inset: 0;
  background: rgba(7, 11, 14, 0.72);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px;
  z-index: 10000;
}

.billing-modal-card {
  width: min(520px, 100%);
  background: linear-gradient(180deg, #1b232a, var(--panel));
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 14px;
  box-shadow: 0 22px 38px rgba(0, 0, 0, 0.4);
  display: grid;
  gap: 10px;
}

.billing-modal-card h3 {
  margin: 0;
  font-size: 19px;
}

.billing-modal-subtitle {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.billing-modal-reason,
.billing-modal-note {
  margin: 0;
  font-size: 13px;
}

.billing-help-tip {
  margin-left: 6px;
  width: 18px;
  min-height: 18px;
  padding: 0;
  border-radius: 999px;
  border: 1px solid #3a4f60;
  background: #1b2b36;
  color: #cde5f0;
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  position: relative;
  vertical-align: middle;
}

.billing-help-tip::after {
  content: attr(data-tip);
  position: absolute;
  right: 0;
  bottom: calc(100% + 8px);
  width: min(340px, calc(100vw - 50px));
  padding: 8px 10px;
  border-radius: 8px;
  border: 1px solid #355065;
  background: #10202b;
  color: #cde5f0;
  font-size: 12px;
  line-height: 1.35;
  text-align: left;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.35);
  opacity: 0;
  pointer-events: none;
  transform: translateY(4px);
  transition: opacity 0.15s ease, transform 0.15s ease;
  z-index: 10;
}

.billing-help-tip:hover::after,
.billing-help-tip:focus-visible::after {
  opacity: 1;
  transform: translateY(0);
}

.billing-modal-options {
  display: grid;
  gap: 8px;
}

.billing-modal-option {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  border: 1px solid #2b3b48;
  border-radius: 10px;
  padding: 8px 10px;
  background: #111a22;
  font-size: 13px;
}

.billing-modal-option input[type="radio"] {
  min-height: 16px;
  width: 16px;
  height: 16px;
  margin-top: 1px;
  flex: 0 0 auto;
}

.billing-modal-quantity {
  display: grid;
  gap: 6px;
  font-size: 13px;
}

.billing-modal-quantity input {
  width: min(140px, 100%);
}

.billing-modal-status {
  min-height: 18px;
  font-size: 13px;
}

.billing-modal-status.error {
  color: #ff9f9b;
}

.billing-modal-status.success {
  color: #86e8fb;
}

.billing-modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  flex-wrap: wrap;
}

body.modal-open {
  overflow: hidden;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 400ms ease, transform 400ms ease;
}

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

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .reveal.visible,
  .feature-card {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

@media (max-width: 1080px) {
  .site-nav {
    flex-wrap: wrap;
  }

  .site-nav-links {
    order: 3;
    width: 100%;
    justify-content: flex-start;
  }

  .section-grid,
  .section-grid.reverse,
  .feature-grid {
    grid-template-columns: 1fr 1fr;
  }

  .section-grid.reverse > :first-child {
    order: 2;
  }

  .section-grid.reverse > :last-child {
    order: 1;
  }
}

@media (max-width: 820px) {
  .promo-body {
    padding: 0 14px 40px;
  }

  .site-nav {
    top: 8px;
    width: calc(100vw - 28px);
    padding: 12px;
  }

  .site-nav-actions {
    width: 100%;
    justify-items: stretch;
  }

  .site-nav-cta-row {
    width: 100%;
  }

  .site-nav-cta-row .button {
    flex: 1 1 0;
  }

  .site-account-state {
    width: 100%;
    justify-content: flex-start;
  }

  .section-band,
  .hero-band,
  .pricing-card,
  .workflow-card {
    padding: 22px;
  }

  .demo-frame iframe {
    height: 620px;
  }

  .workflow-grid,
  .section-grid,
  .section-grid.reverse,
  .feature-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .section-grid.reverse > :first-child,
  .section-grid.reverse > :last-child {
    order: initial;
  }

  .qr-layout {
    grid-template-columns: 1fr;
  }

  .phone-preview {
    justify-self: start;
  }

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

@media (max-width: 640px) {
  .site-nav-links {
    gap: 12px;
  }

  .site-nav.is-compact {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    top: 8px;
    padding: 8px 12px;
    gap: 8px;
    border-radius: 14px;
    background: rgba(12, 18, 24, 0.9);
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.22);
  }

  .site-nav.is-compact .site-brand {
    grid-column: 1 / -1;
    grid-row: 1;
    gap: 8px;
  }

  .site-nav.is-compact .site-brand-mark {
    width: 32px;
    height: 32px;
    border-radius: 10px;
  }

  .site-nav.is-compact .site-brand-title {
    font-size: 14px;
  }

  .site-nav.is-compact .site-brand-subtitle {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
  }

  .site-nav.is-compact .site-nav-links {
    grid-column: 1;
    grid-row: 2;
    width: auto;
    order: 0;
    flex: 0 1 auto;
    justify-content: flex-start;
    gap: 10px;
  }

  .site-nav.is-compact .site-nav-links a {
    font-size: 12px;
  }

  .site-nav.is-compact .site-nav-actions {
    grid-column: 2;
    grid-row: 2;
    width: auto;
    justify-items: end;
    align-self: center;
    gap: 2px;
  }

  .site-nav.is-compact .site-nav-cta-row {
    width: auto;
    gap: 10px;
  }

  .site-nav.is-compact .site-nav-cta-row .button {
    flex: 0 0 auto;
    width: auto;
    min-height: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    color: #bfe6ef;
    font-size: 12px;
    line-height: 1.2;
  }

  .site-nav.is-compact .site-nav-cta-row .button:hover,
  .site-nav.is-compact .site-nav-cta-row .button:focus-visible {
    color: #e8fbff;
    text-decoration: underline;
  }

  .site-nav.is-compact .site-account-state {
    font-size: 10px;
  }

  .site-account-state {
    align-items: flex-start;
    flex-wrap: wrap;
    white-space: normal;
  }

  .site-account-email {
    max-width: 100%;
  }

  .site-nav-links a {
    font-size: 13px;
  }

  .hero-band .section-head {
    text-align: left;
  }

  .hero-actions {
    justify-content: stretch;
  }

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

  .browser-bar {
    padding: 10px 12px;
    gap: 10px;
  }

  .browser-dots {
    display: none;
  }

  .demo-frame iframe {
    height: 360px;
    display: none;
  }

  .demo-mobile-launch {
    display: block;
  }

  .demo-mobile-preview-hint {
    display: block;
  }

  .workflow-media img {
    height: 190px;
  }

  .shot-link-button {
    width: 100%;
  }

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

  .site-footer {
    flex-direction: column;
  }
}
