@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&display=swap');

:root {
  --bg: #0b1220;
  --surface: #111a2e;
  --surface2: #0f1a33;
  --border: rgba(255, 255, 255, 0.08);
  --text: #e7ecf5;
  --muted: rgba(231, 236, 245, 0.72);
  --muted2: rgba(231, 236, 245, 0.5);
  --accent: #f6c445;
  --accent2: #60a5fa;
  --success: #22c55e;
  --danger: #ef4444;
}

html,
body {
  min-height: 100%;
}

body {
  font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif !important;
  color: var(--text);
  background: var(--bg) !important;
}

body.public-page {
  color: var(--text);
  background: var(--bg) !important;
  width: 100%;
  overflow-x: hidden;
  max-width: 100%;
}

body.public-page h1 {
  letter-spacing: -0.02em;
  line-height: 1.12;
}

body.public-page h2 {
  letter-spacing: -0.015em;
  line-height: 1.2;
}

body.public-page h3 {
  letter-spacing: -0.01em;
  line-height: 1.28;
}

body.public-page p {
  line-height: 1.58;
}

.brand-topbar {
  min-height: 64px;
  max-width: 100%;
}

.brand-topbar-brand {
  line-height: 1;
}

.brand-topbar-actions {
  flex-wrap: wrap;
  justify-content: flex-end;
  row-gap: 0.45rem;
}

.lp-back-home {
  position: fixed;
  top: calc(env(safe-area-inset-top, 0px) + 78px);
  left: 24px;
  z-index: 42;
  min-height: 42px;
  border-radius: 12px;
  padding: 0 13px;
  gap: 0.42rem;
  font-size: 0.84rem;
  font-weight: 680;
  letter-spacing: 0.01em;
  background: color-mix(in srgb, var(--surface2) 86%, rgba(8, 12, 24, 0.75));
  border-color: color-mix(in srgb, var(--accent2) 24%, var(--border));
  box-shadow:
    0 10px 24px rgba(2, 6, 23, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(5px);
}

.lp-back-home:hover {
  background: color-mix(in srgb, var(--surface2) 94%, rgba(8, 12, 24, 0.8));
  border-color: color-mix(in srgb, var(--accent2) 34%, var(--border));
}

.lp-back-home:focus-visible {
  outline: none;
  box-shadow:
    0 0 0 2px rgba(11, 18, 32, 0.92),
    0 0 0 4px color-mix(in srgb, var(--accent2) 52%, transparent),
    0 10px 24px rgba(2, 6, 23, 0.34);
}

.lp-back-home-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1rem;
  font-size: 0.95rem;
  line-height: 1;
}

.lp-back-home-text {
  line-height: 1;
}

::selection {
  background: color-mix(in srgb, var(--accent2) 28%, transparent);
  color: var(--text);
}

a,
button,
input,
select,
textarea {
  transition: all 0.16s ease;
}

.surface {
  border: 1px solid var(--border) !important;
  background: var(--surface) !important;
  border-radius: 14px !important;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.35);
}

.surface-soft {
  border: 1px solid var(--border) !important;
  background: var(--surface2) !important;
  border-radius: 12px !important;
}

.helper-card {
  border: 1px solid var(--border) !important;
  background: color-mix(in srgb, var(--surface2) 80%, black) !important;
  border-radius: 12px !important;
}

.field-label {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--muted);
}

input:not([type='checkbox']):not([type='radio']),
textarea,
select {
  background: color-mix(in srgb, var(--surface2) 82%, black);
  border-color: color-mix(in srgb, var(--accent2) 30%, var(--border));
  color: var(--text);
  border-radius: 10px;
}

input:not([type='checkbox']):not([type='radio'])::placeholder,
textarea::placeholder {
  color: var(--muted2);
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: color-mix(in srgb, var(--accent2) 55%, white) !important;
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent2) 30%, transparent);
}

.brand-field,
.brand-textarea,
.brand-select {
  width: 100%;
  border: 1px solid color-mix(in srgb, var(--accent2) 30%, var(--border));
  border-radius: 10px;
  background: color-mix(in srgb, var(--surface2) 82%, black);
  color: var(--text);
  padding: 0.62rem 0.7rem;
  font-size: 0.875rem;
  line-height: 1.45;
}

.brand-textarea {
  min-height: 132px;
  resize: vertical;
}

.brand-field:focus,
.brand-textarea:focus,
.brand-select:focus {
  outline: none;
  border-color: color-mix(in srgb, var(--accent2) 55%, white);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent2) 30%, transparent);
}

.section-head {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text);
}

#top-toast {
  backdrop-filter: blur(4px);
}

.brand-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  min-height: 40px;
  border: 1px solid color-mix(in srgb, var(--accent) 52%, transparent);
  background: var(--accent);
  color: #1d1603;
  font-weight: 700;
  padding: 0 14px;
}

.brand-btn-primary:hover {
  background: #ffd56b;
}

.brand-btn-secondary,
.brand-btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  min-height: 40px;
  border: 1px solid color-mix(in srgb, var(--accent2) 30%, var(--border));
  background: color-mix(in srgb, var(--surface2) 72%, transparent);
  color: var(--text);
  padding: 0 14px;
}

.brand-btn-secondary:hover,
.brand-btn-ghost:hover {
  background: color-mix(in srgb, var(--surface2) 92%, transparent);
}

.brand-btn-danger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  min-height: 40px;
  border: 1px solid color-mix(in srgb, var(--danger) 45%, transparent);
  background: color-mix(in srgb, var(--danger) 14%, transparent);
  color: #ffe5e5;
  padding: 0 14px;
  font-weight: 700;
}

.brand-btn-danger:hover {
  background: color-mix(in srgb, var(--danger) 24%, transparent);
}

.brand-chip {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: color-mix(in srgb, var(--surface2) 72%, transparent);
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 640;
  padding: 0.24rem 0.62rem;
}

.brand-toast {
  border-radius: 10px;
  border: 1px solid var(--border);
  padding: 0.56rem 0.8rem;
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--text);
}

.brand-toast.is-success {
  border-color: color-mix(in srgb, var(--success) 45%, transparent);
  background: color-mix(in srgb, var(--success) 16%, transparent);
}

.brand-toast.is-error {
  border-color: color-mix(in srgb, var(--danger) 45%, transparent);
  background: color-mix(in srgb, var(--danger) 16%, transparent);
}

table thead th {
  color: var(--muted2);
}

table tbody td {
  color: var(--text);
}

.action-card {
  border: 1px solid var(--border);
  border-radius: 0.9rem;
  background: color-mix(in srgb, var(--surface2) 80%, black);
  padding: 0.9rem;
}

.step-hidden {
  display: none;
}

.billing-toggle,
.lp-toggle {
  display: inline-flex;
  border: 1px solid color-mix(in srgb, var(--border) 75%, transparent);
  border-radius: 0.78rem;
  background: color-mix(in srgb, var(--surface2) 72%, transparent);
  padding: 0.2rem;
  gap: 0.2rem;
}

.billing-toggle-btn,
.lp-toggle-btn {
  min-height: 38px;
  border-radius: 0.58rem;
  border: 1px solid transparent;
  padding: 0 0.85rem;
  font-size: 0.78rem;
  font-weight: 680;
  color: var(--muted);
  background: transparent;
}

.billing-toggle-btn.is-active,
.lp-toggle-btn.is-active {
  border-color: color-mix(in srgb, var(--accent) 48%, transparent);
  background: var(--accent);
  color: #1d1603;
}

.lp-billing-switch {
  --lp-billing-x: 0%;
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  min-height: 48px;
  width: min(100%, 420px);
  border-radius: 999px;
  border: 1px solid color-mix(in srgb, var(--border) 82%, transparent);
  background: color-mix(in srgb, var(--surface2) 78%, rgba(8, 12, 24, 0.75));
  padding: 4px;
  isolation: isolate;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.lp-billing-switch-slider {
  position: absolute;
  top: 4px;
  left: 4px;
  width: calc((100% - 8px) / 2);
  height: calc(100% - 8px);
  border-radius: 999px;
  border: 1px solid color-mix(in srgb, var(--accent) 65%, transparent);
  background: linear-gradient(180deg, color-mix(in srgb, var(--accent) 94%, #ffe3a0) 0%, color-mix(in srgb, var(--accent) 100%, #eebf3f) 100%);
  box-shadow:
    0 8px 18px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
  transform: translateX(var(--lp-billing-x));
  transition: transform 220ms cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 180ms ease;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.lp-billing-switch-slider::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: inherit;
  transform: scaleX(1) scaleY(1);
}

.lp-billing-switch-slider::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    100deg,
    transparent 10%,
    rgba(255, 255, 255, 0.5) 48%,
    rgba(255, 255, 255, 0.12) 54%,
    transparent 92%
  );
  transform: translateX(-140%);
  opacity: 0;
}

.lp-billing-switch[data-billing-current='yearly'] .lp-billing-switch-slider {
  --lp-billing-x: 100%;
}

.lp-billing-switch.is-animating .lp-billing-switch-slider::before {
  animation: lpBillingSmoothieKnob 320ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.lp-billing-switch.is-animating .lp-billing-switch-slider::after {
  animation: lpBillingGlossSweep 320ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.lp-billing-switch-btn {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  min-height: 40px;
  width: 100%;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: color-mix(in srgb, var(--muted) 94%, #d3d9e5);
  font-size: 0.92rem;
  font-weight: 680;
  line-height: 1;
  letter-spacing: 0.01em;
  text-align: center;
  white-space: nowrap;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
  transition: color 180ms ease;
}

.lp-billing-switch-btn.is-active {
  color: #1d1603;
}

.lp-billing-switch-note {
  display: inline-flex;
  align-items: center;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1;
  opacity: 0.92;
}

.lp-billing-switch-btn:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px rgba(11, 18, 32, 0.9), 0 0 0 4px color-mix(in srgb, var(--accent) 62%, #fff8dc);
}

@keyframes lpBillingSmoothieKnob {
  0% {
    transform: scaleX(1.06) scaleY(0.94);
  }
  60% {
    transform: scaleX(0.98) scaleY(1.02);
  }
  100% {
    transform: scaleX(1) scaleY(1);
  }
}

@keyframes lpBillingGlossSweep {
  0% {
    transform: translateX(-140%);
    opacity: 0.25;
  }
  30% {
    opacity: 0.6;
  }
  100% {
    transform: translateX(140%);
    opacity: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .lp-billing-switch-slider {
    transition: none;
  }

  .lp-billing-switch.is-animating .lp-billing-switch-slider::before,
  .lp-billing-switch.is-animating .lp-billing-switch-slider::after {
    animation: none;
  }
}

.faq-group-nav {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 0.125rem;
}

.faq-group-nav::-webkit-scrollbar {
  display: none;
}

.faq-chip {
  border: 1px solid var(--border);
  border-radius: 0.625rem;
  padding: 0.4rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text);
  background: color-mix(in srgb, var(--surface2) 74%, transparent);
  white-space: nowrap;
}

.faq-chip:hover {
  border-color: color-mix(in srgb, var(--accent2) 30%, var(--border));
  background: color-mix(in srgb, var(--surface2) 92%, transparent);
}

.faq-button {
  min-height: 52px;
}

.faq-icon-wrap {
  height: 1.75rem;
  width: 1.75rem;
  border-radius: 9999px;
  border: 1px solid var(--border);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  flex-shrink: 0;
  background: color-mix(in srgb, var(--surface2) 75%, transparent);
}

.faq-button[aria-expanded='true'] {
  background: color-mix(in srgb, var(--surface2) 90%, transparent);
}

.lp-section {
  border-top: 1px solid color-mix(in srgb, var(--border) 58%, transparent);
  padding: 3rem 0;
}

.lp-hero {
  align-items: center;
}

.lp-hero-title {
  max-width: 21ch;
}

.lp-hero-subline {
  max-width: 58ch;
  font-size: 0.97rem;
}

.lp-hero-points {
  max-width: 50ch;
}

.lp-hero-points li {
  line-height: 1.5;
}

.lp-hero-cta {
  margin-top: 1.15rem;
}

.lp-hero-proof {
  align-self: stretch;
}

.lp-trust-row {
  row-gap: 0.45rem;
}

.lp-card {
  border: 1px solid color-mix(in srgb, var(--border) 58%, transparent);
  border-radius: 0.95rem;
  background: var(--surface);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.35);
}

.lp-card-soft {
  border: 1px solid color-mix(in srgb, var(--border) 58%, transparent);
  border-radius: 0.9rem;
  background: var(--surface2);
}

.lp-pricing-shell {
  overflow: hidden;
}

.lp-pricing-grid {
  align-items: stretch;
}

.lp-price-card {
  position: relative;
  gap: 0.1rem;
}

.lp-price-value,
.lp-price-alt {
  font-variant-numeric: tabular-nums;
  -webkit-font-feature-settings: 'tnum' 1;
  font-feature-settings: 'tnum' 1;
}

.lp-price-value {
  min-height: 2.05rem;
}

.lp-price-alt {
  min-height: 1.22rem;
}

.lp-price-card--pro {
  border-color: color-mix(in srgb, var(--accent) 36%, var(--border));
  box-shadow: 0 10px 28px rgba(2, 6, 23, 0.3);
}

.lp-price-list {
  margin-top: 0.86rem;
}

.lp-price-list li {
  line-height: 1.52;
}

.lp-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  min-height: 44px;
  border-radius: 0.82rem;
  border: 1px solid color-mix(in srgb, var(--accent) 56%, transparent);
  background: var(--accent);
  color: #1d1603;
  font-size: 0.95rem;
  font-weight: 720;
  letter-spacing: 0.01em;
  text-align: center;
  padding: 0 1.14rem;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
  transition: background-color 170ms ease, box-shadow 180ms ease, transform 140ms ease;
  box-shadow: 0 8px 18px rgba(7, 11, 22, 0.26);
}

.lp-btn-primary:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px rgba(11, 18, 32, 0.92), 0 0 0 4px color-mix(in srgb, var(--accent) 68%, #fff7d1), 0 10px 20px rgba(7, 11, 22, 0.32);
}

.lp-btn-primary:hover {
  background: #ffd56b;
  box-shadow: 0 10px 24px rgba(7, 11, 22, 0.34);
}

.lp-btn-primary:active {
  transform: translateY(0.5px);
}

.lp-pricing-cta {
  width: 100%;
  min-height: 52px;
  height: 52px;
  border-radius: 0.92rem;
  font-size: 1rem;
  font-weight: 730;
  letter-spacing: 0.012em;
  margin-top: 1rem;
}

.lp-btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  border-radius: 0.72rem;
  border: 1px solid color-mix(in srgb, var(--accent2) 30%, var(--border));
  background: color-mix(in srgb, var(--surface2) 78%, transparent);
  color: var(--text);
  font-size: 0.84rem;
  font-weight: 680;
  padding: 0.56rem 1rem;
}

.lp-btn-secondary:hover {
  background: color-mix(in srgb, var(--surface2) 93%, transparent);
}

.lp-chip {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.24rem 0.65rem;
  font-size: 0.7rem;
  font-weight: 620;
  color: var(--muted);
  background: color-mix(in srgb, var(--surface2) 70%, transparent);
}

.lp-step-dot {
  display: inline-flex;
  height: 2rem;
  width: 2rem;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid var(--border);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text);
  background: color-mix(in srgb, var(--surface2) 74%, transparent);
}

.lp-how-steps {
  position: relative;
  overflow: visible;
  --lp-step-gap: 0.75rem;
  --lp-step-connector: color-mix(in srgb, var(--border) 50%, rgba(255, 255, 255, 0.3));
}

.lp-how-step {
  position: relative;
  z-index: 2;
}

@media (min-width: 768px) {
  .lp-how-step:nth-child(-n + 2)::after {
    content: '';
    position: absolute;
    top: 50%;
    right: calc(var(--lp-step-gap) * -1);
    width: var(--lp-step-gap);
    height: 2px;
    transform: translateY(-50%);
    background: var(--lp-step-connector);
    opacity: 0.55;
    pointer-events: none;
    z-index: 1;
  }

  .lp-how-step:nth-child(-n + 2)::before {
    content: '';
    position: absolute;
    top: 50%;
    right: calc((var(--lp-step-gap) / -2) - 4px);
    width: 8px;
    height: 8px;
    border-top: 2px solid color-mix(in srgb, var(--border) 66%, rgba(255, 255, 255, 0.45));
    border-right: 2px solid color-mix(in srgb, var(--border) 66%, rgba(255, 255, 255, 0.45));
    transform: translateY(-50%) rotate(45deg);
    opacity: 0.55;
    pointer-events: none;
    z-index: 1;
  }
}

@media (max-width: 767px) {
  .lp-how-step:nth-child(-n + 2)::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 100%;
    width: 2px;
    height: calc(var(--lp-step-gap) - 2px);
    transform: translateX(-50%);
    background: color-mix(in srgb, var(--border) 58%, rgba(255, 255, 255, 0.36));
    opacity: 0.5;
    pointer-events: none;
    z-index: 1;
  }

  .lp-how-step:nth-child(-n + 2)::before {
    content: '';
    position: absolute;
    left: 50%;
    top: calc(100% + var(--lp-step-gap) - 8px);
    width: 8px;
    height: 8px;
    border-right: 2px solid color-mix(in srgb, var(--border) 62%, rgba(255, 255, 255, 0.42));
    border-bottom: 2px solid color-mix(in srgb, var(--border) 62%, rgba(255, 255, 255, 0.42));
    transform: translateX(-50%) rotate(45deg);
    opacity: 0.52;
    pointer-events: none;
    z-index: 1;
  }
}

.phone-shell {
  position: relative;
  width: 100%;
  max-width: 250px;
  aspect-ratio: 9 / 19;
  margin: 0 auto;
  border-radius: 42px;
  background: linear-gradient(148deg, #f8fbff 0%, #d8e1ee 44%, #9ba9c3 100%);
  box-shadow:
    0 14px 28px rgba(2, 6, 23, 0.44),
    0 0 0 1px rgba(255, 255, 255, 0.18) inset;
  padding: 8px;
}

.phone-screen {
  height: 100%;
  border-radius: 34px;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.38);
  background: var(--surface2);
  display: flex;
  flex-direction: column;
}

.phone-island {
  position: absolute;
  left: 50%;
  top: 7px;
  transform: translateX(-50%);
  width: 100px;
  height: 24px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.88);
  border: 1px solid rgba(71, 85, 105, 0.45);
  z-index: 5;
}

.phone-chat {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 10px;
  background: linear-gradient(160deg, #173151 0%, #172a47 55%, #121f37 100%);
  transition: opacity 280ms ease;
}

.bubble-bot,
.bubble-user {
  font-size: 10px;
  line-height: 1.3;
  border: 1px solid rgba(148, 163, 184, 0.4);
  border-radius: 11px;
  padding: 6px 7px;
  max-width: 88%;
}

.bubble-bot {
  color: #0f172a;
  background: rgba(226, 232, 240, 0.95);
  border-bottom-left-radius: 6px;
}

.bubble-user {
  margin-left: auto;
  color: #f8fbff;
  background: linear-gradient(145deg, #1576c0, #12629f);
  border-bottom-right-radius: 6px;
}

.lp-accordion-item {
  border: 1px solid color-mix(in srgb, var(--border) 58%, transparent);
  border-radius: 0.75rem;
  background: color-mix(in srgb, var(--surface2) 72%, transparent);
}

.lp-accordion-btn {
  width: 100%;
  text-align: left;
  padding: 0.78rem 0.9rem;
  font-size: 0.83rem;
  font-weight: 650;
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.lp-accordion-panel {
  display: none;
  padding: 0 0.9rem 0.86rem;
  font-size: 0.78rem;
  line-height: 1.5;
  color: var(--muted);
}

.lp-accordion-item.is-open .lp-accordion-panel {
  display: block;
}

.mobile-sticky-cta {
  box-shadow: 0 -10px 22px rgba(2, 6, 23, 0.64);
}

.lp-sample-shell {
  border-radius: 18px;
}

.lp-sample-head {
  min-height: 58px;
}

.lp-sample-foot {
  line-height: 1.45;
}

@media (min-width: 1280px) {
  .lp-hero {
    gap: 2rem;
  }

  .lp-hero-title {
    font-size: 2.5rem !important;
  }

  .lp-hero-subline {
    font-size: 0.91rem;
  }

  .lp-hero-points {
    font-size: 0.84rem;
  }

  .lp-section {
    padding: 2.8rem 0;
  }

  .lp-btn-primary,
  .lp-btn-secondary,
  .brand-btn-primary,
  .brand-btn-secondary,
  .brand-btn-ghost {
    min-height: 40px;
    font-size: 0.86rem;
  }

  .lp-chip {
    font-size: 0.68rem;
    padding: 0.2rem 0.6rem;
  }

  .lp-pricing-grid {
    gap: 0.7rem;
  }

  .lp-price-card {
    padding: 0.95rem !important;
  }

  .lp-price-list {
    font-size: 0.73rem;
  }

  .lp-pricing-cta {
    min-height: 50px;
    height: 50px;
    font-size: 0.95rem;
  }

  .phone-shell {
    max-width: 236px;
    border-radius: 39px;
  }
}

@media (max-width: 1023px) {
  .lp-hero {
    gap: 1.2rem;
    padding-bottom: 2.3rem !important;
  }

  .lp-hero-title {
    max-width: 24ch;
  }

  .lp-hero-subline {
    font-size: 0.92rem;
  }

  .lp-hero-points {
    font-size: 0.86rem;
  }

  .lp-section {
    padding: 2.5rem 0;
  }

  .surface {
    border-radius: 12px !important;
  }

  .surface-soft,
  .helper-card,
  .lp-card,
  .lp-card-soft {
    border-radius: 11px !important;
  }

  .brand-field,
  .brand-textarea,
  .brand-select {
    font-size: 0.84rem;
  }

  .lp-btn-primary,
  .lp-btn-secondary {
    min-height: 40px;
    font-size: 0.85rem;
    padding: 0 0.95rem;
  }

  .lp-chip {
    font-size: 0.68rem;
  }

  .lp-pricing-grid {
    gap: 0.72rem;
  }

  .lp-price-list {
    font-size: 0.74rem;
  }

  .lp-billing-switch {
    width: 100%;
    min-height: 50px;
  }

  .lp-billing-switch-btn {
    min-height: 42px;
    font-size: 0.88rem;
  }

  .lp-billing-switch-note {
    font-size: 0.71rem;
  }

  .lp-pricing-cta {
    min-height: 50px;
    height: 50px;
    font-size: 0.94rem;
  }
}

@media (max-width: 768px) {
  .brand-topbar {
    min-height: 58px;
    padding-top: 0.9rem;
    padding-bottom: 0.9rem;
  }

  .brand-topbar-brand {
    font-size: 1rem;
  }

  .brand-topbar-actions {
    gap: 0.35rem !important;
    flex-wrap: wrap;
    justify-content: flex-end;
    max-width: none;
  }

  .brand-topbar-actions .brand-btn-primary {
    display: none !important;
  }

  .lp-back-home {
    top: calc(env(safe-area-inset-top, 0px) + 64px);
    left: 14px;
    min-height: 40px;
    padding: 0 11px;
    font-size: 0.78rem;
    border-radius: 11px;
    gap: 0.34rem;
  }

  .lp-hero {
    gap: 0.95rem;
    padding-top: 0.95rem !important;
  }

  .lp-hero-title {
    font-size: 1.9rem !important;
    max-width: 18ch;
  }

  .lp-hero-subline {
    margin-top: 0.7rem !important;
    font-size: 0.85rem;
  }

  .lp-hero-points {
    margin-top: 0.72rem !important;
    font-size: 0.8rem;
  }

  .lp-hero-cta {
    margin-top: 0.88rem !important;
    gap: 0.5rem !important;
  }

  .lp-section {
    padding: 2.2rem 0;
  }

  .lp-btn-primary,
  .lp-btn-secondary {
    min-height: 40px;
    font-size: 0.83rem;
  }

  .lp-accordion-btn {
    padding: 0.72rem 0.82rem;
    font-size: 0.8rem;
  }

  .lp-accordion-panel {
    padding: 0 0.82rem 0.76rem;
    font-size: 0.76rem;
  }

  .lp-pricing-grid {
    gap: 0.6rem;
  }

  .lp-price-card {
    padding: 0.88rem !important;
  }

  .lp-price-list {
    font-size: 0.73rem;
    margin-top: 0.72rem;
  }

  .lp-billing-switch {
    min-height: 48px;
    border-radius: 0.95rem;
  }

  .lp-billing-switch-btn {
    min-height: 40px;
    font-size: 0.84rem;
    gap: 0.24rem;
  }

  .lp-billing-switch-note {
    font-size: 0.68rem;
  }

  .lp-pricing-cta {
    min-height: 48px;
    height: 48px;
    font-size: 0.92rem;
  }

  .lp-sample-shell {
    border-radius: 15px;
  }

  .lp-sample-head {
    min-height: 52px;
  }

  .phone-shell {
    max-width: 218px;
    border-radius: 36px;
    padding: 7px;
  }

  .phone-screen {
    border-radius: 30px;
  }

  .phone-island {
    width: 90px;
    height: 21px;
    top: 6px;
  }

  .phone-chat {
    gap: 5px;
    padding: 8px;
  }
}

@media (max-width: 480px) {
  .brand-topbar {
    min-height: 58px;
  }

  .brand-topbar-actions .brand-btn-primary,
  .brand-topbar-actions .brand-btn-ghost {
    min-height: 38px;
    padding: 0 10px;
    font-size: 0.73rem;
  }

  .brand-topbar-actions {
    max-width: none;
  }

  .lp-back-home {
    top: calc(env(safe-area-inset-top, 0px) + 60px);
    left: 12px;
    min-height: 38px;
    padding: 0 10px;
    font-size: 0.74rem;
  }

  .lp-hero-title {
    font-size: 1.72rem !important;
  }

  .lp-hero-subline {
    font-size: 0.82rem;
  }

  .lp-hero-points {
    font-size: 0.76rem;
  }

  body.public-page p {
    line-height: 1.52;
  }

  .surface {
    border-radius: 11px !important;
  }

  .lp-section {
    padding: 2rem 0;
  }

  .lp-step-dot {
    height: 1.85rem;
    width: 1.85rem;
    font-size: 0.74rem;
  }

  .lp-price-list {
    font-size: 0.71rem;
  }

  .lp-billing-switch-note {
    display: none;
  }

  .faq-button {
    min-height: 48px;
  }
}
