
/* =========================================================
   FCC Public Pages — Apple/ChatGPT Premium Redesign
   Shared shell for Privacy, Terms, Support, Delete Account, About
   ========================================================= */

:root {
  color-scheme: light;
  --fcc-ink: #10172e;
  --fcc-ink-2: #1f2744;
  --fcc-muted: #5f6683;
  --fcc-soft: #8e94ad;
  --fcc-purple: #8b3dff;
  --fcc-purple-2: #6f4cf5;
  --fcc-lavender: #f3ecff;
  --fcc-pink: #ff74c7;
  --fcc-blue: #4f7cff;
  --fcc-teal: #26c7b8;
  --fcc-green: #1fbe75;
  --fcc-orange: #ff8a3d;
  --fcc-red: #ff5c7a;
  --fcc-card: rgba(255, 255, 255, 0.86);
  --fcc-card-strong: rgba(255, 255, 255, 0.96);
  --fcc-line: rgba(107, 87, 153, 0.14);
  --fcc-line-strong: rgba(139, 61, 255, 0.22);
  --fcc-shadow: 0 24px 70px rgba(70, 40, 120, 0.14);
  --fcc-shadow-soft: 0 18px 44px rgba(70, 40, 120, 0.10);
  --fcc-radius-xl: 34px;
  --fcc-radius-lg: 24px;
  --fcc-radius-md: 18px;
  --safe-top: env(safe-area-inset-top, 0px);
  --safe-bottom: env(safe-area-inset-bottom, 0px);
  --safe-left: env(safe-area-inset-left, 0px);
  --safe-right: env(safe-area-inset-right, 0px);
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body.fcc-public-page {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
  overflow-x: hidden;
  color: var(--fcc-ink);
  font-family: Inter, -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 10% 8%, rgba(139, 61, 255, 0.16), transparent 30%),
    radial-gradient(circle at 90% 12%, rgba(255, 116, 199, 0.13), transparent 27%),
    radial-gradient(circle at 80% 58%, rgba(255, 138, 61, 0.10), transparent 32%),
    linear-gradient(135deg, #ffffff 0%, #fbf8ff 44%, #fff4fb 100%);
  line-height: 1.55;
  padding: var(--safe-top) var(--safe-right) var(--safe-bottom) var(--safe-left);
}

body.fcc-public-page::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -3;
  pointer-events: none;
  background:
    linear-gradient(rgba(107, 87, 153, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(107, 87, 153, 0.035) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.8), transparent 75%);
}

body.fcc-public-page::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    radial-gradient(circle at 42% 20%, rgba(139, 61, 255, 0.13), transparent 24%),
    radial-gradient(circle at 56% 18%, rgba(255, 116, 199, 0.08), transparent 30%);
  filter: blur(10px);
}

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

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

/* Header */

.fcc-public-header {
  position: sticky;
  top: var(--safe-top);
  z-index: 30;
  border-bottom: 1px solid rgba(107, 87, 153, 0.10);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 14px 40px rgba(70, 40, 120, 0.08);
  -webkit-backdrop-filter: blur(26px) saturate(1.35);
  backdrop-filter: blur(26px) saturate(1.35);
}

.fcc-public-nav {
  width: min(100%, 1480px);
  min-height: 78px;
  margin: 0 auto;
  padding: 14px clamp(18px, 3.6vw, 64px);
  display: grid;
  grid-template-columns: minmax(190px, 1fr) auto minmax(220px, 1fr);
  align-items: center;
  gap: 24px;
}

.fcc-public-brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  gap: 12px;
  justify-self: start;
}

.fcc-public-logo {
  position: relative;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  border-radius: 14px;
  overflow: hidden;
  background:
    radial-gradient(circle at 30% 20%, rgba(255,255,255,.8), transparent 28%),
    linear-gradient(145deg, #9d6dff, #ff78c9);
  box-shadow: 0 14px 30px rgba(139, 61, 255, 0.22);
}

.fcc-public-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 3px;
}

.fcc-public-logo::after {
  content: "FCC";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: .58rem;
  font-weight: 900;
  letter-spacing: .05em;
  opacity: 0;
}

.fcc-public-logo img[style*="display: none"] + .fcc-public-logo::after {
  opacity: 1;
}

.fcc-public-wordmark {
  display: grid;
  min-width: 0;
}

.fcc-public-wordmark strong {
  overflow: hidden;
  color: #121832;
  font-size: 1.1rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.fcc-public-wordmark span {
  overflow: hidden;
  color: var(--fcc-muted);
  font-size: .75rem;
  font-weight: 700;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.fcc-public-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 2.2vw, 32px);
  color: #222945;
  font-size: .92rem;
  font-weight: 850;
}

.fcc-public-links a {
  position: relative;
  padding: 8px 0;
  transition: color .18s ease;
}

.fcc-public-links a:hover,
.fcc-public-links a.is-active {
  color: var(--fcc-purple);
}

.fcc-public-links a.is-active::after,
.fcc-public-links a:hover::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 1px;
  width: 22px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--fcc-purple), var(--fcc-pink));
  transform: translateX(-50%);
}

.fcc-public-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}

.fcc-public-btn,
.fcc-public-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 15px;
  border: 1px solid transparent;
  padding: 12px 19px;
  font-size: .91rem;
  font-weight: 900;
  white-space: nowrap;
  transition: transform .18s cubic-bezier(.2,.8,.2,1), box-shadow .18s ease, border-color .18s ease;
}

.fcc-public-btn:hover,
.fcc-public-ghost:hover {
  transform: translateY(-1px);
}

.fcc-public-ghost {
  color: #121832;
  border-color: rgba(107, 87, 153, 0.16);
  background: rgba(255,255,255,.78);
  box-shadow: 0 10px 24px rgba(70, 40, 120, 0.08);
}

.fcc-public-btn {
  color: #fff;
  background: linear-gradient(135deg, var(--fcc-purple), #9b5cff);
  box-shadow: 0 16px 34px rgba(139, 61, 255, 0.26);
}

.fcc-public-btn.fcc-public-btn-light {
  color: var(--fcc-purple);
  background: rgba(255,255,255,.9);
  border-color: rgba(255,255,255,.52);
  box-shadow: 0 14px 26px rgba(64, 34, 118, 0.12);
}

.fcc-public-main {
  width: min(100%, 1480px);
  margin: 0 auto;
  padding: clamp(36px, 5vw, 70px) clamp(18px, 3.6vw, 64px) 0;
}

/* Hero */

.fcc-public-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .76fr);
  align-items: center;
  gap: clamp(28px, 6vw, 86px);
  min-height: 360px;
  padding: clamp(18px, 3vw, 34px) 0 clamp(24px, 4vw, 46px);
}

.fcc-public-hero::before {
  content: "";
  position: absolute;
  inset: -20px -20px auto;
  height: 340px;
  z-index: -1;
  border-radius: 0 0 60px 60px;
  background:
    radial-gradient(circle at 70% 28%, rgba(139, 61, 255, 0.14), transparent 28%),
    radial-gradient(circle at 95% 10%, rgba(255, 116, 199, 0.13), transparent 24%);
  pointer-events: none;
}

.fcc-public-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin: 0 0 18px;
  padding: 8px 13px;
  border: 1px solid rgba(139, 61, 255, 0.14);
  border-radius: 999px;
  color: var(--fcc-purple);
  background: rgba(243, 236, 255, .78);
  font-size: .77rem;
  font-weight: 900;
  letter-spacing: .01em;
}

.fcc-public-eyebrow::before {
  content: attr(data-icon);
  display: grid;
  place-items: center;
  width: 16px;
  height: 16px;
}

.fcc-public-title {
  max-width: 760px;
  margin: 0 0 18px;
  color: var(--fcc-ink);
  font-size: clamp(3rem, 7vw, 6.25rem);
  line-height: .94;
  letter-spacing: -0.075em;
  font-weight: 950;
}

.fcc-public-title .gradient {
  display: inline;
  color: transparent;
  background: linear-gradient(100deg, var(--fcc-purple), #9a54ff 44%, var(--fcc-pink));
  -webkit-background-clip: text;
  background-clip: text;
}

.fcc-public-subtitle {
  max-width: 700px;
  margin: 0;
  color: var(--fcc-muted);
  font-size: clamp(1.02rem, 1.4vw, 1.22rem);
  line-height: 1.7;
  font-weight: 560;
}

.fcc-public-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.fcc-public-hero-art {
  position: relative;
  min-height: 290px;
  border-radius: var(--fcc-radius-xl);
  background:
    radial-gradient(circle at 35% 30%, rgba(255,255,255,.92), transparent 24%),
    linear-gradient(145deg, rgba(139, 61, 255, .16), rgba(255, 116, 199, .15));
  box-shadow: var(--fcc-shadow);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.72);
}

.fcc-public-hero-art::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 20%, rgba(255,255,255,.96) 0 2px, transparent 3px),
    radial-gradient(circle at 72% 15%, rgba(255,255,255,.86) 0 3px, transparent 4px),
    radial-gradient(circle at 87% 58%, rgba(255,255,255,.72) 0 2px, transparent 3px);
  opacity: .9;
}

.fcc-hero-illustration {
  position: absolute;
  inset: 30px;
  display: grid;
  place-items: center;
  z-index: 2;
}

.fcc-hero-illustration .big-icon {
  display: grid;
  place-items: center;
  width: min(55vw, 210px);
  height: min(55vw, 210px);
  border-radius: 54px;
  color: #fff;
  background:
    radial-gradient(circle at 35% 22%, rgba(255,255,255,.55), transparent 23%),
    linear-gradient(145deg, #8858ff, #ff82cc);
  box-shadow: 0 30px 70px rgba(139, 61, 255, 0.24);
  font-size: 5.5rem;
}

.fcc-hero-illustration img.big-logo {
  width: min(70%, 150px);
  filter: drop-shadow(0 16px 28px rgba(95, 50, 145, .2));
}

.fcc-hero-floating-card {
  position: absolute;
  z-index: 3;
  display: grid;
  gap: 4px;
  min-width: 154px;
  border: 1px solid rgba(107, 87, 153, .12);
  border-radius: 20px;
  padding: 14px;
  background: rgba(255,255,255,.78);
  box-shadow: 0 18px 38px rgba(70, 40, 120, .13);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.fcc-hero-floating-card strong {
  font-size: .82rem;
}

.fcc-hero-floating-card span {
  color: var(--fcc-muted);
  font-size: .72rem;
  font-weight: 700;
}

.fcc-hero-floating-card.one {
  left: 20px;
  bottom: 24px;
}

.fcc-hero-floating-card.two {
  right: 18px;
  top: 28px;
}

/* Layout */

.fcc-public-shell {
  display: grid;
  gap: 24px;
  padding-bottom: clamp(52px, 7vw, 90px);
}

.fcc-public-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--fcc-line);
  border-radius: var(--fcc-radius-xl);
  background: var(--fcc-card);
  box-shadow: var(--fcc-shadow-soft);
  -webkit-backdrop-filter: blur(22px) saturate(1.18);
  backdrop-filter: blur(22px) saturate(1.18);
}

.fcc-public-card-inner {
  padding: clamp(26px, 4.6vw, 56px);
}

.fcc-public-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 180px;
  background:
    radial-gradient(circle at 88% 12%, rgba(139, 61, 255, .12), transparent 34%),
    linear-gradient(90deg, rgba(255,255,255,.28), transparent);
  pointer-events: none;
}

.fcc-public-content {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 30px;
}

.fcc-public-section {
  display: grid;
  gap: 12px;
}

.fcc-public-section + .fcc-public-section {
  padding-top: 8px;
  border-top: 1px solid rgba(107, 87, 153, 0.10);
}

.fcc-public-section h2 {
  margin: 0;
  color: #111733;
  font-size: clamp(1.35rem, 2.1vw, 2rem);
  line-height: 1.1;
  letter-spacing: -0.035em;
}

.fcc-public-section h3 {
  margin: 0;
  color: #141a35;
  font-size: clamp(1.05rem, 1.35vw, 1.26rem);
  letter-spacing: -0.02em;
}

.fcc-public-section p,
.fcc-public-section li {
  color: #3e4564;
  font-size: 1.02rem;
  line-height: 1.72;
}

.fcc-public-section p {
  margin: 0;
}

.fcc-public-section ul,
.fcc-public-section ol {
  margin: 0;
  padding-left: 1.25rem;
}

.fcc-public-section li + li {
  margin-top: 6px;
}

.fcc-public-section a:not(.fcc-public-btn):not(.fcc-public-ghost) {
  color: #5d3df4;
  font-weight: 800;
}

.fcc-public-mini-note {
  border: 1px solid var(--fcc-line);
  border-radius: 20px;
  padding: 18px 20px;
  color: #4b526e;
  background: rgba(255,255,255,.64);
}

.fcc-public-divider {
  height: 1px;
  background: rgba(107, 87, 153, 0.11);
}

.fcc-public-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.fcc-public-grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.fcc-public-mini-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--fcc-line);
  border-radius: 24px;
  padding: 22px;
  background: rgba(255,255,255,.72);
  box-shadow: 0 14px 34px rgba(70, 40, 120, 0.08);
}

.fcc-public-mini-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 84px;
  background: radial-gradient(circle at 82% 8%, rgba(139, 61, 255, .10), transparent 46%);
  pointer-events: none;
}

.fcc-public-mini-card-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 14px;
  border-radius: 14px;
  color: var(--fcc-purple);
  background: rgba(243, 236, 255, .92);
  font-size: 1.35rem;
}

.fcc-public-mini-card h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
}

.fcc-public-mini-card p {
  margin: 0;
  color: var(--fcc-muted);
  font-size: .93rem;
  line-height: 1.55;
}

.fcc-public-quote {
  border: 1px solid rgba(139, 61, 255, 0.16);
  border-radius: 28px;
  padding: clamp(24px, 3vw, 36px);
  background:
    radial-gradient(circle at 100% 0%, rgba(139, 61, 255, .14), transparent 38%),
    rgba(255,255,255,.74);
  box-shadow: 0 16px 42px rgba(70, 40, 120, 0.08);
}

.fcc-public-quote .quote-mark {
  color: var(--fcc-purple);
  font-size: 2.7rem;
  line-height: .7;
}

.fcc-public-quote p {
  margin: 0;
  color: #272e4a;
  font-size: clamp(1.08rem, 1.8vw, 1.38rem);
  font-weight: 800;
  line-height: 1.55;
  letter-spacing: -0.025em;
}

.fcc-public-quote span {
  display: block;
  margin-top: 18px;
  color: var(--fcc-muted);
  font-weight: 800;
}

.fcc-public-story-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, .48fr);
  gap: 26px;
  align-items: start;
}

.fcc-public-steps {
  counter-reset: step;
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.fcc-public-steps li {
  counter-increment: step;
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  padding: 16px;
  border: 1px solid rgba(107, 87, 153, 0.12);
  border-radius: 18px;
  background: rgba(255,255,255,.58);
}

.fcc-public-steps li::before {
  content: counter(step);
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, var(--fcc-purple), #a76aff);
  font-size: .8rem;
  font-weight: 900;
}

.fcc-public-topic-list {
  display: grid;
  gap: 10px;
}

.fcc-public-topic {
  display: grid;
  grid-template-columns: 42px minmax(0,1fr) auto;
  align-items: center;
  gap: 12px;
  min-height: 58px;
  border: 1px solid rgba(107, 87, 153, 0.12);
  border-radius: 18px;
  padding: 10px 14px;
  background: rgba(255,255,255,.62);
}

.fcc-public-topic-icon {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 13px;
  color: var(--fcc-purple);
  background: rgba(243,236,255,.9);
}

.fcc-public-topic strong {
  display: block;
  color: #1d2442;
}

.fcc-public-topic span {
  display: block;
  color: var(--fcc-muted);
  font-size: .86rem;
}

.fcc-public-topic::after {
  content: "›";
  color: var(--fcc-purple);
  font-size: 1.4rem;
  font-weight: 800;
}

.fcc-public-warning {
  border-color: rgba(255, 92, 122, 0.18);
  background:
    radial-gradient(circle at 92% 0%, rgba(255, 92, 122, 0.11), transparent 42%),
    rgba(255,255,255,.72);
}

.fcc-public-cta {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, .64fr);
  align-items: center;
  gap: 24px;
  border-radius: var(--fcc-radius-xl);
  padding: clamp(28px, 4vw, 50px);
  color: #fff;
  background:
    radial-gradient(circle at 90% 10%, rgba(255,255,255,.24), transparent 28%),
    linear-gradient(135deg, #8b3dff, #b85cff 48%, #ff7bc7);
  box-shadow: 0 24px 70px rgba(139, 61, 255, 0.25);
}

.fcc-public-cta h2 {
  margin: 0 0 10px;
  font-size: clamp(2.1rem, 4vw, 4.4rem);
  line-height: 1;
  letter-spacing: -0.06em;
}

.fcc-public-cta p {
  margin: 0;
  max-width: 650px;
  color: rgba(255,255,255,.88);
  font-size: 1.05rem;
  line-height: 1.7;
}

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

.fcc-public-cta-preview {
  position: relative;
  min-height: 210px;
  border-radius: 26px;
  background: rgba(255,255,255,.18);
  border: 1px solid rgba(255,255,255,.24);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.28);
}

.fcc-public-cta-window {
  position: absolute;
  inset: 22px 58px 30px 14px;
  border-radius: 18px;
  background: rgba(255,255,255,.82);
  box-shadow: 0 18px 38px rgba(40, 17, 86, .16);
}

.fcc-public-cta-phone {
  position: absolute;
  right: 18px;
  top: 42px;
  width: 96px;
  height: 152px;
  border-radius: 23px;
  background: rgba(255,255,255,.94);
  border: 6px solid rgba(30,32,60,.88);
  box-shadow: 0 18px 38px rgba(40, 17, 86, .24);
}

.fcc-public-cta-phone::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 10px;
  width: 26px;
  height: 5px;
  border-radius: 999px;
  background: rgba(30,32,60,.22);
  transform: translateX(-50%);
}

.fcc-public-footer {
  border-top: 1px solid rgba(107, 87, 153, 0.11);
  background: rgba(255,255,255,.62);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.fcc-public-footer-inner {
  width: min(100%, 1480px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto minmax(220px, 1fr);
  align-items: center;
  gap: 22px;
  padding: 28px clamp(18px, 3.6vw, 64px) calc(28px + var(--safe-bottom));
  color: var(--fcc-muted);
  font-size: .9rem;
}

.fcc-public-footer-links {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 16px 28px;
  font-weight: 800;
}

.fcc-public-footer-center {
  text-align: center;
}

/* Page-specific hero illustrations */

.fcc-art-shield .big-icon { font-size: 5rem; }
.fcc-art-support .big-icon { font-size: 5rem; }
.fcc-art-delete .big-icon { font-size: 5rem; }
.fcc-art-terms .big-icon { font-size: 5rem; }

/* Responsive */

@media (max-width: 1180px) {
  .fcc-public-nav {
    grid-template-columns: minmax(190px, 1fr) auto;
  }

  .fcc-public-links {
    display: none;
  }

  .fcc-public-hero {
    grid-template-columns: 1fr;
  }

  .fcc-public-hero-art {
    min-height: 240px;
  }

  .fcc-public-grid,
  .fcc-public-grid.two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .fcc-public-story-layout,
  .fcc-public-cta {
    grid-template-columns: 1fr;
  }

  .fcc-public-footer-inner {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .fcc-public-footer-center {
    text-align: left;
  }

  .fcc-public-footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 760px) {
  .fcc-public-nav {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 14px 16px;
  }

  .fcc-public-brand,
  .fcc-public-actions {
    justify-self: stretch;
  }

  .fcc-public-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .fcc-public-wordmark span {
    display: none;
  }

  .fcc-public-btn,
  .fcc-public-ghost {
    min-height: 44px;
    padding: 11px 12px;
    border-radius: 14px;
  }

  .fcc-public-main {
    padding-inline: 14px;
    padding-top: 26px;
  }

  .fcc-public-title {
    font-size: clamp(2.8rem, 14vw, 4.1rem);
  }

  .fcc-public-hero-art {
    min-height: 230px;
    border-radius: 26px;
  }

  .fcc-hero-floating-card {
    display: none;
  }

  .fcc-public-card {
    border-radius: 26px;
  }

  .fcc-public-card-inner {
    padding: 24px 18px;
  }

  .fcc-public-grid,
  .fcc-public-grid.two {
    grid-template-columns: 1fr;
  }

  .fcc-public-section p,
  .fcc-public-section li {
    font-size: .97rem;
  }

  .fcc-public-topic {
    grid-template-columns: 40px minmax(0,1fr) 18px;
  }

  .fcc-public-cta {
    padding: 28px 20px;
    border-radius: 26px;
  }

  .fcc-public-cta-preview {
    min-height: 190px;
  }

  .fcc-public-cta-window {
    right: 46px;
  }

  .fcc-public-footer-inner {
    padding-inline: 18px;
  }
}

@media (max-width: 390px) {
  .fcc-public-actions {
    grid-template-columns: 1fr;
  }

  .fcc-public-title {
    letter-spacing: -0.06em;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition: none !important;
    animation: none !important;
  }
}

/* =========================================================
   FCC Public Pages ? Unified Mobile Header + Logo Polish
   Applies to landing, public legal/story pages, Onix, pricing
   ========================================================= */

.fcc-global-menu-btn {
  display: none;
}

/* Logo sizing normalization across public page templates */
.brand img,
.site-brand img,
.landing-brand img,
.public-brand img,
.fcc-public-brand img,
.fcc-op-brand img,
.fcc-logo,
.brand-logo,
.logo-mark img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  flex: 0 0 auto;
  filter: drop-shadow(0 10px 20px rgba(124, 58, 237, 0.18));
}

/* Make icon/logo tiles feel intentional instead of tiny */
.brand-mark,
.site-brand-mark,
.public-brand-mark,
.fcc-public-brand-mark,
.logo-tile,
.brand-icon {
  width: 46px;
  height: 46px;
  min-width: 46px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  overflow: hidden;
}

/* Hero art/icon polish on static pages */
.story-visual img,
.hero-visual img,
.public-hero-art img,
.page-hero-art img,
.onix-hero-art img,
.pricing-hero-art img,
.fcc-public-hero-visual img {
  width: min(100%, 360px);
  max-width: 360px;
  min-height: 220px;
  object-fit: contain;
  margin-inline: auto;
  filter: drop-shadow(0 30px 60px rgba(124, 58, 237, 0.2));
}

.fcc-global-mobile-menu {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  z-index: 9999;
  pointer-events: none;
}

.fcc-global-mobile-menu:not([hidden]) {
  pointer-events: auto;
}

.fcc-global-mobile-backdrop {
  position: absolute;
  inset: 0;
  opacity: 0;
  background:
    radial-gradient(circle at 16% 12%, rgba(139, 92, 246, 0.24), transparent 34%),
    radial-gradient(circle at 90% 88%, rgba(236, 72, 153, 0.18), transparent 36%),
    rgba(14, 16, 36, 0.5);
  -webkit-backdrop-filter: blur(18px) saturate(1.2);
  backdrop-filter: blur(18px) saturate(1.2);
  transition: opacity 240ms ease;
}

.fcc-global-mobile-menu.is-open .fcc-global-mobile-backdrop {
  opacity: 1;
}

.fcc-global-mobile-panel {
  position: absolute;
  top: max(12px, env(safe-area-inset-top, 0px));
  left: max(10px, env(safe-area-inset-left, 0px));
  bottom: max(10px, env(safe-area-inset-bottom, 0px));
  width: min(88vw, 370px);
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 16px;
  border: 1px solid rgba(139, 92, 246, 0.18);
  border-radius: 30px;
  background:
    radial-gradient(circle at 28% 0%, rgba(236, 72, 153, 0.14), transparent 34%),
    radial-gradient(circle at 90% 100%, rgba(124, 58, 237, 0.12), transparent 36%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.97), rgba(248, 245, 255, 0.94));
  box-shadow:
    0 34px 90px rgba(18, 18, 40, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.76);
  -webkit-backdrop-filter: blur(28px) saturate(1.25);
  backdrop-filter: blur(28px) saturate(1.25);
  transform: translateX(calc(-100% - 26px)) scale(0.98);
  opacity: 0;
  overflow-y: auto;
  transition:
    transform 320ms cubic-bezier(0.2, 0.85, 0.2, 1),
    opacity 240ms ease;
}

.fcc-global-mobile-menu.is-open .fcc-global-mobile-panel {
  transform: translateX(0) scale(1);
  opacity: 1;
}

.fcc-global-mobile-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding-bottom: 4px;
}

.fcc-global-mobile-brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  gap: 12px;
}

.fcc-global-mobile-brand img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  filter: drop-shadow(0 12px 24px rgba(139, 92, 246, 0.26));
}

.fcc-global-mobile-brand strong,
.fcc-global-mobile-brand small {
  display: block;
}

.fcc-global-mobile-brand strong {
  color: #11142f;
  font-size: 1.12rem;
  line-height: 1;
  font-weight: 950;
  letter-spacing: -0.035em;
}

.fcc-global-mobile-brand small {
  margin-top: 4px;
  color: #6b6f91;
  font-size: 0.76rem;
  font-weight: 750;
}

.fcc-global-mobile-close {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(139, 92, 246, 0.16);
  border-radius: 999px;
  color: #4b4f70;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 10px 22px rgba(24, 24, 60, 0.08);
  font: inherit;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
}

.fcc-global-mobile-links {
  display: grid;
  gap: 10px;
}

.fcc-global-mobile-links a {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  min-height: 66px;
  padding: 10px 12px;
  border: 1px solid rgba(139, 92, 246, 0.12);
  border-radius: 21px;
  color: #13162f;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.88), rgba(247, 243, 255, 0.72));
  box-shadow: 0 12px 28px rgba(24, 24, 60, 0.055);
  text-decoration: none;
}

.fcc-global-mobile-links a:active {
  transform: scale(0.985);
}

.fcc-global-link-icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 17px;
  color: #7c3aed;
  background:
    radial-gradient(circle at 32% 20%, rgba(255, 255, 255, 0.92), transparent 34%),
    linear-gradient(145deg, rgba(237, 225, 255, 0.96), rgba(255, 226, 245, 0.88));
  font-weight: 950;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.fcc-global-mobile-links strong,
.fcc-global-mobile-links small {
  display: block;
}

.fcc-global-mobile-links strong {
  font-size: 0.95rem;
  line-height: 1.1;
  font-weight: 950;
  letter-spacing: -0.02em;
}

.fcc-global-mobile-links small {
  margin-top: 4px;
  color: #6c708f;
  font-size: 0.74rem;
  line-height: 1.25;
  font-weight: 700;
}

.fcc-global-mobile-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: auto;
  padding-top: 8px;
}

.fcc-global-mobile-login,
.fcc-global-mobile-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  border-radius: 19px;
  font-size: 0.95rem;
  font-weight: 950;
  text-decoration: none;
}

.fcc-global-mobile-login {
  color: #151832;
  border: 1px solid rgba(139, 92, 246, 0.16);
  background: rgba(255, 255, 255, 0.82);
}

.fcc-global-mobile-primary {
  color: #fff;
  background: linear-gradient(135deg, #7c3aed, #a855f7 52%, #ec4899);
  box-shadow: 0 16px 36px rgba(124, 58, 237, 0.28);
}

body.fcc-global-menu-open {
  overflow: hidden;
}

/* Shared mobile header behavior */
@media (max-width: 760px) {
  .site-header,
  .landing-header,
  .public-header,
  .fcc-public-header,
  .op-header,
  header {
    position: sticky;
    top: 0;
    z-index: 500;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.82));
    border-bottom: 1px solid rgba(139, 92, 246, 0.1);
    -webkit-backdrop-filter: blur(22px) saturate(1.2);
    backdrop-filter: blur(22px) saturate(1.2);
  }

  .nav,
  .site-nav,
  .landing-nav,
  .public-nav,
  .fcc-public-nav,
  .op-nav,
  header nav {
    position: relative;
    display: flex !important;
    align-items: center;
    justify-content: flex-start;
    min-height: 72px;
    padding: 12px max(14px, env(safe-area-inset-right, 0px)) 12px max(14px, env(safe-area-inset-left, 0px));
    gap: 12px;
    overflow: visible;
  }

  .fcc-global-menu-btn {
    flex: 0 0 auto;
    order: -10;
    display: inline-grid;
    place-items: center;
    width: 46px;
    height: 46px;
    border: 1px solid rgba(139, 92, 246, 0.16);
    border-radius: 17px;
    background:
      radial-gradient(circle at 30% 18%, rgba(255, 255, 255, 0.95), transparent 36%),
      linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(244, 237, 255, 0.88));
    box-shadow: 0 12px 28px rgba(24, 24, 60, 0.08);
    cursor: pointer;
  }

  .fcc-global-menu-btn span {
    display: block;
    width: 19px;
    height: 2px;
    margin: 2.5px 0;
    border-radius: 999px;
    background: #141735;
    transition:
      transform 220ms ease,
      opacity 220ms ease;
  }

  .fcc-global-menu-btn[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .fcc-global-menu-btn[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .fcc-global-menu-btn[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .brand,
  .site-brand,
  .landing-brand,
  .public-brand,
  .fcc-public-brand,
  .op-brand,
  header nav > a:first-of-type {
    display: inline-flex !important;
    align-items: center;
    gap: 10px;
    min-width: 0;
    margin-right: auto;
    text-decoration: none;
  }

  .brand img,
  .site-brand img,
  .landing-brand img,
  .public-brand img,
  .fcc-public-brand img,
  .op-brand img,
  header nav > a:first-of-type img {
    width: 44px !important;
    height: 44px !important;
    min-width: 44px;
    object-fit: contain;
  }

  .brand strong,
  .site-brand strong,
  .landing-brand strong,
  .public-brand strong,
  .fcc-public-brand strong,
  .op-brand strong {
    font-size: 1.05rem;
    font-weight: 950;
    letter-spacing: -0.035em;
    color: #11142f;
  }

  .brand small,
  .brand span:not(.brand-mark),
  .site-brand small,
  .landing-brand small,
  .public-brand small,
  .fcc-public-brand small,
  .op-brand small {
    max-width: 160px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .nav-links,
  .desktop-nav,
  .landing-nav-links,
  .public-nav-links,
  .fcc-public-nav-links,
  .fcc-public-links,
  .op-nav-links,
  header nav > ul {
    display: none !important;
  }

  .desktop-actions,
  .nav-actions,
  .public-actions,
  .fcc-public-actions,
  .op-actions,
  .login-btn,
  .nav-login,
  .landing-login,
  .public-login,
  .fcc-public-login,
  .op-login,
  header nav > a[href="/app/"]:not(.brand):not(.site-brand):not(.landing-brand):not(.public-brand):not(.fcc-public-brand):not(.op-brand) {
    display: none !important;
  }

  .try-btn,
  .nav-primary,
  .landing-primary,
  .public-primary,
  .fcc-public-primary,
  .op-primary,
  header nav .btn-primary {
    display: none !important;
  }

  .hero,
  .public-hero,
  .fcc-public-hero,
  .op-hero {
    padding-top: 34px;
  }

  .story-visual img,
  .hero-visual img,
  .public-hero-art img,
  .page-hero-art img,
  .onix-hero-art img,
  .pricing-hero-art img,
  .fcc-public-hero-visual img {
    width: min(100%, 310px) !important;
    max-width: 310px !important;
    min-height: 230px;
  }
}

@media (max-width: 390px) {
  .fcc-global-mobile-panel {
    width: min(91vw, 350px);
    border-radius: 26px;
    padding: 14px;
  }

  .fcc-global-mobile-links a {
    min-height: 62px;
    grid-template-columns: 42px minmax(0, 1fr);
  }

  .fcc-global-link-icon {
    width: 42px;
    height: 42px;
    border-radius: 15px;
  }

  .brand img,
  .site-brand img,
  .landing-brand img,
  .public-brand img,
  .fcc-public-brand img,
  .op-brand img,
  header nav > a:first-of-type img {
    width: 42px !important;
    height: 42px !important;
    min-width: 42px;
  }
}

@media (min-width: 761px) {
  .fcc-global-mobile-menu {
    display: none !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .fcc-global-mobile-backdrop,
  .fcc-global-mobile-panel,
  .fcc-global-menu-btn span {
    transition: none !important;
  }
}


/* =========================================================
   FCC Unified Public Shell Lock — Mobile Header + Page Landing
   Version: 2026-05-26
   Purpose:
   - Makes Landing, Onix, Pricing, About, Privacy, Terms, Support,
     and Delete Account share one iOS/ChatGPT-style mobile shell.
   - Hamburger left, FCC logo/wordmark center-left, Try FCC Free right.
   - Prevents cramped nav rows and tiny logo treatment.
   ========================================================= */

:root {
  --fcc-shell-header-h: 68px;
  --fcc-shell-ink: #11142f;
  --fcc-shell-muted: #66708f;
  --fcc-shell-purple: #7c3cff;
  --fcc-shell-purple-2: #a855f7;
  --fcc-shell-pink: #ec5ab7;
  --fcc-shell-line: rgba(124, 60, 255, 0.14);
  --fcc-shell-card: rgba(255,255,255,0.88);
  --fcc-shell-shadow: 0 18px 44px rgba(31, 24, 68, 0.12);
}

/* Desktop logo normalization without disturbing layout */
.brand-logo,
.fcc-public-logo,
.fcc-public-logo img,
.logo-mark img,
.brand img,
.fcc-public-brand img {
  object-fit: contain;
}

/* Reusable mobile drawer polish */
.fcc-global-mobile-menu,
.fcc-mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
}

.fcc-global-mobile-menu:not([hidden]),
.fcc-mobile-menu:not([hidden]) {
  pointer-events: auto;
}

.fcc-global-mobile-backdrop,
.fcc-mobile-menu-backdrop {
  position: absolute;
  inset: 0;
  opacity: 0;
  background:
    radial-gradient(circle at 16% 12%, rgba(124, 60, 255, 0.24), transparent 34%),
    radial-gradient(circle at 90% 86%, rgba(236, 90, 183, 0.18), transparent 34%),
    rgba(14, 16, 36, 0.50);
  -webkit-backdrop-filter: blur(18px) saturate(1.22);
  backdrop-filter: blur(18px) saturate(1.22);
  transition: opacity 240ms ease;
}

.fcc-global-mobile-menu.is-open .fcc-global-mobile-backdrop,
.fcc-mobile-menu.is-open .fcc-mobile-menu-backdrop {
  opacity: 1;
}

.fcc-global-mobile-panel,
.fcc-mobile-menu-panel {
  position: absolute;
  top: max(12px, env(safe-area-inset-top, 0px));
  left: max(10px, env(safe-area-inset-left, 0px));
  bottom: max(10px, env(safe-area-inset-bottom, 0px));
  width: min(88vw, 372px);
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 16px;
  border: 1px solid rgba(124, 60, 255, 0.18);
  border-radius: 30px;
  background:
    radial-gradient(circle at 28% 0%, rgba(236, 90, 183, 0.14), transparent 34%),
    radial-gradient(circle at 92% 100%, rgba(124, 60, 255, 0.12), transparent 36%),
    linear-gradient(145deg, rgba(255,255,255,0.98), rgba(248,245,255,0.94));
  box-shadow:
    0 34px 92px rgba(18, 18, 40, 0.32),
    inset 0 1px 0 rgba(255,255,255,0.82);
  -webkit-backdrop-filter: blur(28px) saturate(1.26);
  backdrop-filter: blur(28px) saturate(1.26);
  transform: translateX(calc(-100% - 26px)) scale(0.985);
  opacity: 0;
  overflow-y: auto;
  transition:
    transform 320ms cubic-bezier(0.2, 0.85, 0.2, 1),
    opacity 240ms ease;
}

.fcc-global-mobile-menu.is-open .fcc-global-mobile-panel,
.fcc-mobile-menu.is-open .fcc-mobile-menu-panel {
  transform: translateX(0) scale(1);
  opacity: 1;
}

.fcc-global-mobile-top,
.fcc-mobile-menu-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding-bottom: 2px;
}

.fcc-global-mobile-brand,
.fcc-mobile-menu-brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  gap: 12px;
  text-decoration: none;
}

.fcc-global-mobile-brand img,
.fcc-mobile-menu-brand img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  filter: drop-shadow(0 12px 24px rgba(124, 60, 255, 0.26));
}

.fcc-global-mobile-brand strong,
.fcc-global-mobile-brand small,
.fcc-mobile-menu-brand strong,
.fcc-mobile-menu-brand small {
  display: block;
}

.fcc-global-mobile-brand strong,
.fcc-mobile-menu-brand strong {
  color: var(--fcc-shell-ink);
  font-size: 1.12rem;
  line-height: 1;
  font-weight: 950;
  letter-spacing: -0.035em;
}

.fcc-global-mobile-brand small,
.fcc-mobile-menu-brand small {
  margin-top: 4px;
  color: var(--fcc-shell-muted);
  font-size: 0.76rem;
  font-weight: 760;
}

.fcc-global-mobile-close,
.fcc-mobile-menu-close {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(124, 60, 255, 0.16);
  border-radius: 999px;
  color: #4b4f70;
  background: rgba(255,255,255,0.82);
  box-shadow: 0 10px 22px rgba(24,24,60,0.08);
  font: inherit;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
}

.fcc-global-mobile-links,
.fcc-mobile-menu-links {
  display: grid;
  gap: 10px;
}

.fcc-global-mobile-links a,
.fcc-mobile-menu-links a {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  min-height: 66px;
  padding: 10px 12px;
  border: 1px solid rgba(124, 60, 255, 0.12);
  border-radius: 21px;
  color: var(--fcc-shell-ink);
  background: linear-gradient(135deg, rgba(255,255,255,0.9), rgba(247,243,255,0.74));
  box-shadow: 0 12px 28px rgba(24,24,60,0.055);
  text-decoration: none;
}

.fcc-global-link-icon,
.fcc-mobile-link-icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 17px;
  color: var(--fcc-shell-purple);
  background:
    radial-gradient(circle at 32% 20%, rgba(255,255,255,0.94), transparent 34%),
    linear-gradient(145deg, rgba(237,225,255,0.97), rgba(255,226,245,0.9));
  font-weight: 950;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.76);
}

.fcc-global-mobile-links strong,
.fcc-global-mobile-links small,
.fcc-mobile-menu-links strong,
.fcc-mobile-menu-links small {
  display: block;
}

.fcc-global-mobile-links strong,
.fcc-mobile-menu-links strong {
  font-size: 0.95rem;
  line-height: 1.1;
  font-weight: 950;
  letter-spacing: -0.02em;
}

.fcc-global-mobile-links small,
.fcc-mobile-menu-links small {
  margin-top: 4px;
  color: #6c708f;
  font-size: 0.74rem;
  line-height: 1.25;
  font-weight: 700;
}

.fcc-global-mobile-actions,
.fcc-mobile-menu-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: auto;
  padding-top: 8px;
}

.fcc-global-mobile-login,
.fcc-global-mobile-primary,
.fcc-mobile-login,
.fcc-mobile-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  border-radius: 19px;
  font-size: 0.95rem;
  font-weight: 950;
  text-decoration: none;
}

.fcc-global-mobile-login,
.fcc-mobile-login {
  color: #151832;
  border: 1px solid rgba(124, 60, 255, 0.16);
  background: rgba(255,255,255,0.84);
}

.fcc-global-mobile-primary,
.fcc-mobile-primary {
  color: #fff;
  background: linear-gradient(135deg, #7c3cff, #a855f7 52%, #ec5ab7);
  box-shadow: 0 16px 36px rgba(124,60,255,0.28);
}

body.fcc-global-menu-open,
body.fcc-mobile-menu-open {
  overflow: hidden;
}

@media (max-width: 760px) {
  /* One compact iOS/ChatGPT header across every public page */
  .site-header,
  .landing-header,
  .public-header,
  .fcc-public-header,
  .op-header,
  body.fcc-public-modern .fcc-public-header,
  body.fcc-public-page .fcc-public-header {
    position: sticky !important;
    top: 0 !important;
    z-index: 700 !important;
    min-height: var(--fcc-shell-header-h);
    border-bottom: 1px solid rgba(124, 60, 255, 0.10) !important;
    background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(255,255,255,0.86)) !important;
    box-shadow: 0 12px 34px rgba(31,24,68,0.075) !important;
    -webkit-backdrop-filter: blur(22px) saturate(1.2) !important;
    backdrop-filter: blur(22px) saturate(1.2) !important;
  }

  .nav,
  .site-nav,
  .landing-nav,
  .public-nav,
  .fcc-public-nav,
  .op-nav,
  body.fcc-public-modern .fcc-public-nav,
  body.fcc-public-page .fcc-public-nav,
  header nav {
    width: 100% !important;
    max-width: none !important;
    min-height: var(--fcc-shell-header-h) !important;
    height: var(--fcc-shell-header-h) !important;
    padding: 10px max(12px, env(safe-area-inset-right, 0px)) 10px max(12px, env(safe-area-inset-left, 0px)) !important;
    display: grid !important;
    grid-template-columns: 46px minmax(0, 1fr) auto !important;
    align-items: center !important;
    gap: 10px !important;
    overflow: visible !important;
  }

  .fcc-global-menu-btn,
  .fcc-mobile-menu-btn {
    grid-column: 1 !important;
    grid-row: 1 !important;
    display: inline-grid !important;
    place-items: center !important;
    width: 46px !important;
    height: 46px !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 1px solid rgba(124, 60, 255, 0.16) !important;
    border-radius: 17px !important;
    background:
      radial-gradient(circle at 30% 18%, rgba(255,255,255,0.96), transparent 36%),
      linear-gradient(145deg, rgba(255,255,255,0.96), rgba(244,237,255,0.90)) !important;
    box-shadow: 0 12px 28px rgba(24,24,60,0.08) !important;
    cursor: pointer !important;
  }

  .fcc-global-menu-btn span,
  .fcc-mobile-menu-btn span {
    display: block !important;
    width: 19px !important;
    height: 2px !important;
    margin: 2.5px 0 !important;
    border-radius: 999px !important;
    background: #141735 !important;
    transition: transform 220ms ease, opacity 220ms ease !important;
  }

  .fcc-global-menu-btn[aria-expanded="true"] span:nth-child(1),
  .fcc-mobile-menu-btn[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg) !important;
  }

  .fcc-global-menu-btn[aria-expanded="true"] span:nth-child(2),
  .fcc-mobile-menu-btn[aria-expanded="true"] span:nth-child(2) {
    opacity: 0 !important;
  }

  .fcc-global-menu-btn[aria-expanded="true"] span:nth-child(3),
  .fcc-mobile-menu-btn[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg) !important;
  }

  .brand,
  .site-brand,
  .landing-brand,
  .public-brand,
  .fcc-public-brand,
  .op-brand,
  body.fcc-public-modern .fcc-public-brand,
  body.fcc-public-page .fcc-public-brand,
  header nav > a:first-of-type {
    grid-column: 2 !important;
    grid-row: 1 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-self: start !important;
    justify-content: flex-start !important;
    gap: 8px !important;
    min-width: 0 !important;
    max-width: 100% !important;
    margin: 0 !important;
    text-decoration: none !important;
    font-size: 1.05rem !important;
    line-height: 1 !important;
    font-weight: 950 !important;
    letter-spacing: -0.035em !important;
    color: var(--fcc-shell-ink) !important;
  }

  .brand-logo,
  .brand img,
  .site-brand img,
  .landing-brand img,
  .public-brand img,
  .fcc-public-brand img,
  .op-brand img,
  .fcc-public-logo,
  .fcc-public-logo img,
  body.fcc-public-modern .fcc-public-logo,
  body.fcc-public-page .fcc-public-logo,
  header nav > a:first-of-type img {
    width: 38px !important;
    height: 38px !important;
    min-width: 38px !important;
    max-width: 38px !important;
    padding: 0 !important;
    border-radius: 12px !important;
    object-fit: contain !important;
    filter: drop-shadow(0 10px 18px rgba(124,60,255,0.18)) !important;
  }

  .fcc-public-logo {
    display: grid !important;
    place-items: center !important;
    overflow: visible !important;
    background: transparent !important;
    box-shadow: none !important;
  }

  .brand span,
  .fcc-public-brand > span:not(.fcc-public-logo),
  .fcc-public-wordmark strong,
  .fcc-public-brand > span:last-child,
  .op-brand span {
    display: inline-block !important;
    overflow: hidden !important;
    max-width: 112px !important;
    color: var(--fcc-shell-ink) !important;
    font-size: 1.04rem !important;
    line-height: 1 !important;
    font-weight: 950 !important;
    letter-spacing: -0.035em !important;
    text-overflow: ellipsis !important;
    white-space: nowrap !important;
  }

  .fcc-public-wordmark {
    display: block !important;
    min-width: 0 !important;
  }

  .fcc-public-wordmark > span,
  .brand small,
  .site-brand small,
  .landing-brand small,
  .public-brand small,
  .op-brand small {
    display: none !important;
  }

  .nav-links,
  .desktop-nav,
  .landing-nav-links,
  .public-nav-links,
  .fcc-public-links,
  .op-nav-links,
  header nav > ul {
    display: none !important;
  }

  /* Keep one clean CTA on the right. Hide Log in, show Try FCC Free. */
  .nav-actions,
  .public-actions,
  .fcc-public-actions,
  .op-actions,
  body.fcc-public-modern .fcc-public-actions,
  body.fcc-public-page .fcc-public-actions {
    grid-column: 3 !important;
    grid-row: 1 !important;
    display: flex !important;
    align-items: center !important;
    justify-self: end !important;
    gap: 0 !important;
    margin: 0 !important;
    min-width: 0 !important;
  }

  .nav-actions .btn-ghost,
  .fcc-public-actions .fcc-public-ghost,
  .fcc-public-actions .fcc-btn:not(.fcc-btn-primary),
  .public-actions .btn-ghost,
  .op-actions .fcc-btn:not(.fcc-btn-primary),
  .login-btn,
  .nav-login,
  .landing-login,
  .public-login,
  .fcc-public-login,
  .op-login {
    display: none !important;
  }

  .nav-actions .btn-primary,
  .fcc-public-actions .fcc-public-btn,
  .fcc-public-actions .fcc-btn-primary,
  .public-actions .btn-primary,
  .op-actions .fcc-btn-primary,
  .try-btn,
  .nav-primary,
  .landing-primary,
  .public-primary,
  .fcc-public-primary,
  .op-primary {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: auto !important;
    min-width: 112px !important;
    max-width: 130px !important;
    min-height: 46px !important;
    height: 46px !important;
    padding: 0 14px !important;
    border: 0 !important;
    border-radius: 16px !important;
    color: #fff !important;
    background: linear-gradient(135deg, #7c3cff, #a855f7 52%, #ec5ab7) !important;
    box-shadow: 0 14px 28px rgba(124,60,255,0.26) !important;
    font-size: 0.84rem !important;
    font-weight: 950 !important;
    line-height: 1 !important;
    letter-spacing: -0.01em !important;
    white-space: nowrap !important;
    text-decoration: none !important;
  }

  /* Make each page land like the attached mobile shell cards */
  .page,
  .fcc-public-main,
  body.fcc-public-modern .fcc-public-main,
  body.fcc-public-page .fcc-public-main {
    width: 100% !important;
    max-width: none !important;
    padding: 26px 14px 56px !important;
    margin: 0 !important;
  }

  .hero,
  .fcc-hero,
  .pricing-hero,
  .fcc-public-hero {
    padding-top: 22px !important;
    margin-top: 0 !important;
  }

  .hero,
  .fcc-hero,
  .fcc-public-hero {
    grid-template-columns: 1fr !important;
    gap: 22px !important;
    min-height: auto !important;
  }

  .pricing-hero {
    text-align: left !important;
  }

  .hero h1,
  .fcc-hero-copy h1,
  .pricing-hero h1,
  .fcc-public-title {
    font-size: clamp(3.0rem, 13.2vw, 4.25rem) !important;
    line-height: 0.96 !important;
    letter-spacing: -0.075em !important;
    margin-bottom: 18px !important;
  }

  .lead,
  .fcc-lead,
  .fcc-public-subtitle {
    max-width: 34rem !important;
    font-size: 1.02rem !important;
    line-height: 1.62 !important;
    margin-bottom: 24px !important;
  }

  .kicker,
  .fcc-eyebrow,
  .fcc-public-eyebrow {
    max-width: 100% !important;
    min-height: 32px !important;
    padding: 8px 13px !important;
    border-radius: 999px !important;
    font-size: 0.78rem !important;
    line-height: 1.2 !important;
    font-weight: 900 !important;
  }

  .hero-actions,
  .fcc-hero-actions,
  .fcc-public-hero-actions {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 10px !important;
    width: 100% !important;
    margin-bottom: 22px !important;
  }

  .hero-actions .btn,
  .fcc-hero-actions .fcc-btn,
  .fcc-public-hero-actions .fcc-public-btn,
  .fcc-public-hero-actions .fcc-public-ghost {
    min-height: 48px !important;
    width: 100% !important;
    padding-inline: 10px !important;
    border-radius: 15px !important;
    font-size: 0.84rem !important;
  }

  .hero-art,
  .fcc-public-hero-art,
  .onix-hero-visual,
  .fcc-glass-card.onix-hero-visual,
  .fcc-hero-visual {
    width: 100% !important;
    max-width: 100% !important;
    min-height: 0 !important;
    margin: 0 auto !important;
  }

  .fcc-public-hero-art .fcc-hero-illustration,
  .fcc-hero-illustration {
    min-height: 230px !important;
    border-radius: 26px !important;
  }

  .big-icon,
  .big-logo {
    width: 126px !important;
    height: 126px !important;
    max-width: 126px !important;
    max-height: 126px !important;
  }

  .fcc-public-shell,
  .pricing-grid,
  .fcc-section,
  .fcc-glass-card {
    margin-top: 18px !important;
  }

  .fcc-public-card,
  .price-card,
  .fcc-glass-card,
  .desktop-window,
  .mobile-device,
  .feature-card,
  .fcc-public-mini-card {
    border-radius: 24px !important;
  }
}

@media (max-width: 420px) {
  :root { --fcc-shell-header-h: 64px; }

  .nav,
  .site-nav,
  .landing-nav,
  .public-nav,
  .fcc-public-nav,
  .op-nav,
  body.fcc-public-modern .fcc-public-nav,
  body.fcc-public-page .fcc-public-nav,
  header nav {
    grid-template-columns: 44px minmax(0, 1fr) auto !important;
    min-height: 64px !important;
    height: 64px !important;
    gap: 8px !important;
    padding-inline: 10px !important;
  }

  .fcc-global-menu-btn,
  .fcc-mobile-menu-btn {
    width: 44px !important;
    height: 44px !important;
    border-radius: 16px !important;
  }

  .brand-logo,
  .brand img,
  .fcc-public-logo,
  .fcc-public-logo img,
  body.fcc-public-modern .fcc-public-logo,
  body.fcc-public-page .fcc-public-logo,
  header nav > a:first-of-type img {
    width: 34px !important;
    height: 34px !important;
    min-width: 34px !important;
    max-width: 34px !important;
  }

  .brand span,
  .fcc-public-brand > span:not(.fcc-public-logo),
  .fcc-public-wordmark strong,
  .fcc-public-brand > span:last-child,
  .op-brand span {
    max-width: 88px !important;
    font-size: 0.98rem !important;
  }

  .nav-actions .btn-primary,
  .fcc-public-actions .fcc-public-btn,
  .fcc-public-actions .fcc-btn-primary,
  .public-actions .btn-primary,
  .op-actions .fcc-btn-primary {
    min-width: 104px !important;
    max-width: 116px !important;
    min-height: 44px !important;
    height: 44px !important;
    padding-inline: 11px !important;
    border-radius: 15px !important;
    font-size: 0.80rem !important;
  }

  .hero h1,
  .fcc-hero-copy h1,
  .pricing-hero h1,
  .fcc-public-title {
    font-size: clamp(2.65rem, 12vw, 3.55rem) !important;
  }
}

@media (min-width: 761px) {
  .fcc-global-mobile-menu,
  .fcc-mobile-menu {
    display: none !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .fcc-global-mobile-backdrop,
  .fcc-global-mobile-panel,
  .fcc-global-menu-btn span,
  .fcc-mobile-menu-backdrop,
  .fcc-mobile-menu-panel,
  .fcc-mobile-menu-btn span {
    transition: none !important;
    animation: none !important;
  }
}
/* End FCC Unified Public Shell Lock */

/* FCC public shell final logo-size guard */
@media (max-width: 760px) {
  .brand-logo,
  .brand img,
  .fcc-public-logo,
  .fcc-public-logo img,
  body.fcc-public-modern .fcc-public-logo,
  body.fcc-public-page .fcc-public-logo,
  header nav > a:first-of-type img {
    width: 42px !important;
    height: 42px !important;
    min-width: 42px !important;
    max-width: 42px !important;
  }
}
