:root {
  --fc-teal: #149483;
  --fc-teal-deep: #0b6f68;
  --fc-teal-soft: #dff5f1;
  --fc-cta: #e8771e;
  --fc-cta-dark: #ba470c;
  --fc-cta-hover: #da6916;
  --fc-cta-dark-hover: #a93d08;
  --fc-ink: #102033;
  --fc-ink-soft: #436073;
  --fc-line: #d8e8e5;
  --fc-line-strong: #bdd8d3;
  --fc-bg: #f4fbfa;
  --fc-bg-tint: #eef6f5;
  --fc-card: #ffffff;
  --fc-card-soft: #f8fcfc;
  --fc-shadow-sm: 0 16px 34px rgba(16, 32, 51, 0.06);
  --fc-shadow-md: 0 24px 60px rgba(16, 32, 51, 0.1);
  --fc-shadow-lg: 0 34px 84px rgba(16, 32, 51, 0.14);
  --fc-radius-xl: 34px;
  --fc-radius-lg: 28px;
  --fc-radius-md: 22px;
  --fc-radius-sm: 16px;
}

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

body.fc-body {
  margin: 0;
  color: var(--fc-ink);
  font-family: "Montserrat", "Plus Jakarta Sans", Manrope, system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
  background:
    radial-gradient(760px 360px at 8% -8%, rgba(20, 148, 131, 0.16), transparent 58%),
    radial-gradient(680px 320px at 100% 10%, rgba(11, 111, 104, 0.08), transparent 60%),
    linear-gradient(180deg, #fbfdfd 0%, var(--fc-bg) 28%, var(--fc-bg-tint) 100%);
}

.fc-page {
  max-width: 1280px;
  margin: 0 auto;
  padding: 40px 18px 168px;
}

.fc-section {
  margin-top: 26px;
}

.fc-page > .fc-section:first-child {
  margin-top: 0;
}

.fc-shell {
  border: 1px solid rgba(191, 215, 211, 0.92);
  border-radius: var(--fc-radius-xl);
  background:
    radial-gradient(520px 260px at 100% 0%, rgba(20, 148, 131, 0.12), transparent 62%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 251, 251, 0.96));
  box-shadow: var(--fc-shadow-lg);
  overflow: hidden;
}

.fc-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(330px, 0.95fr);
  gap: 30px;
  padding: 36px;
  align-items: center;
}

.fc-kicker,
.fc-plan-card__eyebrow,
.fc-summary-pill,
.fc-mini-stat__eyebrow,
.fc-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: max-content;
  min-height: 34px;
  padding: 8px 13px;
  border-radius: 999px;
  border: 1px solid rgba(9, 63, 72, 0.12);
  background: linear-gradient(135deg, #15a899, #0b6f68);
  color: #fff;
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
  box-shadow: 0 12px 28px rgba(11, 111, 104, 0.2);
}

.fc-kicker {
  margin-bottom: 14px;
}

.fc-hero__copy h1 {
  margin: 0;
  max-width: 14ch;
  font-size: clamp(2.6rem, 5.5vw, 5rem);
  line-height: 0.94;
  letter-spacing: -0.06em;
}

.fc-hero__sub {
  margin: 16px 0 0;
  max-width: 62ch;
  color: var(--fc-ink-soft);
  font-size: 1.05rem;
  line-height: 1.72;
}

.fc-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.fc-payment-note {
  margin: 14px 0 0;
  color: var(--fc-ink-soft);
  font-size: 0.9rem;
  line-height: 1.6;
}

.fc-payment-note a,
.fc-form-note a,
.fc-consent-links a,
.fc-consent-check a {
  color: var(--fc-teal-deep);
  font-weight: 700;
}

.fc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 14px 22px;
  border-radius: 18px;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: -0.02em;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    border-color 0.18s ease,
    background 0.18s ease;
}

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

.fc-btn[disabled] {
  cursor: not-allowed;
  pointer-events: none;
  transform: none;
  box-shadow: none;
  opacity: 0.58;
}

.fc-btn--primary {
  border: 1px solid transparent;
  color: #fff;
  background: linear-gradient(135deg, var(--fc-cta), var(--fc-cta-dark));
  box-shadow: 0 18px 34px rgba(186, 71, 12, 0.24);
}

.fc-btn--primary:hover {
  background: linear-gradient(135deg, var(--fc-cta-hover), var(--fc-cta-dark-hover));
  box-shadow: 0 22px 40px rgba(186, 71, 12, 0.3);
}

.fc-btn--secondary {
  border: 1px solid rgba(191, 215, 211, 0.96);
  color: var(--fc-ink);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 12px 26px rgba(16, 32, 51, 0.06);
}

.fc-sticky-cta-wrap {
  position: fixed;
  right: 0;
  bottom: max(14px, env(safe-area-inset-bottom));
  left: 0;
  z-index: 40;
  pointer-events: none;
}

.fc-sticky-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  width: min(760px, calc(100% - 24px));
  margin: 0 auto;
  padding: 14px 16px 14px 18px;
  border: 1px solid rgba(191, 215, 211, 0.96);
  border-radius: 26px;
  background:
    radial-gradient(240px 140px at 100% 0%, rgba(20, 148, 131, 0.12), transparent 70%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(244, 250, 249, 0.95));
  box-shadow: 0 24px 54px rgba(16, 32, 51, 0.16);
  backdrop-filter: blur(18px);
  pointer-events: auto;
  animation: fc-sticky-cta-in 360ms ease;
}

.fc-sticky-cta__copy {
  min-width: 0;
}

.fc-sticky-cta__copy span {
  display: block;
  color: var(--fc-teal-deep);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.fc-sticky-cta__copy strong {
  display: block;
  margin-top: 5px;
  font-size: 1.05rem;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.fc-sticky-cta .fc-btn {
  min-height: 50px;
  padding-right: 20px;
  padding-left: 20px;
  white-space: nowrap;
}

@keyframes fc-sticky-cta-in {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fc-icon {
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  color: var(--fc-teal);
}

.fc-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.fc-hero__art {
  position: relative;
  min-height: 100%;
}

.fc-visual-shell {
  position: relative;
  min-height: 520px;
  padding: 24px;
  border-radius: 30px;
  border: 1px solid rgba(191, 215, 211, 0.94);
  background:
    radial-gradient(240px 160px at 82% 10%, rgba(255, 255, 255, 0.58), transparent 70%),
    linear-gradient(160deg, rgba(240, 249, 247, 0.98), rgba(230, 245, 242, 0.95));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.96),
    0 28px 56px rgba(16, 32, 51, 0.1);
  overflow: hidden;
}

.fc-visual-shell::before,
.fc-visual-shell::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.fc-visual-shell::before {
  inset: auto auto -120px -80px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(20, 148, 131, 0.18), transparent 68%);
}

.fc-visual-shell::after {
  top: -90px;
  right: -80px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(11, 111, 104, 0.14), transparent 70%);
}

.fc-membership-card {
  position: relative;
  z-index: 1;
  width: min(100%, 360px);
  padding: 24px;
  border-radius: 28px;
  color: #fff;
  background:
    linear-gradient(145deg, rgba(9, 63, 72, 0.94), rgba(20, 148, 131, 0.94)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), transparent);
  box-shadow: 0 28px 60px rgba(11, 111, 104, 0.34);
}

.fc-membership-card--secondary {
  position: absolute;
  right: 18px;
  bottom: 28px;
  width: min(100%, 260px);
  background:
    linear-gradient(145deg, rgba(16, 32, 51, 0.94), rgba(7, 114, 123, 0.9)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), transparent);
  transform: rotate(-7deg);
}

.fc-membership-card__logo {
  display: flex;
  align-items: center;
  gap: 16px;
}

.fc-plan-badge {
  --fc-plan-badge-bg:
    radial-gradient(circle at 22% 16%, rgba(255, 255, 255, 0.36), transparent 36%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(223, 245, 241, 0.92));
  --fc-plan-badge-border: rgba(163, 204, 197, 0.88);
  --fc-plan-badge-shadow: 0 18px 34px rgba(16, 32, 51, 0.12);
  --fc-plan-badge-text: #103040;
  --fc-plan-badge-muted: rgba(16, 48, 64, 0.68);
  --fc-plan-badge-core: linear-gradient(145deg, #f8fdfc, #99ddd4);
  --fc-plan-badge-glyph: "B";
  position: relative;
  display: grid;
  align-content: end;
  gap: 6px;
  flex: 0 0 auto;
  width: 124px;
  min-height: 116px;
  padding: 16px 14px 14px;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--fc-plan-badge-border);
  color: var(--fc-plan-badge-text);
  background: var(--fc-plan-badge-bg);
  box-shadow: var(--fc-plan-badge-shadow);
}

.fc-plan-badge::before {
  content: "";
  position: absolute;
  top: 14px;
  right: 14px;
  width: 42px;
  height: 42px;
  border-radius: 16px;
  background: var(--fc-plan-badge-core);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.42),
    0 14px 26px rgba(9, 27, 35, 0.18);
}

.fc-plan-badge::after {
  content: var(--fc-plan-badge-glyph);
  position: absolute;
  top: 22px;
  right: 27px;
  z-index: 1;
  font-size: 1.04rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: rgba(7, 30, 37, 0.78);
}

.fc-plan-badge__kicker,
.fc-plan-badge__title,
.fc-plan-badge__note {
  position: relative;
  z-index: 1;
}

.fc-plan-badge__kicker {
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fc-plan-badge-muted);
}

.fc-plan-badge__title {
  font-size: 1.34rem;
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.06em;
}

.fc-plan-badge__note {
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.35;
  color: var(--fc-plan-badge-muted);
}

.fc-plan-badge--display {
  width: min(100%, 238px);
  min-height: 176px;
  padding: 20px 20px 18px;
  border-radius: 30px;
  gap: 8px;
}

.fc-plan-badge--display::before {
  top: 18px;
  right: 18px;
  width: 60px;
  height: 60px;
  border-radius: 20px;
}

.fc-plan-badge--display::after {
  top: 34px;
  right: 39px;
  font-size: 1.5rem;
}

.fc-plan-badge--display .fc-plan-badge__kicker {
  font-size: 0.72rem;
}

.fc-plan-badge--display .fc-plan-badge__title {
  font-size: clamp(2rem, 4vw, 2.7rem);
}

.fc-plan-badge--display .fc-plan-badge__note {
  font-size: 0.84rem;
}

.fc-plan-badge--basic {
  --fc-plan-badge-bg:
    radial-gradient(circle at 22% 16%, rgba(255, 255, 255, 0.46), transparent 36%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.99), rgba(223, 245, 241, 0.94));
  --fc-plan-badge-border: rgba(163, 204, 197, 0.9);
  --fc-plan-badge-shadow: 0 18px 34px rgba(16, 32, 51, 0.12);
  --fc-plan-badge-text: #103040;
  --fc-plan-badge-muted: rgba(16, 48, 64, 0.68);
  --fc-plan-badge-core: linear-gradient(145deg, #ffffff, #9fe0d5);
  --fc-plan-badge-glyph: "B";
}

.fc-plan-badge--plus {
  --fc-plan-badge-bg:
    radial-gradient(circle at 22% 16%, rgba(255, 255, 255, 0.14), transparent 34%),
    linear-gradient(145deg, rgba(9, 63, 72, 0.96), rgba(20, 148, 131, 0.92));
  --fc-plan-badge-border: rgba(255, 255, 255, 0.14);
  --fc-plan-badge-shadow: 0 24px 42px rgba(11, 111, 104, 0.28);
  --fc-plan-badge-text: #ffffff;
  --fc-plan-badge-muted: rgba(255, 255, 255, 0.76);
  --fc-plan-badge-core: linear-gradient(145deg, #cbfff1, #30d0b9);
  --fc-plan-badge-glyph: "+";
}

.fc-plan-badge--pro {
  --fc-plan-badge-bg:
    radial-gradient(circle at 22% 16%, rgba(255, 255, 255, 0.12), transparent 34%),
    linear-gradient(145deg, rgba(16, 32, 51, 0.98), rgba(7, 114, 123, 0.92));
  --fc-plan-badge-border: rgba(184, 220, 215, 0.2);
  --fc-plan-badge-shadow: 0 26px 44px rgba(16, 32, 51, 0.32);
  --fc-plan-badge-text: #ffffff;
  --fc-plan-badge-muted: rgba(255, 255, 255, 0.76);
  --fc-plan-badge-core: linear-gradient(145deg, #defff5, #35c4bc);
  --fc-plan-badge-glyph: "P";
}

.fc-membership-card--secondary .fc-plan-badge--compact {
  width: 112px;
  min-height: 108px;
}

.fc-membership-card__art {
  display: block;
  width: min(132px, 38vw);
  height: auto;
  flex: 0 0 auto;
  filter: drop-shadow(0 18px 32px rgba(9, 27, 35, 0.18));
}

.fc-membership-card__logo > div span {
  display: block;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.76);
}

.fc-membership-card__logo > div strong {
  display: block;
  margin-top: 5px;
  font-size: 1.14rem;
  letter-spacing: -0.03em;
}

.fc-membership-card__price {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  margin-top: 26px;
}

.fc-membership-card__price strong {
  font-size: clamp(2.3rem, 4vw, 3.5rem);
  line-height: 0.92;
  letter-spacing: -0.07em;
}

.fc-membership-card__price span {
  padding-bottom: 8px;
  font-size: 0.92rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.82);
}

.fc-membership-card__list {
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.fc-membership-card__list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.92rem;
}

.fc-membership-card__dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: #8ef1d1;
  box-shadow: 0 0 0 4px rgba(142, 241, 209, 0.16);
}

.fc-membership-card__footer {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 26px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.8);
}

.fc-mini-stats {
  position: absolute;
  right: 22px;
  top: 30px;
  z-index: 1;
  display: grid;
  gap: 12px;
  width: min(100%, 200px);
}

.fc-mini-stat {
  padding: 16px 18px;
  border-radius: 22px;
  border: 1px solid rgba(216, 232, 229, 0.98);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 16px 30px rgba(16, 32, 51, 0.08);
}

.fc-mini-stat__eyebrow {
  min-height: 28px;
  padding: 6px 10px;
  font-size: 0.62rem;
}

.fc-mini-stat strong {
  display: block;
  margin-top: 10px;
  font-size: 1rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.fc-mini-stat span {
  display: block;
  margin-top: 5px;
  color: var(--fc-ink-soft);
  font-size: 0.8rem;
  line-height: 1.55;
}

.fc-trust-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  padding: 0 36px 32px;
}

.fc-trust-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  padding: 14px 16px;
  border-radius: 20px;
  border: 1px solid rgba(216, 232, 229, 0.98);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--fc-shadow-sm);
}

.fc-trust-pill strong {
  font-size: 0.9rem;
  line-height: 1.35;
  letter-spacing: -0.02em;
}

.fc-join-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  padding: 0 36px 34px;
}

.fc-join-step {
  padding: 18px 20px;
  border-radius: 22px;
  border: 1px solid rgba(216, 232, 229, 0.98);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: var(--fc-shadow-sm);
}

.fc-join-step strong {
  display: block;
  font-size: 0.98rem;
  line-height: 1.3;
  letter-spacing: -0.02em;
}

.fc-join-step span {
  display: block;
  margin-top: 8px;
  color: var(--fc-ink-soft);
  font-size: 0.9rem;
  line-height: 1.6;
}

.fc-section-head {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: end;
  margin-bottom: 22px;
}

.fc-section-head h2 {
  margin: 8px 0 0;
  font-size: clamp(1.9rem, 3vw, 3rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.fc-section-head p {
  margin: 0;
  max-width: 54ch;
  color: var(--fc-ink-soft);
  line-height: 1.7;
}

.fc-faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

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

.fc-faq-card {
  border: 1px solid rgba(216, 232, 229, 0.98);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(246, 251, 250, 0.96));
  box-shadow: var(--fc-shadow-sm);
  overflow: hidden;
}

.fc-faq-card summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 52px;
  padding: 14px 16px;
  cursor: pointer;
  list-style: none;
  font-size: 0.96rem;
  font-weight: 800;
  line-height: 1.32;
  letter-spacing: -0.02em;
}

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

.fc-faq-toggle {
  position: relative;
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  border-radius: 999px;
  border: 1.5px solid rgba(20, 148, 131, 0.42);
}

.fc-faq-toggle::before,
.fc-faq-toggle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 2px;
  border-radius: 999px;
  background: var(--fc-teal-deep);
  transform: translate(-50%, -50%);
}

.fc-faq-toggle::after {
  width: 2px;
  height: 7px;
}

.fc-faq-card[open] .fc-faq-toggle::after {
  opacity: 0;
}

.fc-faq-answer {
  padding: 0 16px 16px;
  color: var(--fc-ink-soft);
  line-height: 1.64;
  font-size: 0.95rem;
}

.fc-faq-answer p {
  margin: 0;
}

.fc-detail-drawer .fc-faq-answer {
  display: grid;
  gap: 18px;
}

.fc-detail-drawer .fc-side-photo {
  margin-top: 0;
}

.fc-proof-drawer__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.92fr);
  gap: 18px;
  align-items: start;
}

.fc-proof-drawer__copy {
  display: grid;
  gap: 18px;
}

.fc-proof-drawer__copy p {
  color: var(--fc-ink-soft);
  line-height: 1.68;
}

.fc-plan-grid,
.fc-feature-grid,
.fc-why-grid,
.fc-steps,
.fc-mobile-compare,
.fc-include-grid,
.fc-route-grid {
  display: grid;
  gap: 18px;
}

.fc-plan-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}

.fc-reassurance {
  margin: 0 0 18px;
  color: var(--fc-ink-soft);
  font-size: 0.96rem;
  line-height: 1.65;
}

.fc-route-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.fc-route-card {
  display: grid;
  gap: 10px;
  padding: 20px;
  border: 1px solid rgba(191, 215, 211, 0.92);
  border-radius: 24px;
  background:
    radial-gradient(180px 120px at 100% 0%, rgba(20, 148, 131, 0.08), transparent 70%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 251, 251, 0.95));
  box-shadow: var(--fc-shadow-sm);
  text-decoration: none;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    border-color 0.18s ease;
}

.fc-route-card strong {
  color: var(--fc-ink);
  font-size: 1rem;
  line-height: 1.25;
  letter-spacing: -0.03em;
}

.fc-route-card span {
  color: var(--fc-ink-soft);
  line-height: 1.62;
  font-size: 0.94rem;
}

.fc-route-card:hover,
.fc-route-card:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(20, 148, 131, 0.28);
  box-shadow: var(--fc-shadow-md);
}

.fc-plan-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-width: 0;
  padding: 30px 28px 28px;
  border-radius: 32px;
  border: 1px solid rgba(216, 232, 229, 0.98);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 251, 251, 0.96));
  box-shadow: var(--fc-shadow-md);
  overflow: hidden;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.fc-plan-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(220px 140px at 50% 0%, rgba(20, 148, 131, 0.08), transparent 72%),
    linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0));
  pointer-events: none;
}

.fc-plan-card > * {
  position: relative;
  z-index: 1;
}

.fc-plan-card:hover {
  transform: translateY(-4px);
  border-color: rgba(20, 148, 131, 0.22);
  box-shadow: var(--fc-shadow-lg);
}

.fc-plan-card--basic {
  background:
    radial-gradient(220px 160px at 50% 6%, rgba(20, 148, 131, 0.07), transparent 74%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.995), rgba(247, 251, 251, 0.97));
}

.fc-plan-card--featured {
  border-color: rgba(20, 148, 131, 0.28);
  background:
    radial-gradient(260px 180px at 50% 0%, rgba(20, 148, 131, 0.16), transparent 72%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.998), rgba(238, 248, 247, 0.98));
  box-shadow: 0 34px 72px rgba(16, 32, 51, 0.14);
  transform: translateY(-12px) scale(1.05);
}

.fc-plan-card--featured:hover {
  transform: translateY(-16px) scale(1.05);
}

.fc-plan-card--pro {
  border-color: rgba(11, 111, 104, 0.18);
  background:
    radial-gradient(240px 170px at 50% 0%, rgba(11, 111, 104, 0.12), transparent 74%),
    linear-gradient(180deg, rgba(250, 253, 253, 0.995), rgba(241, 248, 247, 0.98));
}

.fc-plan-card--featured::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(20, 148, 131, 0.18);
  pointer-events: none;
}

.fc-plan-card__top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
}

.fc-plan-card__media {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 220px;
  padding: 20px 18px 10px;
  border-radius: 28px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.84);
}

.fc-plan-card__art {
  display: block;
  width: min(100%, 320px);
  height: auto;
  max-height: 188px;
  object-fit: contain;
  filter: drop-shadow(0 20px 38px rgba(16, 32, 51, 0.12));
}

.fc-plan-card--basic .fc-plan-card__media {
  background:
    radial-gradient(220px 110px at 50% 16%, rgba(20, 148, 131, 0.12), transparent 74%),
    linear-gradient(180deg, rgba(248, 252, 252, 0.98), rgba(241, 248, 247, 0.92));
}

.fc-plan-card--plus .fc-plan-card__media {
  background:
    radial-gradient(250px 120px at 50% 14%, rgba(20, 148, 131, 0.18), transparent 74%),
    linear-gradient(180deg, rgba(246, 252, 251, 0.99), rgba(233, 246, 244, 0.95));
}

.fc-plan-card--pro .fc-plan-card__media {
  background:
    radial-gradient(250px 120px at 50% 14%, rgba(11, 111, 104, 0.16), transparent 74%),
    linear-gradient(180deg, rgba(246, 251, 251, 0.99), rgba(235, 244, 243, 0.95));
}

.fc-plan-card__top-copy {
  display: grid;
  gap: 9px;
  width: 100%;
  justify-items: center;
}

.fc-plan-card__eyebrow {
  min-height: 28px;
  padding: 6px 10px;
  font-size: 0.64rem;
  gap: 6px;
  letter-spacing: 0.04em;
  text-transform: none;
}

.fc-badge-star {
  width: 14px;
  height: 14px;
}

.fc-plan-card__label {
  color: var(--fc-ink-soft);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.fc-plan-card h3 {
  margin: 0;
  font-size: 1.56rem;
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.fc-plan-card__sub {
  margin: 0;
  max-width: 30ch;
  color: var(--fc-ink-soft);
  font-size: 0.96rem;
  line-height: 1.65;
}

.fc-plan-card__outcome {
  margin: 0;
  max-width: 24ch;
  color: var(--fc-ink);
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.45;
  letter-spacing: -0.02em;
}

.fc-price {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 8px;
}

.fc-price strong {
  font-size: clamp(2.5rem, 4.2vw, 3.1rem);
  line-height: 0.92;
  letter-spacing: -0.07em;
}

.fc-price span {
  padding-bottom: 8px;
  color: var(--fc-ink-soft);
  font-size: 0.9rem;
  font-weight: 700;
}

.fc-price-note {
  padding: 12px 14px;
  border-radius: 18px;
  border: 1px solid rgba(20, 148, 131, 0.16);
  background: rgba(20, 148, 131, 0.08);
  color: #0b665f;
  font-size: 0.85rem;
  line-height: 1.55;
}

.fc-feature-list {
  display: grid;
  gap: 11px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.fc-feature-list li {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  color: var(--fc-ink);
  font-size: 0.94rem;
  line-height: 1.58;
}

.fc-feature-list li svg {
  width: 18px;
  height: 18px;
  color: var(--fc-teal);
}

.fc-plan-card__meta {
  display: grid;
  gap: 10px;
  padding-top: 18px;
  border-top: 1px dashed rgba(191, 215, 211, 0.96);
  color: var(--fc-ink-soft);
  font-size: 0.84rem;
  line-height: 1.6;
}

.fc-plan-card__proof {
  padding: 12px 14px;
  border-radius: 18px;
  border: 1px solid rgba(20, 148, 131, 0.16);
  background: rgba(20, 148, 131, 0.08);
  color: #0b665f;
  font-size: 0.86rem;
  font-weight: 800;
  line-height: 1.45;
}

.fc-plan-card__actions {
  margin-top: auto;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  padding-top: 4px;
}

.fc-plan-card__actions .fc-btn {
  width: 100%;
}

.fc-plan-support {
  margin-top: 18px;
  text-align: center;
}

.fc-plan-support p {
  margin: 0;
}

.fc-plan-support .fc-payment-note {
  margin-top: 8px;
}

.fc-combo-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.fc-combo-card {
  padding: 18px 18px 20px;
  border-radius: 24px;
  border: 1px solid rgba(216, 232, 229, 0.98);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 251, 251, 0.96));
  box-shadow: var(--fc-shadow-sm);
}

.fc-combo-card span {
  display: block;
  color: var(--fc-ink-soft);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.fc-combo-card strong {
  display: block;
  margin-top: 10px;
  font-size: 1.2rem;
  line-height: 1.25;
  letter-spacing: -0.03em;
}

.fc-combo-card p {
  margin: 8px 0 0;
  color: var(--fc-ink-soft);
  line-height: 1.55;
  font-size: 0.9rem;
}

.fc-compare-shell {
  border: 1px solid rgba(216, 232, 229, 0.98);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(247, 251, 251, 0.96));
  box-shadow: var(--fc-shadow-md);
  overflow: hidden;
}

.fc-compare-table {
  width: 100%;
  border-collapse: collapse;
}

.fc-compare-table th,
.fc-compare-table td {
  padding: 18px 20px;
  border-bottom: 1px solid rgba(216, 232, 229, 0.92);
  text-align: left;
  vertical-align: middle;
}

.fc-compare-table th {
  background: rgba(244, 250, 249, 0.96);
  font-size: 0.9rem;
  letter-spacing: -0.02em;
}

.fc-compare-table th:first-child {
  width: 28%;
}

.fc-compare-table th.fc-compare-table__featured {
  background:
    linear-gradient(180deg, rgba(20, 148, 131, 0.14), rgba(20, 148, 131, 0.06)),
    rgba(244, 250, 249, 0.96);
}

.fc-compare-head {
  display: inline-grid;
  gap: 5px;
}

.fc-compare-head strong {
  font-size: 0.92rem;
}

.fc-compare-head span {
  color: var(--fc-ink-soft);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.fc-compare-head--featured span {
  color: #0b665f;
}

.fc-compare-table tr:last-child td {
  border-bottom: none;
}

.fc-compare-table__label {
  color: var(--fc-ink);
  font-weight: 700;
}

.fc-compare-table__sub {
  display: block;
  margin-top: 4px;
  color: var(--fc-ink-soft);
  font-size: 0.82rem;
  line-height: 1.45;
}

.fc-compare-cell {
  color: var(--fc-ink);
  font-weight: 700;
}

.fc-compare-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 999px;
}

.fc-compare-icon--yes {
  background: rgba(20, 148, 131, 0.12);
  color: var(--fc-teal);
}

.fc-compare-icon--no {
  background: rgba(16, 32, 51, 0.08);
  color: rgba(16, 32, 51, 0.58);
}

.fc-compare-icon svg {
  width: 16px;
  height: 16px;
}

.fc-mobile-compare {
  display: none;
}

.fc-mobile-compare__intro p {
  margin: 0;
  max-width: 42ch;
  color: var(--fc-ink-soft);
  font-size: 0.96rem;
  line-height: 1.66;
}

.fc-mobile-plan-rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(220px, 82%);
  gap: 12px;
  margin-top: 18px;
  overflow-x: auto;
  padding: 2px 4px 8px;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.fc-mobile-plan-rail::-webkit-scrollbar {
  display: none;
}

.fc-mobile-plan-card {
  position: relative;
  min-width: 0;
  padding: 18px 18px 20px;
  border-radius: 24px;
  border: 1px solid rgba(216, 232, 229, 0.98);
  background:
    radial-gradient(220px 120px at 100% 0%, rgba(20, 148, 131, 0.12), transparent 68%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(246, 251, 251, 0.96));
  box-shadow: var(--fc-shadow-md);
  scroll-snap-align: start;
}

.fc-mobile-plan-card__art {
  display: block;
  width: 100%;
  height: auto;
  margin-bottom: 14px;
  border-radius: 18px;
  box-shadow: 0 18px 34px rgba(16, 32, 51, 0.08);
}

.fc-mobile-plan-card--plus {
  border-color: rgba(20, 148, 131, 0.22);
  background:
    radial-gradient(240px 140px at 100% 0%, rgba(20, 148, 131, 0.18), transparent 70%),
    linear-gradient(180deg, rgba(246, 252, 251, 0.99), rgba(232, 246, 243, 0.96));
  box-shadow: 0 26px 54px rgba(11, 111, 104, 0.16);
}

.fc-mobile-plan-card__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 28px;
  margin-bottom: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, #15a899, #0b6f68);
  color: #fff;
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  box-shadow: 0 14px 28px rgba(11, 111, 104, 0.18);
}

.fc-mobile-plan-card__kicker {
  display: block;
  color: var(--fc-ink-soft);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.fc-mobile-plan-card h3 {
  margin: 10px 0 0;
  font-size: 1.36rem;
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.fc-mobile-plan-card__price {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  margin-top: 12px;
}

.fc-mobile-plan-card__price strong {
  font-size: 2rem;
  line-height: 0.92;
  letter-spacing: -0.06em;
}

.fc-mobile-plan-card__price span {
  padding-bottom: 5px;
  color: var(--fc-ink-soft);
  font-size: 0.88rem;
  font-weight: 700;
}

.fc-mobile-plan-card p {
  margin: 12px 0 0;
  color: var(--fc-ink-soft);
  font-size: 0.92rem;
  line-height: 1.62;
}

.fc-mobile-feature-list {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.fc-mobile-feature-card {
  min-width: 0;
  padding: 18px;
  border-radius: 24px;
  border: 1px solid rgba(216, 232, 229, 0.98);
  background:
    radial-gradient(180px 90px at 100% 0%, rgba(20, 148, 131, 0.08), transparent 72%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(246, 251, 251, 0.96));
  box-shadow: var(--fc-shadow-sm);
}

.fc-mobile-feature-card--price {
  border-color: rgba(20, 148, 131, 0.22);
  background:
    radial-gradient(220px 120px at 100% 0%, rgba(20, 148, 131, 0.14), transparent 74%),
    linear-gradient(180deg, rgba(246, 252, 251, 0.99), rgba(233, 246, 244, 0.97));
}

.fc-mobile-feature-card__head {
  display: grid;
  gap: 6px;
  margin-bottom: 14px;
}

.fc-mobile-feature-card__head strong {
  font-size: 1.02rem;
  line-height: 1.18;
  letter-spacing: -0.03em;
}

.fc-mobile-feature-card__head span {
  color: var(--fc-ink-soft);
  font-size: 0.87rem;
  line-height: 1.55;
}

.fc-mobile-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.fc-mobile-feature-cell {
  min-width: 0;
  display: grid;
  align-content: start;
  gap: 8px;
  padding: 12px 10px;
  border-radius: 18px;
  border: 1px solid rgba(216, 232, 229, 0.92);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.fc-mobile-feature-cell--featured {
  border-color: rgba(20, 148, 131, 0.2);
  background: linear-gradient(180deg, rgba(227, 247, 243, 0.92), rgba(255, 255, 255, 0.96));
}

.fc-mobile-feature-cell__plan {
  display: block;
  color: var(--fc-ink-soft);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  line-height: 1.1;
  text-transform: uppercase;
}

.fc-mobile-feature-cell strong {
  font-size: 0.92rem;
  line-height: 1.35;
  letter-spacing: -0.02em;
}

.fc-mobile-feature-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  width: fit-content;
  max-width: 100%;
  min-height: 34px;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.2;
}

.fc-mobile-feature-chip--yes {
  background: rgba(20, 148, 131, 0.12);
  color: var(--fc-teal-deep);
}

.fc-mobile-feature-chip--no {
  background: rgba(16, 32, 51, 0.08);
  color: rgba(16, 32, 51, 0.72);
}

.fc-cta-band {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  padding: 28px;
  border-radius: 30px;
  border: 1px solid rgba(191, 215, 211, 0.98);
  background:
    radial-gradient(280px 180px at 100% 0%, rgba(20, 148, 131, 0.12), transparent 70%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(241, 249, 248, 0.96));
  box-shadow: var(--fc-shadow-md);
}

.fc-cta-band h2 {
  margin: 10px 0 0;
  font-size: clamp(1.7rem, 2.6vw, 2.5rem);
  line-height: 1;
  letter-spacing: -0.05em;
}

.fc-cta-band p {
  margin: 12px 0 0;
  max-width: 50ch;
  color: var(--fc-ink-soft);
  line-height: 1.65;
}

.fc-cta-band .fc-actions {
  margin-top: 0;
  justify-content: flex-end;
}

.fc-notice {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  padding: 22px 24px;
  border-radius: 26px;
  border: 1px solid rgba(216, 232, 229, 0.98);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(247, 251, 251, 0.96));
  box-shadow: var(--fc-shadow-md);
}

.fc-notice[data-tone="success"] {
  border-color: rgba(20, 148, 131, 0.24);
  background:
    radial-gradient(220px 120px at 100% 0%, rgba(20, 148, 131, 0.12), transparent 72%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.995), rgba(241, 249, 248, 0.96));
}

.fc-notice[data-tone="warn"] {
  border-color: rgba(239, 127, 26, 0.24);
  background:
    radial-gradient(220px 120px at 100% 0%, rgba(239, 127, 26, 0.12), transparent 72%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.995), rgba(252, 248, 242, 0.96));
}

.fc-notice__copy strong {
  display: block;
  font-size: 1rem;
  letter-spacing: -0.02em;
}

.fc-notice__copy p {
  margin: 8px 0 0;
  color: var(--fc-ink-soft);
  line-height: 1.6;
}

.fc-notice__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.fc-info-card,
.fc-feature-card,
.fc-step-card,
.fc-form-card,
.fc-side-card,
.fc-exclusion-card,
.fc-landlord-card {
  min-width: 0;
  padding: 24px;
  border-radius: 28px;
  border: 1px solid rgba(216, 232, 229, 0.98);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(247, 251, 251, 0.96));
  box-shadow: var(--fc-shadow-md);
}

.fc-why-grid,
.fc-include-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.fc-info-card__icon,
.fc-feature-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: 16px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(20, 148, 131, 0.14), rgba(20, 148, 131, 0.08));
  color: var(--fc-teal);
}

.fc-info-card__icon svg,
.fc-feature-card__icon svg {
  width: 24px;
  height: 24px;
}

.fc-info-card h3,
.fc-feature-card h3,
.fc-step-card h3,
.fc-landlord-card h2,
.fc-form-card h2,
.fc-side-card h3,
.fc-exclusion-card h2 {
  margin: 0;
  font-size: 1.24rem;
  line-height: 1.12;
  letter-spacing: -0.03em;
}

.fc-info-card p,
.fc-feature-card p,
.fc-step-card p,
.fc-landlord-card p,
.fc-form-card p,
.fc-side-card p,
.fc-exclusion-card p {
  margin: 12px 0 0;
  color: var(--fc-ink-soft);
  line-height: 1.68;
}

.fc-exclusion-wrap {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.fc-exclusion-list,
.fc-landlord-list,
.fc-side-list {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.fc-exclusion-list li,
.fc-landlord-list li,
.fc-side-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--fc-ink);
  line-height: 1.6;
}

.fc-dot {
  width: 9px;
  height: 9px;
  margin-top: 8px;
  border-radius: 999px;
  background: var(--fc-teal);
  flex: 0 0 9px;
}

.fc-soft-note {
  margin-top: 18px;
  padding: 16px 18px;
  border-radius: 20px;
  border: 1px solid rgba(20, 148, 131, 0.14);
  background: rgba(20, 148, 131, 0.08);
  color: #0a6159;
  line-height: 1.6;
}

.fc-landlord-card {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(240px, 0.9fr);
  gap: 18px;
  align-items: center;
}

.fc-landlord-stats {
  display: grid;
  gap: 12px;
}

.fc-landlord-stat {
  padding: 18px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(15, 29, 44, 0.96), rgba(11, 111, 104, 0.94));
  color: #fff;
  box-shadow: 0 24px 46px rgba(11, 111, 104, 0.24);
}

.fc-landlord-stat span {
  display: block;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.fc-landlord-stat strong {
  display: block;
  margin-top: 10px;
  font-size: 1.2rem;
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.fc-activation-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
  gap: 18px;
}

.fc-step-card strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  margin-bottom: 14px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(20, 148, 131, 0.18), rgba(20, 148, 131, 0.1));
  color: var(--fc-teal);
  font-size: 0.94rem;
}

.fc-signup-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 18px;
  max-width: 980px;
  margin: 0 auto;
}

.fc-form-card {
  padding: 28px;
}

.fc-form-card--full {
  width: 100%;
}

.fc-form-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: flex-start;
  margin-bottom: 20px;
}

.fc-form-grid {
  display: grid;
  gap: 14px;
}

.fc-form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.fc-form-row--triad {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.fc-field {
  display: grid;
  gap: 8px;
}

.fc-field--premium {
  align-content: start;
  padding: 16px;
  border-radius: 24px;
  border: 1px solid rgba(216, 232, 229, 0.98);
  background:
    radial-gradient(220px 120px at 100% 0%, rgba(20, 148, 131, 0.08), transparent 74%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.995), rgba(246, 251, 251, 0.98));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.95), 0 18px 34px rgba(16, 32, 51, 0.05);
}

.fc-field label,
.fc-field span {
  color: var(--fc-ink);
  font-size: 0.88rem;
  font-weight: 700;
}

.fc-field__hint {
  margin-top: -2px;
  color: var(--fc-ink-soft);
  font-size: 0.8rem;
  font-weight: 600;
  line-height: 1.55;
}

.fc-field input,
.fc-field select,
.fc-field textarea {
  width: 100%;
  min-height: 54px;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(191, 215, 211, 0.98);
  background: rgba(255, 255, 255, 0.96);
  color: var(--fc-ink);
  font: inherit;
  outline: none;
  transition:
    border-color 0.18s ease,
    box-shadow 0.18s ease,
    background 0.18s ease,
    transform 0.18s ease;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.fc-field textarea {
  min-height: 136px;
  resize: vertical;
}

.fc-field--address {
  position: relative;
  align-content: start;
}

.fc-address-combobox {
  position: relative;
}

.fc-address-combobox input {
  padding-right: 84px;
}

.fc-address-clear {
  position: absolute;
  top: 10px;
  right: 10px;
  min-height: 34px;
  padding: 8px 12px;
  border: 1px solid rgba(191, 215, 211, 0.96);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--fc-teal-deep);
  font: inherit;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  cursor: pointer;
  box-shadow: 0 10px 22px rgba(16, 32, 51, 0.08);
}

.fc-address-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  left: 0;
  display: grid;
  gap: 6px;
  padding: 8px;
  border: 1px solid rgba(191, 215, 211, 0.98);
  border-radius: 22px;
  background:
    radial-gradient(220px 110px at 100% 0%, rgba(20, 148, 131, 0.08), transparent 72%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.995), rgba(244, 250, 249, 0.98));
  box-shadow: 0 26px 54px rgba(16, 32, 51, 0.14);
  max-height: min(320px, 45vh);
  overflow: auto;
  overscroll-behavior: contain;
  z-index: 18;
}

.fc-address-option {
  display: grid;
  gap: 4px;
  width: 100%;
  padding: 13px 14px;
  border: 1px solid transparent;
  border-radius: 16px;
  background: transparent;
  color: var(--fc-ink);
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition:
    border-color 0.18s ease,
    background 0.18s ease,
    transform 0.18s ease,
    box-shadow 0.18s ease;
}

.fc-address-option:hover,
.fc-address-option.is-active {
  border-color: rgba(20, 148, 131, 0.18);
  background: rgba(20, 148, 131, 0.08);
  box-shadow: 0 12px 26px rgba(16, 32, 51, 0.06);
  transform: translateY(-1px);
}

.fc-address-option__primary {
  color: var(--fc-ink);
  font-size: 0.96rem;
  font-weight: 800;
  line-height: 1.45;
}

.fc-address-option__meta {
  color: var(--fc-ink-soft);
  font-size: 0.84rem;
  font-weight: 600;
  line-height: 1.5;
}

.fc-address-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  min-height: 30px;
}

.fc-address-selection {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 32px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(20, 148, 131, 0.1);
  color: var(--fc-teal-deep);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.fc-address-selection::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: currentColor;
}

.fc-address-manual-toggle {
  padding: 0;
  border: 0;
  background: none;
  color: var(--fc-teal-deep);
  font: inherit;
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.4;
  text-decoration: underline;
  text-underline-offset: 0.18em;
  cursor: pointer;
}

.fc-address-hint[data-tone="warn"] {
  color: #9a5b1f;
}

.fc-address-hint[data-tone="success"] {
  color: #0a665e;
}

.fc-manual-address {
  display: grid;
  gap: 14px;
  padding: 16px;
  border: 1px solid rgba(191, 215, 211, 0.98);
  border-radius: 24px;
  background:
    radial-gradient(220px 120px at 100% 0%, rgba(20, 148, 131, 0.08), transparent 74%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.995), rgba(246, 251, 251, 0.98));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.95), 0 18px 34px rgba(16, 32, 51, 0.05);
}

.fc-field input:focus,
.fc-field select:focus,
.fc-field textarea:focus {
  border-color: rgba(20, 148, 131, 0.46);
  box-shadow: 0 0 0 4px rgba(20, 148, 131, 0.08), 0 14px 28px rgba(16, 32, 51, 0.08);
  background: #fff;
  transform: translateY(-1px);
}

.fc-age-alert {
  padding: 11px 12px;
  border-radius: 16px;
  border: 1px solid rgba(231, 105, 48, 0.18);
  background: linear-gradient(180deg, rgba(255, 243, 237, 0.98), rgba(255, 249, 246, 0.98));
  color: #a74c1a;
  font-size: 0.8rem;
  font-weight: 700;
  line-height: 1.55;
}

.fc-consent-card {
  display: grid;
  gap: 12px;
  padding: 18px;
  border-radius: 22px;
  border: 1px solid rgba(20, 148, 131, 0.16);
  background: linear-gradient(180deg, rgba(20, 148, 131, 0.05), rgba(255, 255, 255, 0.98));
}

.fc-consent-card p {
  margin: 0;
  color: var(--fc-ink-soft);
  font-size: 0.92rem;
  line-height: 1.6;
}

.fc-commitment-banner {
  display: grid;
  gap: 8px;
  padding: 16px 18px;
  border-radius: 20px;
  border: 1px solid rgba(16, 32, 51, 0.08);
  background:
    radial-gradient(280px 120px at 100% 0%, rgba(20, 148, 131, 0.1), transparent 72%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(243, 250, 249, 0.98));
  box-shadow: 0 14px 30px rgba(16, 32, 51, 0.05);
}

.fc-commitment-banner strong {
  color: var(--fc-teal-deep);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.fc-commitment-banner p {
  color: var(--fc-ink);
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.7;
}

.fc-consent-card__eyebrow {
  display: inline-flex;
  align-items: center;
  width: max-content;
  min-height: 30px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(20, 148, 131, 0.14);
  background: rgba(20, 148, 131, 0.1);
  color: var(--fc-teal-deep);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.fc-consent-points {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 18px;
  color: var(--fc-ink);
  font-size: 0.9rem;
  line-height: 1.55;
}

.fc-consent-check {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 12px;
  align-items: start;
  padding: 16px;
  border-radius: 18px;
  border: 1px solid rgba(191, 215, 211, 0.98);
  background: rgba(255, 255, 255, 0.92);
  color: var(--fc-ink);
  font-size: 0.9rem;
  line-height: 1.6;
  box-shadow: 0 14px 30px rgba(16, 32, 51, 0.04);
}

.fc-consent-check input {
  width: 19px;
  height: 19px;
  margin: 2px 0 0;
  accent-color: var(--fc-teal);
}

.fc-consent-check__copy {
  display: grid;
  gap: 4px;
}

.fc-consent-check__copy strong {
  color: var(--fc-ink);
  font-size: 0.94rem;
  font-weight: 800;
  line-height: 1.4;
}

.fc-consent-check__copy span {
  color: var(--fc-ink);
  font-weight: 600;
}

.fc-consent-links {
  font-size: 0.84rem;
}

.fc-consent-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.fc-submit-row {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 6px;
}

.fc-submit-row .fc-btn {
  border: 0;
  cursor: pointer;
}

.fc-form-note,
.fc-form-status {
  color: var(--fc-ink-soft);
  font-size: 0.88rem;
  line-height: 1.6;
}

.fc-form-status.is-error {
  color: #9b2c2c;
}

.fc-form-status.is-success {
  color: #0a665e;
}

.fc-side-card__summary {
  display: grid;
  gap: 12px;
  margin-top: 20px;
}

.fc-side-stat {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: flex-start;
  padding: 14px 0;
  border-bottom: 1px dashed rgba(191, 215, 211, 0.96);
}

.fc-side-stat:last-child {
  border-bottom: none;
}

.fc-side-stat span {
  color: var(--fc-ink-soft);
  font-size: 0.84rem;
  font-weight: 700;
}

.fc-side-stat strong {
  text-align: right;
  font-size: 0.96rem;
  line-height: 1.45;
  letter-spacing: -0.02em;
}

.fc-side-highlight {
  margin-top: 18px;
  padding: 16px 18px;
  border-radius: 20px;
  border: 1px solid rgba(20, 148, 131, 0.16);
  background: linear-gradient(180deg, rgba(227, 247, 243, 0.94), rgba(255, 255, 255, 0.98));
}

.fc-side-highlight strong {
  display: block;
  font-size: 0.95rem;
  letter-spacing: -0.02em;
}

.fc-side-highlight p {
  margin: 8px 0 0;
}

.fc-side-photo {
  overflow: hidden;
  margin-top: 18px;
  border-radius: 24px;
  border: 1px solid rgba(216, 232, 229, 0.98);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(245, 250, 249, 0.97));
  box-shadow: var(--fc-shadow-sm);
}

.fc-side-photo img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
}

.fc-side-photo__copy {
  display: grid;
  gap: 8px;
  padding: 16px 18px 18px;
}

.fc-side-photo__copy span {
  color: var(--fc-teal-deep);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.fc-side-photo__copy strong {
  font-size: 1.02rem;
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.fc-side-photo__copy p {
  margin: 0;
}

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

@media (max-width: 1180px) {
  .fc-hero {
    grid-template-columns: 1fr;
  }

  .fc-hero__copy h1 {
    max-width: none;
  }

  .fc-visual-shell {
    min-height: 460px;
  }

  .fc-mini-stats {
    width: 220px;
  }

  .fc-trust-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .fc-join-steps {
    grid-template-columns: 1fr;
  }

  .fc-combo-grid,
  .fc-why-grid,
  .fc-include-grid,
  .fc-steps,
  .fc-activation-grid,
  .fc-signup-grid,
  .fc-exclusion-wrap,
  .fc-landlord-card,
  .fc-proof-drawer__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .fc-page {
    padding: 10px 14px 82px;
  }

  .fc-hero {
    padding: 24px;
  }

  .fc-form-row {
    grid-template-columns: 1fr;
  }

  .fc-plan-grid {
    grid-template-columns: 1fr;
  }

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

  .fc-plan-card {
    padding: 24px;
  }

  .fc-plan-card--featured {
    transform: none;
  }

  .fc-plan-card--featured:hover {
    transform: none;
  }

  .fc-plan-card__media {
    min-height: 198px;
    padding-top: 16px;
    padding-bottom: 10px;
  }

  .fc-plan-card__art {
    max-height: 178px;
  }

  .fc-trust-strip,
  .fc-join-steps,
  .fc-cta-band {
    grid-template-columns: 1fr;
    padding-left: 24px;
    padding-right: 24px;
  }

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

  .fc-cta-band {
    display: grid;
  }

  .fc-notice {
    display: grid;
  }

  .fc-notice__actions {
    justify-content: flex-start;
  }

  .fc-cta-band .fc-actions {
    justify-content: flex-start;
    margin-top: 10px;
  }

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

  .fc-signup-grid > .fc-side-card {
    display: none;
  }

  .fc-section-head {
    display: grid;
    align-items: start;
  }

  .fc-compare-shell {
    display: none;
  }

  .fc-mobile-compare {
    display: grid;
    gap: 0;
  }
}

@media (max-width: 680px) {
  .fc-page {
    padding-bottom: 188px;
  }

  .fc-route-grid {
    grid-template-columns: 1fr;
  }

  .fc-shell,
  .fc-info-card,
  .fc-feature-card,
  .fc-step-card,
  .fc-form-card,
  .fc-side-card,
  .fc-exclusion-card,
  .fc-landlord-card,
  .fc-plan-card,
  .fc-combo-card {
    border-radius: 22px;
  }

  .fc-visual-shell {
    min-height: 400px;
    padding: 18px;
  }

  .fc-mobile-plan-rail {
    grid-auto-columns: minmax(230px, 88%);
  }

  .fc-mobile-feature-card {
    padding: 16px;
  }

  .fc-mobile-feature-grid {
    gap: 8px;
  }

  .fc-mobile-feature-cell {
    padding: 11px 9px;
    border-radius: 16px;
  }

  .fc-mobile-feature-cell strong {
    font-size: 0.88rem;
  }

  .fc-mobile-feature-chip {
    min-height: 32px;
    padding: 6px 9px;
    font-size: 0.78rem;
  }

  .fc-mini-stats {
    position: static;
    width: 100%;
    margin-top: 16px;
  }

  .fc-membership-card {
    width: 100%;
  }

  .fc-membership-card__art {
    width: min(124px, 42vw);
  }

  .fc-membership-card--secondary {
    position: relative;
    right: auto;
    bottom: auto;
    width: 86%;
    margin: 14px auto 0;
    transform: rotate(-4deg);
  }

  .fc-plan-badge--compact {
    width: 112px;
    min-height: 104px;
    padding: 14px 12px 12px;
  }

  .fc-plan-badge--compact::before {
    top: 12px;
    right: 12px;
    width: 38px;
    height: 38px;
  }

  .fc-plan-badge--compact::after {
    top: 20px;
    right: 24px;
  }

  .fc-membership-card--secondary .fc-plan-badge--compact {
    width: 98px;
    min-height: 98px;
  }

  .fc-actions,
  .fc-submit-row {
    flex-direction: column;
    align-items: stretch;
  }

  .fc-actions .fc-btn,
  .fc-submit-row .fc-btn {
    width: 100%;
  }

  .fc-sticky-cta {
    width: calc(100% - 16px);
    padding: 12px 14px;
    border-radius: 22px;
  }

  .fc-sticky-cta__copy strong {
    font-size: 0.98rem;
  }

  .fc-faq-card {
    border-radius: 20px;
  }

  .fc-faq-card summary {
    min-height: 50px;
    padding: 13px 15px;
    font-size: 0.94rem;
  }

  .fc-faq-answer {
    padding: 0 15px 15px;
  }

  .fc-trust-strip {
    grid-template-columns: 1fr;
    padding: 0 18px 18px;
  }

  .fc-plan-card__top {
    gap: 14px;
  }

  .fc-plan-badge--display {
    width: min(100%, 222px);
    min-height: 164px;
  }

  .fc-plan-badge--display::before {
    width: 54px;
    height: 54px;
  }

  .fc-plan-badge--display::after {
    top: 30px;
    right: 36px;
    font-size: 1.35rem;
  }

  .fc-plan-badge--display .fc-plan-badge__title {
    font-size: clamp(1.8rem, 7vw, 2.3rem);
  }

  .fc-address-dropdown {
    max-height: min(280px, 42vh);
  }

  .fc-address-meta {
    display: grid;
    justify-items: start;
  }

  .fc-address-clear {
    top: 9px;
    right: 9px;
    min-height: 32px;
    padding-right: 10px;
    padding-left: 10px;
  }
}

@media (max-width: 480px) {
  .fc-page {
    padding-top: 6px;
    padding-right: 10px;
    padding-bottom: 206px;
    padding-left: 10px;
  }

  .fc-hero {
    padding: 18px;
  }

  .fc-sticky-cta {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 8px;
    padding: 10px 12px;
  }

  .fc-sticky-cta .fc-btn {
    min-height: 46px;
    width: auto;
    padding-right: 16px;
    padding-left: 16px;
  }

  .fc-sticky-cta__copy span {
    font-size: 0.68rem;
  }

  .fc-sticky-cta__copy strong {
    margin-top: 4px;
    font-size: 0.92rem;
  }

  .fc-hero__copy h1,
  .fc-section-head h2 {
    letter-spacing: -0.05em;
  }

  .fc-trust-item,
  .fc-form-card,
  .fc-side-card,
  .fc-exclusion-card,
  .fc-plan-card {
    padding: 18px;
  }
}
