/* ==========================================================================
   FollNova design system
   White surface · Bricolage Grotesque display · Instrument Sans body
   Purple #5B3BEF · Green #00A472
   ========================================================================== */

:root {
  --fn-ink: #0c0c14;
  --fn-ink-2: #14141f;
  --fn-strong: #3d3d4e;
  --fn-muted: #5e5e72;
  --fn-muted-2: #63637a;
  --fn-muted-3: #70707f;
  --fn-muted-4: #5f5f73;
  --fn-purple: #5b3bef;
  --fn-purple-soft: rgba(91, 59, 239, 0.12);
  --fn-green: #00a472;
  --fn-green-mid: #00996a;
  --fn-green-deep: #00734f;
  --fn-amber: #a66a00;
  --fn-line: rgba(12, 12, 26, 0.1);
  --fn-line-strong: rgba(12, 12, 26, 0.15);
  --fn-line-soft: rgba(12, 12, 26, 0.075);
  --fn-surface-soft: rgba(12, 12, 26, 0.03);
  --fn-display: "Bricolage Grotesque", "Instrument Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
  --fn-body: "Instrument Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
  --fn-mono: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  --fn-shell: 1240px;
}

@keyframes fnUp {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: none; }
}
@keyframes fnIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes fnFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}
@keyframes fnPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.35; transform: scale(0.82); }
}
@keyframes fnMarquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@keyframes fnDrift {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(4%, -6%, 0) scale(1.12); }
}

/* --------------------------------------------------------------------------
   Theme reset — applied on the storefront root
   -------------------------------------------------------------------------- */

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: #ffffff;
}

.social-storefront.fn-theme {
  background: #ffffff;
  color: var(--fn-ink);
  font-family: var(--fn-body);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.social-storefront.fn-theme .storefront-page-surface,
.social-storefront.fn-theme .storefront-home-page-surface {
  background: #ffffff;
  background-image: none;
}

.social-storefront.fn-theme .storefront-page-surface::before,
.social-storefront.fn-theme .storefront-page-surface::after,
.social-storefront.fn-theme .storefront-section-surface::before,
.social-storefront.fn-theme .storefront-section-surface::after {
  content: none !important;
}

.social-storefront.fn-theme ::selection {
  background: var(--fn-purple);
  color: #ffffff;
}

.social-storefront.fn-theme :where(button, a, input, select, textarea):focus-visible {
  outline: 3px solid rgba(91, 59, 239, 0.3);
  outline-offset: 3px;
}

/* Legacy theme rules that would otherwise out-specify the FollNova tokens. */
/* `.storefront-page-surface > *` forces position:relative/z-index:1 on every
   direct child, which would otherwise cancel the sticky header. */
.social-storefront.fn-theme .fn-header {
  position: sticky;
  top: 0;
  z-index: 40;
}
.social-storefront.fn-theme main :where(h1, h2, h3) { color: var(--fn-ink); }
.social-storefront.fn-theme footer { border-top-color: rgba(12, 12, 26, 0.09) !important; }
.social-storefront.fn-theme :where(input, textarea, select) { accent-color: var(--fn-purple); }
.social-storefront.fn-theme :where(input, button, select, textarea) { font-family: inherit; }

.fn-shell {
  width: 100%;
  max-width: var(--fn-shell);
  margin: 0 auto;
}

/* Loading placeholders: shown instead of fallback copy while stored content
   loads, so the reader never sees text swap after a few hundred ms. */
@keyframes fnShimmer {
  from { transform: translateX(-100%); }
  to { transform: translateX(100%); }
}

.fn-skeleton {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  background: rgba(12, 12, 26, 0.06);
}

.fn-skeleton::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.75), transparent);
  animation: fnShimmer 1.4s ease-in-out infinite;
}

/* --------------------------------------------------------------------------
   Panels, forms and notices (contact, order tracker)
   -------------------------------------------------------------------------- */

.fn-panel {
  border: 1px solid var(--fn-line);
  border-radius: 22px;
  background: #ffffff;
  padding: clamp(20px, 3vw, 32px);
}

.fn-panel--muted { background: #f6f6fa; }

.fn-panel--accent {
  border-color: rgba(91, 59, 239, 0.25);
  background: linear-gradient(140deg, rgba(91, 59, 239, 0.07), rgba(0, 164, 114, 0.06));
}

.fn-field {
  display: grid;
  gap: 8px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--fn-strong);
}

.fn-input {
  width: 100%;
  height: 46px;
  padding: 0 14px;
  border-radius: 12px;
  border: 1px solid var(--fn-line-strong);
  background: #ffffff;
  font-family: inherit;
  font-size: 15px;
  font-weight: 400;
  color: var(--fn-ink);
  transition: border-color 0.16s ease, box-shadow 0.16s ease;
}

.fn-input::placeholder { color: #8b8b9e; }

.fn-input:focus {
  outline: none;
  border-color: var(--fn-purple);
  box-shadow: 0 0 0 3px rgba(91, 59, 239, 0.14);
}

.fn-input--icon { padding-left: 40px; }

textarea.fn-input {
  height: auto;
  padding: 12px 14px;
  line-height: 1.6;
  resize: vertical;
}

.fn-field__wrap { position: relative; }

.fn-field__icon {
  position: absolute;
  left: 13px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  color: var(--fn-muted-3);
  pointer-events: none;
}

.fn-note {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 12px;
  border: 1px solid var(--fn-line);
  background: var(--fn-surface-soft);
  font-size: 14px;
  font-weight: 500;
  color: var(--fn-muted);
}

.fn-note svg { width: 16px; height: 16px; flex: none; }
.fn-note--ok {
  border-color: rgba(0, 164, 114, 0.3);
  background: rgba(0, 164, 114, 0.08);
  color: var(--fn-green-deep);
}
.fn-note--error {
  border-color: rgba(220, 38, 38, 0.28);
  background: rgba(220, 38, 38, 0.06);
  color: #b91c1c;
}

.fn-empty {
  padding: clamp(40px, 6vw, 64px) 24px;
  border-radius: 22px;
  border: 1px dashed var(--fn-line-strong);
  background: #ffffff;
  text-align: center;
}

.fn-empty svg { width: 38px; height: 38px; color: var(--fn-muted-3); }

.fn-empty__title {
  margin-top: 18px;
  font-family: var(--fn-display);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--fn-ink);
}

.fn-empty p {
  margin: 10px auto 0;
  max-width: 460px;
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--fn-muted-2);
}

.fn-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 28px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid var(--fn-line);
  background: var(--fn-surface-soft);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--fn-strong);
}

.fn-status__dot { width: 7px; height: 7px; border-radius: 50%; background: currentColor; }
.fn-status[data-tone="progress"] { border-color: rgba(91, 59, 239, 0.3); background: rgba(91, 59, 239, 0.08); color: var(--fn-purple); }
.fn-status[data-tone="done"] { border-color: rgba(0, 164, 114, 0.3); background: rgba(0, 164, 114, 0.09); color: var(--fn-green-deep); }
.fn-status[data-tone="wait"] { border-color: rgba(166, 106, 0, 0.28); background: rgba(166, 106, 0, 0.08); color: var(--fn-amber); }
.fn-status[data-tone="error"] { border-color: rgba(220, 38, 38, 0.28); background: rgba(220, 38, 38, 0.06); color: #b91c1c; }

/* Contact page: one card — form on the left, direct methods on the right. */
.fn-contact-card {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: clamp(22px, 3vw, 38px);
  align-items: stretch;
}

.fn-contact-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

.fn-contact-side {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-left: clamp(22px, 3vw, 38px);
  border-left: 1px solid var(--fn-line);
}

.fn-contact-side__label {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fn-muted-3);
}

.fn-contact-method {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 14px;
  border-radius: 14px;
  border: 1px solid var(--fn-line);
  background: #ffffff;
  transition: border-color 0.16s ease, background 0.16s ease, transform 0.16s ease;
}

.fn-contact-method:hover {
  border-color: rgba(91, 59, 239, 0.4);
  background: rgba(91, 59, 239, 0.04);
  transform: translateY(-2px);
}

.fn-contact-method__icon {
  flex: none;
  width: 36px;
  height: 36px;
  border-radius: 11px;
  background: rgba(91, 59, 239, 0.1);
  color: var(--fn-purple);
  display: flex;
  align-items: center;
  justify-content: center;
}

.fn-contact-method__icon svg { width: 16px; height: 16px; }

.fn-contact-method__title {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--fn-muted-3);
}

.fn-contact-method__value {
  display: block;
  margin-top: 1px;
  font-size: 14px;
  font-weight: 700;
  color: var(--fn-ink);
  overflow-wrap: anywhere;
}

.fn-contact-facts {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--fn-line);
  display: grid;
  gap: 9px;
}

.fn-contact-fact {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 13px;
  line-height: 1.5;
  color: var(--fn-muted-2);
}

.fn-contact-fact svg { flex: none; margin-top: 2px; width: 14px; height: 14px; color: var(--fn-muted-3); }
.fn-contact-fact strong { color: var(--fn-strong); font-weight: 600; }

/* --------------------------------------------------------------------------
   Order tracker: split console — dark brand rail + receipts
   -------------------------------------------------------------------------- */

.fn-tk {
  display: grid;
  grid-template-columns: minmax(280px, 360px) minmax(0, 1fr);
  border: 1px solid var(--fn-line);
  border-radius: 24px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 30px 70px -40px rgba(12, 12, 26, 0.45);
}

.fn-tk__side {
  display: flex;
  flex-direction: column;
  padding: clamp(28px, 3.5vw, 44px) clamp(24px, 3vw, 36px);
  color: var(--fn-ink);
  border-right: 1px solid var(--fn-line);
  background:
    radial-gradient(120% 90% at 0% 0%, rgba(91, 59, 239, 0.08), transparent 62%),
    radial-gradient(120% 90% at 100% 100%, rgba(0, 164, 114, 0.07), transparent 62%),
    #fafaff;
}

.fn-tk__mark {
  width: 42px;
  height: 42px;
  border-radius: 12px;
}

.fn-tk__title {
  margin: 20px 0 0;
  font-family: var(--fn-display);
  font-size: clamp(26px, 2.6vw, 34px);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.05;
  color: var(--fn-ink);
}

.fn-tk__copy {
  margin: 12px 0 0;
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--fn-muted);
}

.fn-tk__points {
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
  display: grid;
  gap: 13px;
}

.fn-tk__points li {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--fn-strong);
}

.fn-tk__points svg {
  flex: none;
  width: 16px;
  height: 16px;
  color: var(--fn-green);
}

.fn-tk__support {
  margin-top: auto;
  padding-top: 30px;
  font-size: 13px;
  font-weight: 600;
  color: var(--fn-muted-3);
}

.fn-tk__support:hover { color: var(--fn-purple); }

.fn-tk__main {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: clamp(24px, 3vw, 40px);
}

.fn-tk__form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.fn-tk__submit { grid-column: 1 / -1; }

.fn-tk__hint {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 30px 20px;
  border: 1px dashed var(--fn-line-strong);
  border-radius: 14px;
  font-size: 13.5px;
  color: var(--fn-muted-3);
  text-align: center;
}

.fn-tk__hint svg { flex: none; width: 17px; height: 17px; }

/* Receipt card */
.fn-tk-receipt {
  border: 1px solid var(--fn-line);
  border-radius: 16px;
  padding: 18px 20px;
  background: #ffffff;
}

.fn-tk-receipt__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.fn-tk-receipt__total {
  font-family: var(--fn-display);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--fn-ink);
}

.fn-tk-receipt__id {
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  font-family: var(--fn-mono);
  font-size: 12.5px;
  color: var(--fn-muted-3);
}

.fn-tk-receipt__note {
  margin: 8px 0 0;
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--fn-muted-2);
}

.fn-tk-receipt__items {
  margin-top: 12px;
  border-top: 1px dashed var(--fn-line-strong);
}

.fn-tk-line {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  padding: 10px 0;
  border-bottom: 1px dashed var(--fn-line-soft);
}

.fn-tk-line:last-child { border-bottom: none; }
.fn-tk-line__info { min-width: 0; }

.fn-tk-line__name {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--fn-ink);
}

.fn-tk-line__tag {
  margin-left: 7px;
  padding: 1px 7px;
  border-radius: 999px;
  background: rgba(0, 164, 114, 0.12);
  color: var(--fn-green-deep);
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.fn-tk-line__meta {
  display: block;
  margin-top: 2px;
  font-size: 12.5px;
  color: var(--fn-muted-3);
  overflow-wrap: anywhere;
}

.fn-tk-line__amount {
  flex: none;
  font-size: 14px;
  font-weight: 700;
  color: var(--fn-ink);
}

.fn-tk-receipt__sums {
  margin: 0;
  padding-top: 10px;
  border-top: 1px dashed var(--fn-line-strong);
  display: grid;
  gap: 6px;
}

.fn-tk-receipt__sums > div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  font-size: 13px;
}

.fn-tk-receipt__sums dt { color: var(--fn-muted-2); }
.fn-tk-receipt__sums dd { margin: 0; font-weight: 600; color: var(--fn-strong); }

.fn-tk-receipt__sums > .is-total { padding-top: 5px; font-size: 15px; }
.fn-tk-receipt__sums > .is-total dt,
.fn-tk-receipt__sums > .is-total dd { font-weight: 800; color: var(--fn-ink); }

.fn-tk-receipt__updated {
  margin-top: 12px;
  font-family: var(--fn-mono);
  font-size: 11px;
  color: var(--fn-muted-3);
}

@media (max-width: 900px) {
  .fn-contact-card { grid-template-columns: minmax(0, 1fr); }
  .fn-tk { grid-template-columns: minmax(0, 1fr); }
  .fn-tk__side { padding: 24px 22px; }
  .fn-tk__title { margin-top: 14px; }
  .fn-tk__points { margin-top: 18px; }
  .fn-tk__support { margin-top: 20px; padding-top: 0; }
  .fn-contact-side {
    padding-left: 0;
    padding-top: 22px;
    border-left: none;
    border-top: 1px solid var(--fn-line);
  }
  .fn-contact-facts { margin-top: 4px; }
}

@media (max-width: 560px) {
  .fn-contact-row { grid-template-columns: minmax(0, 1fr); }
  .fn-tk__form { grid-template-columns: minmax(0, 1fr); }
  .fn-tk-line { flex-wrap: wrap; }
  .fn-tk-line__amount { width: 100%; text-align: right; }
}

/* Account auth tabs */
.fn-auth-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  padding: 4px;
  border-radius: 12px;
  background: var(--fn-surface-soft);
  border: 1px solid var(--fn-line);
}

.fn-auth-tabs button {
  height: 38px;
  border: none;
  border-radius: 9px;
  background: transparent;
  font-family: inherit;
  font-size: 14px;
  font-weight: 700;
  color: var(--fn-muted-2);
  cursor: pointer;
  transition: background 0.16s ease, color 0.16s ease;
}

.fn-auth-tabs button[data-active="true"] {
  background: #ffffff;
  color: var(--fn-ink);
  box-shadow: 0 4px 12px -4px rgba(12, 12, 26, 0.25);
}

/* Modal titles use the display face. */
.fn-modal-title {
  font-family: var(--fn-display);
  font-weight: 700;
  letter-spacing: -0.025em;
}

/* Custom / legal page content (admin-authored HTML). The rules override the
   utility classes baked into stored markup so every page reads on-brand. */
.fn-page-content {
  padding: clamp(24px, 3.4vw, 44px);
  border-radius: 22px;
  border: 1px solid var(--fn-line);
  background: #ffffff;
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--fn-muted);
  overflow-wrap: break-word;
}

.fn-page-content > * + * { margin-top: 1em; }

.fn-page-content :where(h1, h2, h3, h4) {
  font-family: var(--fn-display);
  letter-spacing: -0.025em;
  color: var(--fn-ink) !important;
  border: none !important;
}

.fn-page-content :where(h2) { margin-top: 2em; font-size: 21px; font-weight: 700; }
.fn-page-content :where(h3) { margin-top: 1.6em; font-size: 18px; font-weight: 700; }
.fn-page-content :where(h4) { margin-top: 1.4em; font-size: 16px; font-weight: 700; }
.fn-page-content > :first-child { margin-top: 0; }
.fn-page-content > :first-child :where(h2) { margin-top: 0; }

.fn-page-content :where(p, li) { color: var(--fn-muted); }
.fn-page-content :where(strong, b, .font-medium) { color: var(--fn-strong); }

.fn-page-content :where(a) {
  color: var(--fn-purple) !important;
  font-weight: 600;
}
.fn-page-content :where(a):hover { color: var(--fn-green-deep) !important; }

.fn-page-content :where(ul) { list-style: disc; padding-left: 1.4em; }
.fn-page-content :where(ol) { list-style: decimal; padding-left: 1.4em; }
.fn-page-content :where(li) + :where(li) { margin-top: 0.45em; }

.fn-page-content :where(blockquote) {
  border-left: 3px solid rgba(91, 59, 239, 0.4);
  background: rgba(91, 59, 239, 0.05);
  padding: 12px 18px;
  border-radius: 0 12px 12px 0;
}

.fn-page-content :where(code) {
  font-family: var(--fn-mono);
  font-size: 0.9em;
  background: rgba(12, 12, 26, 0.05);
  padding: 1px 5px;
  border-radius: 5px;
}

/* Callout boxes authored with template utility classes get the brand accent. */
.fn-page-content :where(.border-blue-500, .border-l-4) {
  border-left: 3px solid rgba(91, 59, 239, 0.45) !important;
  border-top: none;
  border-right: none;
  border-bottom: none;
}
.fn-page-content :where(.bg-gray-50, .bg-slate-50) {
  background: #f6f6fa !important;
  border-radius: 14px;
}

.fn-page-content :where(section) + :where(section) { margin-top: 1.8em; }
.fn-page-content img { max-width: 100%; height: auto; border-radius: 14px; }
.fn-page-content :where(table) { width: 100%; border-collapse: collapse; }
.fn-page-content :where(td, th) {
  border: 1px solid var(--fn-line);
  padding: 8px 12px;
  text-align: left;
}

.fn-section {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 0 clamp(16px, 3vw, 28px) 100px;
}

/* Keep in-page anchors clear of the sticky header. */
.social-storefront.fn-theme :is(#hero, #pricing, #how, #community, #compare, #reviewBlock, #faq) {
  scroll-margin-top: 96px;
}

.fn-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fn-purple);
}

.fn-eyebrow--green { color: var(--fn-green-deep); }

.fn-h2 {
  margin: 14px 0 0;
  font-family: var(--fn-display);
  font-weight: 800;
  font-size: clamp(30px, 4vw, 50px);
  line-height: 1.02;
  letter-spacing: -0.04em;
  color: var(--fn-ink);
  text-wrap: balance;
}

.fn-lede {
  margin: 14px 0 0;
  font-size: 16px;
  line-height: 1.6;
  color: var(--fn-muted-2);
  text-wrap: pretty;
}

.fn-grad {
  background: linear-gradient(96deg, #5b3bef 0%, #00a472 92%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Buttons ----------------------------------------------------------------- */

.fn-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  height: 46px;
  padding: 0 22px;
  border-radius: 12px;
  border: 1px solid transparent;
  font-size: 14.5px;
  font-weight: 700;
  letter-spacing: -0.01em;
  white-space: nowrap;
  cursor: pointer;
  transition: background 0.16s ease, color 0.16s ease, border-color 0.16s ease, transform 0.16s ease;
}

.fn-btn svg { width: 17px; height: 17px; flex: none; }

.fn-btn--dark {
  background: var(--fn-ink-2);
  color: #ffffff;
  box-shadow: 0 6px 18px rgba(20, 20, 45, 0.2);
}
.fn-btn--dark:hover {
  background: var(--fn-purple);
  color: #ffffff;
  transform: translateY(-2px);
}

.fn-btn--ghost {
  background: transparent;
  color: var(--fn-ink);
  border-color: rgba(12, 12, 26, 0.22);
}
.fn-btn--ghost:hover {
  border-color: var(--fn-ink);
  color: var(--fn-ink);
  background: rgba(12, 12, 26, 0.035);
}

.fn-btn--lg {
  height: 56px;
  padding: 0 30px;
  border-radius: 14px;
  font-family: var(--fn-display);
  font-size: 17px;
  letter-spacing: -0.015em;
}

.fn-btn--lg.fn-btn--dark { box-shadow: 0 16px 38px -16px rgba(20, 20, 45, 0.5); }

/* --------------------------------------------------------------------------
   Header
   -------------------------------------------------------------------------- */

.fn-header {
  position: sticky;
  inset-inline: 0;
  top: 0;
  /* Stays below the cart drawer (z-50) and the modals, as before. */
  z-index: 40;
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 0 clamp(14px, 2.4vw, 28px);
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(12, 12, 26, 0.09);
}

.fn-header__inner {
  width: 100%;
  max-width: var(--fn-shell);
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.4vw, 40px);
  height: 74px;
}

.fn-brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--fn-ink);
  flex: none;
}

/* Height-driven so a tightly-cropped logo fills the slot instead of being
   letterboxed inside a fixed-width box. */
.fn-brand__logo {
  height: 34px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  object-position: left center;
  display: block;
}

@media (max-width: 1079px) {
  .fn-brand__logo { height: 30px; max-width: 160px; }
}

.fn-brand__mark {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: linear-gradient(140deg, #5b3bef 0%, #00a472 130%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--fn-display);
  font-weight: 800;
  font-size: 17px;
  color: #ffffff;
  box-shadow: 0 6px 18px rgba(91, 59, 239, 0.32);
}

.fn-brand__word {
  font-family: var(--fn-display);
  font-weight: 700;
  font-size: 21px;
  letter-spacing: -0.03em;
  color: var(--fn-ink);
}

.fn-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  min-width: 0;
}

.fn-nav__item { position: relative; }

.fn-nav__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 38px;
  padding: 0 10px;
  border: none;
  background: transparent;
  border-radius: 10px;
  font-family: inherit;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--fn-muted);
  white-space: nowrap;
  cursor: pointer;
  transition: color 0.18s ease, background 0.18s ease;
}

.fn-nav__link:hover {
  color: var(--fn-ink);
  background: rgba(12, 12, 26, 0.04);
}

.fn-nav__chev {
  width: 13px;
  height: 13px;
  transition: transform 0.2s ease;
}

.fn-nav__item:hover .fn-nav__chev { transform: rotate(180deg); }

/* Platform logos keep their real brand colours. */
.fn-nav__icon {
  width: 16px;
  height: 16px;
  object-fit: contain;
}

.fn-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  z-index: 70;
  width: 288px;
  padding: 8px;
  transform: translate(-50%, 8px);
  border-radius: 18px;
  border: 1px solid var(--fn-line);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 24px 48px -20px rgba(12, 12, 26, 0.32);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
}

/* Bridges the gap between the trigger and the panel so the hover never drops. */
.fn-menu::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -10px;
  height: 10px;
}

.fn-nav__item:hover .fn-menu,
.fn-nav__item:focus-within .fn-menu {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.fn-menu__link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 500;
  color: var(--fn-strong);
  transition: background 0.16s ease, color 0.16s ease;
}

.fn-menu__link:hover {
  background: rgba(91, 59, 239, 0.08);
  color: var(--fn-ink);
}

.fn-menu__link svg { width: 17px; height: 17px; color: var(--fn-purple); flex: none; }

.fn-header__spacer { flex: 1; }

.fn-header__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: none;
}

.fn-icon-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 11px;
  border: 1px solid var(--fn-line);
  background: rgba(12, 12, 26, 0.03);
  color: var(--fn-ink);
  cursor: pointer;
  transition: background 0.16s ease, border-color 0.16s ease;
}

.fn-icon-btn:hover {
  background: rgba(12, 12, 26, 0.06);
  border-color: rgba(12, 12, 26, 0.2);
}

.fn-icon-btn__count {
  position: absolute;
  top: -5px;
  right: -5px;
  min-width: 18px;
  height: 18px;
  padding: 0 4px;
  border-radius: 999px;
  background: linear-gradient(140deg, #5b3bef, #00a472 150%);
  color: #ffffff;
  font-size: 10px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fn-header__mobile {
  display: none;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  height: 66px;
}

.fn-mobile-panel {
  position: absolute;
  left: clamp(14px, 2.4vw, 28px);
  right: clamp(14px, 2.4vw, 28px);
  top: 100%;
  z-index: 65;
  max-height: min(76vh, 640px);
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 14px;
  border-radius: 22px;
  border: 1px solid var(--fn-line);
  background: #ffffff;
  box-shadow: 0 28px 60px -24px rgba(12, 12, 26, 0.38);
  transition: opacity 0.24s ease, transform 0.24s ease, visibility 0.24s;
}

.fn-mobile-panel[data-open="false"] {
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
}

.fn-mobile-panel[data-open="true"] {
  opacity: 1;
  visibility: visible;
  transform: none;
}

.fn-mobile-panel__label {
  padding: 6px 4px 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fn-muted-4);
}

.fn-mobile-group {
  border: 1px solid var(--fn-line);
  border-radius: 16px;
  overflow: hidden;
  background: #ffffff;
}

.fn-mobile-group + .fn-mobile-group { margin-top: 8px; }

.fn-mobile-group__head {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 13px 14px;
  border: none;
  background: transparent;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  color: var(--fn-ink);
  cursor: pointer;
  text-align: left;
}

.fn-mobile-group__head img { width: 18px; height: 18px; object-fit: contain; }

.fn-mobile-group__body {
  display: grid;
  gap: 4px;
  padding: 0 8px 10px;
}

.fn-mobile-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 12px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 500;
  color: var(--fn-strong);
  background: rgba(12, 12, 26, 0.025);
}

.fn-mobile-link svg { width: 16px; height: 16px; color: var(--fn-purple); flex: none; }
.fn-mobile-link .fn-mobile-link__chev { margin-left: auto; color: var(--fn-muted-3); }

/* Announcement bar --------------------------------------------------------- */

.fn-announce {
  position: relative;
  isolation: isolate;
  width: 100%;
  overflow: hidden;
  background: var(--fn-ink-2);
  color: #ffffff;
}

.fn-announce__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(60% 180% at 12% 50%, rgba(91, 59, 239, 0.55) 0%, rgba(91, 59, 239, 0) 70%),
    radial-gradient(52% 170% at 88% 50%, rgba(0, 164, 114, 0.4) 0%, rgba(0, 164, 114, 0) 72%);
}

.fn-announce__inner {
  position: relative;
  width: 100%;
  max-width: var(--fn-shell);
  margin: 0 auto;
  padding: 9px clamp(14px, 2.4vw, 28px);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.fn-announce__badge {
  display: inline-flex;
  align-items: center;
  height: 24px;
  padding: 0 11px;
  border-radius: 999px;
  background: linear-gradient(96deg, #5b3bef, #00a472 180%);
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ffffff;
}

.fn-announce__offer {
  font-family: var(--fn-display);
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #ffffff;
}

.fn-announce__offer small {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  margin-left: 3px;
}

.fn-announce__text {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.76);
}

.fn-announce__code {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  height: 32px;
  padding: 0 6px 0 12px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  cursor: pointer;
  transition: background 0.16s ease, border-color 0.16s ease;
}

.fn-announce__code:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.36);
}

.fn-announce__code-value {
  font-family: var(--fn-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.fn-announce__code-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.12);
}

.fn-announce__code-icon svg { width: 13px; height: 13px; }

.fn-announce__timer {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.66);
}

.fn-announce__clock {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: var(--fn-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
  color: #ffffff;
}

.fn-announce__clock span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 26px;
  height: 24px;
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.1);
}

/* Checkout header --------------------------------------------------------- */

.fn-checkout-header {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 0 clamp(14px, 2.4vw, 28px);
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(12, 12, 26, 0.09);
}

.fn-checkout-header__inner {
  width: 100%;
  max-width: 1080px;
  min-height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.fn-checkout-header__secure {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--fn-green-deep);
}

.fn-checkout-header__secure svg { width: 15px; height: 15px; }

.fn-checkout-header__divider {
  width: 1px;
  height: 26px;
  background: var(--fn-line);
}

/* --------------------------------------------------------------------------
   Live order ticker
   -------------------------------------------------------------------------- */

.fn-ticker {
  position: relative;
  width: 100%;
  padding: 14px 0;
  border-top: 1px solid rgba(12, 12, 26, 0.09);
  border-bottom: 1px solid rgba(12, 12, 26, 0.09);
  background: rgba(12, 12, 26, 0.025);
  overflow: hidden;
}

.fn-ticker__track {
  display: flex;
  width: max-content;
  animation: fnMarquee 48s linear infinite;
}

.fn-ticker__group { display: flex; }

.fn-ticker__item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 26px;
  border-right: 1px solid rgba(12, 12, 26, 0.09);
  font-size: 13px;
  color: var(--fn-muted-4);
  white-space: nowrap;
}

.fn-ticker__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--fn-green);
  flex: none;
}

.fn-ticker__who { font-weight: 600; color: var(--fn-strong); }

.fn-ticker__when {
  font-family: var(--fn-mono);
  font-size: 11.5px;
  color: var(--fn-muted-3);
}

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */

/* Shared backdrop for hero + packages: the glows and grid mesh live on this
   wrapper so they flow from the headline straight through the pricing cards. */
.fn-landing-top {
  position: relative;
  overflow: hidden;
}

.fn-landing-top > section {
  position: relative; /* keeps content painting above the backdrop */
}

.fn-hero {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  /* Compact: the platform picker below should be visible without scrolling. */
  padding: clamp(24px, 3vw, 36px) clamp(16px, 3vw, 28px) clamp(24px, 2.6vw, 34px);
}

.fn-hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(20px);
  pointer-events: none;
}

.fn-hero__glow--a {
  top: -340px;
  left: -180px;
  width: 900px;
  height: 900px;
  background: radial-gradient(circle, rgba(91, 59, 239, 0.16) 0%, rgba(91, 59, 239, 0) 62%);
  animation: fnDrift 22s ease-in-out infinite;
}

.fn-hero__glow--b {
  top: -120px;
  right: -260px;
  width: 820px;
  height: 820px;
  background: radial-gradient(circle, rgba(0, 164, 114, 0.13) 0%, rgba(0, 164, 114, 0) 64%);
  animation: fnDrift 27s ease-in-out infinite reverse;
}

.fn-hero__mesh {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: min(1300px, 100%);
  pointer-events: none;
  background-image:
    linear-gradient(rgba(12, 12, 26, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(12, 12, 26, 0.05) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, #000 0%, transparent 94%);
  -webkit-mask-image: linear-gradient(180deg, #000 0%, transparent 94%);
}

.fn-hero__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  animation: fnUp 0.8s cubic-bezier(0.2, 0.7, 0.3, 1) both;
}

.fn-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 34px;
  padding: 4px 8px 4px 12px;
  border-radius: 999px;
  border: 1px solid var(--fn-line-strong);
  background: rgba(12, 12, 26, 0.04);
  font-size: 13px;
  font-weight: 600;
  color: var(--fn-strong);
  flex-wrap: wrap;
  justify-content: center;
}

.fn-badge__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--fn-green);
  box-shadow: 0 0 10px var(--fn-green);
  animation: fnPulse 1.8s ease-in-out infinite;
  flex: none;
}

.fn-badge__pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  height: 22px;
  padding: 0 9px;
  border-radius: 999px;
  background: rgba(0, 164, 114, 0.12);
  color: var(--fn-green-deep);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.fn-hero__title {
  margin: 16px 0 0;
  font-family: var(--fn-display);
  font-weight: 800;
  font-size: clamp(28px, 3.8vw, 50px);
  line-height: 1.02;
  letter-spacing: -0.04em;
  color: var(--fn-ink);
  text-wrap: balance;
}

.fn-hero__sub {
  margin: 12px auto 0;
  max-width: 580px;
  font-size: clamp(14px, 1.15vw, 16px);
  line-height: 1.55;
  color: var(--fn-muted);
  text-wrap: pretty;
}

.fn-hero__actions {
  margin-top: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.fn-hero__trust {
  margin-top: 34px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 10px 18px 10px 12px;
  border-radius: 999px;
  border: 1px solid var(--fn-line);
  background: rgba(12, 12, 26, 0.028);
  flex-wrap: wrap;
  justify-content: center;
}

.fn-avatars { display: inline-flex; align-items: center; }

.fn-avatars span {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 2px solid #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(12, 12, 26, 0.18);
}

.fn-avatars span + span { margin-left: -11px; }

.fn-hero__trust-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  text-align: left;
}

.fn-hero__trust-copy strong {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--fn-ink);
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.fn-stars { color: var(--fn-amber); letter-spacing: 0.08em; }

.fn-hero__trust-copy span {
  font-size: 12.5px;
  color: var(--fn-muted-2);
}

.fn-hero__chips {
  margin-top: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.fn-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid var(--fn-line);
  background: #ffffff;
  font-size: 13px;
  font-weight: 500;
  color: var(--fn-muted-2);
}

.fn-chip strong { color: var(--fn-green-deep); font-weight: 700; }

/* --------------------------------------------------------------------------
   Pricing
   -------------------------------------------------------------------------- */

.fn-pricing { padding-bottom: 96px; }

.fn-tabs {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.fn-tab {
  cursor: pointer;
  width: 132px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 16px 12px 13px;
  border-radius: 16px;
  border: 1px solid var(--fn-line);
  background: #ffffff;
  font-family: inherit;
  font-size: 14px;
  font-weight: 700;
  color: var(--fn-muted-2);
  text-decoration: none;
  transition: all 0.16s ease;
}

.fn-tab:hover { color: var(--fn-ink); }

.fn-tab:hover { border-color: rgba(91, 59, 239, 0.45); }

.fn-tab[data-active="true"] {
  background: rgba(91, 59, 239, 0.09);
  border-color: rgba(91, 59, 239, 0.55);
  color: var(--fn-ink);
}

.fn-tab__mark {
  flex: none;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 19px;
}

.fn-tab__mark img { width: 22px; height: 22px; object-fit: contain; filter: brightness(0) invert(1); }

.fn-pills {
  margin-top: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  flex-wrap: wrap;
}

.fn-pill {
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 36px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid var(--fn-line);
  background: transparent;
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  color: var(--fn-muted-2);
  text-decoration: none;
  transition: all 0.16s ease;
}

.fn-pill:hover { border-color: rgba(91, 59, 239, 0.45); color: var(--fn-ink); }

.fn-pill[data-active="true"] {
  background: rgba(91, 59, 239, 0.1);
  border-color: rgba(91, 59, 239, 0.45);
  color: var(--fn-ink);
}

.fn-pill svg { width: 15px; height: 15px; flex: none; }

/* Tier cards: one card per quality tier, quantity picked inside the card. */
.fn-tiers {
  margin: 18px auto 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
  max-width: 980px;
}

.fn-tiers[data-count="1"] { max-width: 380px; }
.fn-tiers[data-count="2"] { max-width: 680px; }
.fn-tiers[data-count="4"] { max-width: 1240px; }

/* Grid context: neutralise the flex sizing fn-card carries from the old row. */
.fn-tier-card { flex: none; width: 100%; }

.fn-tier-card__name {
  font-family: var(--fn-display);
  font-size: 21px;
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--fn-ink);
}

.fn-tier-card__tagline {
  margin-top: 3px;
  font-size: 12.5px;
  color: var(--fn-muted-3);
  /* Always a single tidy line. */
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Quantity stepper */
.fn-qty {
  margin-top: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 8px;
  border-radius: 14px;
  border: 1px solid var(--fn-line);
  background: var(--fn-surface-soft);
}

.fn-qty__btn {
  flex: none;
  width: 40px;
  height: 40px;
  border-radius: 11px;
  border: 1px solid var(--fn-line-strong);
  background: #ffffff;
  font-family: inherit;
  font-size: 19px;
  font-weight: 700;
  line-height: 1;
  color: var(--fn-ink);
  cursor: pointer;
  transition: border-color 0.15s ease, color 0.15s ease, background 0.15s ease;
}

.fn-qty__btn:hover:not(:disabled) {
  border-color: var(--fn-purple);
  color: var(--fn-purple);
}

.fn-qty__btn:disabled {
  opacity: 0.35;
  cursor: default;
}

.fn-qty__value {
  flex: 1;
  text-align: center;
  min-width: 0;
}

.fn-qty__value strong {
  display: block;
  font-family: var(--fn-display);
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--fn-ink);
  font-variant-numeric: tabular-nums;
}

.fn-qty__value span {
  display: block;
  margin-top: 1px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fn-muted-3);
}

/* Tier rows: each tier gets its own labelled left→right line of cards. */
.fn-tier-block + .fn-tier-block { margin-top: 10px; }

.fn-tier-block__head {
  margin-top: 18px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.fn-tier-block__label {
  flex: none;
  padding: 5px 13px;
  border-radius: 999px;
  background: rgba(91, 59, 239, 0.1);
  border: 1px solid rgba(91, 59, 239, 0.25);
  color: var(--fn-purple);
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.fn-tier-block__rule {
  flex: 1;
  height: 1px;
  background: var(--fn-line);
}

/* Prev/next paging buttons for each card row. */
.fn-row { position: relative; }

.fn-row__nav {
  position: absolute;
  top: 50%;
  z-index: 5;
  width: 40px;
  height: 40px;
  transform: translateY(-50%);
  border-radius: 50%;
  border: 1px solid var(--fn-line-strong);
  background: #ffffff;
  color: var(--fn-ink);
  box-shadow: 0 12px 28px -10px rgba(12, 12, 26, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.16s ease, color 0.16s ease, transform 0.16s ease;
}

.fn-row__nav:hover {
  background: var(--fn-ink-2);
  color: #ffffff;
  transform: translateY(-50%) scale(1.05);
}

.fn-row__nav svg { width: 18px; height: 18px; }
.fn-row__nav--prev { left: -10px; }
.fn-row__nav--next { right: -10px; }

@media (max-width: 767px) {
  .fn-row__nav { width: 36px; height: 36px; }
  .fn-row__nav--prev { left: -4px; }
  .fn-row__nav--next { right: -4px; }
}

/* Packages read left → right in one row; extras scroll horizontally with
   snap points, on desktop and mobile alike. */
.fn-cards {
  margin-top: 16px;
  display: flex;
  align-items: stretch;
  gap: 18px;
  overflow-x: auto;
  /* Top padding leaves room for the "Most popular" flag and the hover lift,
     which would otherwise be clipped by the scroll container. */
  padding: 20px 4px 18px;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: rgba(12, 12, 26, 0.25) transparent;
}

.fn-cards::-webkit-scrollbar { height: 8px; }
.fn-cards::-webkit-scrollbar-track { background: rgba(12, 12, 26, 0.05); border-radius: 999px; }
.fn-cards::-webkit-scrollbar-thumb { background: rgba(12, 12, 26, 0.22); border-radius: 999px; }
.fn-cards::-webkit-scrollbar-thumb:hover { background: rgba(91, 59, 239, 0.45); }

.fn-card {
  position: relative;
  display: flex;
  flex-direction: column;
  flex: 0 0 268px;
  min-width: 0;
  scroll-snap-align: start;
  padding: 28px 24px 26px;
  border-radius: 22px;
  border: 1px solid rgba(12, 12, 26, 0.11);
  background: #ffffff;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.fn-card:hover {
  transform: translateY(-6px);
  border-color: rgba(91, 59, 239, 0.5);
  box-shadow: 0 24px 48px -28px rgba(12, 12, 26, 0.4);
}

.fn-card.is-popular {
  background: linear-gradient(180deg, rgba(91, 59, 239, 0.11), #ffffff 62%);
  border-color: rgba(91, 59, 239, 0.5);
}

.fn-card__flag {
  position: absolute;
  top: -11px;
  left: 24px;
  height: 23px;
  padding: 0 11px;
  border-radius: 999px;
  background: linear-gradient(96deg, #5b3bef, #00a472 180%);
  display: inline-flex;
  align-items: center;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #ffffff;
}

.fn-card__service {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  font-size: 13px;
  font-weight: 600;
  color: var(--fn-muted-2);
}

.fn-card__tier {
  margin-left: auto;
  padding: 3px 9px;
  border-radius: 999px;
  background: rgba(91, 59, 239, 0.1);
  color: var(--fn-purple);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}

.fn-card__ico {
  flex: none;
  width: 22px;
  height: 22px;
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
}

.fn-card__ico svg { width: 13px; height: 13px; }

.fn-card__qty {
  margin-top: 8px;
  font-family: var(--fn-display);
  font-size: 34px;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--fn-ink);
}

.fn-card__price {
  margin-top: 16px;
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 4px 8px;
}

.fn-card__amount {
  font-family: var(--fn-display);
  font-size: 30px;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--fn-ink);
}

.fn-card.is-popular .fn-card__amount { color: var(--fn-green-mid); }

.fn-card__was {
  font-size: 13px;
  color: var(--fn-muted-3);
  text-decoration: line-through;
}

.fn-card__per {
  margin-top: 4px;
  font-family: var(--fn-mono);
  font-size: 11.5px;
  color: var(--fn-muted-4);
}

.fn-card__rule {
  margin: 22px 0 24px;
  height: 1px;
  background: rgba(12, 12, 26, 0.11);
}

.fn-card__features {
  display: flex;
  flex-direction: column;
  gap: 11px;
  flex: 1;
}

.fn-feat {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 13.5px;
  line-height: 1.45;
  color: var(--fn-muted);
}

.fn-feat__tick {
  flex: none;
  margin-top: 2px;
  width: 15px;
  height: 15px;
  border-radius: 5px;
  background: rgba(0, 164, 114, 0.13);
  color: var(--fn-green-deep);
  display: flex;
  align-items: center;
  justify-content: center;
}

.fn-feat__tick svg { width: 10px; height: 10px; }

.fn-feat strong { color: var(--fn-strong); font-weight: 700; }

.fn-card__cta {
  margin-top: 26px;
  width: 100%;
  height: 46px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: inherit;
  font-size: 14.5px;
  font-weight: 700;
  letter-spacing: -0.01em;
  border: 1px solid rgba(12, 12, 26, 0.19);
  background: transparent;
  color: var(--fn-ink);
  cursor: pointer;
  transition: all 0.16s ease;
}

.fn-card.is-popular .fn-card__cta {
  background: var(--fn-purple);
  border-color: var(--fn-purple);
  color: #ffffff;
}

.fn-card__cta:hover {
  background: var(--fn-ink-2);
  border-color: var(--fn-ink-2);
  color: #ffffff;
}

.fn-pricing__foot {
  margin-top: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  font-size: 14px;
  color: var(--fn-muted-4);
}

.fn-pricing__foot a { font-weight: 700; color: var(--fn-purple); }
.fn-pricing__foot a:hover { color: var(--fn-green-deep); }

/* --------------------------------------------------------------------------
   Stats band
   -------------------------------------------------------------------------- */

.fn-stats {
  padding: clamp(48px, 5vw, 74px) clamp(16px, 3vw, 28px);
  display: flex;
  justify-content: center;
  width: 100%;
}

.fn-stats__grid {
  width: 100%;
  max-width: var(--fn-shell);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1px;
  background: var(--fn-line);
  border: 1px solid var(--fn-line);
  border-radius: 20px;
  overflow: hidden;
}

.fn-stat { background: #ffffff; padding: 30px 24px; }

.fn-stat__value {
  font-family: var(--fn-display);
  font-size: clamp(28px, 2.6vw, 38px);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--fn-ink);
  font-variant-numeric: tabular-nums;
}

.fn-stat__value small { font-size: 20px; color: var(--fn-muted-2); font-weight: 800; }
.fn-stat--green .fn-stat__value { color: var(--fn-green-deep); }

.fn-stat__label {
  margin-top: 6px;
  font-size: 14px;
  color: var(--fn-muted-2);
}

/* --------------------------------------------------------------------------
   How it works
   -------------------------------------------------------------------------- */

.fn-steps { padding-top: clamp(20px, 3vw, 40px); }

.fn-steps__grid {
  margin-top: 46px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.fn-step {
  position: relative;
  padding: 30px 28px 32px;
  border-radius: 20px;
  border: 1px solid var(--fn-line);
  background: linear-gradient(180deg, rgba(12, 12, 26, 0.045), rgba(12, 12, 26, 0.018));
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.fn-step:hover {
  border-color: rgba(91, 59, 239, 0.45);
  transform: translateY(-4px);
}

.fn-step__num {
  font-family: var(--fn-mono);
  font-size: 12px;
  font-weight: 700;
  color: var(--fn-purple);
  letter-spacing: 0.08em;
}

.fn-step__title {
  margin-top: 16px;
  font-family: var(--fn-display);
  font-size: 23px;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--fn-ink);
}

.fn-step p {
  margin: 10px 0 0;
  font-size: 15px;
  line-height: 1.6;
  color: var(--fn-muted-2);
  text-wrap: pretty;
}

/* --------------------------------------------------------------------------
   Benefits
   -------------------------------------------------------------------------- */

.fn-benefits__grid {
  margin-top: 46px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
}

.fn-benefit {
  padding: 28px 26px 30px;
  border-radius: 20px;
  border: 1px solid var(--fn-line);
  background: #ffffff;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.fn-benefit:hover {
  border-color: rgba(12, 12, 26, 0.22);
  background: #f6f6fa;
}

.fn-benefit__icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(91, 59, 239, 0.13);
  border: 1px solid rgba(91, 59, 239, 0.28);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  color: var(--fn-purple);
}

.fn-benefit__icon svg { width: 19px; height: 19px; }

.fn-benefit__title {
  margin-top: 18px;
  font-family: var(--fn-display);
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--fn-ink);
}

.fn-benefit p {
  margin: 9px 0 0;
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--fn-muted-2);
  text-wrap: pretty;
}

/* --------------------------------------------------------------------------
   Compare table
   -------------------------------------------------------------------------- */

.fn-compare__frame {
  border: 1px solid rgba(12, 12, 26, 0.11);
  border-radius: 22px;
  overflow-x: auto;
  overflow-y: hidden;
  background: #ffffff;
}

.fn-compare__table { min-width: 800px; }

.fn-compare__row {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  border-bottom: 1px solid var(--fn-line-soft);
}

.fn-compare__row:last-child { border-bottom: none; }

.fn-compare__row--head {
  background: rgba(91, 59, 239, 0.07);
  border-bottom: 1px solid rgba(12, 12, 26, 0.11);
}

.fn-compare__row--head > div { padding: 20px 22px; }
.fn-compare__row--head > div + div { border-left: 1px solid rgba(12, 12, 26, 0.11); }

.fn-compare__head-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--fn-muted-4);
  padding-left: 26px !important;
}

.fn-compare__head-us {
  font-family: var(--fn-display);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--fn-ink);
  background: rgba(91, 59, 239, 0.1);
}

.fn-compare__head-them {
  font-size: 15px;
  font-weight: 600;
  color: var(--fn-muted-2);
}

.fn-compare__cell { padding: 19px 22px; font-size: 14.5px; color: var(--fn-muted-2); }
.fn-compare__cell + .fn-compare__cell { border-left: 1px solid var(--fn-line-soft); }

.fn-compare__cell--label {
  padding-left: 26px;
  font-weight: 600;
  color: var(--fn-strong);
}

.fn-compare__cell--us {
  font-weight: 700;
  color: var(--fn-green-deep);
  background: rgba(91, 59, 239, 0.05);
}

/* --------------------------------------------------------------------------
   Reviews
   -------------------------------------------------------------------------- */

.fn-reviews__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}

.fn-reviews__score {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 20px;
  border-radius: 16px;
  border: 1px solid rgba(12, 12, 26, 0.11);
  background: rgba(12, 12, 26, 0.035);
}

.fn-reviews__score-value {
  font-family: var(--fn-display);
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--fn-ink);
}

.fn-reviews__score-meta { font-size: 12.5px; color: var(--fn-muted-2); margin-top: 3px; }

.fn-reviews__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 18px;
}

.fn-review {
  display: flex;
  flex-direction: column;
  padding: 26px 24px;
  border-radius: 20px;
  border: 1px solid var(--fn-line);
  background: #ffffff;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.fn-review:hover { transform: translateY(-4px); border-color: rgba(12, 12, 26, 0.19); }

.fn-review__head { display: flex; align-items: center; gap: 12px; }

.fn-review__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
  flex: none;
}

.fn-review__name { font-size: 14.5px; font-weight: 700; color: var(--fn-ink); }
.fn-review__meta { font-size: 12.5px; color: var(--fn-muted-4); }

.fn-review__verified {
  font-size: 11px;
  font-weight: 700;
  color: var(--fn-green-deep);
  background: rgba(0, 164, 114, 0.11);
  padding: 4px 8px;
  border-radius: 6px;
  flex: none;
}

.fn-review__stars { margin-top: 16px; font-size: 13px; letter-spacing: 0.08em; color: var(--fn-amber); }

.fn-review p {
  margin: 11px 0 0;
  font-size: 14.5px;
  line-height: 1.62;
  color: var(--fn-muted);
  text-wrap: pretty;
}

.fn-reviews__actions {
  margin-top: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* --------------------------------------------------------------------------
   FAQ
   -------------------------------------------------------------------------- */

.fn-faq__inner { width: 100%; max-width: 1000px; margin: 0 auto; }

.fn-faq__head { text-align: center; margin-bottom: 44px; }

.fn-faq__list { display: flex; flex-direction: column; gap: 10px; }

.fn-faq__item {
  border-radius: 16px;
  background: #ffffff;
  overflow: hidden;
  border: 1px solid rgba(12, 12, 26, 0.11);
  transition: border-color 0.2s ease;
}

.fn-faq__item[data-open="true"] { border-color: rgba(91, 59, 239, 0.4); }

.fn-faq__trigger {
  cursor: pointer;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 20px 24px;
  border: none;
  background: transparent;
  text-align: left;
  font-family: inherit;
}

.fn-faq__q {
  flex: 1;
  font-size: 16.5px;
  font-weight: 600;
  letter-spacing: -0.015em;
  color: var(--fn-ink);
}

.fn-faq__sym {
  flex: none;
  width: 28px;
  height: 28px;
  border-radius: 9px;
  border: 1px solid var(--fn-line-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--fn-muted);
  transition: all 0.18s ease;
}

.fn-faq__sym svg { width: 15px; height: 15px; transition: transform 0.22s ease; }

.fn-faq__item[data-open="true"] .fn-faq__sym {
  background: var(--fn-purple);
  border-color: var(--fn-purple);
  color: #ffffff;
}

.fn-faq__item[data-open="true"] .fn-faq__sym svg { transform: rotate(180deg); }

.fn-faq__a {
  margin: 0;
  padding: 0 68px 24px 24px;
  font-size: 15px;
  line-height: 1.68;
  color: var(--fn-muted-2);
  animation: fnIn 0.24s ease both;
  text-wrap: pretty;
}

/* --------------------------------------------------------------------------
   Closing CTA
   -------------------------------------------------------------------------- */

.fn-cta__panel {
  position: relative;
  width: 100%;
  max-width: var(--fn-shell);
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(12, 12, 26, 0.12);
  background: linear-gradient(130deg, #f4f1ff 0%, #ffffff 46%, #ecfaf4 100%);
  padding: clamp(36px, 5vw, 72px) clamp(24px, 4vw, 56px);
}

.fn-cta__glow {
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  pointer-events: none;
}

.fn-cta__glow--a {
  top: -160px;
  right: -80px;
  background: radial-gradient(circle, rgba(0, 164, 114, 0.1), transparent 66%);
}

.fn-cta__glow--b {
  bottom: -200px;
  left: -60px;
  background: radial-gradient(circle, rgba(91, 59, 239, 0.12), transparent 66%);
}

.fn-cta__body { position: relative; max-width: 760px; }

.fn-cta__title {
  margin: 0;
  font-family: var(--fn-display);
  font-weight: 800;
  font-size: clamp(30px, 4.4vw, 58px);
  line-height: 1;
  letter-spacing: -0.045em;
  color: var(--fn-ink);
  text-wrap: balance;
}

.fn-cta__copy {
  margin: 22px 0 0;
  max-width: 560px;
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 1.55;
  color: var(--fn-muted);
}

.fn-cta__actions {
  margin-top: 36px;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */

.fn-footer {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 0 clamp(16px, 3vw, 28px) 48px;
  border-top: 1px solid rgba(12, 12, 26, 0.09);
  background: #ffffff;
}

.fn-footer__inner {
  width: 100%;
  max-width: var(--fn-shell);
  padding-top: 56px;
}

.fn-footer__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 40px;
}

.fn-footer__blurb {
  margin: 18px 0 0;
  max-width: 300px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--fn-muted-4);
}

.fn-footer__pay {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.fn-footer__pay span {
  height: 30px;
  padding: 0 10px;
  border-radius: 8px;
  border: 1px solid rgba(12, 12, 26, 0.12);
  background: rgba(12, 12, 26, 0.04);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  color: var(--fn-muted-2);
}

.fn-footer__pay img { height: 15px; width: auto; object-fit: contain; }

.fn-footer__col-title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fn-ink);
}

.fn-footer__links {
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.fn-footer__links a {
  font-size: 14px;
  color: var(--fn-muted-4);
  transition: color 0.16s ease;
}

.fn-footer__links a:hover { color: var(--fn-green-deep); }

.fn-footer__bar {
  margin-top: 52px;
  padding-top: 26px;
  border-top: 1px solid rgba(12, 12, 26, 0.09);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--fn-muted-3);
}

.fn-footer__bar-links { display: flex; gap: 22px; flex-wrap: wrap; }
.fn-footer__bar-links a { color: var(--fn-muted-3); }
.fn-footer__bar-links a:hover { color: var(--fn-ink); }

.fn-footer__trust {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--fn-line);
  background: rgba(0, 164, 114, 0.06);
  font-size: 12.5px;
  font-weight: 600;
  color: var(--fn-green-deep);
}

.fn-footer__trust svg { width: 14px; height: 14px; }

/* --------------------------------------------------------------------------
   Insights (media mentions)
   -------------------------------------------------------------------------- */

.fn-insights__grid {
  margin-top: 46px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 18px;
}

.fn-insight {
  display: flex;
  flex-direction: column;
  border-radius: 22px;
  border: 1px solid var(--fn-line);
  background: #ffffff;
  overflow: hidden;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.fn-insight:hover { transform: translateY(-4px); border-color: rgba(91, 59, 239, 0.35); }

.fn-insight__media { position: relative; aspect-ratio: 16 / 9; overflow: hidden; background: #f2f2f7; }

.fn-insight__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.fn-insight__body { padding: 24px 24px 26px; }

.fn-insight__tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  height: 26px;
  padding: 0 11px;
  border-radius: 999px;
  background: rgba(91, 59, 239, 0.09);
  color: var(--fn-purple);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.fn-insight__title {
  margin: 14px 0 0;
  font-family: var(--fn-display);
  font-size: 21px;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--fn-ink);
}

.fn-insight__body p {
  margin: 10px 0 0;
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--fn-muted-2);
  text-wrap: pretty;
}

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */

@media (max-width: 1079px) {
  .fn-header__inner > .fn-nav,
  .fn-header__inner > .fn-header__spacer,
  .fn-header__inner > .fn-header__actions,
  .fn-header__inner > .fn-brand { display: none; }

  .fn-header__mobile { display: flex; }
  .fn-header__inner { height: auto; }
}

@media (min-width: 1080px) {
  .fn-header__mobile,
  .fn-mobile-panel { display: none; }
}

@media (max-width: 900px) {
  .fn-announce__timer,
  .fn-announce__text { display: none; }
  .fn-announce__inner { gap: 10px; padding: 8px 14px; }
}

@media (max-width: 767px) {
  .fn-section { padding-bottom: 72px; }

  /* Compact hero: badge, headline, subtitle and all four platform tabs
     should fit on the first screen. */
  .fn-hero { padding: 12px 16px 16px; }
  .fn-badge { min-height: 30px; padding: 3px 7px 3px 10px; font-size: 11.5px; gap: 7px; }
  .fn-badge__pill { height: 20px; padding: 0 7px; font-size: 10.5px; }
  .fn-hero__title { margin-top: 12px; font-size: 24px; }
  .fn-hero__sub { margin-top: 9px; font-size: 13.5px; line-height: 1.5; }

  /* Four tabs on one row instead of wrapping 3+1. */
  .fn-tabs { gap: 6px; }
  .fn-tab { width: calc(25% - 5px); min-width: 74px; padding: 10px 4px 8px; font-size: 12px; gap: 7px; }
  .fn-tab__mark { width: 34px; height: 34px; border-radius: 10px; font-size: 15px; }
  /* A sliver of the next card stays visible so the row reads as swipeable. */
  .fn-cards { gap: 12px; }
  .fn-card { flex-basis: min(76vw, 280px); padding: 26px 20px 24px; }
  .fn-reviews__head { margin-bottom: 30px; }
  .fn-faq__a { padding-right: 24px; }
  .fn-footer__grid { grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); }
  .fn-hero__trust { width: 100%; justify-content: center; }
  .fn-hero__trust-copy { align-items: center; text-align: center; }
  .fn-btn--lg { height: 52px; font-size: 16px; }
  .fn-hero__actions .fn-btn { flex: 1 1 100%; }
}

@media (prefers-reduced-motion: reduce) {
  .fn-ticker__track,
  .fn-hero__glow,
  .fn-badge__dot,
  .fn-hero__inner { animation: none !important; }

  .social-storefront.fn-theme *,
  .social-storefront.fn-theme *::before,
  .social-storefront.fn-theme *::after {
    transition-duration: 0.01ms !important;
  }
}
