/* [project]/app/(marketing)/pricing/pricing.css [app-client] (css) */
:root {
  --bg: #fafaf7;
  --bg-2: #f2f1ec;
  --fg: #0a0a0a;
  --fg-2: #1f1f1b;
  --fg-muted: #5a5a55;
  --fg-subtle: #8a8a85;
  --accent: #2be38a;
  --accent-deep: #00b86a;
  --accent-dark: #006b3d;
  --card: #fff;
  --border: #e8e6df;
  --shadow-lift: 0 1px 0 rgba(0, 0, 0, .04), 0 24px 60px -20px rgba(0, 0, 0, .08);
  --mono: "JetBrains Mono", ui-monospace, "SF Mono", monospace;
}

* {
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  margin: 0;
  padding: 0;
}

html, body {
  background: var(--bg);
  color: var(--fg);
  font-feature-settings: "ss06", "ss07", "cv01";
  letter-spacing: -.011em;
  font-family: Pretendard, -apple-system, BlinkMacSystemFont, system-ui, Segoe UI, Roboto, Noto Sans, Ubuntu, Cantarell, Helvetica Neue, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  overflow-x: hidden;
}

body:before {
  content: "";
  pointer-events: none;
  z-index: 1;
  opacity: .5;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.12'/%3E%3C/svg%3E");
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

::selection {
  background: var(--accent);
  color: var(--fg);
}

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

button {
  cursor: pointer;
  color: inherit;
  background: none;
  border: none;
  font-family: inherit;
}

.container {
  z-index: 2;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
}

.num {
  font-feature-settings: "tnum" 1;
  font-variant-numeric: tabular-nums;
}

h1, h2, h3 {
  letter-spacing: -.035em;
  font-weight: 700;
  line-height: 1.14;
}

.hdr {
  z-index: 100;
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--border);
  background: rgba(250, 250, 247, .78);
  position: -webkit-sticky;
  position: sticky;
  top: 0;
}

.hdr-inner {
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  display: flex;
}

.nav {
  gap: 32px;
  display: flex;
}

.nav a {
  color: var(--fg-muted);
  font-size: 14.5px;
  font-weight: 500;
  transition: color .15s;
}

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

.nav a.is-active {
  font-weight: 600;
}

.hdr-right {
  align-items: center;
  gap: 12px;
  display: flex;
}

.hdr-login {
  color: var(--fg-muted);
  font-size: 14.5px;
  font-weight: 500;
  transition: color .15s;
}

.hdr-login:hover {
  color: var(--fg);
}

.hdr-status {
  font-family: var(--mono);
  color: var(--fg-muted);
  border-right: 1px solid var(--border);
  align-items: center;
  gap: 6px;
  margin-right: 6px;
  padding-right: 14px;
  font-size: 11px;
  display: flex;
}

.status-dot {
  background: var(--accent-deep);
  border-radius: 50%;
  width: 6px;
  height: 6px;
  animation: 2s ease-in-out infinite pulse;
  box-shadow: 0 0 0 3px rgba(43, 227, 138, .18);
}

@keyframes pulse {
  0%, 100% {
    box-shadow: 0 0 0 3px rgba(43, 227, 138, .18);
  }

  50% {
    box-shadow: 0 0 0 6px rgba(43, 227, 138, .08);
  }
}

.logo {
  align-items: center;
  gap: 10px;
  display: inline-flex;
}

.logo-mark {
  background: var(--fg);
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  width: 28px;
  height: 28px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.logo-mark:before {
  content: "";
  background: linear-gradient(135deg, rgba(0, 0, 0, 0) 40%, rgba(43, 227, 138, .3) 100%);
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.logo-dot {
  background: var(--accent);
  z-index: 1;
  border-radius: 50%;
  width: 9px;
  height: 9px;
  position: relative;
}

.logo-text {
  letter-spacing: -.03em;
  font-size: 21px;
  font-weight: 700;
}

.btn {
  white-space: nowrap;
  border-radius: 999px;
  align-items: center;
  gap: 6px;
  font-weight: 500;
  transition: all .18s cubic-bezier(.4, 0, .2, 1);
  display: inline-flex;
}

.btn-sm {
  padding: 9px 18px;
  font-size: 14.5px;
}

.btn-lg {
  padding: 16px 28px;
  font-size: 16.5px;
}

.btn-primary {
  background: var(--fg);
  color: #fff;
  box-shadow: inset 0 1px rgba(255, 255, 255, .05), 0 1px 2px rgba(0, 0, 0, .1);
}

.btn-primary:hover {
  background: var(--fg-2);
  transform: translateY(-1px);
  box-shadow: inset 0 1px rgba(255, 255, 255, .05), 0 8px 24px -8px rgba(0, 0, 0, .25);
}

.btn-ghost {
  color: var(--fg);
  border: 1px solid var(--border);
  background: none;
}

.btn-ghost:hover {
  background: var(--card);
  border-color: var(--fg);
}

.btn-accent {
  background: var(--accent);
  color: var(--fg);
  font-weight: 600;
}

.btn-accent:hover {
  background: #fff;
  transform: translateY(-1px);
}

.btn-on-dark {
  color: #fff;
  background: none;
  border: 1px solid rgba(255, 255, 255, .18);
}

.btn-on-dark:hover {
  background: rgba(255, 255, 255, .06);
  border-color: #fff;
}

.btn-arrow {
  transition: transform .18s;
  display: inline-block;
}

.btn:hover .btn-arrow {
  transform: translateX(3px);
}

.eyebrow {
  font-family: var(--mono);
  color: var(--accent-dark);
  letter-spacing: .08em;
  text-transform: uppercase;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  font-size: 11.5px;
  font-weight: 500;
  display: inline-flex;
}

.eyebrow:before {
  content: "";
  background: var(--accent-dark);
  width: 14px;
  height: 1px;
}

.s-reveal {
  opacity: 0;
  transition: opacity .8s cubic-bezier(.16, 1, .3, 1), transform .8s cubic-bezier(.16, 1, .3, 1);
  transform: translateY(28px);
}

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

.s-stagger > * {
  opacity: 0;
  transition: opacity .7s cubic-bezier(.16, 1, .3, 1), transform .7s cubic-bezier(.16, 1, .3, 1);
  transform: translateY(24px);
}

.s-stagger.is-visible > * {
  opacity: 1;
  transform: translateY(0);
}

.s-stagger.is-visible > :first-child {
  transition-delay: 0s;
}

.s-stagger.is-visible > :nth-child(2) {
  transition-delay: 80ms;
}

.s-stagger.is-visible > :nth-child(3) {
  transition-delay: .16s;
}

.s-stagger.is-visible > :nth-child(4) {
  transition-delay: .24s;
}

.s-stagger.is-visible > :nth-child(5) {
  transition-delay: .32s;
}

.s-stagger.is-visible > :nth-child(6) {
  transition-delay: .4s;
}

.page-hero {
  border-bottom: 1px solid var(--border);
  padding: 96px 0 80px;
  position: relative;
  overflow: hidden;
}

.page-hero:before {
  content: "";
  background: var(--accent);
  opacity: .15;
  filter: blur(150px);
  pointer-events: none;
  border-radius: 50%;
  width: 600px;
  height: 600px;
  position: absolute;
  top: -100px;
  right: -200px;
}

.page-hero-inner {
  text-align: center;
  z-index: 2;
  max-width: 880px;
  margin: 0 auto;
  position: relative;
}

.page-hero .eyebrow {
  justify-content: center;
}

.page-hero h1 {
  letter-spacing: -.045em;
  margin: 24px 0 28px;
  font-size: 80px;
  line-height: 1.05;
}

.page-hero h1 em {
  color: var(--fg);
  background: var(--accent);
  border-radius: 8px;
  margin: 0 4px;
  padding: 2px 16px;
  font-style: normal;
  line-height: 1;
  display: inline-block;
  transform: translateY(-4px);
}

.page-hero-sub {
  color: var(--fg-muted);
  max-width: 680px;
  margin: 0 auto;
  font-size: 22px;
  line-height: 1.6;
}

.formula-section {
  border-bottom: 1px solid var(--border);
  padding: 80px 0;
}

.formula-card {
  background: var(--card);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lift);
  border-radius: 28px;
  grid-template-columns: 1fr 1.2fr;
  align-items: center;
  gap: 64px;
  padding: 56px;
  display: grid;
}

.formula-left {
  flex-direction: column;
  gap: 20px;
  display: flex;
}

.formula-eyebrow {
  font-family: var(--mono);
  color: var(--accent-dark);
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: 12px;
  font-weight: 600;
}

.formula-title {
  letter-spacing: -.04em;
  font-size: 44px;
  line-height: 1.15;
}

.formula-title em {
  color: var(--fg);
  background: var(--accent);
  border-radius: 6px;
  padding: 2px 10px;
  font-style: normal;
  line-height: 1;
  display: inline-block;
  transform: translateY(-3px);
}

.formula-desc {
  color: var(--fg-muted);
  font-size: 17px;
  line-height: 1.65;
}

.formula-bullets {
  flex-direction: column;
  gap: 10px;
  margin-top: 8px;
  display: flex;
}

.formula-bullet {
  color: var(--fg-2);
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  line-height: 1.55;
  display: flex;
}

.formula-bullet-icon {
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  display: flex;
}

.formula-bullet-icon svg {
  width: 10px;
  height: 10px;
}

.formula-right {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px 32px;
}

.formula-line {
  border-bottom: 1px dashed var(--border);
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 16px 0;
  display: grid;
}

.formula-line:last-of-type {
  border-bottom: none;
}

.formula-line.is-total {
  border-top: 2px solid var(--fg);
  border-bottom: none;
  margin-top: 12px;
  padding: 24px 0 0;
}

.formula-line-label {
  color: var(--fg-muted);
  font-size: 15px;
}

.formula-line-label strong {
  color: var(--fg);
  font-weight: 600;
}

.formula-line-value {
  font-family: var(--mono);
  color: var(--fg);
  font-size: 17px;
  font-weight: 600;
}

.formula-line.is-markup .formula-line-value {
  color: var(--accent-dark);
}

.formula-line.is-total .formula-line-label {
  color: var(--fg);
  letter-spacing: -.018em;
  font-size: 17px;
  font-weight: 700;
}

.formula-line.is-total .formula-line-value {
  letter-spacing: -.025em;
  font-size: 26px;
  font-weight: 700;
}

.formula-note {
  font-family: var(--mono);
  color: var(--fg-subtle);
  text-align: center;
  margin-top: 20px;
  font-size: 11px;
  line-height: 1.6;
}

.pricing-table-section {
  border-bottom: 1px solid var(--border);
  padding: 80px 0;
}

.section-head {
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 24px;
  margin-bottom: 40px;
  display: grid;
}

.section-head h2 {
  letter-spacing: -.035em;
  font-size: 40px;
  line-height: 1.15;
}

.section-head p {
  color: var(--fg-muted);
  max-width: 580px;
  margin-top: 8px;
  font-size: 16px;
}

.section-head-aside {
  align-items: center;
  gap: 8px;
  display: flex;
}

.vat-toggle {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 999px;
  align-items: center;
  gap: 4px;
  padding: 4px;
  display: flex;
}

.vat-toggle-btn {
  font-family: var(--mono);
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: .05em;
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 11.5px;
  font-weight: 600;
  transition: all .15s;
}

.vat-toggle-btn.is-active {
  background: var(--fg);
  color: #fff;
}

.pricing-table {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
}

.pt-head {
  background: var(--bg-2);
  border-bottom: 1px solid var(--border);
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--fg-subtle);
  grid-template-columns: 80px 1fr 120px 140px 140px 140px;
  padding: 18px 24px;
  font-size: 11px;
  display: grid;
}

.pt-head > div:nth-child(n+3) {
  text-align: right;
}

.pt-row {
  border-bottom: 1px solid var(--border);
  grid-template-columns: 80px 1fr 120px 140px 140px 140px;
  align-items: center;
  padding: 18px 24px;
  transition: background .2s;
  display: grid;
}

.pt-row:last-child {
  border-bottom: none;
}

.pt-row:hover {
  background: var(--bg-2);
}

.pt-glyph {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 10px;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  padding: 7px;
  display: flex;
  overflow: hidden;
}

.pt-glyph svg {
  width: 100%;
  height: 100%;
  display: block;
}

.pt-model {
  flex-direction: column;
  display: flex;
}

.pt-model-name {
  letter-spacing: -.018em;
  margin-bottom: 2px;
  font-size: 16px;
  font-weight: 700;
}

.pt-model-maker {
  color: var(--fg-subtle);
  font-size: 12.5px;
}

.pt-context {
  font-family: var(--mono);
  text-align: right;
  color: var(--fg-muted);
  font-size: 13px;
}

.pt-price {
  text-align: right;
}

.pt-price-row {
  font-family: var(--mono);
  color: var(--fg);
  justify-content: flex-end;
  align-items: baseline;
  gap: 4px;
  font-size: 13.5px;
  font-weight: 600;
  display: flex;
}

.pt-price-row .unit {
  color: var(--fg-subtle);
  font-size: 10.5px;
  font-weight: 400;
}

.pt-price-orig {
  font-family: var(--mono);
  color: var(--fg-subtle);
  margin-top: 2px;
  font-size: 11px;
}

.pt-final {
  text-align: right;
  font-family: var(--mono);
  color: var(--accent-dark);
  font-size: 15px;
  font-weight: 700;
}

.pt-footer {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  font-family: var(--mono);
  color: var(--fg-subtle);
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 20px 24px;
  font-size: 11.5px;
  display: flex;
}

.pt-footer a {
  color: var(--fg);
  font-weight: 600;
}

.payment-section {
  background: var(--card);
  border-bottom: 1px solid var(--border);
  padding: 80px 0;
}

.payment-grid {
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  display: grid;
}

.payment-block {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px;
}

.payment-block-eyebrow {
  font-family: var(--mono);
  color: var(--accent-dark);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 12px;
  font-size: 11.5px;
  font-weight: 600;
}

.payment-block-title {
  letter-spacing: -.025em;
  margin-bottom: 12px;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.2;
}

.payment-block-desc {
  color: var(--fg-muted);
  margin-bottom: 24px;
  font-size: 15px;
  line-height: 1.65;
}

.payment-methods {
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  display: grid;
}

.payment-method {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  transition: all .2s;
  display: flex;
}

.payment-method:hover {
  border-color: var(--fg);
  transform: translateY(-1px);
}

.payment-method-icon {
  background: var(--bg-2);
  border-radius: 8px;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  display: flex;
}

.payment-method-icon svg {
  width: 16px;
  height: 16px;
}

.payment-method-text {
  flex-direction: column;
  display: flex;
}

.payment-method-name {
  letter-spacing: -.012em;
  font-size: 13.5px;
  font-weight: 600;
}

.payment-method-sub {
  font-family: var(--mono);
  color: var(--fg-subtle);
  margin-top: 1px;
  font-size: 10.5px;
}

.charge-units {
  flex-wrap: wrap;
  gap: 8px;
  display: flex;
}

.charge-unit {
  background: var(--card);
  border: 1px solid var(--border);
  font-family: var(--mono);
  color: var(--fg);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 12.5px;
  font-weight: 600;
  transition: all .15s;
}

.charge-unit.is-popular {
  background: var(--accent);
  border-color: var(--accent);
}

.charge-unit:hover {
  border-color: var(--fg);
}

.compare-section {
  border-bottom: 1px solid var(--border);
  padding: 80px 0;
}

.compare-grid {
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  display: grid;
}

.compare-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px;
  position: relative;
}

.compare-card.is-them {
  opacity: .8;
}

.compare-card.is-us {
  background: var(--fg);
  color: #fff;
  border-color: var(--fg);
  overflow: hidden;
}

.compare-card.is-us:before {
  content: "";
  pointer-events: none;
  background-image: linear-gradient(rgba(255, 255, 255, .02) 1px, rgba(0, 0, 0, 0) 1px), linear-gradient(90deg, rgba(255, 255, 255, .02) 1px, rgba(0, 0, 0, 0) 1px);
  background-size: 32px 32px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

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

.compare-tag {
  font-family: var(--mono);
  color: var(--fg-subtle);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 12px;
  font-size: 11.5px;
}

.compare-card.is-us .compare-tag {
  color: var(--accent);
}

.compare-card h3 {
  letter-spacing: -.025em;
  margin-bottom: 20px;
  font-size: 26px;
  font-weight: 700;
}

.compare-card.is-us h3 {
  color: #fff;
}

.compare-list {
  flex-direction: column;
  gap: 14px;
  display: flex;
}

.compare-item {
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  line-height: 1.55;
  display: flex;
}

.compare-item-icon {
  border-radius: 50%;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  display: flex;
}

.compare-item.is-bad .compare-item-icon {
  background: rgba(184, 28, 36, .12);
}

.compare-item.is-bad .compare-item-icon svg {
  stroke: #b81c24;
}

.compare-item.is-good .compare-item-icon {
  background: var(--accent);
}

.compare-item.is-good .compare-item-icon svg {
  stroke: var(--fg);
}

.compare-item-icon svg {
  fill: none;
  stroke-width: 2.5px;
  width: 11px;
  height: 11px;
}

.compare-card.is-them .compare-item {
  color: var(--fg-muted);
}

.compare-card.is-us .compare-item {
  color: rgba(255, 255, 255, .85);
}

.faq-section {
  background: var(--bg-2);
  border-bottom: 1px solid var(--border);
  padding: 80px 0;
}

.faq-wrap {
  max-width: 880px;
  margin: 0 auto;
}

.faq-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  margin-bottom: 12px;
  transition: all .2s;
  overflow: hidden;
}

.faq-item.is-open {
  border-color: var(--fg);
  box-shadow: 0 8px 24px -12px rgba(0, 0, 0, .12);
}

.faq-q {
  text-align: left;
  letter-spacing: -.018em;
  width: 100%;
  color: var(--fg);
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 22px 28px;
  font-size: 17px;
  font-weight: 600;
  display: flex;
}

.faq-q-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  transition: transform .25s;
  position: relative;
}

.faq-q-icon:before, .faq-q-icon:after {
  content: "";
  background: var(--fg);
  transition: transform .25s;
  position: absolute;
}

.faq-q-icon:before {
  width: 14px;
  height: 2px;
  top: 10px;
  left: 4px;
}

.faq-q-icon:after {
  width: 2px;
  height: 14px;
  top: 4px;
  left: 10px;
}

.faq-item.is-open .faq-q-icon:after {
  transform: scaleY(0);
}

.faq-a {
  max-height: 0;
  transition: max-height .35s ease-out;
  overflow: hidden;
}

.faq-item.is-open .faq-a {
  max-height: 400px;
}

.faq-a-inner {
  color: var(--fg-muted);
  padding: 0 28px 24px;
  font-size: 15.5px;
  line-height: 1.7;
}

.faq-a-inner strong {
  color: var(--fg);
  font-weight: 600;
}

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

.cta {
  background: var(--fg);
  color: #fff;
  border-radius: 28px;
  grid-template-columns: 1.5fr 1fr;
  align-items: center;
  gap: 64px;
  padding: 72px;
  display: grid;
  position: relative;
  overflow: hidden;
}

.cta-grid-bg {
  pointer-events: none;
  background-image: linear-gradient(rgba(255, 255, 255, .02) 1px, rgba(0, 0, 0, 0) 1px), linear-gradient(90deg, rgba(255, 255, 255, .02) 1px, rgba(0, 0, 0, 0) 1px);
  background-size: 48px 48px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.cta-accent {
  pointer-events: none;
  background: radial-gradient(circle, rgba(43, 227, 138, .12) 0%, rgba(0, 0, 0, 0) 60%);
  width: 600px;
  height: 600px;
  position: absolute;
  top: -50%;
  right: -10%;
}

.cta-inner {
  z-index: 1;
  position: relative;
}

.cta h2 {
  letter-spacing: -.04em;
  color: #fff;
  margin-bottom: 20px;
  font-size: 52px;
  line-height: 1.18;
}

.cta h2 em {
  color: var(--fg);
  background: var(--accent);
  border-radius: 4px;
  padding: 2px 12px;
  font-style: normal;
  line-height: 1;
  display: inline-block;
  transform: translateY(-2px);
}

.cta-sub {
  color: rgba(255, 255, 255, .7);
  max-width: 500px;
  margin-bottom: 32px;
  font-size: 17.5px;
  line-height: 1.6;
}

.cta-actions {
  flex-wrap: wrap;
  gap: 12px;
  display: flex;
}

.cta-bonus {
  z-index: 1;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 16px;
  padding: 28px 32px;
  position: relative;
}

.cta-bonus-eyebrow {
  font-family: var(--mono);
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 10px;
  font-size: 11px;
}

.cta-bonus-amount {
  letter-spacing: -.035em;
  color: #fff;
  margin-bottom: 8px;
  font-size: 40px;
  font-weight: 700;
}

.cta-bonus-amount .unit {
  color: rgba(255, 255, 255, .6);
  font-size: 18px;
  font-weight: 500;
}

.cta-bonus-desc {
  color: rgba(255, 255, 255, .6);
  font-size: 13.5px;
  line-height: 1.55;
}

footer {
  border-top: 1px solid var(--border);
  padding: 80px 0 40px;
}

.footer-top {
  border-bottom: 1px solid var(--border);
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 32px;
  padding-bottom: 48px;
  display: grid;
}

.footer-brand-desc {
  color: var(--fg-muted);
  max-width: 340px;
  margin-top: 16px;
  font-size: 15px;
  line-height: 1.7;
}

.footer-runs {
  font-family: var(--mono);
  color: var(--fg-subtle);
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  font-size: 11.5px;
  display: flex;
}

.footer-col-h {
  letter-spacing: -.01em;
  color: var(--fg);
  margin-bottom: 18px;
  font-size: 13.5px;
  font-weight: 600;
}

.footer-col {
  flex-direction: column;
  gap: 12px;
  display: flex;
}

.footer-col a {
  color: var(--fg-muted);
  font-size: 14.5px;
  transition: color .15s;
}

.footer-col a:hover {
  color: var(--fg);
}

.footer-legal {
  border-bottom: 1px solid var(--border);
  margin-bottom: 20px;
  padding: 24px 0;
}

.footer-legal-grid {
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 32px;
  display: grid;
}

.footer-legal-row {
  align-items: baseline;
  gap: 12px;
  font-size: 13.5px;
  line-height: 1.5;
  display: flex;
}

.footer-legal-row-full {
  grid-column: 1 / -1;
}

.footer-legal-label {
  font-family: var(--mono);
  color: var(--fg-subtle);
  text-transform: uppercase;
  letter-spacing: .06em;
  flex-shrink: 0;
  min-width: 100px;
  font-size: 11px;
}

.footer-legal-value {
  color: var(--fg-muted);
}

.footer-bottom {
  font-family: var(--mono);
  color: var(--fg-subtle);
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  display: flex;
}

@media (max-width: 1100px) {
  .formula-card {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 40px;
  }

  .formula-title {
    font-size: 32px;
  }

  .page-hero h1 {
    font-size: 56px;
  }

  .pt-head, .pt-row {
    grid-template-columns: 60px 1fr 80px 100px 100px;
  }

  .pt-head > div:nth-child(5), .pt-row > div:nth-child(5) {
    display: none;
  }

  .payment-grid, .compare-grid {
    grid-template-columns: 1fr;
  }

  .cta {
    grid-template-columns: 1fr;
    padding: 56px;
  }
}

@media (max-width: 700px) {
  .container {
    padding: 0 20px;
  }

  .page-hero {
    padding: 56px 0 40px;
  }

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

  .formula-card {
    padding: 32px 24px;
  }

  .formula-title {
    font-size: 26px;
  }

  .formula-right {
    padding: 24px 20px;
  }

  .formula-line.is-total .formula-line-value {
    font-size: 22px;
  }

  .section-head {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .section-head h2 {
    font-size: 30px;
  }

  .pt-head, .pt-row {
    grid-template-columns: 40px 1fr 80px;
  }

  .pt-head > div:nth-child(n+4), .pt-row > div:nth-child(n+4), .nav, .hdr-status {
    display: none;
  }

  .payment-methods {
    grid-template-columns: 1fr;
  }

  .cta {
    padding: 40px 32px;
  }

  .cta h2 {
    font-size: 32px;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }

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

  .faq-q {
    padding: 18px 20px;
    font-size: 15px;
  }

  .faq-a-inner {
    padding: 0 20px 20px;
    font-size: 14.5px;
  }
}

/*# sourceMappingURL=app_%28marketing%29_pricing_pricing_3dd6017f.css.map*/