@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Plus+Jakarta+Sans:ital,wght@0,600;0,700;0,800&display=swap');

html {
  font-size: 112.5%;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Desktop reads denser at 100% zoom; mobile/tablet keep 112.5% for touch comfort. */
@media (min-width: 1025px) {
  html {
    font-size: 93.75%;
  }
}

html,
body {
  margin: 0;
  min-height: 100%;
  background: var(--fc-bg);
  background-color: var(--fc-bg);
  color: var(--fc-text);
}

.layout {
  min-height: 100%;
  display: flex;
  flex-direction: column;
}

.layout-main {
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
  width: 100%;
}

/* Default in-content links: brand teal (not browser blue). Header nav, CTAs, back crumb stay as later rules. */
.layout-main
  a[href]:where(
    :not([class*='fc-landing__btn']):not(.fc-landing__linkedin-btn):not(.fc-marketing-header__link):not(
        .fc-marketing-header__brand
      ):not(.fc-landing__feed-link)
  ) {
  color: var(--fc-primary);
  font-weight: 600;
  text-decoration-color: color-mix(in srgb, var(--fc-primary) 40%, transparent);
}

.layout-main
  a[href]:where(
    :not([class*='fc-landing__btn']):not(.fc-landing__linkedin-btn):not(.fc-marketing-header__link):not(
        .fc-marketing-header__brand
      ):not(.fc-landing__feed-link)
  ):hover {
  filter: brightness(1.08);
}

.layout-main
  a[href]:where(
    :not([class*='fc-landing__btn']):not(.fc-landing__linkedin-btn):not(.fc-marketing-header__link):not(
        .fc-marketing-header__brand
      ):not(.fc-landing__feed-link)
  ):visited {
  color: var(--fc-primary);
}

.footer {
  padding: 1rem var(--fc-page-gutter-x);
  font-size: 0.82rem;
  color: var(--fc-muted);
  border-top: 1px solid var(--fc-line-soft);
  font-family: var(--fc-font);
  margin-top: auto;
}

.footer__line {
  margin: 0;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
  line-height: 1.45;
  font-weight: 600;
}

.footer__line > .footer__sep {
  display: none;
}

@media (min-width: 1025px) {
  .footer .footer__line {
    max-width: min(var(--fc-page-inner-max), 100%);
    margin-inline: auto;
  }
}

.footer__copy {
  color: var(--fc-muted);
}

.footer__sep {
  opacity: 0.45;
  user-select: none;
}

.footer__legal-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
}

.footer__link {
  color: var(--fc-muted);
  font-weight: 600;
  text-decoration: none;
}

.footer__link:hover {
  color: var(--fc-primary);
}

/* Connect section — contact + social, above slim legal footer */
.fc-landing__linkedin {
  padding: clamp(48px, 8vw, 72px) var(--fc-page-gutter-x);
  background: var(--fc-elevated);
  border-top: 1px solid var(--fc-line-soft);
  text-align: center;
}

.fc-landing__linkedin-inner {
  max-width: 640px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.fc-landing__linkedin-heading {
  margin: 0;
  font-family: var(--fc-display);
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--fc-text);
  line-height: 1.2;
}

.fc-landing__linkedin-desc {
  margin: 0;
  font-size: clamp(0.98rem, 2vw, 1.08rem);
  line-height: 1.6;
  color: var(--fc-muted);
  max-width: 52ch;
}

.fc-landing__linkedin-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 4px;
  padding: 14px 28px;
  border-radius: 999px;
  background: linear-gradient(135deg, #0077b5, #005885);
  color: #fff;
  font-size: 1.02rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 8px 25px rgba(0, 119, 181, 0.3);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.fc-landing__linkedin-btn:visited {
  color: #fff;
}

.fc-landing__linkedin-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 119, 181, 0.38);
  color: #fff;
  filter: none;
}

html.fc-light .fc-landing__linkedin {
  background: #ffffff;
  border-top-color: #dfe5ec;
}

html.fc-light .fc-landing__linkedin-heading {
  color: #0a1018;
}

html.fc-light .fc-landing__linkedin-desc {
  color: #5c6778;
}

.fc-landing__connect {
  padding: clamp(36px, 6vw, 56px) var(--fc-page-gutter-x);
  background: color-mix(in srgb, var(--fc-bg-mid) 88%, var(--fc-bg));
  border-top: 1px solid var(--fc-line-soft);
  text-align: center;
}

.fc-landing__connect-inner {
  max-width: min(var(--fc-page-inner-max), 100%);
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.fc-landing__connect-heading {
  margin: 0;
  font-family: var(--fc-display);
  font-size: clamp(1.15rem, 2.6vw, 1.4rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--fc-text);
}

.fc-landing__connect-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px 28px;
}

.fc-landing__connect-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--fc-muted);
  font-size: 0.92rem;
  font-weight: 600;
}

.fc-landing__connect-link a {
  color: var(--fc-muted);
  font-weight: 600;
  text-decoration: none;
}

.fc-landing__connect-link a:hover {
  color: var(--fc-primary);
}

.fc-landing__connect-social {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
}

.fc-landing__connect-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  text-decoration: none;
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.fc-landing__connect-social-link img {
  display: block;
  width: 40px;
  height: 40px;
}

.fc-landing__connect-social-link:hover {
  transform: translateY(-4px) scale(1.05);
}

html.fc-light .fc-landing__connect {
  background: #f4f7fa;
  border-top-color: #dfe5ec;
}

html.fc-light .fc-landing__connect-heading {
  color: #0a1018;
}

html.fc-light .fc-landing__connect-social-link--x img,
html.fc-light .fc-landing__connect-social-link--tiktok img {
  filter: invert(1);
}

html.fc-light .layout-main:has(.fc-landing__connect) + .footer {
  background: linear-gradient(
    135deg,
    color-mix(in srgb, var(--fc-primary) 18%, var(--fc-bg)) 0%,
    var(--fc-bg-mid) 50%,
    var(--fc-bg) 100%
  );
  border-top-color: var(--fc-line-soft);
}

.legal-page__back {
  font-size: 0.88rem;
  margin: 0 0 20px;
}

.legal-page__back a {
  color: var(--fc-muted);
  font-weight: 600;
  text-decoration: none;
}

.legal-page__back a:hover {
  color: var(--fc-primary);
}

.legal-page__code {
  font-size: 0.88em;
  padding: 0.1em 0.35em;
  border-radius: 6px;
  background: var(--fc-elevated-2);
}

.about-wrap {
  font-family: var(--fc-font);
  max-width: min(var(--fc-page-inner-max), 100%);
  width: 100%;
  margin-inline: auto;
  padding: clamp(20px, 4vw, 28px) var(--fc-page-gutter-x) clamp(32px, 6vw, 72px);
  min-width: 0;
  box-sizing: border-box;
}

.about-wrap h1 {
  font-size: clamp(1.55rem, 3.5vw, 2.2rem);
  margin: 0 0 16px;
  font-weight: 800;
  letter-spacing: -0.035em;
  color: var(--fc-text);
}

/* Legal sheet — white card + intro hierarchy like dealonce.com/terms */
.legal-page__sheet {
  background: var(--fc-surface);
  border: 1px solid var(--fc-line-soft);
  border-radius: 12px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  padding: clamp(24px, 4vw, 40px);
  box-sizing: border-box;
}

html.fc-light .legal-page__sheet {
  background: #ffffff;
}

.legal-page__sheet > h1 {
  color: var(--fc-primary);
  border-bottom: 3px solid var(--fc-primary);
  padding-bottom: 10px;
  margin-bottom: 16px;
}

.legal-page__sheet > .legal-page__meta {
  margin: 0 0 16px;
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--fc-muted);
  font-weight: 500;
}

.legal-page__sheet > .legal-page__entity {
  margin: 0 0 24px;
  padding: 12px 16px;
  border-radius: 6px;
  background: color-mix(in srgb, var(--fc-muted) 12%, var(--fc-surface));
  border: none;
  font-size: 0.875rem;
  line-height: 1.55;
  font-weight: 500;
  color: color-mix(in srgb, var(--fc-text) 88%, var(--fc-muted));
}

html.fc-light .legal-page__sheet > .legal-page__entity {
  background: #f5f5f5;
  color: #555555;
}

.legal-page__sheet > .legal-page__section-heading {
  font-family: var(--fc-display);
  font-size: clamp(1.12rem, 2.6vw, 1.28rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--fc-primary);
  margin: 30px 0 12px;
  line-height: 1.25;
}

.legal-page__sheet > p:not(.legal-page__meta):not(.legal-page__entity) {
  font-size: 0.94rem;
  line-height: 1.58;
  color: var(--fc-text);
  margin: 0 0 14px;
}

.legal-page__sheet > .legal-doc {
  margin-top: 0;
}

/* Legal document body (Terms / Privacy / Cookies) — readable hierarchy like dealonce.com legal pages */
.about-wrap .legal-doc {
  font-size: 0.94rem;
  line-height: 1.58;
  color: var(--fc-text);
}

.about-wrap .legal-doc > *:first-child {
  margin-top: 0;
}

/* Fallback when meta/entity are outside .legal-page__sheet (e.g. privacy) */
.about-wrap > .legal-page__meta {
  margin: 0 0 20px;
  font-size: 0.82rem;
  line-height: 1.5;
  color: var(--fc-muted);
}

.about-wrap > .legal-page__entity {
  margin: 0 0 24px;
  padding: 14px 16px;
  border-radius: 12px;
  background: var(--fc-elevated-2);
  border: 1px solid var(--fc-line-soft);
  font-size: 0.88rem;
  line-height: 1.45;
  font-weight: 600;
  color: var(--fc-text);
}

html.fc-light .about-wrap > .legal-page__entity {
  background: color-mix(in srgb, var(--fc-primary) 6%, #fff);
  border-color: color-mix(in srgb, var(--fc-line) 85%, transparent);
}

.about-wrap .legal-doc h2 {
  font-family: var(--fc-display);
  font-size: clamp(1.08rem, 2.8vw, 1.22rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 30px 0 12px;
  color: var(--fc-primary);
  line-height: 1.25;
}

.about-wrap .legal-doc h2:first-of-type {
  margin-top: 28px;
}

.about-wrap .legal-doc h3 {
  font-size: 0.92rem;
  font-weight: 700;
  margin: 18px 0 8px;
  color: var(--fc-text);
  line-height: 1.35;
}

.about-wrap .legal-doc p {
  margin: 0 0 14px;
}

.about-wrap .legal-doc ul,
.about-wrap .legal-doc ol {
  margin: 0 0 16px;
  padding-left: 1.35rem;
}

.about-wrap .legal-doc li {
  margin-bottom: 8px;
}

.about-wrap .legal-doc li:last-child {
  margin-bottom: 0;
}

.about-wrap .legal-doc a {
  color: var(--fc-primary);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.about-wrap .legal-doc a:hover {
  filter: brightness(1.08);
}

.about-wrap .legal-doc .legal-page__note {
  margin: 20px 0 0;
  padding-top: 16px;
  border-top: 1px solid var(--fc-line-soft);
  font-size: 0.82rem;
  color: var(--fc-muted);
  line-height: 1.45;
}

@media (max-width: 640px) {
  .about-wrap {
    padding-bottom: 40px;
  }

  .footer {
    padding: 0.75rem var(--fc-page-gutter-x);
    font-size: 0.78rem;
  }

  .footer__legal-nav {
    gap: 6px;
  }
}

/* ── Alternating section bands (about page) ── */
.fc-landing__section--band-white {
  background: var(--fc-elevated);
  border-bottom: 1px solid var(--fc-line-soft);
}

.fc-landing__section--band-muted {
  background: color-mix(in srgb, var(--fc-bg-mid) 88%, var(--fc-bg));
  border-bottom: 1px solid var(--fc-line-soft);
}

.fc-landing__section--band-white.fc-landing__audiences,
.fc-landing__section--band-white.fc-landing__download {
  background: var(--fc-elevated);
  border-block-color: var(--fc-line-soft);
}

.fc-landing__section--band-muted.fc-landing__audiences,
.fc-landing__section--band-muted.fc-landing__download {
  background: color-mix(in srgb, var(--fc-bg-mid) 88%, var(--fc-bg));
  border-block-color: var(--fc-line-soft);
}

.fc-landing__section--band-white .fc-landing__section-head h2,
.fc-landing__section--band-muted .fc-landing__section-head h2 {
  color: var(--fc-text);
}

.fc-landing__section--band-white .fc-landing__section-head p,
.fc-landing__section--band-muted .fc-landing__section-head p {
  color: var(--fc-muted);
}

.fc-landing__section--band-white .fc-landing__aud-card {
  background: var(--fc-surface);
  border-color: var(--fc-line-soft);
}

.fc-landing__section--band-white .fc-landing__aud-card h3 {
  color: var(--fc-primary);
}

.fc-landing__section--band-white .fc-landing__aud-card p {
  color: var(--fc-muted);
}

.fc-landing__section--band-muted .fc-landing__aud-card {
  background: var(--fc-elevated);
  border-color: var(--fc-line-soft);
}

.fc-landing__section--band-white .fc-landing__faq-item {
  background: var(--fc-surface);
  border-color: var(--fc-line-soft);
}

.fc-landing__section--band-white .fc-landing__faq-item summary {
  color: var(--fc-text);
}

.fc-landing__section--band-white .fc-landing__faq-item p {
  color: var(--fc-muted);
}

/* Features section (white band) */
.fc-landing__features.fc-landing__section--band-white .fc-landing__feature {
  background: var(--fc-surface);
  border-color: var(--fc-line-soft);
}

.fc-landing__features.fc-landing__section--band-white .fc-landing__feature:hover {
  border-color: color-mix(in srgb, var(--fc-primary) 35%, var(--fc-line));
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.35);
}

.fc-landing__features.fc-landing__section--band-white .fc-landing__feature h3 {
  color: var(--fc-text);
}

.fc-landing__features.fc-landing__section--band-white .fc-landing__feature p {
  color: var(--fc-muted);
}

html.fc-light .fc-landing__section--band-white {
  background: #ffffff;
  border-bottom-color: #dfe5ec;
}

html.fc-light .fc-landing__section--band-muted {
  background: #f4f7fa;
  border-bottom-color: #dfe5ec;
}

html.fc-light .fc-landing__section--band-white.fc-landing__audiences,
html.fc-light .fc-landing__section--band-white.fc-landing__download {
  background: #ffffff;
  border-block-color: #dfe5ec;
}

html.fc-light .fc-landing__section--band-muted.fc-landing__audiences,
html.fc-light .fc-landing__section--band-muted.fc-landing__download {
  background: #f4f7fa;
  border-block-color: #dfe5ec;
}

html.fc-light .fc-landing__section--band-white .fc-landing__section-head h2,
html.fc-light .fc-landing__section--band-muted .fc-landing__section-head h2 {
  color: #0a1018;
}

html.fc-light .fc-landing__section--band-white .fc-landing__section-head p,
html.fc-light .fc-landing__section--band-muted .fc-landing__section-head p {
  color: #5c6778;
}

html.fc-light .fc-landing__section--band-white .fc-landing__aud-card {
  background: #f4f7fa;
  border-color: #e2e8f0;
}

html.fc-light .fc-landing__section--band-white .fc-landing__aud-card p {
  color: #5c6778;
}

html.fc-light .fc-landing__section--band-muted .fc-landing__aud-card {
  background: #ffffff;
  border-color: #e2e8f0;
}

html.fc-light .fc-landing__section--band-white .fc-landing__faq-item {
  background: #f4f7fa;
  border-color: #e2e8f0;
}

html.fc-light .fc-landing__section--band-white .fc-landing__faq-item summary {
  color: #0a1018;
}

html.fc-light .fc-landing__section--band-white .fc-landing__faq-item p {
  color: #5c6778;
}

html.fc-light .fc-landing__features.fc-landing__section--band-white .fc-landing__feature {
  background: #f4f7fa;
  border-color: #e2e8f0;
}

html.fc-light .fc-landing__features.fc-landing__section--band-white .fc-landing__feature:hover {
  border-color: color-mix(in srgb, var(--fc-primary) 40%, #e2e8f0);
  box-shadow: 0 14px 36px rgba(15, 23, 42, 0.08);
}

html.fc-light .fc-landing__features.fc-landing__section--band-white .fc-landing__feature h3 {
  color: #0a1018;
}

html.fc-light .fc-landing__features.fc-landing__section--band-white .fc-landing__feature p {
  color: #5c6778;
}

/* ── Profile demo section ── */
.fc-landing__profile-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: start;
}

.fc-landing__profile-card {
  background: var(--fc-surface);
  border: 1px solid var(--fc-line-soft);
  border-radius: 16px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.fc-landing__profile-card-top {
  display: flex;
  gap: 8px;
  align-items: center;
}

.fc-landing__profile-pill {
  background: var(--fc-primary);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 2px 10px;
  border-radius: 999px;
  text-transform: uppercase;
}

.fc-landing__profile-chip {
  font-size: 0.75rem;
  color: var(--fc-muted);
}

.fc-landing__profile-eyebrow {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--fc-muted);
  margin: 0;
}

.fc-landing__profile-headline {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0;
  color: var(--fc-text);
}

.fc-landing__profile-meta {
  font-size: 0.78rem;
  color: var(--fc-muted);
  margin: 0;
}

.fc-landing__profile-meter {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.fc-landing__profile-meter-head {
  display: flex;
  justify-content: space-between;
  font-size: 0.78rem;
  color: var(--fc-muted);
}

.fc-landing__profile-meter-val { font-weight: 600; color: var(--fc-primary); }

.fc-landing__profile-meter-track {
  height: 6px;
  background: var(--fc-surface-raised, rgba(148,163,184,0.15));
  border-radius: 999px;
  overflow: hidden;
}

.fc-landing__profile-meter-fill {
  height: 100%;
  background: var(--fc-primary);
  border-radius: 999px;
}

.fc-landing__profile-week {
  border-top: 1px solid var(--fc-line-soft);
  padding-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.fc-landing__profile-week-title {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--fc-muted);
  margin: 0;
}

.fc-landing__profile-week-rows { display: flex; flex-direction: column; gap: 4px; }

.fc-landing__profile-week-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--fc-text);
}

.fc-landing__profile-rank {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--fc-surface-raised, rgba(148,163,184,0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--fc-muted);
  flex-shrink: 0;
}

.fc-landing__profile-stat { margin-left: auto; font-weight: 600; }
.fc-landing__profile-stat--accent { color: var(--fc-primary); }

/* right column */
.fc-landing__profile-stats {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.fc-landing__profile-stats-title {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--fc-muted);
  font-weight: 600;
  margin: 0;
}

.fc-landing__profile-stats-sub {
  font-size: 0.85rem;
  color: var(--fc-muted);
  line-height: 1.5;
  margin: 0;
}

.fc-landing__profile-stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.fc-landing__profile-stat-box {
  background: var(--fc-surface);
  border: 1px solid var(--fc-line-soft);
  border-radius: 12px;
  padding: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-align: center;
}

.fc-landing__profile-stat-box strong {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--fc-primary);
}

.fc-landing__profile-stat-box span {
  font-size: 0.68rem;
  color: var(--fc-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.fc-landing__profile-panels {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.fc-landing__profile-panel {
  background: var(--fc-surface);
  border: 1px solid var(--fc-line-soft);
  border-radius: 12px;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.fc-landing__profile-panel-cap {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--fc-muted);
}

.fc-landing__profile-points {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--fc-primary);
}

.fc-landing__profile-cal-bar {
  height: 5px;
  background: var(--fc-surface-raised, rgba(148,163,184,0.15));
  border-radius: 999px;
  overflow: hidden;
  margin: 4px 0;
}

.fc-landing__profile-cal-fill {
  height: 100%;
  background: var(--fc-primary);
  border-radius: 999px;
}

.fc-landing__profile-cal-val {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--fc-text);
}

.fc-landing__profile-panel-meta {
  font-size: 0.72rem;
  color: var(--fc-muted);
  margin: 0;
  line-height: 1.4;
}

@media (max-width: 768px) {
  .fc-landing__profile-grid {
    grid-template-columns: 1fr;
  }
  .fc-landing__profile-panels {
    grid-template-columns: 1fr;
  }
}

/* ── Delete account (tellshots.com/delete-account) — form + alerts, Deal Once–style flow ── */
.fc-delete-account__warning {
  background: color-mix(in srgb, #f59e0b 18%, var(--fc-surface));
  border-left: 4px solid #f59e0b;
  padding: 18px 20px;
  margin: 20px 0;
  border-radius: 8px;
}

.fc-delete-account__warning h2 {
  margin: 0 0 8px;
  font-size: 1.05rem;
  color: var(--fc-text);
}

.fc-delete-account__warning p {
  margin: 0;
  color: var(--fc-text);
}

.fc-delete-account__info {
  background: color-mix(in srgb, var(--fc-primary) 14%, var(--fc-surface));
  border-left: 4px solid var(--fc-primary);
  padding: 18px 20px;
  margin: 24px 0;
  border-radius: 8px;
}

.fc-delete-account__info h2,
.fc-delete-account__info h3 {
  margin: 16px 0 8px;
  font-size: 1rem;
  color: var(--fc-text);
}

.fc-delete-account__info h2:first-child,
.fc-delete-account__info h3:first-child {
  margin-top: 0;
}

.fc-delete-account__info p,
.fc-delete-account__info li {
  color: var(--fc-text);
}

.fc-delete-account__form-wrap {
  background: var(--fc-surface);
  border: 2px solid color-mix(in srgb, var(--fc-primary) 45%, var(--fc-line-soft));
  padding: clamp(20px, 4vw, 30px);
  margin: 28px 0;
  border-radius: 14px;
}

.fc-delete-account__form-wrap h2 {
  margin: 0 0 16px;
  font-size: 1.15rem;
  color: var(--fc-primary);
}

.fc-delete-account__alert {
  padding: 16px 18px;
  margin: 0 0 18px;
  border-radius: 8px;
  border-left: 4px solid transparent;
}

.fc-delete-account__alert[hidden] {
  display: none !important;
}

.fc-delete-account__alert--success {
  background: color-mix(in srgb, #22c55e 16%, var(--fc-surface));
  border-left-color: #22c55e;
}

.fc-delete-account__alert--error {
  background: color-mix(in srgb, #ef4444 14%, var(--fc-surface));
  border-left-color: #ef4444;
}

.fc-delete-account__alert h3 {
  margin: 0 0 8px;
  font-size: 1rem;
  color: var(--fc-text);
}

.fc-delete-account__alert p {
  margin: 0;
  color: var(--fc-text);
  line-height: 1.45;
}

.fc-delete-account__field {
  margin-bottom: 18px;
}

.fc-delete-account__field label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
  color: var(--fc-text);
}

.fc-delete-account__req {
  color: #ef4444;
}

.fc-delete-account__field input,
.fc-delete-account__field textarea {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  padding: 12px 14px;
  border: 1px solid var(--fc-line-soft);
  border-radius: 8px;
  font-size: 1rem;
  font-family: var(--fc-font);
  background: var(--fc-surface);
  color: var(--fc-text);
}

.fc-delete-account__field input:focus,
.fc-delete-account__field textarea:focus {
  outline: none;
  border-color: var(--fc-primary);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--fc-primary) 22%, transparent);
}

.fc-delete-account__field textarea {
  resize: vertical;
  min-height: 100px;
}

.fc-delete-account__hint {
  display: block;
  margin-top: 6px;
  font-size: 0.85rem;
  color: var(--fc-muted);
}

.fc-delete-account__submit {
  display: block;
  width: 100%;
  margin-top: 8px;
  padding: 14px 20px;
  border: none;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  background: #dc2626;
  color: #fff;
  font-family: var(--fc-font);
}

.fc-delete-account__submit:hover:not(:disabled) {
  background: #b91c1c;
}

.fc-delete-account__submit:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

html.fc-light .fc-delete-account__field input,
html.fc-light .fc-delete-account__field textarea {
  background: #fff;
}

/* Hero: one fine-print line under CTAs (store / OAuth purpose + legal links) */
.fc-landing__hero .fc-landing__fine-print {
  margin-top: 4px;
  max-width: 58ch;
}

.fc-landing__hero .fc-landing__fine-print .fc-landing__micro {
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.72);
}

.fc-landing__hero .fc-landing__fine-print a {
  color: rgba(255, 255, 255, 0.88);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}

.fc-landing__hero .fc-landing__fine-print a:hover {
  color: #fff;
  border-bottom-color: rgba(255, 255, 255, 0.5);
}

.fc-landing__hero .fc-landing__fine-print-sep {
  opacity: 0.45;
}

/* ── Promo hero (about page): badge, accent title, checks, 2 phones ── */
.fc-landing__hero--promo {
  background: linear-gradient(180deg, #1e2838 0%, #182030 48%, #121820 100%);
  padding: clamp(36px, 6vw, 64px) var(--fc-page-gutter-x) clamp(44px, 7vw, 72px);
}

.fc-landing__hero--promo .fc-landing__eyebrow {
  font-size: clamp(0.95rem, 2.2vw, 1.15rem);
  letter-spacing: 0.14em;
  margin-bottom: 12px;
}

.fc-landing__hero--promo .fc-landing__hero-deco::before {
  content: '';
  position: absolute;
  width: min(760px, 95%);
  height: 90%;
  right: -10%;
  top: 50%;
  transform: translateY(-50%);
  background: radial-gradient(
    ellipse at center,
    rgba(46, 230, 192, 0.14) 0%,
    rgba(46, 230, 192, 0.06) 42%,
    transparent 75%
  );
  pointer-events: none;
}

.fc-landing__hero-deco {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.fc-landing__hero-ring {
  position: absolute;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.08);
}

.fc-landing__hero-ring--1 {
  width: 420px;
  height: 420px;
  right: -80px;
  top: -120px;
}

.fc-landing__hero-ring--2 {
  width: 280px;
  height: 280px;
  right: 60px;
  bottom: -60px;
  border-color: rgba(255, 255, 255, 0.05);
}

.fc-landing__hero-spark {
  position: absolute;
  font-size: 1.4rem;
  color: rgba(255, 255, 255, 0.35);
  line-height: 1;
}

.fc-landing__hero-spark--1 {
  right: 18%;
  top: 14%;
}

.fc-landing__hero-spark--2 {
  right: 8%;
  bottom: 22%;
  font-size: 1rem;
  opacity: 0.6;
}

.fc-landing__hero-inner--promo {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: min(1120px, 100%);
}

.fc-landing__hero-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(24px, 4vw, 36px);
  align-items: start;
}

@media (min-width: 960px) {
  .fc-landing__hero-split {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: clamp(20px, 3vw, 32px);
  }
}

.fc-landing__hero-copy {
  min-width: 0;
}

.fc-landing__hero-aside {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  min-width: 0;
}

.fc-landing__hero-aside-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(24px, 3vw, 32px);
  width: 100%;
  padding: clamp(18px, 2.5vw, 24px) clamp(14px, 2.5vw, 20px) clamp(20px, 3vw, 28px);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(0, 0, 0, 0.22);
  box-shadow:
    0 24px 48px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  box-sizing: border-box;
}

.fc-landing__hero-aside-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  width: 100%;
  max-width: 100%;
  margin-inline: auto;
  margin-top: 8px;
  text-align: center;
}

.fc-landing__hero-aside-actions .fc-landing__cta-row--promo {
  margin-bottom: 0;
  justify-content: center;
  width: 100%;
}

.fc-landing__btn:has(.fc-landing__download-btn-icon) {
  gap: 8px;
}

.fc-landing__hero-aside-actions .fc-landing__hero-note,
.fc-landing__hero-aside-actions .fc-landing__micro--promo {
  text-align: center;
  max-width: 36ch;
  margin-inline: auto;
}

.fc-landing__hero-badge {
  display: block;
  width: 100%;
  max-width: 100%;
  margin: 0 0 16px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: center;
  color: rgba(255, 255, 255, 0.95);
  background: rgba(255, 255, 255, 0.08);
  box-sizing: border-box;
}

.fc-landing__title--promo {
  font-size: clamp(1.65rem, 3.8vw, 2.4rem);
  line-height: 1.2;
  margin: 0 0 14px;
}

.fc-landing__title-accent {
  color: #7ef0c8;
  text-shadow: 0 0 40px rgba(126, 240, 200, 0.25);
}

.fc-landing__hero--promo .fc-landing__hero-tagline {
  margin: -4px 0 16px;
  font-size: clamp(1.05rem, 2.2vw, 1.15rem);
  font-weight: 700;
  letter-spacing: 0.05em;
  color: rgba(158, 245, 212, 0.9);
}

.fc-landing__lede-hook {
  margin: 0 0 12px;
  max-width: 48ch;
  font-family: var(--fc-display);
  font-size: clamp(1.05rem, 2.4vw, 1.2rem);
  font-weight: 700;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.95);
}

.fc-landing__lede-block {
  margin: 0 0 20px;
  max-width: 50ch;
}

.fc-landing__lede--promo {
  max-width: none;
  margin-bottom: 10px;
  font-size: clamp(0.96rem, 2vw, 1.05rem);
  line-height: 1.58;
  color: rgba(255, 255, 255, 0.88);
}

.fc-landing__lede-note {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.72);
}

.fc-landing__hero-feature-panel {
  margin: 0 0 24px;
  padding: 16px 18px;
  max-width: 56ch;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(0, 0, 0, 0.18);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.fc-landing__hero-features-label {
  margin: 0 0 12px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}

.fc-landing__hero-feature-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

@media (min-width: 640px) {
  .fc-landing__hero-feature-list {
    grid-template-columns: 1fr 1fr;
    column-gap: 14px;
  }
}

.fc-landing__hero-feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  min-width: 0;
}

.fc-landing__hero-feature-icon {
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  font-size: 0.82rem;
  line-height: 1;
}

.fc-landing__hero-feature-text {
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.92);
  padding-top: 4px;
}

.fc-landing__hero-checks {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
}

.fc-landing__hero-checks--grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 9px 16px;
  max-width: 52ch;
}

@media (min-width: 640px) {
  .fc-landing__hero-checks--grid {
    grid-template-columns: 1fr 1fr;
    max-width: 56ch;
  }
}

.fc-landing__hero-checks li {
  position: relative;
  padding-left: 1.35rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.35;
}

.fc-landing__hero-checks li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #7ef0c8;
  font-weight: 800;
}

.fc-landing__cta-row--promo {
  margin-bottom: 10px;
}

.fc-landing__hero-note {
  margin: 0 0 12px;
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.72);
}

.fc-landing__micro--promo {
  max-width: 48ch;
  font-size: 0.92rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.72);
}

.fc-landing__micro--promo a {
  color: rgba(255, 255, 255, 0.95);
  font-weight: 700;
  font-size: 0.98rem;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
}

.fc-landing__micro--promo a:hover {
  color: #fff;
}

.fc-landing__hero-visual-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  width: 100%;
  margin-inline: auto;
}

.fc-landing__hero-visual-caption {
  margin: 0;
  text-align: center;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.65);
  max-width: 32ch;
}

@media (min-width: 960px) {
  .fc-landing__hero-aside-card {
    padding: clamp(20px, 2.5vw, 28px) clamp(18px, 2.5vw, 24px) clamp(22px, 3vw, 32px);
  }
}

.fc-landing__hero-phones {
  position: relative;
  width: 100%;
  max-width: 440px;
  margin-inline: auto;
  aspect-ratio: 1 / 0.88;
  min-height: 280px;
}

.fc-landing__hero-phones--composite {
  max-width: 100%;
  aspect-ratio: auto;
  min-height: unset;
  display: block;
  position: relative;
}

.fc-landing__hero-composite {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 24px 48px rgba(0, 0, 0, 0.35));
}

.fc-landing__hero-float {
  position: absolute;
  padding: 10px 14px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(5, 16, 13, 0.82);
  backdrop-filter: blur(8px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
  line-height: 1.2;
}

.fc-landing__hero-float strong {
  display: block;
  font-size: 0.82rem;
  font-weight: 800;
  color: #7ef0c8;
  margin-bottom: 2px;
}

.fc-landing__hero-float span {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.78);
}

.fc-landing__hero-float--1 {
  left: -4%;
  bottom: 18%;
}

.fc-landing__hero-float--2 {
  right: -2%;
  top: 12%;
}

@media (max-width: 959px) {
  .fc-landing__hero-float--1 {
    left: 0;
    bottom: 8%;
  }

  .fc-landing__hero-float--2 {
    right: 0;
    top: 6%;
  }
}

.fc-landing__hero-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
  max-width: 100%;
}

.fc-landing__hero-chips li {
  padding: 7px 13px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.1);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.92);
  white-space: nowrap;
}

@media (min-width: 960px) {
  .fc-landing__hero-chips {
    justify-content: center;
  }
}

.fc-landing__hero-phone {
  position: absolute;
  display: block;
  width: 52%;
  height: auto;
  border-radius: 28px;
  box-shadow:
    0 28px 70px rgba(0, 0, 0, 0.45),
    0 8px 20px rgba(0, 0, 0, 0.35),
    0 0 0 1px rgba(255, 255, 255, 0.08) inset;
  background: #0b1310;
}

.fc-landing__hero-phone--left {
  left: 2%;
  top: 6%;
  transform: rotate(-7deg);
  z-index: 1;
}

.fc-landing__hero-phone--right {
  right: 0;
  bottom: 0;
  transform: rotate(6deg);
  z-index: 2;
  width: 54%;
  box-shadow:
    0 36px 90px rgba(0, 0, 0, 0.5),
    0 12px 28px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(255, 255, 255, 0.1) inset;
}

@media (max-width: 959px) {
  .fc-landing__hero-phones {
    max-width: 360px;
    aspect-ratio: 1 / 0.82;
  }

  .fc-landing__hero-phone {
    width: 54%;
    border-radius: 22px;
  }
}

@media (max-width: 640px) {
  .fc-landing__hero-feature-panel {
    padding: 14px 14px;
  }

  .fc-landing__hero-aside-card {
    padding: 16px 12px 18px;
    border-radius: 16px;
  }

  .fc-landing__hero-float {
    padding: 8px 11px;
  }

  .fc-landing__hero-float strong {
    font-size: 0.76rem;
  }

  .fc-landing__hero-float span {
    font-size: 0.68rem;
  }

  .fc-landing__hero-checks {
    flex-direction: column;
    gap: 8px;
  }

  .fc-landing__cta-row--promo {
    flex-direction: column;
    align-items: stretch;
  }
}

/* ── Split hero (about page): copy on the left, phone screens on the right ── */
.fc-landing__hero--split .fc-landing__hero-inner--split {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(24px, 4vw, 40px);
  align-items: center;
}

@media (min-width: 980px) {
  .fc-landing__hero--split .fc-landing__hero-inner--split {
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
    gap: clamp(32px, 5vw, 56px);
  }
}

.fc-landing__hero-copy {
  min-width: 0;
}

.fc-landing__hero-copy .fc-landing__lede {
  max-width: 56ch;
}

.fc-landing__hero-copy .fc-landing__pitch {
  max-width: 56ch;
}

.fc-landing__hero-copy .fc-landing__fine-print {
  max-width: 64ch;
}

/* Hero: explicit app-purpose panel (Google OAuth branding verification) */
.fc-landing__purpose-panel {
  margin: 0 0 18px;
  padding: 16px 18px;
  max-width: 58ch;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.fc-landing__purpose-steps {
  margin: 0 0 16px;
  max-width: 58ch;
}

.fc-landing__purpose-label {
  margin: 0 0 8px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fc-primary, #2dd4bf);
}

.fc-landing__purpose-text {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.62;
  color: rgba(255, 255, 255, 0.92);
}

.fc-landing__purpose-list {
  margin: 0;
  padding-left: 1.15rem;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.94rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.86);
}

.fc-landing__purpose-list li::marker {
  color: var(--fc-primary, #2dd4bf);
}

.fc-landing__lede--tagline {
  margin-top: 0;
  margin-bottom: 18px;
  font-size: 0.95rem;
  opacity: 0.88;
}

html.fc-light .fc-landing__purpose-panel {
  background: rgba(0, 0, 0, 0.03);
  border-color: rgba(0, 0, 0, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

html.fc-light .fc-landing__purpose-text,
html.fc-light .fc-landing__purpose-list {
  color: rgba(0, 0, 0, 0.82);
}

/* Phone screen mosaic — staggered fan of three iOS screenshots */
.fc-landing__hero-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.fc-landing__hero-screens {
  position: relative;
  width: 100%;
  max-width: 460px;
  aspect-ratio: 1 / 1;
  margin-inline: auto;
}

.fc-landing__hero-screen {
  position: absolute;
  display: block;
  width: 58%;
  height: auto;
  border-radius: 28px;
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.45),
    0 6px 16px rgba(0, 0, 0, 0.35),
    0 0 0 1px rgba(255, 255, 255, 0.06) inset;
  background: #0b1310;
}

.fc-landing__hero-screen--back {
  top: 0;
  left: 4%;
  transform: rotate(-8deg);
  opacity: 0.92;
  z-index: 1;
}

.fc-landing__hero-screen--mid {
  top: 4%;
  right: 2%;
  transform: rotate(7deg);
  z-index: 2;
}

.fc-landing__hero-screen--front {
  bottom: 0;
  left: 22%;
  transform: rotate(-2deg);
  z-index: 3;
  box-shadow:
    0 32px 80px rgba(0, 0, 0, 0.55),
    0 10px 24px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(255, 255, 255, 0.08) inset;
}

.fc-landing__hero-visual-caption {
  margin: 0;
  text-align: center;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 38ch;
  line-height: 1.5;
}

@media (max-width: 979px) {
  .fc-landing__hero-screens {
    max-width: 380px;
  }

  .fc-landing__hero-screen {
    width: 60%;
  }
}

@media (max-width: 640px) {
  .fc-landing__hero-screens {
    max-width: 320px;
    aspect-ratio: 1 / 0.95;
  }

  .fc-landing__hero-screen {
    width: 62%;
    border-radius: 22px;
  }

  .fc-landing__hero-screen--back {
    transform: rotate(-6deg);
  }

  .fc-landing__hero-screen--mid {
    transform: rotate(5deg);
  }

  .fc-landing__hero-screen--front {
    transform: rotate(-1deg);
  }
}

/* ── App tour section: marketing panels in sequence ── */
.fc-landing__screens-tour {
  background: linear-gradient(180deg, var(--fc-bg) 0%, var(--fc-elevated, var(--fc-bg)) 100%);
}

.fc-landing__screens-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: clamp(20px, 3vw, 32px);
  margin-top: 18px;
}

.fc-landing__screens-grid--tour,
.fc-landing__screens-grid--six {
  display: flex;
  gap: clamp(10px, 1.5vw, 16px);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 6px;
  margin-top: 18px;
}

@media (min-width: 1280px) {
  .fc-landing__screens-grid--tour {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    overflow-x: visible;
  }

  .fc-landing__screens-grid--six {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    overflow-x: visible;
  }
}

.fc-landing__screen-card {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 14px;
  background: var(--fc-surface);
  border: 1px solid var(--fc-line-soft);
  border-radius: 20px;
  padding: 18px;
  box-sizing: border-box;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.fc-landing__screen-card--panel {
  flex: 0 0 min(200px, 42vw);
  scroll-snap-align: start;
  padding: 0 0 12px;
  border: none;
  border-radius: 12px;
  overflow: hidden;
  background: transparent;
  box-shadow: none;
  gap: 10px;
}

.fc-landing__screen-card--panel:hover {
  transform: translateY(-3px);
}

.fc-landing__screen-card--panel img {
  max-height: none;
  border-radius: 12px;
  background: transparent;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.fc-landing__screen-card--panel figcaption {
  padding: 0 4px;
  font-size: 0.82rem;
}

@media (min-width: 1280px) {
  .fc-landing__screen-card--panel {
    flex: unset;
  }
}

.fc-landing__screen-card:hover {
  transform: translateY(-2px);
  border-color: color-mix(in srgb, var(--fc-primary) 35%, var(--fc-line-soft));
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
}

.fc-landing__screen-card img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 420px;
  object-fit: contain;
  border-radius: 14px;
  background: #0b1310;
}

.fc-landing__screen-card figcaption {
  font-size: 0.88rem;
  line-height: 1.5;
  color: var(--fc-text);
}

.fc-landing__screen-card figcaption strong {
  display: block;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--fc-text);
}

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

  .fc-landing__screen-card img {
    max-height: 520px;
  }

  .fc-landing__screen-card--panel img {
    max-height: none;
  }
}
