:root {
  --bg: #060810;
  --panel: #0c0e18;
  --panel-soft: #10131e;
  --line: rgba(255, 255, 255, 0.08);
  --text: #eef2ff;
  --muted: rgba(238, 242, 255, 0.58);
  --muted-strong: rgba(238, 242, 255, 0.82);
  --blue: #4a6fff;
  --blue-soft: #c8d8ff;
  --cyan: #00c8e8;
  --cyan-soft: #a8eeff;
  --lavender: #c7ccff;
  --radius: 28px;
  --shadow: 0 40px 100px rgba(0, 0, 0, 0.65), 0 0 80px rgba(0, 160, 210, 0.06);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: #000000;
  color: var(--text);
  font-family:
    -apple-system,
    BlinkMacSystemFont,
    "SF Pro Display",
    "SF Pro Text",
    "Helvetica Neue",
    sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

.page-shell {
  overflow: clip;
}

.floating-offer {
  position: fixed;
  top: 16px;
  left: 0;
  z-index: 40;
  display: flex;
  justify-content: center;
  width: 100%;
  padding: 0 16px;
  pointer-events: none;
}

.floating-offer-bar {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  width: min(1180px, 100%);
  padding: 12px 14px 12px 12px;
  border: 1px solid rgba(189, 207, 255, 0.18);
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(67, 100, 255, 0.28), rgba(10, 18, 46, 0.92) 34%, rgba(7, 16, 39, 0.88) 100%);
  box-shadow:
    0 18px 44px rgba(1, 8, 23, 0.42),
    0 8px 24px rgba(68, 97, 211, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(20px) saturate(1.2);
  opacity: 0;
  transform: translateY(-20px) scale(0.97);
  transition:
    opacity 220ms ease,
    transform 220ms ease;
}

body.is-floating-offer-visible .floating-offer {
  pointer-events: auto;
}

body.is-floating-offer-visible .floating-offer-bar {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.floating-offer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.floating-offer-icon {
  width: 46px;
  aspect-ratio: 1;
  height: auto;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow:
    0 10px 26px rgba(13, 25, 60, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.floating-offer-copy {
  display: grid;
  gap: 3px;
}

.floating-offer-name {
  display: block;
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 600;
  letter-spacing: -0.05em;
  line-height: 1;
}

.floating-offer-note {
  color: rgba(255, 255, 255, 0.64);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.floating-offer-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-width: 0;
  padding: 0 10px;
}

.floating-offer-compare,
.floating-offer-price,
.floating-offer-save {
  font-family:
    "SF Mono",
    "SFMono-Regular",
    ui-monospace,
    Menlo,
    monospace;
}

.floating-offer-compare {
  color: rgba(255, 255, 255, 0.46);
  font-size: 16px;
  text-decoration: line-through;
  text-decoration-thickness: 1.5px;
}

.floating-offer-price {
  color: #ffffff;
  font-size: clamp(22px, 2vw, 28px);
  font-weight: 600;
  letter-spacing: -0.04em;
}

.floating-offer-save {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border: 1px solid rgba(190, 206, 255, 0.18);
  border-radius: 999px;
  color: var(--blue-soft);
  font-size: 14px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.05);
}

.floating-offer-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 999px;
  background: #ffffff;
  color: #061122;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.02em;
  white-space: nowrap;
  box-shadow:
    0 12px 28px rgba(5, 12, 31, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.65);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease;
}

.floating-offer-cta:hover {
  transform: translateY(-1px);
  box-shadow:
    0 16px 34px rgba(5, 12, 31, 0.26),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.header-inner,
.hero,
.trust-section,
.feature-section,
.pricing-section,
.cta-section,
.faq-section {
  width: min(1380px, calc(100% - 48px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(4, 10, 28, 0.54);
  backdrop-filter: blur(20px);
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 72px;
}

.brand {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 34px;
}

.site-nav a,
.header-link {
  color: var(--muted);
  font-size: 15px;
  font-weight: 400;
}

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

.theme-toggle {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  width: 92px;
  height: 38px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
}

.theme-toggle-track {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  width: 100%;
  padding: 0 12px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}

.theme-toggle-option {
  position: relative;
  z-index: 1;
  text-align: center;
}

.theme-toggle-thumb {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 43px;
  height: 32px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
  transition: transform 180ms ease;
}

.theme-toggle[data-theme="light"] .theme-toggle-thumb {
  transform: translateX(43px);
}

.header-link,
.header-cta,
.button {
  transition:
    background-color 180ms ease,
    color 180ms ease,
    border-color 180ms ease,
    opacity 180ms ease,
    transform 180ms ease;
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.01em;
  max-width: 100%;
  line-height: 1.2;
  text-align: center;
  white-space: normal;
}

.header-cta {
  background: #ffffff;
  color: #000000;
}

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

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

.hero {
  padding: 34px 0 46px;
}

.hero-copy {
  max-width: 920px;
  margin: 0 auto 26px;
  text-align: center;
}

.hero-branding {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.hero-brand-icon {
  margin-top: 64px;
  width: clamp(72px, 7.5vw, 104px);
  aspect-ratio: 1;
  height: auto;
  object-fit: contain;
  border-radius: 28px;
  border: none;
  box-shadow: none;
  background: transparent;
  filter: none;
}

.eyebrow,
.section-label {
  margin: 0 0 12px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: -0.01em;
}

.eyebrow {
  color: var(--text);
  font-size: clamp(21px, 3vw, 41px);
  line-height: 1;
  letter-spacing: -0.05em;
}

.hero h1,
.feature-copy h2,
.pricing-heading h2,
.cta-copy h2 {
  margin: 0;
  letter-spacing: -0.055em;
  font-weight: 500;
  line-height: 0.96;
}

.hero h1 {
  max-width: 980px;
  margin-inline: auto;
  font-size: clamp(42px, 6vw, 82px);
}

.hero-sub {
  margin: 12px 0 0;
  color: var(--muted-strong);
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 500;
  letter-spacing: -0.02em;
}

.hero-text,
.feature-copy p,
.pricing-heading p,
.faq-grid p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
  letter-spacing: -0.01em;
}

.hero-text {
  max-width: 620px;
  margin: 16px auto 0;
  font-size: 16px;
}

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

.hero-cta-stack {
  display: grid;
  justify-items: center;
  gap: 14px;
  width: min(560px, 100%);
}

.hero-availability-copy {
  margin: 0;
  color: var(--muted-strong);
  font-size: 17px;
  line-height: 1.45;
  letter-spacing: -0.02em;
  text-align: center;
}

.hero-cta-stack .button {
  width: auto;
  min-height: 44px;
  padding: 0 24px;
  border-radius: 999px;
  font-size: 15px;
  letter-spacing: -0.02em;
}

.hero-availability {
  display: grid;
  gap: 10px;
  width: 100%;
  text-align: left;
}

.hero-availability-row,
.hero-availability-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 14px;
  letter-spacing: -0.01em;
}

.hero-availability-row span:last-child,
.hero-availability-foot span:last-child {
  color: var(--blue-soft);
}

.hero-availability-row span:last-child,
.hero-availability-foot {
  font-family:
    "SF Mono",
    "SFMono-Regular",
    ui-monospace,
    Menlo,
    monospace;
}

.hero-availability-meter {
  height: 12px;
  margin: 0;
}

.button-primary {
  background: #ffffff;
  color: #050810;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.button-secondary {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
}

.hero-card {
  position: relative;
  width: min(1380px, 100%);
  margin: 0 auto;
  padding: 26px 26px 34px;
  background: transparent;
  border-radius: 0;
  overflow: visible;
}

.app-window,
.visual-frame {
  position: relative;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.app-window img,
.visual-frame img {
  width: 100%;
  height: auto;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  box-shadow:
    0 50px 120px rgba(0, 0, 0, 0.7),
    0 0 0 1px rgba(255, 255, 255, 0.06),
    0 24px 70px rgba(0, 150, 210, 0.12);
}

.image-only {
  background: transparent;
}

.fallback-ui {
  display: none;
}

.app-window.is-fallback .fallback-ui,
.visual-frame.is-fallback .fallback-ui {
  display: grid;
}

.app-window.is-fallback,
.visual-frame.is-fallback {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 22px;
  background: rgba(6, 11, 27, 0.9);
  box-shadow: var(--shadow);
}

.hero-fallback,
.section-fallback {
  grid-template-columns: 0.27fr 0.73fr;
  gap: 16px;
  min-height: 620px;
  padding: 18px;
}

.fallback-sidebar,
.fallback-main,
.usage-fallback,
.stack-card,
.pricing-card,
.faq-grid article {
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.fallback-sidebar,
.fallback-main,
.usage-fallback {
  border-radius: 18px;
}

.fallback-sidebar {
  background:
    linear-gradient(180deg, rgba(100, 114, 255, 0.25), transparent 45%),
    rgba(255, 255, 255, 0.04);
}

.fallback-sidebar.compact {
  min-height: 100%;
}

.fallback-main {
  padding: 18px;
}

.fallback-bubble {
  width: 44%;
  height: 72px;
  margin-left: auto;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.1);
}

.fallback-line {
  height: 16px;
  margin-top: 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
}

.trust-section {
  display: grid;
  gap: 24px;
  padding: 8px 0 70px;
}

.trust-copy {
  max-width: 1040px;
  margin: 0 auto;
  text-align: center;
}

.trust-copy h2 {
  margin: 0;
  font-size: clamp(36px, 4.8vw, 58px);
  letter-spacing: -0.055em;
  line-height: 0.96;
  font-weight: 500;
}

.trust-copy p {
  margin: 14px auto 0;
  max-width: 980px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
  letter-spacing: -0.01em;
}

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

.trust-card {
  padding: 24px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.trust-card strong {
  display: block;
  margin-bottom: 10px;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.03em;
}

.trust-card p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.55;
}

.w70 {
  width: 70%;
}

.w74 {
  width: 74%;
}

.w82 {
  width: 82%;
}

.w84 {
  width: 84%;
}

.w88 {
  width: 88%;
}

.w92 {
  width: 92%;
}

.fallback-code,
.fallback-terminal,
.fallback-composer {
  margin-top: 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
}

.fallback-code {
  height: 140px;
}

.fallback-terminal {
  height: 170px;
}

.fallback-composer {
  height: 120px;
  margin-top: 24px;
}

.feature-section {
  display: grid;
  gap: 42px;
  padding-bottom: 92px;
}

.feature-row {
  display: grid;
  grid-template-columns: minmax(280px, 420px) minmax(0, 1fr);
  align-items: center;
  gap: 56px;
  padding: 42px 44px;
  border-radius: 34px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background:
    linear-gradient(135deg, rgba(0, 20, 40, 0.95) 0%, rgba(5, 14, 30, 0.80) 40%, rgba(6, 10, 24, 0.5) 100%);
}

.feature-row.reverse {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
}

.feature-row.reverse .feature-copy {
  order: 2;
}

.feature-row.reverse .feature-visual {
  order: 1;
}

.feature-copy {
  max-width: 390px;
  align-self: center;
}

.feature-copy h2,
.pricing-heading h2,
.cta-copy h2 {
  font-size: clamp(36px, 4.8vw, 58px);
}

.feature-visual {
  position: relative;
  min-height: 620px;
  padding: 24px;
}

.visual-frame {
  max-width: 100%;
  width: 100%;
}

.section-fallback {
  min-height: 540px;
  padding: 18px;
}

.usage-fallback {
  gap: 16px;
  min-height: 540px;
  padding: 18px;
  border-radius: 18px;
}

.usage-stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.usage-stat-grid span,
.usage-panel-row div {
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
}

.usage-stat-grid span {
  min-height: 96px;
}

.usage-panel-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.usage-panel-row div {
  min-height: 150px;
}

.usage-panel-row.lower div {
  min-height: 220px;
}

.feature-stack {
  display: grid;
  gap: 16px;
}

.stack-card {
  padding: 28px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 0;
}

.stack-card strong {
  display: block;
  margin-bottom: 10px;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.03em;
}

.stack-card p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
}

/* ── Privacy section ──────────────────────────────────────── */
.privacy-section {
  padding: 80px 0 90px;
  display: flex;
  justify-content: center;
}

.privacy-inner {
  max-width: 560px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.privacy-icon {
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 28px;
  line-height: 0;
}

.privacy-heading {
  margin: 0 0 20px;
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.privacy-body {
  margin: 0 0 36px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
  letter-spacing: -0.01em;
}

.privacy-bullets {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

.privacy-bullets li {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 15px;
  color: var(--muted-strong);
  letter-spacing: -0.01em;
}

.privacy-bullet-dot {
  flex-shrink: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--cyan);
  opacity: 0.7;
}

/* light theme */
body[data-theme="light"] .privacy-icon {
  color: rgba(13, 21, 40, 0.45);
}

body[data-theme="light"] .privacy-body {
  color: rgba(13, 21, 40, 0.60);
}

body[data-theme="light"] .privacy-bullets li {
  color: rgba(13, 21, 40, 0.72);
}

/* ── Pricing section ──────────────────────────────────────── */
.pricing-section {
  display: grid;
  justify-items: center;
  padding: 0 0 100px;
}

.pricing-heading {
  max-width: 680px;
  margin-inline: auto;
  margin-bottom: 42px;
  text-align: center;
}

.pricing-subtitle {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 18px;
  letter-spacing: -0.02em;
}

/* ── Pricing card layout ─────────────────────────────────── */
.pricing-card-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  width: min(920px, 100%);
}

.pricing-main-card {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding: 36px;
  border: 1px solid rgba(0, 200, 232, 0.22);
  border-radius: 28px;
  background:
    linear-gradient(160deg, rgba(0, 60, 90, 0.38) 0%, rgba(8, 16, 34, 0.92) 50%, rgba(6, 10, 24, 0.96) 100%);
  box-shadow:
    0 24px 60px rgba(0, 100, 150, 0.18),
    0 0 0 1px rgba(0, 200, 232, 0.06);
}

.pricing-card-top {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pricing-card-badge {
  display: inline-flex;
  align-self: flex-start;
  align-items: center;
  min-height: 28px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(0, 200, 232, 0.28);
  background: rgba(0, 160, 200, 0.12);
  color: #00e0ff;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-family: "SF Mono", "SFMono-Regular", ui-monospace, Menlo, monospace;
}

.pricing-card-price-row {
  display: flex;
  align-items: baseline;
  gap: 14px;
}

.pricing-card-price {
  font-size: clamp(52px, 5.5vw, 72px);
  font-weight: 600;
  letter-spacing: -0.06em;
  line-height: 1;
  color: #00e0ff;
}

.pricing-card-price-detail {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.pricing-card-original {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.38);
  text-decoration: line-through;
  text-decoration-thickness: 1.5px;
  font-family: "SF Mono", "SFMono-Regular", ui-monospace, Menlo, monospace;
}

.pricing-card-term {
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-family: "SF Mono", "SFMono-Regular", ui-monospace, Menlo, monospace;
}

.pricing-card-desc {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  letter-spacing: -0.01em;
}

/* ── Features list ───────────────────────────────────────── */
.pricing-features {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: var(--muted-strong);
  letter-spacing: -0.01em;
}

.pricing-features li::before {
  content: '';
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(0, 200, 232, 0.14);
  border: 1px solid rgba(0, 200, 232, 0.24);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='8' fill='none'%3E%3Cpath d='M1 4l2.8 2.8L9 1' stroke='%2300d8f0' stroke-width='1.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

/* ── Quantity selector ───────────────────────────────────── */
.pricing-quantity {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.pricing-quantity-label {
  font-size: 14px;
  font-weight: 500;
  color: var(--muted-strong);
  letter-spacing: -0.01em;
  margin-right: auto;
}

.pricing-quantity-controls {
  display: flex;
  align-items: center;
  gap: 0;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(255, 255, 255, 0.04);
  overflow: hidden;
}

.pricing-qty-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 0;
  background: transparent;
  color: var(--text);
  font-size: 20px;
  cursor: pointer;
  transition: background 150ms ease;
  font-family: inherit;
}

.pricing-qty-btn:hover {
  background: rgba(255, 255, 255, 0.08);
}

.pricing-qty-btn:active {
  background: rgba(255, 255, 255, 0.12);
}

.pricing-qty-value {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 40px;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.02em;
  font-family: "SF Mono", "SFMono-Regular", ui-monospace, Menlo, monospace;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.pricing-quantity-total {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--text);
  font-family: "SF Mono", "SFMono-Regular", ui-monospace, Menlo, monospace;
  min-width: 56px;
  text-align: right;
}

/* ── Pricing CTA ─────────────────────────────────────────── */
.pricing-cta {
  width: 100%;
  min-height: 54px;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.02em;
  border-radius: 16px;
  box-shadow:
    0 12px 32px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

/* ── Batches aside ───────────────────────────────────────── */
.pricing-batches-aside {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(14, 21, 46, 0.82), rgba(8, 13, 31, 0.94)),
    rgba(255, 255, 255, 0.03);
  box-shadow: 0 22px 60px rgba(4, 10, 26, 0.34);
}

.pricing-batches-title {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.pricing-batches-note {
  margin: -8px 0 0;
  color: var(--muted);
  font-size: 13px;
  letter-spacing: -0.01em;
}

.progress {
  height: 7px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.progress span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #00a8c8, #00e0ff);
}

.pricing-batch-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pricing-batch,
.pricing-batch-chip,
.pricing-batch-active-meta span,
.pricing-batch-active-meta strong,
.pricing-batch-status,
.pricing-batch-foot span {
  font-family:
    "SFMono-Regular",
    SFMono-Regular,
    ui-monospace,
    Menlo,
    Monaco,
    Consolas,
    "Liberation Mono",
    monospace;
}

.pricing-batch {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 74px;
  padding: 18px 20px;
  border: 1px solid rgba(112, 134, 202, 0.16);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.03);
}

.pricing-batch.is-soldout {
  background: linear-gradient(90deg, rgba(97, 24, 33, 0.3), rgba(39, 10, 18, 0.46));
  border-color: rgba(192, 66, 85, 0.28);
}

.pricing-batch.is-current {
  background: linear-gradient(90deg, rgba(0, 80, 110, 0.50), rgba(0, 25, 40, 0.85));
  border-color: rgba(0, 200, 232, 0.38);
  box-shadow: 0 14px 30px rgba(0, 100, 150, 0.30);
}

.pricing-batch.is-muted {
  opacity: 0.64;
}

.pricing-batch-main {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.pricing-batch-price {
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 500;
  letter-spacing: -0.05em;
  white-space: nowrap;
}

.pricing-batch.is-soldout .pricing-batch-price {
  text-decoration: line-through;
  color: rgba(255, 132, 132, 0.92);
}

.pricing-batch.is-current .pricing-batch-price {
  color: #00e0ff;
}

.pricing-batch-chip {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 11px;
  border: 1px solid rgba(179, 195, 255, 0.16);
  border-radius: 999px;
  color: rgba(232, 239, 255, 0.78);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.04);
}

.pricing-batch-limit {
  color: rgba(255, 255, 255, 0.44);
  font-size: 12px;
  letter-spacing: 0.04em;
  font-family: "SFMono-Regular", SFMono-Regular, ui-monospace, Menlo, monospace;
}

.pricing-batch.is-soldout .pricing-batch-chip,
.pricing-batch.is-soldout .pricing-batch-status {
  color: rgba(255, 142, 142, 0.9);
  border-color: rgba(192, 66, 85, 0.24);
  background: rgba(90, 14, 28, 0.28);
}

.pricing-batch.is-current .pricing-batch-chip {
  color: #00e0ff;
  border-color: rgba(0, 200, 232, 0.28);
  background: rgba(0, 60, 90, 0.34);
}

.pricing-batch-status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 14px;
  border: 1px solid rgba(192, 66, 85, 0.24);
  border-radius: 999px;
  color: rgba(255, 142, 142, 0.92);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.pricing-batch-active-meta {
  display: flex;
  align-items: flex-end;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.pricing-batch-active-meta span,
.pricing-batch-active-meta strong {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}

.pricing-batch-active-meta span {
  color: rgba(180, 240, 255, 0.82);
  background: rgba(255, 255, 255, 0.05);
}

.pricing-batch-active-meta strong {
  color: #00e0ff;
  border: 1px solid rgba(0, 200, 232, 0.26);
  background: rgba(0, 50, 80, 0.34);
}

.pricing-batch-progress {
  height: 7px;
  margin-top: 2px;
}

.pricing-batch-progress span {
  background: linear-gradient(90deg, #00a8c8, #00e8ff);
}

.pricing-batch-foot {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.pricing-batch-foot span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.cta-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 0 110px;
}

.cta-copy {
  max-width: 760px;
}

.faq-section {
  padding-bottom: 80px;
}

/* ── Pricing deal row ─────────────────────────────────────── */
.pricing-deal-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 18px;
  flex-wrap: wrap;
}

.pricing-deal-pill {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(0, 200, 232, 0.30);
  background: rgba(0, 160, 200, 0.12);
  color: #00e0ff;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-family: "SF Mono", "SFMono-Regular", ui-monospace, Menlo, monospace;
}

.pricing-deal-note {
  color: var(--muted);
  font-size: 14px;
  letter-spacing: -0.01em;
}

/* ── FAQ accordion ────────────────────────────────────────── */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.faq-item summary {
  list-style: none;
}

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

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 0;
  font-size: clamp(17px, 2vw, 20px);
  font-weight: 500;
  letter-spacing: -0.03em;
  cursor: pointer;
  user-select: none;
  transition: color 180ms ease;
}

.faq-question::after {
  content: '';
  flex-shrink: 0;
  width: 11px;
  height: 11px;
  border-right: 1.5px solid rgba(255, 255, 255, 0.45);
  border-bottom: 1.5px solid rgba(255, 255, 255, 0.45);
  transform: rotate(45deg);
  margin-top: -3px;
  transition: transform 320ms cubic-bezier(0.4, 0, 0.2, 1), border-color 200ms ease;
}

.faq-item[open] .faq-question::after {
  transform: rotate(-135deg);
  margin-top: 3px;
  border-color: #00d8f0;
}

.faq-question:hover {
  opacity: 0.75;
}

.faq-answer {
  margin: 0;
  padding: 0 32px 24px 0;
  color: var(--muted-strong);
  font-size: 16px;
  line-height: 1.65;
  letter-spacing: -0.01em;
}

body[data-theme="light"] .faq-answer {
  color: rgba(13, 21, 40, 0.72);
}

/* ── Footer ───────────────────────────────────────────────── */
.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 52px 0 60px;
}

.footer-inner {
  width: min(1380px, calc(100% - 48px));
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  object-fit: contain;
  border: none;
  box-shadow: none;
  filter: none;
}

.footer-name {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.04em;
}

.footer-tagline {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  letter-spacing: -0.01em;
}

.footer-copy {
  margin: 0;
  color: rgba(255, 255, 255, 0.28);
  font-size: 13px;
  letter-spacing: -0.01em;
}

body[data-theme="light"] {
  background:
    radial-gradient(ellipse 60% 30% at 15% 5%, rgba(0, 170, 210, 0.12), transparent),
    radial-gradient(ellipse 50% 25% at 85% 10%, rgba(100, 140, 255, 0.10), transparent),
    linear-gradient(180deg, #f8fbff 0%, #eef4ff 50%, #e8f0fb 100%);
  color: #0d1528;
}

body[data-theme="light"] .floating-offer-bar {
  border-color: rgba(92, 120, 188, 0.14);
  background:
    linear-gradient(135deg, rgba(191, 212, 255, 0.94), rgba(250, 252, 255, 0.92) 38%, rgba(241, 246, 255, 0.88) 100%);
  box-shadow:
    0 18px 38px rgba(117, 144, 210, 0.18),
    0 8px 22px rgba(164, 182, 224, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

body[data-theme="light"] .floating-offer-note {
  color: rgba(13, 21, 40, 0.52);
}

body[data-theme="light"] .floating-offer-compare {
  color: rgba(13, 21, 40, 0.42);
}

body[data-theme="light"] .floating-offer-price {
  color: #132041;
}

body[data-theme="light"] .floating-offer-save {
  border-color: rgba(96, 121, 180, 0.16);
  color: #3250c7;
  background: rgba(255, 255, 255, 0.62);
}

body[data-theme="light"] .floating-offer-cta {
  background: #0f172a;
  color: #ffffff;
  box-shadow:
    0 14px 28px rgba(37, 58, 107, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

body[data-theme="light"] .site-header {
  background: rgba(244, 247, 255, 0.7);
}

body[data-theme="light"] .site-nav a,
body[data-theme="light"] .header-link,
body[data-theme="light"] .section-label,
body[data-theme="light"] .hero-text,
body[data-theme="light"] .trust-copy p,
body[data-theme="light"] .feature-copy p,
body[data-theme="light"] .pricing-heading p,
body[data-theme="light"] .faq-grid p,
body[data-theme="light"] .stack-card p {
  color: rgba(13, 21, 40, 0.7);
}

body[data-theme="light"] .eyebrow {
  color: inherit;
}

body[data-theme="light"] .theme-toggle {
  background: rgba(12, 20, 38, 0.08);
}

body[data-theme="light"] .theme-toggle-track {
  color: rgba(13, 21, 40, 0.62);
}

body[data-theme="light"] .theme-toggle-thumb {
  background: #0e1628;
  box-shadow: 0 6px 18px rgba(10, 18, 34, 0.18);
}

body[data-theme="light"] .button-primary {
  background: #0d1528;
  color: #ffffff;
  box-shadow: 0 8px 24px rgba(13, 21, 40, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

body[data-theme="light"] .hero-sub {
  color: rgba(13, 21, 40, 0.72);
}

body[data-theme="light"] .hero-availability-copy {
  color: rgba(13, 21, 40, 0.78);
}

body[data-theme="light"] .button-secondary {
  border-color: rgba(13, 21, 40, 0.12);
  background: rgba(255, 255, 255, 0.55);
  color: #0d1528;
}

body[data-theme="light"] .hero-availability-row,
body[data-theme="light"] .hero-availability-foot {
  color: rgba(13, 21, 40, 0.66);
}

body[data-theme="light"] .hero-availability-row span:last-child,
body[data-theme="light"] .hero-availability-foot span:last-child {
  color: rgba(84, 111, 214, 0.92);
}

body[data-theme="light"] .hero-availability-meter {
  background: rgba(13, 21, 40, 0.08);
}

/* light feature-row override handled below */

body[data-theme="light"] .stack-card,
body[data-theme="light"] .trust-card,
body[data-theme="light"] .faq-grid article {
  background: rgba(255, 255, 255, 0.56);
  border-color: rgba(13, 21, 40, 0.08);
}

body[data-theme="light"] .pricing-batch {
  background: rgba(255, 255, 255, 0.76);
  border-color: rgba(88, 109, 164, 0.12);
}

body[data-theme="light"] .pricing-batch.is-soldout {
  background: linear-gradient(90deg, rgba(255, 226, 230, 0.9), rgba(255, 241, 242, 0.92));
  border-color: rgba(194, 89, 104, 0.22);
}

body[data-theme="light"] .pricing-batch.is-current {
  background: linear-gradient(90deg, rgba(220, 248, 255, 0.98), rgba(235, 252, 255, 0.94));
  border-color: rgba(0, 170, 210, 0.28);
  box-shadow: 0 14px 28px rgba(0, 150, 200, 0.12);
}

body[data-theme="light"] .pricing-batch-price,
body[data-theme="light"] .pricing-batch-chip,
body[data-theme="light"] .pricing-batch-status,
body[data-theme="light"] .pricing-batch-active-meta strong {
  color: #132041;
}

body[data-theme="light"] .pricing-batch.is-soldout .pricing-batch-price,
body[data-theme="light"] .pricing-batch.is-soldout .pricing-batch-chip,
body[data-theme="light"] .pricing-batch.is-soldout .pricing-batch-status {
  color: #a53b50;
}

body[data-theme="light"] .pricing-batch.is-current .pricing-batch-price,
body[data-theme="light"] .pricing-batch.is-current .pricing-batch-chip,
body[data-theme="light"] .pricing-batch.is-current .pricing-batch-active-meta strong {
  color: #0076a0;
}

body[data-theme="light"] .pricing-batch-chip,
body[data-theme="light"] .pricing-batch-active-meta span,
body[data-theme="light"] .pricing-batch-active-meta strong,
body[data-theme="light"] .pricing-batch-status {
  background: rgba(255, 255, 255, 0.82);
  border-color: rgba(88, 109, 164, 0.16);
}

body[data-theme="light"] .pricing-batch.is-muted {
  opacity: 0.86;
}

body[data-theme="light"] .pricing-batch-limit {
  color: rgba(13, 21, 40, 0.44);
}

body[data-theme="light"] .pricing-batch-active-meta span {
  color: #006888;
  border-color: rgba(0, 170, 210, 0.18);
}

body[data-theme="light"] .pricing-batch-foot span {
  color: rgba(13, 21, 40, 0.72);
}

body[data-theme="light"] .progress {
  background: rgba(13, 21, 40, 0.08);
}

body[data-theme="light"] .app-window img,
body[data-theme="light"] .visual-frame img {
  border-color: rgba(13, 21, 40, 0.12);
  box-shadow:
    0 40px 100px rgba(13, 21, 40, 0.16),
    0 0 0 1px rgba(13, 21, 40, 0.06),
    0 20px 60px rgba(0, 120, 180, 0.08);
}

body[data-theme="light"] .pricing-deal-pill {
  border-color: rgba(0, 130, 180, 0.28);
  background: rgba(0, 140, 190, 0.08);
  color: #006888;
}

body[data-theme="light"] .pricing-main-card {
  background:
    linear-gradient(160deg, rgba(220, 248, 255, 0.9) 0%, rgba(245, 250, 255, 0.96) 50%, rgba(255, 255, 255, 0.98) 100%);
  border-color: rgba(0, 170, 210, 0.22);
  box-shadow: 0 24px 60px rgba(0, 130, 180, 0.10);
}

body[data-theme="light"] .pricing-card-badge {
  border-color: rgba(0, 140, 190, 0.26);
  background: rgba(0, 140, 190, 0.08);
  color: #006888;
}

body[data-theme="light"] .pricing-card-price {
  color: #0076a0;
}

body[data-theme="light"] .pricing-card-original {
  color: rgba(13, 21, 40, 0.35);
}

body[data-theme="light"] .pricing-card-term {
  color: rgba(13, 21, 40, 0.52);
}

body[data-theme="light"] .pricing-card-desc {
  color: rgba(13, 21, 40, 0.58);
}

body[data-theme="light"] .pricing-features li {
  color: rgba(13, 21, 40, 0.72);
}

body[data-theme="light"] .pricing-features li::before {
  background-color: rgba(0, 140, 190, 0.10);
  border-color: rgba(0, 140, 190, 0.22);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='8' fill='none'%3E%3Cpath d='M1 4l2.8 2.8L9 1' stroke='%230088aa' stroke-width='1.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

body[data-theme="light"] .pricing-quantity {
  border-color: rgba(13, 21, 40, 0.08);
  background: rgba(255, 255, 255, 0.7);
}

body[data-theme="light"] .pricing-quantity-label {
  color: rgba(13, 21, 40, 0.72);
}

body[data-theme="light"] .pricing-quantity-controls {
  border-color: rgba(13, 21, 40, 0.10);
  background: rgba(255, 255, 255, 0.8);
}

body[data-theme="light"] .pricing-qty-btn {
  color: #0d1528;
}

body[data-theme="light"] .pricing-qty-btn:hover {
  background: rgba(13, 21, 40, 0.06);
}

body[data-theme="light"] .pricing-qty-value {
  border-color: rgba(13, 21, 40, 0.08);
}

body[data-theme="light"] .pricing-quantity-total {
  color: #0d1528;
}

body[data-theme="light"] .pricing-batches-aside {
  background:
    linear-gradient(180deg, rgba(247, 250, 255, 0.96), rgba(239, 244, 255, 0.9)),
    rgba(255, 255, 255, 0.72);
  border-color: rgba(13, 21, 40, 0.08);
  box-shadow: 0 22px 48px rgba(122, 149, 216, 0.16);
}

body[data-theme="light"] .pricing-batches-note {
  color: rgba(13, 21, 40, 0.55);
}

body[data-theme="light"] .pricing-subtitle {
  color: rgba(13, 21, 40, 0.60);
}

body[data-theme="light"] .faq-list {
  border-top-color: rgba(13, 21, 40, 0.10);
}

body[data-theme="light"] .faq-item {
  border-bottom-color: rgba(13, 21, 40, 0.10);
}

body[data-theme="light"] .faq-question::after {
  border-color: rgba(13, 21, 40, 0.35);
}

body[data-theme="light"] .faq-item[open] .faq-question::after {
  border-color: #0088aa;
}

body[data-theme="light"] .site-footer {
  border-top-color: rgba(13, 21, 40, 0.08);
}

body[data-theme="light"] .footer-tagline {
  color: rgba(13, 21, 40, 0.55);
}

body[data-theme="light"] .footer-copy {
  color: rgba(13, 21, 40, 0.32);
}

body[data-theme="light"] .feature-row {
  background:
    linear-gradient(135deg, rgba(235, 244, 255, 0.95) 0%, rgba(238, 246, 255, 0.70) 40%, rgba(240, 247, 255, 0.30) 100%);
  border-color: rgba(13, 21, 40, 0.07);
}

@media (max-width: 1200px) {
  .pricing-card-wrapper {
    grid-template-columns: 1fr;
    max-width: 520px;
  }

  .floating-offer-bar {
    grid-template-columns: auto 1fr;
  }

  .floating-offer-cta {
    grid-column: 1 / -1;
    width: 100%;
  }

  .site-nav {
    gap: 22px;
  }

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

  .feature-row.reverse .feature-copy,
  .feature-row.reverse .feature-visual {
    order: initial;
  }

  .feature-copy {
    max-width: 760px;
  }

  .feature-visual {
    min-height: auto;
  }

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

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

  .cta-section {
    flex-direction: column;
    align-items: flex-start;
  }

}

@media (max-width: 820px) {
  .floating-offer {
    top: 12px;
    padding: 0 12px;
  }

  .floating-offer-bar {
    gap: 14px;
    padding: 14px;
    border-radius: 28px;
  }

  .floating-offer-meta {
    justify-content: flex-start;
    padding: 0;
    flex-wrap: wrap;
  }

  .floating-offer-compare {
    font-size: 14px;
  }

  .floating-offer-price {
    font-size: 24px;
  }

  .floating-offer-save {
    min-height: 32px;
    padding: 0 12px;
    font-size: 13px;
  }

  .header-inner {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 14px 0;
  }

  .site-nav,
  .header-actions {
    justify-content: center;
    flex-wrap: wrap;
  }

  .hero {
    padding-top: 22px;
  }

  .hero-branding {
    margin-bottom: 16px;
  }

  .hero-cta-stack .button {
    min-height: 60px;
    padding-inline: 22px;
    font-size: 18px;
  }

  .hero-card {
    padding: 14px 14px 22px;
  }

  .app-window img,
  .visual-frame img,
  .app-window.is-fallback,
  .visual-frame.is-fallback {
    border-radius: 18px;
  }

  .feature-section {
    gap: 70px;
  }

  .feature-row {
    gap: 28px;
    padding: 28px 20px;
    border-radius: 26px;
  }

  .feature-visual {
    padding: 14px 0 0;
  }

  .visual-gradient {
    padding: 18px;
  }

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

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

  .pricing-main-card {
    padding: 28px;
  }

  .pricing-batches-aside {
    padding: 20px;
  }

  .pricing-batch {
    flex-direction: column;
    align-items: flex-start;
  }

  .pricing-batch-active-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .pricing-batch-status {
    align-self: flex-start;
  }

  .hero-fallback,
  .section-fallback {
    grid-template-columns: 1fr;
    min-height: 340px;
  }

  .usage-stat-grid,
  .usage-panel-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .floating-offer-brand {
    gap: 12px;
  }

  .floating-offer-icon {
    width: 40px;
    border-radius: 14px;
  }

  .floating-offer-note {
    font-size: 11px;
  }

  .floating-offer-name {
    font-size: 22px;
  }

  .floating-offer-cta {
    min-height: 48px;
  }
}
