:root {
  --bg: #f3f0f9;
  --bg-elevated: #ffffff;
  --bg-card: rgba(255, 255, 255, 0.78);
  --text: #1a1428;
  --muted: #5f5872;
  --line: rgba(26, 20, 40, 0.08);
  --teal: #7c3aed;
  --cyan: #6366f1;
  --purple: #8b5cf6;
  --indigo: #6d28d9;
  --radius: 24px;
  --shadow: 0 28px 70px rgba(88, 56, 130, 0.1);
  --shadow-soft: 0 12px 40px rgba(88, 56, 130, 0.08);
  --max: 1180px;
  --accent-gradient: linear-gradient(135deg, #6366f1 0%, #a855f7 48%, #ec4899 100%);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

.ofdm-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.ofdm-bg__glow {
  display: none;
}

.ofdm-bg__dots {
  display: none;
}

.ofdm-bg__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.55;
}

.ofdm-bg__blob--lavender {
  width: 520px;
  height: 520px;
  left: -140px;
  top: -80px;
  background: radial-gradient(circle, rgba(196, 181, 253, 0.9), transparent 68%);
}

.ofdm-bg__blob--peach {
  width: 440px;
  height: 440px;
  right: -100px;
  top: 120px;
  background: radial-gradient(circle, rgba(253, 186, 216, 0.75), transparent 70%);
}

.ofdm-bg__blob--sky {
  width: 560px;
  height: 560px;
  left: 30%;
  bottom: -220px;
  background: radial-gradient(circle, rgba(191, 219, 254, 0.8), transparent 72%);
}

.ofdm-header-sentinel {
  width: 100%;
  height: 1px;
  margin: 0;
  pointer-events: none;
  visibility: hidden;
}

.ofdm-header,
main,
.ofdm-footer {
  position: relative;
  z-index: 1;
}

.ofdm-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  max-width: calc(var(--max) - 48px);
  margin: 18px auto 0;
  padding: 12px 22px;
  position: sticky;
  top: 18px;
  z-index: 20;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  background: rgba(255, 255, 255, 0.88);
  box-shadow:
    0 10px 40px rgba(88, 56, 130, 0.12),
    0 2px 8px rgba(88, 56, 130, 0.06);
}

.ofdm-brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.ofdm-brand__name {
  font-family: "Fredoka", "Inter", system-ui, sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.04em;
  font-style: italic;
  line-height: 1;
  white-space: nowrap;
  color: #2a1848;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.55);
}

.ofdm-brand__mark {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  border-radius: 12px;
  overflow: hidden;
  background: #f6eef5;
  box-shadow:
    0 10px 24px rgba(109, 40, 217, 0.18),
    0 2px 8px rgba(88, 56, 130, 0.1);
}

.ofdm-brand__mark img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: 12px;
}

.ofdm-nav {
  display: none;
  gap: 22px;
  color: var(--muted);
  font-size: 0.92rem;
}

.ofdm-nav a:hover {
  color: var(--text);
}

.ofdm-header__actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.ofdm-lang {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.85);
  color: var(--muted);
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 0.78rem;
  font-weight: 700;
  cursor: pointer;
}

.ofdm-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  padding: 11px 18px;
  font-size: 0.92rem;
  font-weight: 600;
  border: 1px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.ofdm-btn:hover {
  transform: translateY(-1px);
}

.ofdm-btn--primary {
  background: var(--accent-gradient);
  color: #fff;
  box-shadow: 0 14px 34px rgba(109, 40, 217, 0.28);
}

.ofdm-btn--ghost {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.9);
  color: var(--text);
  box-shadow: var(--shadow-soft);
}

.ofdm-btn--block {
  width: 100%;
}

.ofdm-hero {
  max-width: var(--max);
  margin: 0 auto;
  padding: 36px 24px 48px;
  min-height: auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: center;
}

.ofdm-hero__intro {
  width: 100%;
}

.ofdm-hero__intro h1,
.ofdm-hero__copy h1 {
  margin: 0 0 16px;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  line-height: 1.08;
  letter-spacing: -0.035em;
  font-weight: 700;
}

.ofdm-hero__aside {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.ofdm-hero__aside .ofdm-feature-list {
  margin-bottom: 20px;
}

.ofdm-hero__aside .ofdm-trust-bar {
  width: 100%;
  max-width: 100%;
  justify-content: center;
}

.ofdm-trust-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.ofdm-trust-note {
  margin: 10px 0 0;
  max-width: 20rem;
  text-align: center;
  font-size: 0.72rem;
  font-style: italic;
  font-weight: 500;
  color: var(--text);
  line-height: 1.4;
}

.ofdm-manychat-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  padding: 9px 16px 9px 12px;
  border-radius: 999px;
  border: 1px solid rgba(165, 180, 252, 0.55);
  background: #eef2ff;
  color: var(--text);
  font-size: 0.84rem;
  font-weight: 500;
  line-height: 1.2;
  text-decoration: none;
  box-shadow: none;
  transition: background 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
}

.ofdm-manychat-pill:hover {
  background: #e8edff;
  border-color: rgba(129, 140, 248, 0.65);
  transform: translateY(-1px);
}

.ofdm-manychat-pill__icon {
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.ofdm-manychat-pill__icon svg {
  width: 22px;
  height: 22px;
}

.ofdm-manychat-pill__text {
  color: #1a1428;
  letter-spacing: -0.01em;
}

.ofdm-manychat-pill__text strong {
  color: #0084ff;
  font-weight: 700;
}

.ofdm-manychat-pill__emoji {
  font-size: 0.95rem;
  line-height: 1;
  margin-left: -2px;
}

.ofdm-hero__aside .ofdm-manychat-pill {
  align-self: center;
}

/* Payments + ManyChat side-by-side */
.ofdm-duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: stretch;
}

.ofdm-paygate,
.ofdm-manychat {
  min-width: 0;
  height: 100%;
  padding: 28px 24px;
  border-radius: 28px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: var(--shadow-soft);
}

.ofdm-paygate {
  border: 1px solid rgba(15, 118, 110, 0.2);
  background:
    radial-gradient(circle at top right, rgba(20, 184, 166, 0.14), transparent 55%),
    rgba(255, 255, 255, 0.82);
}

.ofdm-manychat {
  border: 1px solid rgba(0, 132, 255, 0.18);
  background:
    radial-gradient(circle at top right, rgba(0, 132, 255, 0.1), transparent 55%),
    rgba(255, 255, 255, 0.82);
}

.ofdm-paygate__intro {
  margin-bottom: 20px;
}

.ofdm-paygate__brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  padding: 6px 12px 6px 8px;
  border-radius: 999px;
  border: 1px solid rgba(15, 118, 110, 0.22);
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.ofdm-paygate__brand svg {
  width: 28px;
  height: 28px;
}

.ofdm-paygate__brand span {
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #0f766e;
}

.ofdm-paygate h2 {
  margin: 0 0 10px;
  font-size: clamp(1.5rem, 3vw, 2rem);
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.ofdm-paygate__scroll {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.ofdm-paygate__card {
  min-width: 0;
  min-height: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2px;
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.95);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-soft);
  text-align: left;
  text-decoration: none;
  color: inherit;
  border-top: 3px solid #0f766e;
}

.ofdm-paygate__card strong {
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
  line-height: 1.25;
}

.ofdm-paygate__card span {
  font-size: 0.78rem;
  line-height: 1.4;
  color: var(--muted);
}

.ofdm-paygate__card--bacs {
  border-top-color: #0f766e;
}

.ofdm-paygate__card--stripe {
  border-top-color: #635bff;
}

.ofdm-paygate__card--paypal {
  border-top-color: #0070ba;
}

.ofdm-paygate__card--mp {
  border-top-color: #009ee3;
}

.ofdm-paygate__card--cta {
  border-top-color: #f59e0b;
  background:
    radial-gradient(circle at top right, rgba(245, 158, 11, 0.14), transparent 60%),
    rgba(255, 255, 255, 0.92);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.ofdm-paygate__card--cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 36px rgba(15, 118, 110, 0.14);
}

.ofdm-paygate__card--cta span {
  color: #0f766e;
  font-weight: 700;
}

@media (max-width: 899px) {
  .ofdm-duo {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

.ofdm-manychat__intro {
  margin-bottom: 22px;
}

.ofdm-manychat__flow-label {
  margin: 0 0 10px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #0084ff;
}

.ofdm-manychat__brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  padding: 6px 12px 6px 8px;
  border-radius: 999px;
  border: 1px solid rgba(0, 132, 255, 0.2);
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.ofdm-manychat__brand svg {
  width: 28px;
  height: 28px;
}

.ofdm-manychat__brand span {
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #0084ff;
}

.ofdm-manychat h2 {
  margin: 0 0 10px;
  font-size: clamp(1.5rem, 3vw, 2rem);
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.ofdm-manychat__steps {
  margin: 0 0 20px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.ofdm-manychat__steps li {
  display: grid;
  gap: 4px;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.95);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow-soft);
}

.ofdm-manychat__steps strong {
  font-size: 0.92rem;
  color: var(--text);
}

.ofdm-manychat__steps span {
  font-size: 0.86rem;
  color: var(--muted);
  line-height: 1.45;
}

.ofdm-manychat__steps code {
  font-size: 0.8rem;
  padding: 1px 6px;
  border-radius: 6px;
  background: rgba(0, 132, 255, 0.08);
  color: #0066cc;
}

.ofdm-manychat__sample {
  margin: 0;
  padding: 14px 16px;
  border-radius: 16px;
  border-left: 3px solid #0084ff;
  background: rgba(255, 255, 255, 0.88);
}

.ofdm-manychat__sample-label {
  display: block;
  margin-bottom: 6px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.ofdm-manychat__sample p {
  margin: 0;
  font-size: 0.92rem;
  font-style: italic;
  color: var(--text);
  line-height: 1.45;
}

.ofdm-gradient-text {
  display: inline;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.ofdm-eyebrow {
  margin: 0 0 12px;
  color: var(--indigo);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ofdm-lead {
  margin: 0 0 28px;
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 62ch;
}

.ofdm-hero__intro .ofdm-lead:not(.ofdm-lead--strong) {
  margin-bottom: 22px;
}

.ofdm-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 4px 0 0;
}

.ofdm-hero__actions .ofdm-btn {
  min-height: 46px;
  padding-inline: 20px;
}

.ofdm-hero__support {
  display: none;
}

.ofdm-header__buy {
  display: none;
}

.ofdm-hero__preview-cta {
  margin-top: 15px;
  margin-bottom: 15px;
  border: 1px solid rgba(109, 40, 217, 0.18);
  background: rgba(255, 255, 255, 0.88);
  color: var(--indigo);
  cursor: pointer;
  font-family: inherit;
  box-shadow: var(--shadow-soft);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.ofdm-hero__preview-cta:hover {
  background: #fff;
  border-color: rgba(109, 40, 217, 0.28);
  color: #5b21b6;
}

.ofdm-feature-list {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  display: grid;
  gap: 16px;
}

.ofdm-feature-list li {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  align-items: start;
}

.ofdm-feature-list__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-size: 1.1rem;
}

.ofdm-feature-list__icon--purple {
  background: rgba(139, 92, 246, 0.14);
  border: 1px solid rgba(139, 92, 246, 0.22);
}

.ofdm-feature-list__icon--teal {
  background: rgba(99, 102, 241, 0.12);
  border: 1px solid rgba(99, 102, 241, 0.2);
}

.ofdm-feature-list__icon--indigo {
  background: rgba(109, 40, 217, 0.12);
  border: 1px solid rgba(109, 40, 217, 0.2);
}

.ofdm-feature-list strong {
  display: block;
  margin-bottom: 2px;
  font-size: 0.98rem;
}

.ofdm-feature-list span {
  color: white;
  font-size: 0.92rem;
}

.ofdm-trust-bar {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.88);
  color: var(--muted);
  font-size: 0.82rem;
  box-shadow: var(--shadow-soft);
}

.ofdm-trust-bar__item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.ofdm-trust-bar__icons {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  background: #7f54b3;
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 0.72rem;
}

.ofdm-trust-bar__sep {
  width: 1px;
  height: 18px;
  background: var(--line);
}

.ofdm-experience-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: center;
}

.ofdm-experience-layout .ofdm-section__head {
  margin-bottom: 0;
}

.ofdm-experience {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
  width: 100%;
  max-width: 420px;
}

.ofdm-experience li {
  padding: 14px 18px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.95);
  background: var(--bg-card);
  box-shadow: var(--shadow-soft);
  font-size: 1rem;
  font-weight: 500;
}

.ofdm-section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 72px 24px;
}

.ofdm-section--alt {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.28));
  border-block: 1px solid var(--line);
}

.ofdm-section--tutorial {
  padding-top: 48px;
  padding-bottom: 64px;
}

.ofdm-tutorial {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: center;
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

.ofdm-tutorial__copy {
  min-width: 0;
}

.ofdm-tutorial__copy h2 {
  margin: 0 0 12px;
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.ofdm-tutorial__copy .ofdm-section__sub {
  margin: 0 0 18px;
  max-width: 36rem;
}

.ofdm-tutorial__points {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.ofdm-tutorial__points li {
  position: relative;
  padding-left: 1.35rem;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.45;
}

.ofdm-tutorial__points li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 999px;
  background: var(--accent-gradient);
}

.ofdm-tutorial__media {
  min-width: 0;
  width: 100%;
  max-width: 100%;
}

.ofdm-tutorial__frame {
  position: relative;
  width: 100%;
  max-width: 100%;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(26, 20, 40, 0.1);
  background: #0b0614;
  box-shadow: var(--shadow-soft);
  aspect-ratio: 16 / 9;
}

.ofdm-tutorial__video {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100%;
  object-fit: cover;
  background: #0b0614;
}

@media (min-width: 900px) {
  .ofdm-tutorial {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 40px;
  }

  .ofdm-tutorial__copy .ofdm-section__sub {
    margin-bottom: 22px;
  }
}

@media (max-width: 720px) {
  .ofdm-section--tutorial {
    padding-top: 28px;
    padding-bottom: 48px;
  }

  .ofdm-tutorial__frame {
    border-radius: 18px;
  }
}

.ofdm-section__head {
  margin-bottom: 32px;
}

.ofdm-section__head h2 {
  margin: 0;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  letter-spacing: -0.02em;
}

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

.ofdm-card {
  padding: 24px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.95);
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: var(--shadow-soft);
}

.ofdm-card h3 {
  margin: 0 0 10px;
  font-size: 1.05rem;
}

.ofdm-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.ofdm-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 18px;
}

.ofdm-steps li {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  padding: 18px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--bg-card);
}

.ofdm-steps__num {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-weight: 800;
  background: linear-gradient(135deg, rgba(34, 211, 238, 0.2), rgba(99, 102, 241, 0.25));
  border: 1px solid rgba(99, 102, 241, 0.35);
}

.ofdm-steps h3 {
  margin: 0 0 6px;
  font-size: 1.02rem;
}

.ofdm-steps p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.ofdm-pricing {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.ofdm-price-card {
  position: relative;
  padding: 24px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.95);
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: var(--shadow-soft);
}

.ofdm-price-card--pro {
  border-color: rgba(139, 92, 246, 0.35);
  box-shadow: 0 24px 60px rgba(109, 40, 217, 0.14);
}

.ofdm-price-card__badge {
  position: absolute;
  top: 16px;
  right: 16px;
  margin: 0;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  background: rgba(139, 92, 246, 0.14);
  color: var(--indigo);
}

.ofdm-price-card__label {
  margin: 0 0 4px;
  color: var(--muted);
  font-weight: 600;
}

.ofdm-price-card__amount {
  margin: 0;
  font-size: 2.4rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.ofdm-price-card__period {
  margin-left: 2px;
  font-size: 1rem;
  font-weight: 650;
  letter-spacing: -0.02em;
  color: var(--muted);
}

.ofdm-price-card__note {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 0.92rem;
}

.ofdm-price-card ul {
  margin: 0 0 22px;
  padding-left: 18px;
  color: var(--muted);
  font-size: 0.92rem;
}

.ofdm-section--cta {
  padding-bottom: 40px;
}

@media (max-width: 899px) {
  .ofdm-section--cta {
    padding-bottom: 96px;
  }
}

.ofdm-cta-panel {
  text-align: center;
  padding: 44px 32px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.95);
  background:
    radial-gradient(circle at top right, rgba(196, 181, 253, 0.45), transparent 48%),
    radial-gradient(circle at bottom left, rgba(191, 219, 254, 0.4), transparent 42%),
    rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.ofdm-cta-panel h2 {
  margin: 0 0 10px;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
}

.ofdm-cta-panel p {
  margin: 0;
  color: var(--muted);
}

.ofdm-cta-panel__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin: 24px 0 14px;
}

.ofdm-cta-panel__fine {
  font-size: 0.82rem;
}

.ofdm-footer {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
  color: var(--muted);
  font-size: 0.86rem;
}

.ofdm-footer a:hover {
  color: var(--text);
}

.ofdm-footer__brand {
  font-weight: 700;
  color: var(--text);
}

.ofdm-footer__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 16px;
}

.ofdm-footer__copy {
  margin: 4px 0 0;
  font-size: 0.78rem;
  opacity: 0.85;
}

/* Keep footer clear of the fixed mobile CTA bar */
@media (max-width: 899px) {
  .ofdm-footer {
    padding-bottom: calc(128px + env(safe-area-inset-bottom, 0px));
  }
}

@media (min-width: 900px) {
  .ofdm-footer {
    align-items: flex-start;
    text-align: left;
  }

  .ofdm-footer__links {
    justify-content: flex-start;
  }
}

@media (min-width: 900px) {
  .ofdm-nav {
    display: flex;
  }

  .ofdm-hero {
    grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
    gap: 40px;
    padding-top: 56px;
    padding-bottom: 64px;
  }

  .ofdm-hero__intro h1,
  .ofdm-hero__copy h1 {
    font-size: clamp(2.6rem, 4.5vw, 4rem);
  }

  .ofdm-hero__aside {
    justify-self: end;
    max-width: 400px;
  }

  .ofdm-experience-layout {
    grid-template-columns: minmax(0, 1.15fr) minmax(260px, 0.85fr);
    gap: 48px;
  }

  .ofdm-experience-layout .ofdm-experience {
    justify-self: end;
    max-width: 400px;
  }
}

@media (max-width: 899px) {
  .ofdm-brand {
    gap: 6px;
  }

  .ofdm-brand__name {
    font-size: 1.15rem;
    letter-spacing: -0.05em;
  }

  .ofdm-header--stuck {
    padding: 10px 14px;
    gap: 0;
    justify-content: center;
  }

  .ofdm-header--stuck .ofdm-brand {
    display: none;
  }

  .ofdm-header--stuck .ofdm-header__actions {
    display: none;
  }

  .ofdm-header--stuck .ofdm-nav {
    display: flex;
    flex: 1;
    width: 100%;
    justify-content: space-evenly;
    align-items: center;
    gap: 8px;
    min-width: 0;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    line-height: 1.2;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .ofdm-header--stuck .ofdm-nav::-webkit-scrollbar {
    display: none;
  }

  .ofdm-header--stuck .ofdm-nav a {
    white-space: nowrap;
    flex-shrink: 0;
    color: var(--muted);
  }

  .ofdm-header--stuck .ofdm-nav a:hover,
  .ofdm-header--stuck .ofdm-nav a:focus-visible {
    color: var(--text);
  }
}

@media (max-width: 720px) {
  .ofdm-header__actions .ofdm-btn--ghost {
    display: none;
  }

  .ofdm-header {
    max-width: calc(100% - 32px);
    margin-inline: 16px;
    padding-inline: 16px;
    top: 12px;
  }

  .ofdm-hero,
  .ofdm-section {
    padding-inline: 16px;
  }

  .ofdm-audience {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ofdm-audience__more {
    grid-column: 1 / -1;
    text-align: center;
  }
}

/* --- EN hero + phone mockup --- */
.ofdm-hero-kicker {
  margin: 0 0 6px;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
}

.ofdm-hero--en .ofdm-eyebrow {
  margin-bottom: 16px;
}

.ofdm-feature-list--simple li {
  align-items: center;
}

.ofdm-feature-list--simple strong {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
}

/* The AI entry is the newest capability — a light glow, not a neon sign. */
.ofdm-feature-list__ai {
  position: relative;
  padding: 8px 12px 8px 8px;
  margin-left: -8px;
  border-radius: 14px;
  background: linear-gradient(120deg, rgba(109, 40, 217, 0.12), rgba(192, 38, 211, 0.1));
  border: 1px solid rgba(147, 51, 234, 0.32);
  box-shadow: 0 0 14px rgba(147, 51, 234, 0.18);
}

.ofdm-feature-list__icon--ai {
  color: #fff;
  background: linear-gradient(120deg, #6d28d9, #c026d3);
  border: 0;
  box-shadow: 0 0 8px rgba(192, 38, 211, 0.4), 0 3px 10px rgba(147, 51, 234, 0.28);
}

.ofdm-feature-list__ai strong {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  font-weight: 700;
  background: linear-gradient(120deg, #6d28d9, #c026d3);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.ofdm-feature-list__badge {
  padding: 2px 8px;
  border-radius: 9999px;
  background: linear-gradient(120deg, #6d28d9, #c026d3);
  color: #fff;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  -webkit-text-fill-color: #fff;
  box-shadow: 0 0 8px rgba(192, 38, 211, 0.35);
}

.ofdm-feature-list__spark {
  color: #c026d3;
  -webkit-text-fill-color: #c026d3;
  font-size: 0.85rem;
  line-height: 1;
  text-shadow: 0 0 6px rgba(192, 38, 211, 0.45);
}

.ofdm-trust-bar__item--price strong {
  color: var(--text);
  font-weight: 800;
}

.ofdm-hero__visual--mockup {
  min-height: 420px;
  display: grid;
  place-items: center;
  padding: 24px 0;
}

.ofdm-lead--strong {
  margin-bottom: 10px;
  color: var(--text);
  font-weight: 600;
}

/* Hero callout for AI — text only; the right-side feature row keeps the chip. */
.ofdm-hero__ai {
  display: inline-flex;
  align-items: flex-start;
  gap: 8px;
  margin: 0 0 18px;
  padding: 0;
  font-size: 0.95rem;
  line-height: 1.45;
  color: var(--text);
  background: none;
  border: 0;
  box-shadow: none;
}

.ofdm-hero__ai-badge {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 8px;
  font-size: 0.8rem;
  color: #fff;
  background: linear-gradient(120deg, #6d28d9, #c026d3);
  box-shadow: 0 0 8px rgba(192, 38, 211, 0.4);
}

.ofdm-section__head--center {
  text-align: center;
  max-width: 640px;
  margin-inline: auto;
}

.ofdm-section__sub {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.6;
}

.ofdm-problem {
  display: grid;
  gap: 24px;
}

.ofdm-problem__quote {
  max-width: 480px;
  margin: 0 auto;
  padding: 20px 24px;
  border-radius: var(--radius);
  border: 1px solid rgba(139, 92, 246, 0.2);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow-soft);
  text-align: center;
}

.ofdm-problem__label {
  display: block;
  margin-bottom: 6px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--purple);
}

.ofdm-problem__quote p {
  margin: 0;
  font-size: 1.15rem;
  font-style: italic;
}

.ofdm-problem__arrow {
  display: flex;
  justify-content: center;
  margin: -8px 0 4px;
}

.ofdm-problem__arrow::before {
  content: "";
  width: 0;
  height: 0;
  border-left: 11px solid transparent;
  border-right: 11px solid transparent;
  border-top: 13px solid rgba(129, 140, 248, 0.55);
  filter: drop-shadow(0 2px 8px rgba(99, 102, 241, 0.2));
}

.ofdm-compare {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.ofdm-compare__col {
  padding: 22px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.95);
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: var(--shadow-soft);
}

.ofdm-compare__col--bad {
  border-color: rgba(248, 113, 113, 0.25);
}

.ofdm-compare__col--good {
  border-color: rgba(52, 211, 153, 0.35);
  box-shadow: 0 16px 48px rgba(52, 211, 153, 0.08);
}

.ofdm-compare__col h3 {
  margin: 0 0 14px;
  font-size: 1rem;
}

.ofdm-compare__col ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
  color: var(--muted);
  font-size: 0.94rem;
}

.ofdm-compare__branch {
  display: grid;
  gap: 0;
}

.ofdm-compare__sub {
  margin: 8px 0 0;
  padding: 0 0 0 16px;
  border-left: 1px solid rgba(248, 113, 113, 0.28);
  display: grid;
  gap: 6px;
}

.ofdm-compare__sub li {
  font-size: 0.86rem;
  color: var(--muted);
  line-height: 1.45;
  padding-left: 15px;
}

.ofdm-audience {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.ofdm-audience li {
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.95);
  background: var(--bg-card);
  box-shadow: var(--shadow-soft);
  font-weight: 600;
  font-size: 0.95rem;
}

.ofdm-audience__more {
  font-style: italic;
  font-weight: 500;
  color: var(--muted);
  border-style: dashed;
}

.ofdm-price-card__checks {
  margin: 0 0 22px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 0.92rem;
}

.ofdm-price-card__includes {
  padding: 8px 10px;
  border-radius: 10px;
  background: rgba(139, 92, 246, 0.08);
  color: var(--indigo);
  font-weight: 650;
}

.ofdm-cta-panel__lead {
  margin: 0 0 6px !important;
  color: var(--text) !important;
  font-size: 1.1rem !important;
  font-weight: 600 !important;
}

.ofdm-hero--en .ofdm-hero__visual {
  background: none;
  min-height: auto;
  padding: 0;
}

.ofdm-float {
  position: absolute;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-size: 1.35rem;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-soft);
  animation: ofdm-float 4.5s ease-in-out infinite;
}

.ofdm-float--link {
  top: 8%;
  left: 6%;
  animation-delay: 0s;
}

.ofdm-float--dm {
  top: 18%;
  right: 4%;
  animation-delay: 0.8s;
}

.ofdm-float--cart {
  bottom: 22%;
  left: 2%;
  animation-delay: 1.6s;
}

.ofdm-float--success {
  bottom: 10%;
  right: 8%;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--accent-gradient);
  color: #fff;
  font-weight: 800;
  animation-delay: 2.4s;
}

@keyframes ofdm-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.ofdm-phone {
  position: relative;
  width: min(100%, 280px);
  transform: perspective(900px) rotateY(-8deg) rotateX(4deg);
  animation: ofdm-phone-tilt 6s ease-in-out infinite;
}

@keyframes ofdm-phone-tilt {
  0%,
  100% {
    transform: perspective(900px) rotateY(-8deg) rotateX(4deg) translateY(0);
  }
  50% {
    transform: perspective(900px) rotateY(-5deg) rotateX(2deg) translateY(-8px);
  }
}

.ofdm-phone__bezel {
  border-radius: 36px;
  padding: 10px;
  background: linear-gradient(160deg, #2a2d38 0%, #0a0b10 55%, #1a1c26 100%);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow:
    0 40px 80px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(99, 102, 241, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.ofdm-phone__screen {
  border-radius: 28px;
  padding: 16px 14px;
  background: linear-gradient(180deg, #141722 0%, #0e1018 100%);
  min-height: 380px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  overflow: hidden;
}

.ofdm-phone__status {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  color: var(--muted);
  font-weight: 600;
}

.ofdm-phone__ig-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.ofdm-phone__dm {
  display: flex;
  gap: 8px;
  align-items: flex-start;
}

.ofdm-phone__avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  flex-shrink: 0;
  background: linear-gradient(135deg, #818cf8, #6366f1);
}

.ofdm-phone__bubble {
  padding: 10px 12px;
  border-radius: 16px 16px 16px 4px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.78rem;
  line-height: 1.4;
  color: #e8ecf4;
  max-width: 200px;
}

.ofdm-phone__arrow {
  display: flex;
  justify-content: center;
  margin: 2px 0;
  animation: ofdm-arrow-pulse 2s ease-in-out infinite;
}

.ofdm-phone__arrow svg {
  width: 24px;
  height: 40px;
}

@keyframes ofdm-arrow-pulse {
  0%,
  100% {
    opacity: 0.55;
    transform: translateY(0);
  }
  50% {
    opacity: 1;
    transform: translateY(4px);
  }
}

.ofdm-phone__form {
  padding: 12px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(129, 140, 248, 0.25);
  display: grid;
  gap: 8px;
}

.ofdm-phone__form-title {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--teal);
}

.ofdm-phone__field {
  padding: 8px 10px;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.68rem;
  color: var(--muted);
}

.ofdm-phone__cta {
  margin-top: 4px;
  padding: 10px;
  border-radius: 10px;
  text-align: center;
  font-size: 0.7rem;
  font-weight: 700;
  background: linear-gradient(135deg, #2563eb, #6366f1);
  color: #fff;
}

.ofdm-phone__badge {
  align-self: center;
  margin-top: auto;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #a7f3d0;
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(52, 211, 153, 0.45);
  animation: ofdm-badge-glow 2.5s ease-in-out infinite;
}

@keyframes ofdm-badge-glow {
  0%,
  100% {
    box-shadow: 0 0 0 rgba(52, 211, 153, 0);
  }
  50% {
    box-shadow: 0 0 20px rgba(52, 211, 153, 0.35);
  }
}

.ofdm-phone__shadow {
  position: absolute;
  bottom: -18px;
  left: 12%;
  right: 12%;
  height: 24px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(99, 102, 241, 0.35), transparent 70%);
  filter: blur(8px);
  z-index: -1;
}

@media (min-width: 900px) {
  .ofdm-header__buy {
    display: inline-flex;
  }
}

@media (max-width: 899px) {
  .ofdm-hero--en {
    gap: 8px;
  }

  .ofdm-hero__actions {
    width: 100%;
  }

  .ofdm-hero__actions .ofdm-btn {
    flex: 1 1 calc(50% - 5px);
    justify-content: center;
    text-align: center;
  }

  .ofdm-hero__aside {
    display: none;
  }

  .ofdm-hero__visual--mockup {
    min-height: 360px;
  }

  .ofdm-float {
    width: 42px;
    height: 42px;
    font-size: 1.1rem;
  }

  .ofdm-phone {
    transform: none;
    animation: none;
  }
}

.ofdm-card__title-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin: 0 0 10px;
}

.ofdm-chat-preview-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: 999px;
  border: 1px solid rgba(139, 92, 246, 0.28);
  background: rgba(139, 92, 246, 0.1);
  color: var(--indigo);
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.2;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.ofdm-section__sub .ofdm-chat-preview-pill {
  margin-top: 14px;
}

.ofdm-chat-preview-pill:hover {
  background: rgba(139, 92, 246, 0.16);
  border-color: rgba(139, 92, 246, 0.4);
  color: #5b21b6;
}

.ofdm-chat-preview-pill--wide {
  width: 100%;
  justify-content: center;
  padding: 12px 16px;
  font-size: 0.95rem;
}

.ofdm-experience__preview {
  padding: 0;
  border: none;
  background: transparent;
}

.ofdm-chat-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.ofdm-chat-modal[hidden] {
  display: none;
}

.ofdm-chat-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(243, 240, 249, 0.55);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.ofdm-chat-modal__panel {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: min(92vw, 390px);
  max-width: min(92vw, 390px);
  height: min(92dvh, 900px);
  max-height: min(92dvh, 900px);
  background: transparent;
  border: none;
  box-shadow: none;
}

.ofdm-chat-modal__frame {
  position: relative;
  display: block;
  line-height: 0;
  flex: 1 1 auto;
  width: 100%;
  height: 100%;
  min-height: 0;
  margin: 0 auto;
  background: #0b0614;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.ofdm-chat-modal__frame.is-loading::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(11, 6, 20, 0.35);
}

.ofdm-chat-modal__frame.is-loading::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  width: 28px;
  height: 28px;
  margin: -14px 0 0 -14px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-top-color: #fff;
  animation: ofdm-chat-spin 0.7s linear infinite;
}

@keyframes ofdm-chat-spin {
  to {
    transform: rotate(360deg);
  }
}

.ofdm-chat-modal__iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  background: #0b0614;
}

.ofdm-chat-modal__img {
  display: block;
  width: auto;
  height: auto;
  max-width: min(92vw, 360px);
  max-height: min(72dvh, 720px);
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow);
}

body.ofdm-chat-modal-lock {
  overflow: hidden;
}

.ofdm-chat-modal__close {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 3;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--text);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow-soft);
}

.ofdm-chat-modal__close:hover {
  background: #fff;
}

.ofdm-bottom-bar {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: max(16px, env(safe-area-inset-bottom, 0px));
  z-index: 25;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  max-width: calc(var(--max) - 48px);
  margin-inline: auto;
  padding: 10px 14px 8px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.95);
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow:
    0 10px 40px rgba(88, 56, 130, 0.14),
    0 2px 8px rgba(88, 56, 130, 0.08);
  transform: translateY(calc(100% + 32px));
  opacity: 0;
  pointer-events: none;
  transition: transform 0.28s ease, opacity 0.28s ease;
}

.ofdm-bottom-bar__actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  width: 100%;
}

.ofdm-bottom-bar__logo {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  overflow: hidden;
  background: #f6eef5;
  box-shadow:
    0 10px 24px rgba(109, 40, 217, 0.22),
    0 2px 8px rgba(88, 56, 130, 0.12);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.ofdm-bottom-bar__logo:hover,
.ofdm-bottom-bar__logo:active {
  transform: translateY(-1px);
  box-shadow:
    0 14px 28px rgba(109, 40, 217, 0.28),
    0 4px 10px rgba(88, 56, 130, 0.14);
}

.ofdm-bottom-bar__logo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: 12px;
}

.ofdm-bottom-bar__cta {
  flex: 1 1 0;
  min-width: 0;
  padding: 11px 10px;
  font-size: 0.82rem;
  text-align: center;
  white-space: nowrap;
}

.ofdm-bottom-bar__note {
  margin: 7px 0 0;
  text-align: center;
  width: 100%;
  font-size: 0.65rem;
}

.ofdm-lunch-note {
  font-style: italic;
  font-weight: 500;
  color: var(--text);
  line-height: 1.35;
}

.ofdm-price-card__lunch {
  margin: 10px 0 0;
  font-size: 0.72rem;
  text-align: center;
}

.ofdm-cta-panel__lunch {
  margin: 0 0 10px;
  font-size: 0.78rem;
}

.ofdm-bottom-bar--visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

@media (min-width: 900px) {
  .ofdm-bottom-bar {
    display: none !important;
  }
}

/* —— Legal pages (Terms / Privacy) —— */
.ofdm-legal-shell {
  min-height: 100vh;
}

.ofdm-legal {
  position: relative;
  z-index: 1;
  max-width: 44rem;
  margin: 0 auto;
  padding: 36px 24px 88px;
}

.ofdm-legal__crumb {
  margin: 0 0 14px;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--muted);
}

.ofdm-legal__crumb a {
  color: var(--indigo);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.ofdm-legal__crumb a:hover {
  color: var(--text);
}

.ofdm-legal h1 {
  margin: 0 0 10px;
  font-size: clamp(1.85rem, 5vw, 2.55rem);
  letter-spacing: -0.04em;
  line-height: 1.12;
  color: var(--text);
}

.ofdm-legal__updated {
  margin: 0 0 22px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--muted);
}

.ofdm-legal__lead {
  margin: 0 0 28px;
  padding: 16px 18px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.95);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow-soft);
  font-size: 1.02rem;
  line-height: 1.55;
}

.ofdm-legal h2 {
  margin: 32px 0 12px;
  font-size: 1.2rem;
  letter-spacing: -0.02em;
  line-height: 1.25;
  color: var(--text);
}

.ofdm-legal p {
  margin: 0 0 14px;
  color: var(--text);
  font-size: 0.98rem;
  line-height: 1.65;
}

.ofdm-legal ul {
  margin: 0 0 16px;
  padding-left: 1.25rem;
}

.ofdm-legal li {
  margin: 0 0 10px;
  color: var(--text);
  font-size: 0.98rem;
  line-height: 1.6;
}

.ofdm-legal a {
  color: var(--indigo);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.ofdm-legal a:hover {
  color: var(--text);
}

.ofdm-legal code {
  font-size: 0.9em;
  padding: 0.1em 0.35em;
  border-radius: 6px;
  background: rgba(109, 40, 217, 0.08);
  color: #4c1d95;
}

.ofdm-legal-shell .ofdm-footer {
  padding-bottom: 48px;
}

@media (max-width: 720px) {
  .ofdm-legal {
    padding: 24px 16px 72px;
  }

  .ofdm-legal__lead {
    padding: 14px 14px;
  }
}

/* —— FAQ page —— */
.ofdm-faq {
  max-width: var(--max);
  margin: 0 auto;
  padding: 24px 14px 80px;
}

.ofdm-faq-hero {
  max-width: 40rem;
  margin: 0 auto 28px;
  text-align: center;
  padding-top: 28px;
}

.ofdm-faq-hero .ofdm-eyebrow {
  margin: 0 0 14px;
  color: var(--indigo);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.ofdm-faq-hero h1 {
  margin: 0 0 14px;
  font-size: clamp(2.15rem, 7vw, 3.35rem);
  letter-spacing: -0.045em;
  line-height: 1.05;
  color: var(--text);
}

.ofdm-faq-hero .ofdm-lead {
  margin: 0 auto;
  max-width: 32rem;
  font-size: 1rem;
  line-height: 1.55;
  color: var(--muted);
}

.ofdm-faq-section {
  margin-bottom: 40px;
}

.ofdm-faq-search {
  max-width: 44rem;
  margin: 0 auto 18px;
}

.ofdm-faq-search__label {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.ofdm-faq-search__field {
  position: relative;
  display: flex;
  align-items: center;
}

.ofdm-faq-search__icon {
  position: absolute;
  left: 14px;
  display: inline-flex;
  color: var(--muted);
  pointer-events: none;
}

.ofdm-faq-search__input {
  width: 100%;
  box-sizing: border-box;
  padding: 14px 44px 14px 42px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.95);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-soft);
  color: var(--text);
  font: inherit;
  font-size: 0.95rem;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

.ofdm-faq-search__input::-webkit-search-cancel-button,
.ofdm-faq-search__input::-webkit-search-decoration {
  -webkit-appearance: none;
  appearance: none;
}

.ofdm-faq-search__input::placeholder {
  color: var(--muted);
}

.ofdm-faq-search__input:focus {
  border-color: rgba(109, 40, 217, 0.35);
  box-shadow:
    var(--shadow-soft),
    0 0 0 3px rgba(109, 40, 217, 0.12);
}

.ofdm-faq-search__clear {
  position: absolute;
  right: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
}

.ofdm-faq-search__clear:hover {
  color: var(--text);
  background: rgba(26, 20, 40, 0.06);
}

.ofdm-faq-search__empty {
  margin: 12px 0 0;
  text-align: center;
  font-size: 0.88rem;
  color: var(--muted);
}

.ofdm-faq-list {
  display: grid;
  gap: 10px;
  max-width: 44rem;
  margin: 0 auto;
}

.ofdm-faq-item {
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.95);
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.ofdm-faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 18px;
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
  line-height: 1.35;
}

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

.ofdm-faq-item summary::after {
  content: "";
  flex-shrink: 0;
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--muted);
  border-bottom: 2px solid var(--muted);
  transform: rotate(45deg);
  transition: transform 0.2s ease;
  margin-top: -4px;
}

.ofdm-faq-item[open] summary::after {
  transform: rotate(-135deg);
  margin-top: 4px;
}

.ofdm-faq-item__body {
  padding: 0 18px 18px;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.55;
}

.ofdm-faq-item__body p {
  margin: 0;
}

.ofdm-faq-item__body a {
  color: var(--indigo);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.ofdm-faq-cta {
  max-width: 44rem;
  margin: 0 auto;
}

.ofdm-faq-cta .ofdm-cta-panel {
  text-align: center;
}

.ofdm-faq-cta .ofdm-cta-panel h2 {
  margin: 0 0 8px;
  font-size: clamp(1.45rem, 3.5vw, 1.9rem);
  letter-spacing: -0.03em;
}

.ofdm-faq-cta .ofdm-cta-panel__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 16px;
}

.ofdm-faq-cta .ofdm-cta-panel__note {
  margin: 14px 0 0;
  font-size: 0.82rem;
  color: var(--muted);
}

@media (max-width: 899px) {
  .ofdm-header--stuck .ofdm-nav {
    font-size: 0.62rem;
    gap: 4px;
  }

  .ofdm-faq {
    padding-bottom: calc(128px + env(safe-area-inset-bottom, 0px));
  }
}

@media (min-width: 900px) {
  .ofdm-faq {
    padding: 40px 24px 96px;
  }

  .ofdm-faq-hero {
    margin-bottom: 36px;
    padding-top: 40px;
  }
}

/* —— Install modal (post ZIP download) —— */
.ofdm-install-modal {
  position: fixed;
  inset: 0;
  z-index: 220;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: max(16px, env(safe-area-inset-top)) 16px max(16px, env(safe-area-inset-bottom));
  overflow: hidden;
}

.ofdm-install-modal[hidden] {
  display: none;
}

.ofdm-install-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(26, 20, 40, 0.42);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  opacity: 0;
  transition: opacity 0.22s ease;
}

.ofdm-install-modal--open .ofdm-install-modal__backdrop {
  opacity: 1;
}

.ofdm-install-modal__panel {
  position: relative;
  z-index: 1;
  width: min(100%, 440px);
  max-width: 100%;
  max-height: min(92dvh, 720px);
  overflow-x: hidden;
  overflow-y: auto;
  padding: 28px 24px 24px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.95);
  background:
    radial-gradient(circle at 12% 0%, rgba(236, 72, 153, 0.18), transparent 42%),
    radial-gradient(circle at 88% 8%, rgba(99, 102, 241, 0.22), transparent 46%),
    rgba(255, 255, 255, 0.94);
  box-shadow: 0 32px 80px rgba(88, 56, 130, 0.22);
  transform: translateY(18px) scale(0.96);
  opacity: 0;
  transition:
    transform 0.28s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.22s ease;
}

.ofdm-install-modal--open .ofdm-install-modal__panel {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.ofdm-install-modal__glow {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 55%;
  background: radial-gradient(ellipse at center top, rgba(168, 85, 247, 0.28), transparent 70%);
  pointer-events: none;
}

.ofdm-install-modal__sparkles {
  position: absolute;
  inset: 12px 16px auto;
  height: 48px;
  pointer-events: none;
}

.ofdm-install-modal__sparkles span {
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent-gradient);
  opacity: 0.85;
  animation: ofdm-sparkle 1.8s ease-in-out infinite;
}

.ofdm-install-modal__sparkles span:nth-child(1) {
  left: 8%;
  top: 10px;
  animation-delay: 0s;
}

.ofdm-install-modal__sparkles span:nth-child(2) {
  left: 28%;
  top: 0;
  width: 5px;
  height: 5px;
  animation-delay: 0.35s;
}

.ofdm-install-modal__sparkles span:nth-child(3) {
  right: 22%;
  top: 6px;
  animation-delay: 0.55s;
}

.ofdm-install-modal__sparkles span:nth-child(4) {
  right: 6%;
  top: 18px;
  width: 6px;
  height: 6px;
  animation-delay: 0.9s;
}

@keyframes ofdm-sparkle {
  0%,
  100% {
    transform: scale(0.7) translateY(0);
    opacity: 0.35;
  }
  50% {
    transform: scale(1.15) translateY(-4px);
    opacity: 1;
  }
}

.ofdm-install-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  color: var(--text);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: var(--shadow-soft);
}

.ofdm-install-modal__close:hover {
  background: #fff;
}

.ofdm-install-modal__kicker {
  margin: 0 0 8px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--indigo);
}

.ofdm-install-modal__title {
  margin: 0 0 10px;
  font-family: Fredoka, Inter, sans-serif;
  font-size: clamp(1.45rem, 4.5vw, 1.75rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  padding-right: 36px;
}

.ofdm-install-modal__lead {
  margin: 0 0 18px;
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.5;
}

.ofdm-install-modal__steps {
  list-style: none;
  margin: 0 0 16px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ofdm-install-modal__step {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.95);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 8px 24px rgba(88, 56, 130, 0.06);
}

.ofdm-install-modal__num {
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 0.78rem;
  font-weight: 800;
  color: #fff;
  background: var(--accent-gradient);
  box-shadow: 0 6px 16px rgba(124, 58, 237, 0.28);
}

.ofdm-install-modal__step-text {
  flex: 1;
  min-width: 0;
  font-size: 0.9rem;
  line-height: 1.45;
  color: var(--text);
  padding-top: 2px;
  overflow-wrap: anywhere;
}

.ofdm-install-modal__tip {
  margin: 0 0 14px;
  font-size: 0.8rem;
  color: var(--muted);
}

.ofdm-install-modal__docs {
  margin: 0 0 18px;
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.5;
}

.ofdm-install-modal__docs-link {
  font-weight: 800;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-decoration: underline;
  text-decoration-color: rgba(168, 85, 247, 0.45);
  text-underline-offset: 3px;
}

.ofdm-install-modal__docs-link:hover {
  text-decoration-color: rgba(236, 72, 153, 0.7);
}

.ofdm-install-modal__cta {
  width: 100%;
  justify-content: center;
}

/* —— Download toasts —— */
.ofdm-toaster {
  position: fixed;
  z-index: 240;
  right: max(16px, env(safe-area-inset-right));
  bottom: max(16px, env(safe-area-inset-bottom));
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: min(calc(100vw - 32px), 360px);
  pointer-events: none;
}

.ofdm-toast {
  pointer-events: auto;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 14px 14px 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.95);
  background:
    radial-gradient(circle at top right, rgba(251, 191, 36, 0.22), transparent 55%),
    rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 50px rgba(88, 56, 130, 0.18);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transform: translateY(12px) scale(0.98);
  opacity: 0;
  transition:
    transform 0.24s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.2s ease;
}

.ofdm-toast--in {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.ofdm-toast--warn .ofdm-toast__dot {
  background: linear-gradient(135deg, #f59e0b, #ec4899);
}

.ofdm-toast__dot {
  flex: 0 0 auto;
  width: 10px;
  height: 10px;
  margin-top: 5px;
  border-radius: 50%;
  background: var(--accent-gradient);
  box-shadow: 0 0 0 4px rgba(168, 85, 247, 0.12);
}

.ofdm-toast__text {
  flex: 1;
  min-width: 0;
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.4;
  color: var(--text);
}

.ofdm-toast__close {
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  margin: -4px -4px 0 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: var(--muted);
  font-size: 1.2rem;
  line-height: 1;
  cursor: pointer;
}

.ofdm-toast__close:hover {
  background: rgba(26, 20, 40, 0.06);
  color: var(--text);
}

@media (max-width: 640px) {
  .ofdm-toaster {
    right: 12px;
    left: 12px;
    bottom: calc(88px + env(safe-area-inset-bottom, 0px));
    width: auto;
  }
}

