    :root {
      color-scheme: light;
      --ink: #12172f;
      --ink-2: #202846;
      --muted: #66708b;
      --soft: #8d94aa;
      --line: rgba(110, 86, 207, .14);
      --panel: rgba(255,255,255,.78);
      --panel-strong: rgba(255,255,255,.92);
      --purple: #7c3cff;
      --purple-2: #a965ff;
      --violet: #8b5cf6;
      --pink: #ff69c8;
      --blue: #4776ff;
      --green: #19b77c;
      --orange: #ff8a3d;
      --red: #ff4f72;
      --teal: #19c6b2;
      --shadow: 0 24px 80px rgba(71, 54, 147, .13);
      --shadow-2: 0 18px 46px rgba(71, 54, 147, .11);
      --radius: 30px;
      --safe-top: env(safe-area-inset-top, 0px);
      --safe-bottom: env(safe-area-inset-bottom, 0px);
    }

    * { box-sizing: border-box; }
    html { min-width: 320px; scroll-behavior: smooth; }
    body {
      margin: 0;
      min-width: 320px;
      min-height: 100vh;
      overflow-x: hidden;
      color: var(--ink);
      font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Inter", "Segoe UI", sans-serif;
      background:
        radial-gradient(circle at 18% 12%, rgba(138, 92, 246, .16), transparent 28%),
        radial-gradient(circle at 82% 18%, rgba(255, 105, 200, .13), transparent 25%),
        radial-gradient(circle at 66% 72%, rgba(85, 128, 255, .10), transparent 30%),
        linear-gradient(180deg, #ffffff 0%, #fbf8ff 42%, #fff 100%);
      line-height: 1.45;
      padding-top: var(--safe-top);
    }

    body::before,
    body::after {
      content: "";
      position: fixed;
      inset: 0;
      pointer-events: none;
      z-index: -2;
    }

    body::before {
      background-image:
        linear-gradient(rgba(124,60,255,.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(124,60,255,.035) 1px, transparent 1px);
      background-size: 42px 42px;
      mask-image: linear-gradient(to bottom, rgba(0,0,0,.8), transparent 65%);
    }

    body::after {
      z-index: -1;
      background:
        radial-gradient(circle at 10% 40%, rgba(255, 211, 243, .36), transparent 19%),
        radial-gradient(circle at 90% 34%, rgba(255, 230, 203, .42), transparent 17%),
        radial-gradient(circle at 54% 10%, rgba(238, 232, 255, .74), transparent 22%);
      filter: blur(4px);
    }

    a { color: inherit; text-decoration: none; }
    img { display: block; max-width: 100%; }
    button { font-family: inherit; }

    .site-header {
      position: sticky;
      top: var(--safe-top);
      z-index: 50;
      border-bottom: 1px solid rgba(124,60,255,.08);
      background: rgba(255,255,255,.78);
      -webkit-backdrop-filter: blur(24px) saturate(1.3);
      backdrop-filter: blur(24px) saturate(1.3);
    }

    .nav {
      width: min(100%, 1480px);
      margin: 0 auto;
      min-height: 76px;
      padding: 14px clamp(22px, 4vw, 58px);
      display: grid;
      grid-template-columns: 210px 1fr 260px;
      align-items: center;
      gap: 22px;
    }

    .brand {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      font-weight: 900;
      letter-spacing: -.03em;
      font-size: 1.5rem;
    }

    .brand-logo {
      width: 40px;
      height: 40px;
      object-fit: contain;
      filter: drop-shadow(0 10px 18px rgba(124,60,255,.18));
    }

    .nav-links {
      justify-self: center;
      display: flex;
      align-items: center;
      gap: clamp(24px, 3vw, 46px);
      color: #202846;
      font-size: .95rem;
      font-weight: 750;
    }

    .nav-links a {
      position: relative;
      opacity: .92;
    }

    .nav-links a:hover { color: var(--purple); }

    .nav-links a.active::after {
      content: "";
      position: absolute;
      left: 50%;
      bottom: -10px;
      width: 20px;
      height: 3px;
      border-radius: 99px;
      background: var(--purple);
      transform: translateX(-50%);
    }

    .nav-pill {
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }

    .new-badge {
      padding: 4px 8px;
      border-radius: 999px;
      color: var(--purple);
      background: rgba(124,60,255,.10);
      font-size: .72rem;
      font-weight: 900;
    }

    .nav-actions {
      justify-self: end;
      display: flex;
      gap: 14px;
      align-items: center;
    }

    .btn {
      display: inline-flex;
      min-height: 52px;
      align-items: center;
      justify-content: center;
      gap: 10px;
      border: 1px solid transparent;
      border-radius: 14px;
      padding: 14px 22px;
      font-weight: 850;
      line-height: 1;
      cursor: pointer;
      transition: transform .2s cubic-bezier(.2,.8,.2,1), box-shadow .2s ease, border-color .2s ease, background .2s ease;
      white-space: nowrap;
    }

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

    .btn-primary {
      color: #fff;
      background: linear-gradient(135deg, var(--purple), var(--purple-2));
      box-shadow: 0 18px 34px rgba(124,60,255,.28);
    }

    .btn-ghost {
      color: var(--ink-2);
      background: rgba(255,255,255,.72);
      border-color: rgba(31, 41, 85, .12);
      box-shadow: 0 10px 28px rgba(31,41,85,.05);
    }

    .btn-soft {
      color: var(--purple);
      background: rgba(124,60,255,.08);
      border-color: rgba(124,60,255,.10);
    }

    .page {
      width: min(100%, 1480px);
      margin: 0 auto;
      padding: 0 clamp(22px, 4vw, 58px) 36px;
    }

    .hero {
      position: relative;
      display: grid;
      grid-template-columns: minmax(380px, .88fr) minmax(620px, 1.12fr);
      gap: clamp(34px, 5vw, 82px);
      align-items: center;
      min-height: 620px;
      padding: 58px 0 40px;
    }

    .kicker {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 22px;
      padding: 10px 18px;
      border: 1px solid rgba(124,60,255,.12);
      border-radius: 999px;
      color: #273052;
      background: rgba(255,255,255,.72);
      box-shadow: 0 12px 30px rgba(124,60,255,.08);
      font-weight: 800;
      font-size: .95rem;
    }

    .spark { color: var(--pink); }

    h1, h2, h3, p { margin-top: 0; }

    h1 {
      margin-bottom: 24px;
      max-width: 680px;
      font-size: clamp(3.5rem, 6.2vw, 6.9rem);
      line-height: .97;
      letter-spacing: -.075em;
      font-weight: 950;
    }

    .gradient-text {
      background: linear-gradient(120deg, var(--purple), #6f43ff 40%, var(--pink));
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
    }

    .lead {
      max-width: 660px;
      margin-bottom: 34px;
      color: #56617d;
      font-size: clamp(1.12rem, 1.5vw, 1.38rem);
      line-height: 1.7;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 16px;
      margin-bottom: 34px;
    }

    .social-proof {
      display: flex;
      align-items: center;
      gap: 18px;
      color: #66708b;
      font-size: .94rem;
      font-weight: 700;
    }

    .avatars {
      display: flex;
      padding-left: 8px;
    }

    .avatar {
      width: 36px;
      height: 36px;
      margin-left: -8px;
      border: 3px solid #fff;
      border-radius: 50%;
      background: linear-gradient(135deg, #ffd6be, #9fd7ff);
      box-shadow: 0 8px 18px rgba(31,41,85,.10);
    }

    .avatar:nth-child(2) { background: linear-gradient(135deg, #f7c9ff, #c7d6ff); }
    .avatar:nth-child(3) { background: linear-gradient(135deg, #ffd7d7, #ffb86c); }
    .avatar:nth-child(4) { background: linear-gradient(135deg, #d9fff2, #9ac9ff); }

    .stars { color: #ffb800; letter-spacing: 2px; }

    .hero-art {
      position: relative;
      min-height: 500px;
      isolation: isolate;
    }

    .float-icon {
      position: absolute;
      z-index: 2;
      display: grid;
      place-items: center;
      width: 72px;
      height: 72px;
      border-radius: 28px;
      background: rgba(255,255,255,.72);
      border: 1px solid rgba(124,60,255,.12);
      box-shadow: 0 22px 44px rgba(124,60,255,.12);
      -webkit-backdrop-filter: blur(20px);
      backdrop-filter: blur(20px);
      color: var(--purple);
      font-size: 2rem;
      animation: floaty 7s ease-in-out infinite;
    }

    .float-icon.one { top: 10px; left: -28px; transform: rotate(-12deg); }
    .float-icon.two { top: 44px; right: -12px; color: var(--orange); animation-delay: -2.5s; }
    .float-icon.three { bottom: 28px; left: 66px; color: var(--blue); animation-delay: -4s; }

    @keyframes floaty {
      0%,100% { translate: 0 0; }
      50% { translate: 0 -12px; }
    }

    .desktop-window {
      position: relative;
      z-index: 1;
      margin: 34px 90px 0 50px;
      min-height: 430px;
      border-radius: 28px;
      border: 1px solid rgba(31,41,85,.10);
      background: rgba(255,255,255,.84);
      box-shadow: 0 36px 110px rgba(71,54,147,.16);
      overflow: hidden;
    }

    .window-top {
      display: flex;
      align-items: center;
      gap: 8px;
      height: 54px;
      padding: 0 22px;
      border-bottom: 1px solid rgba(31,41,85,.07);
      background: rgba(255,255,255,.66);
    }

    .dot { width: 11px; height: 11px; border-radius: 50%; background: #ff5f57; }
    .dot:nth-child(2) { background: #ffbd2e; }
    .dot:nth-child(3) { background: #28c840; }

    .app-preview {
      display: grid;
      grid-template-columns: 116px 1fr;
      min-height: 376px;
    }

    .sidebar {
      padding: 24px 14px;
      border-right: 1px solid rgba(31,41,85,.07);
      background: rgba(249,247,255,.88);
    }

    .side-brand {
      display: flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 22px;
      font-weight: 900;
      font-size: .88rem;
    }

    .side-brand img { width: 22px; height: 22px; object-fit: contain; }

    .side-link {
      display: flex;
      align-items: center;
      gap: 9px;
      height: 32px;
      padding: 0 10px;
      margin-bottom: 7px;
      border-radius: 10px;
      color: #66708b;
      font-size: .78rem;
      font-weight: 800;
    }

    .side-link.active {
      color: var(--blue);
      background: rgba(71,118,255,.10);
    }

    .calendar-panel {
      padding: 24px 24px 18px;
    }

    .calendar-head {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 20px;
    }

    .calendar-head strong {
      font-size: 1.1rem;
      letter-spacing: -.02em;
    }

    .calendar-toggle {
      display: flex;
      gap: 4px;
      padding: 4px;
      border-radius: 10px;
      background: rgba(31,41,85,.05);
      color: #66708b;
      font-size: .68rem;
      font-weight: 850;
    }

    .calendar-toggle span {
      padding: 5px 8px;
      border-radius: 8px;
    }

    .calendar-toggle .active { color: var(--blue); background: #fff; }

    .weekdays, .calendar-grid {
      display: grid;
      grid-template-columns: repeat(7, 1fr);
    }

    .weekdays {
      margin-bottom: 10px;
      color: #8d94aa;
      font-size: .68rem;
      font-weight: 850;
      text-align: center;
    }

    .calendar-grid {
      border-top: 1px solid rgba(31,41,85,.07);
      border-left: 1px solid rgba(31,41,85,.07);
    }

    .day {
      position: relative;
      min-height: 58px;
      padding: 8px;
      border-right: 1px solid rgba(31,41,85,.07);
      border-bottom: 1px solid rgba(31,41,85,.07);
      color: #7c849b;
      font-size: .72rem;
      font-weight: 800;
    }

    .event-chip {
      position: absolute;
      left: 6px;
      right: 6px;
      bottom: 8px;
      border-radius: 8px;
      padding: 6px 7px;
      color: #26304c;
      background: rgba(25,183,124,.12);
      font-size: .62rem;
      line-height: 1.2;
      font-weight: 850;
    }

    .event-chip.pink { background: rgba(255,105,200,.13); color: #9d3b84; }
    .event-chip.orange { background: rgba(255,138,61,.14); color: #a34e19; }
    .event-chip.purple { background: rgba(124,60,255,.12); color: #5b34b8; }

    .phone {
      position: absolute;
      z-index: 3;
      right: 0;
      top: 145px;
      width: 190px;
      min-height: 410px;
      border: 7px solid #33384d;
      border-radius: 34px;
      background: #fff;
      box-shadow: 0 28px 70px rgba(31,41,85,.23);
      overflow: hidden;
    }

    .phone-status {
      display: flex;
      justify-content: space-between;
      padding: 13px 15px 8px;
      color: #111827;
      font-size: .68rem;
      font-weight: 900;
    }

    .phone-body {
      padding: 8px 14px 16px;
    }

    .phone-title {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 12px;
      font-weight: 900;
    }

    .phone-days {
      display: grid;
      grid-template-columns: repeat(7, 1fr);
      gap: 4px;
      margin-bottom: 14px;
      text-align: center;
      color: #6b7280;
      font-size: .62rem;
      font-weight: 850;
    }

    .phone-days span.active {
      background: var(--blue);
      color: #fff;
      border-radius: 999px;
    }

    .phone-card {
      margin-bottom: 9px;
      padding: 10px;
      border-radius: 12px;
      color: #26304c;
      background: rgba(71,118,255,.09);
      font-size: .65rem;
      line-height: 1.3;
      font-weight: 800;
    }

    .phone-card.green { background: rgba(25,183,124,.10); }
    .phone-card.pink { background: rgba(255,105,200,.10); }

    .plus {
      position: absolute;
      right: 13px;
      bottom: 13px;
      width: 42px;
      height: 42px;
      display: grid;
      place-items: center;
      border-radius: 50%;
      color: #fff;
      background: var(--purple);
      box-shadow: 0 12px 24px rgba(124,60,255,.30);
      font-size: 1.4rem;
      font-weight: 700;
    }

    .toast {
      position: absolute;
      z-index: 4;
      left: 20px;
      bottom: 44px;
      width: 270px;
      padding: 16px 18px;
      border: 1px solid rgba(31,41,85,.08);
      border-radius: 16px;
      background: rgba(255,255,255,.88);
      box-shadow: 0 20px 50px rgba(31,41,85,.13);
      -webkit-backdrop-filter: blur(18px);
      backdrop-filter: blur(18px);
      color: #273052;
      font-size: .82rem;
      line-height: 1.35;
      font-weight: 800;
    }

    .feature-experience {
      display: grid;
      grid-template-columns: 420px 1fr;
      gap: 32px;
      margin-top: 18px;
      padding: 24px;
      border: 1px solid rgba(31,41,85,.08);
      border-radius: 34px;
      background: rgba(255,255,255,.60);
      box-shadow: var(--shadow);
      -webkit-backdrop-filter: blur(24px) saturate(1.2);
      backdrop-filter: blur(24px) saturate(1.2);
    }

    .feature-menu {
      display: grid;
      gap: 14px;
    }

    .feature-card {
      display: grid;
      grid-template-columns: 74px 1fr 22px;
      gap: 16px;
      align-items: center;
      min-height: 118px;
      width: 100%;
      border: 1px solid rgba(31,41,85,.08);
      border-radius: 22px;
      padding: 18px;
      text-align: left;
      color: inherit;
      background: rgba(255,255,255,.80);
      box-shadow: 0 12px 30px rgba(31,41,85,.05);
      cursor: pointer;
      transition: transform .22s cubic-bezier(.2,.8,.2,1), border-color .22s ease, box-shadow .22s ease, background .22s ease;
    }

    .feature-card:hover,
    .feature-card:focus-visible,
    .feature-card.is-active {
      transform: translateY(-2px);
      border-color: color-mix(in srgb, var(--accent) 45%, rgba(31,41,85,.08));
      background:
        radial-gradient(circle at 12% 10%, color-mix(in srgb, var(--accent) 12%, transparent), transparent 50%),
        rgba(255,255,255,.92);
      box-shadow: 0 18px 44px color-mix(in srgb, var(--accent) 12%, transparent);
      outline: 0;
    }

    .feature-card.is-active {
      border-width: 2px;
      box-shadow: 0 18px 48px color-mix(in srgb, var(--accent) 18%, transparent);
    }

    .feature-icon {
      display: grid;
      place-items: center;
      width: 60px;
      height: 60px;
      border-radius: 20px;
      color: var(--accent);
      background: color-mix(in srgb, var(--accent) 12%, white);
      font-size: 1.7rem;
      font-weight: 900;
    }

    .feature-card strong {
      display: block;
      margin-bottom: 7px;
      font-size: 1.08rem;
      letter-spacing: -.02em;
    }

    .feature-card span.copy {
      display: block;
      color: #59637f;
      font-size: .84rem;
      line-height: 1.45;
      font-weight: 650;
    }

    .chev { color: #7d859d; font-size: 1.5rem; }
    .feature-card.is-active .chev { color: var(--accent); }

    .feature-panel {
      position: relative;
      min-height: 780px;
      border: 1px solid rgba(31,41,85,.08);
      border-radius: 26px;
      background:
        radial-gradient(circle at 90% 6%, color-mix(in srgb, var(--active-accent) 13%, transparent), transparent 36%),
        rgba(255,255,255,.84);
      box-shadow: 0 14px 38px rgba(31,41,85,.06);
      overflow: hidden;
    }

    .feature-detail {
      display: none;
      grid-template-rows: auto auto 1fr auto;
      gap: 22px;
      padding: clamp(24px, 3vw, 38px);
      animation: detailIn .38s cubic-bezier(.2,.8,.2,1) both;
    }

    .feature-detail.is-active { display: grid; }

    @keyframes detailIn {
      from { opacity: 0; transform: translateY(12px); filter: blur(6px); }
      to { opacity: 1; transform: translateY(0); filter: blur(0); }
    }

    .detail-header {
      display: grid;
      grid-template-columns: 76px 1fr auto;
      gap: 18px;
      align-items: center;
    }

    .detail-header .feature-icon {
      width: 70px;
      height: 70px;
      border-radius: 22px;
      font-size: 2rem;
    }

    .detail-header h2 {
      margin: 0 0 8px;
      font-size: clamp(1.9rem, 3vw, 3rem);
      line-height: 1;
      letter-spacing: -.055em;
    }

    .tag {
      display: inline-flex;
      align-items: center;
      min-height: 28px;
      padding: 6px 10px;
      border-radius: 999px;
      color: var(--active-accent);
      background: color-mix(in srgb, var(--active-accent) 11%, white);
      font-size: .74rem;
      font-weight: 900;
    }

    .close-detail {
      display: none;
      width: 42px;
      height: 42px;
      border: 1px solid rgba(31,41,85,.10);
      border-radius: 50%;
      background: rgba(255,255,255,.78);
      color: #6b7280;
      font-size: 1.3rem;
      cursor: pointer;
    }

    .detail-copy {
      max-width: 720px;
      color: #3c4564;
      font-size: 1.02rem;
      line-height: 1.65;
    }

    .pills {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
    }

    .pill {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      padding: 8px 11px;
      border-radius: 999px;
      color: #2f395a;
      background: color-mix(in srgb, var(--active-accent) 11%, white);
      font-size: .78rem;
      font-weight: 900;
    }

    .preview-card {
      position: relative;
      min-height: 310px;
      border: 1px solid rgba(31,41,85,.08);
      border-radius: 22px;
      background:
        radial-gradient(circle at 50% 25%, rgba(255,255,255,.96), transparent 48%),
        linear-gradient(135deg, rgba(255,255,255,.78), color-mix(in srgb, var(--active-accent) 9%, white));
      box-shadow: inset 0 1px 0 rgba(255,255,255,.7), 0 18px 50px rgba(31,41,85,.07);
      overflow: hidden;
    }

    .preview-calendar {
      display: grid;
      grid-template-columns: 1fr 150px;
      gap: 18px;
      padding: 20px;
    }

    .mini-window {
      border: 1px solid rgba(31,41,85,.08);
      border-radius: 18px;
      background: rgba(255,255,255,.86);
      overflow: hidden;
    }

    .mini-window .calendar-panel { padding: 18px; }
    .mini-window .day { min-height: 42px; }
    .mini-window .event-chip { font-size: .54rem; padding: 4px 5px; }

    .mini-phone {
      border: 6px solid #33384d;
      border-radius: 26px;
      background: #fff;
      overflow: hidden;
      box-shadow: 0 18px 38px rgba(31,41,85,.12);
    }

    .preview-ai {
      min-height: 340px;
      display: grid;
      align-content: center;
      gap: 14px;
      padding: 24px;
      background:
        radial-gradient(circle at 75% 8%, rgba(255,105,200,.18), transparent 28%),
        linear-gradient(145deg, #1d233a, #313450 55%, #171c31);
    }

    .ai-bubble {
      max-width: 430px;
      padding: 16px 18px;
      border-radius: 18px;
      color: #fff;
      background: linear-gradient(135deg, var(--purple), var(--purple-2));
      box-shadow: 0 18px 34px rgba(124,60,255,.28);
      font-size: .92rem;
      font-weight: 750;
    }

    .ai-bubble.reply {
      justify-self: start;
      color: #202846;
      background: rgba(255,255,255,.92);
    }

    .ai-bubble.plan {
      justify-self: center;
      color: #202846;
      background: rgba(255,255,255,.92);
      min-width: min(100%, 360px);
    }

    .preview-generic {
      display: grid;
      place-items: center;
      padding: 34px;
    }

    .generic-visual {
      width: min(100%, 520px);
      display: grid;
      gap: 16px;
    }

    .generic-row {
      display: grid;
      grid-template-columns: 52px 1fr auto;
      gap: 14px;
      align-items: center;
      padding: 16px;
      border-radius: 18px;
      background: rgba(255,255,255,.80);
      border: 1px solid rgba(31,41,85,.08);
      box-shadow: 0 12px 26px rgba(31,41,85,.05);
    }

    .generic-dot {
      width: 52px;
      height: 52px;
      display: grid;
      place-items: center;
      border-radius: 17px;
      color: var(--active-accent);
      background: color-mix(in srgb, var(--active-accent) 12%, white);
      font-size: 1.35rem;
      font-weight: 900;
    }

    .generic-row strong { display: block; margin-bottom: 3px; }
    .generic-row small { color: #66708b; font-weight: 750; }

    .info-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 18px;
    }

    .info-box {
      padding: 22px;
      border: 1px solid rgba(31,41,85,.08);
      border-radius: 20px;
      background: rgba(255,255,255,.66);
    }

    .info-box h3 {
      margin-bottom: 14px;
      font-size: 1.05rem;
      letter-spacing: -.02em;
    }

    .check-list {
      display: grid;
      gap: 11px;
      margin: 0;
      padding: 0;
      list-style: none;
      color: #414b68;
      font-size: .9rem;
      font-weight: 720;
    }

    .check-list li {
      display: grid;
      grid-template-columns: 18px 1fr;
      gap: 10px;
      align-items: start;
    }

    .check-list li::before {
      content: "✓";
      display: grid;
      place-items: center;
      width: 18px;
      height: 18px;
      margin-top: 1px;
      border-radius: 50%;
      color: #fff;
      background: var(--active-accent);
      font-size: .68rem;
      font-weight: 900;
    }

    .detail-cta {
      display: grid;
      grid-template-columns: 1fr auto auto;
      gap: 14px;
      align-items: center;
      padding: 18px;
      border-radius: 20px;
      background: color-mix(in srgb, var(--active-accent) 8%, white);
    }

    .detail-cta strong { display: block; margin-bottom: 4px; }
    .detail-cta span { color: #66708b; font-size: .88rem; font-weight: 650; }

    .stats-section {
      display: grid;
      grid-template-columns: 1.1fr repeat(4, 1fr);
      gap: 18px;
      align-items: stretch;
      margin-top: 40px;
      padding: 16px 0 0;
    }

    .trust-copy {
      padding: 14px 12px;
    }

    .trust-copy h2 {
      margin-bottom: 16px;
      font-size: clamp(2rem, 3.5vw, 3.1rem);
      line-height: 1.04;
      letter-spacing: -.055em;
    }

    .trust-copy p {
      max-width: 360px;
      color: #66708b;
      font-size: 1rem;
      line-height: 1.6;
    }

    .privacy-pills {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 22px;
    }

    .privacy-pill {
      padding: 10px 12px;
      border: 1px solid rgba(31,41,85,.08);
      border-radius: 12px;
      background: rgba(255,255,255,.72);
      color: #53607c;
      font-size: .76rem;
      font-weight: 850;
    }

    .stat-card {
      display: grid;
      place-items: center;
      min-height: 190px;
      padding: 22px;
      border: 1px solid rgba(31,41,85,.08);
      border-radius: 22px;
      text-align: center;
      background: rgba(255,255,255,.78);
      box-shadow: 0 16px 38px rgba(31,41,85,.06);
    }

    .stat-icon {
      display: grid;
      place-items: center;
      width: 46px;
      height: 46px;
      margin-bottom: 18px;
      border-radius: 16px;
      color: var(--purple);
      background: rgba(124,60,255,.09);
      font-size: 1.45rem;
      font-weight: 900;
    }

    .stat-card strong {
      display: block;
      margin-bottom: 6px;
      font-size: 2rem;
      letter-spacing: -.04em;
    }

    .stat-card span {
      display: block;
      color: #66708b;
      font-size: .88rem;
      font-weight: 750;
    }

    .stat-stars { margin-top: 14px; color: #ffb800; letter-spacing: 2px; }

    .footer {
      width: min(100%, 1480px);
      margin: 0 auto;
      padding: 28px clamp(22px, 4vw, 58px) calc(30px + var(--safe-bottom));
      display: flex;
      align-items: center;
      justify-content: center;
      color: #7d859d;
      font-size: .92rem;
      font-weight: 750;
    }

    .mobile-sheet {
      position: fixed;
      inset: 0;
      z-index: 100;
      display: none;
      pointer-events: none;
    }

    .mobile-sheet.is-open {
      display: block;
      pointer-events: auto;
    }

    .sheet-backdrop {
      position: absolute;
      inset: 0;
      background: rgba(17, 24, 39, .44);
      -webkit-backdrop-filter: blur(14px);
      backdrop-filter: blur(14px);
      opacity: 0;
      animation: fadeIn .22s ease forwards;
    }

    .sheet-card {
      position: absolute;
      left: 10px;
      right: 10px;
      bottom: 0;
      max-height: min(88vh, 790px);
      overflow-y: auto;
      border-radius: 28px 28px 0 0;
      background: rgba(255,255,255,.94);
      box-shadow: 0 -24px 70px rgba(31,41,85,.18);
      transform: translateY(100%);
      animation: sheetUp .32s cubic-bezier(.2,.8,.2,1) forwards;
    }

    .sheet-handle {
      width: 44px;
      height: 5px;
      margin: 12px auto 0;
      border-radius: 999px;
      background: rgba(31,41,85,.18);
    }

    @keyframes fadeIn { to { opacity: 1; } }
    @keyframes sheetUp { to { transform: translateY(0); } }

    body.sheet-open { overflow: hidden; }

    @media (max-width: 1180px) {
      .nav {
        grid-template-columns: 1fr auto;
      }
      .nav-links { display: none; }
      .hero {
        grid-template-columns: 1fr;
        min-height: 0;
      }
      .hero-art { min-height: 520px; }
      .feature-experience {
        grid-template-columns: 1fr;
      }
      .feature-menu {
        grid-template-columns: repeat(2, 1fr);
      }
      .feature-panel { min-height: auto; }
      .stats-section {
        grid-template-columns: repeat(2, 1fr);
      }
      .trust-copy { grid-column: 1 / -1; }
    }

    @media (max-width: 760px) {
      .nav {
        min-height: 66px;
        padding: 12px 18px;
      }
      .brand { font-size: 1.28rem; }
      .brand-logo { width: 36px; height: 36px; }
      .nav-actions .btn-primary { display: none; }
      .btn { width: 100%; min-height: 50px; }
      .page { padding-inline: 16px; }
      .hero {
        padding-top: 34px;
        gap: 22px;
      }
      h1 {
        font-size: clamp(3.05rem, 14vw, 4.5rem);
      }
      .hero-actions { display: grid; grid-template-columns: 1fr; }
      .social-proof { align-items: flex-start; flex-direction: column; gap: 10px; }
      .hero-art { min-height: 575px; }
      .desktop-window {
        margin: 10px 0 0;
        min-height: 360px;
        border-radius: 24px;
      }
      .app-preview { grid-template-columns: 1fr; }
      .sidebar { display: none; }
      .calendar-panel { padding: 16px; }
      .day { min-height: 44px; padding: 5px; }
      .event-chip { font-size: .5rem; }
      .phone {
        width: 166px;
        min-height: 358px;
        right: 8px;
        top: 210px;
      }
      .toast {
        left: 8px;
        bottom: 22px;
        width: min(260px, calc(100% - 190px));
        padding: 12px;
        font-size: .72rem;
      }
      .float-icon { width: 54px; height: 54px; border-radius: 20px; font-size: 1.55rem; }
      .float-icon.one { left: 12px; top: -16px; }
      .float-icon.two { right: 12px; top: 4px; }
      .float-icon.three { display: none; }
      .feature-experience {
        margin-top: 6px;
        padding: 10px;
        border-radius: 26px;
      }
      .feature-menu {
        grid-template-columns: 1fr;
        gap: 10px;
      }
      .feature-card {
        min-height: 94px;
        grid-template-columns: 60px 1fr 20px;
        border-radius: 20px;
        padding: 14px;
      }
      .feature-panel { display: none; }
      .close-detail { display: grid; place-items: center; }
      .detail-header { grid-template-columns: 64px 1fr 42px; }
      .detail-header .feature-icon { width: 60px; height: 60px; }
      .feature-detail { padding: 18px 18px 24px; }
      .preview-calendar { grid-template-columns: 1fr; }
      .mini-phone { display: none; }
      .info-grid { grid-template-columns: 1fr; }
      .detail-cta { grid-template-columns: 1fr; }
      .stats-section { grid-template-columns: 1fr; }
      .stat-card { min-height: 160px; }
    }

    @media (max-width: 390px) {
      .brand span:last-child { display: none; }
      .toast { display: none; }
      .phone { right: 0; }
    }

    @media (prefers-reduced-motion: reduce) {
      *, *::before, *::after {
        animation: none !important;
        transition: none !important;
        scroll-behavior: auto !important;
      }
    }

/* =========================================================
   FCC Landing — Expanded Feature Badge Fix
   Fixes compressed/jumbled labels like "Core Feature"
   ========================================================= */

.feature-detail h2,
.feature-sheet-card h2 {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 12px;
  min-width: 0;
  line-height: 1.05;
}

.feature-detail h2 .tag,
.feature-sheet-card h2 .tag {
  flex: 0 0 auto;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: auto !important;
  min-width: max-content;
  max-width: none;
  min-height: 28px;
  padding: 7px 12px;
  border-radius: 999px;
  white-space: nowrap !important;
  line-height: 1 !important;
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: -0.01em;
  text-align: center;
  transform: translateY(-1px);
}

.feature-detail .detail-header,
.feature-sheet-card .detail-header {
  align-items: start;
}

.feature-detail .detail-header > div,
.feature-sheet-card .detail-header > div {
  min-width: 0;
  overflow: visible;
}

/* Give the title area enough room so the badge does not get crushed */
.feature-detail .detail-header {
  grid-template-columns: 76px minmax(0, 1fr);
}

.feature-detail .detail-header .close-detail,
.feature-detail .detail-header .feature-detail-close {
  grid-column: auto;
}

/* On tighter desktop/tablet widths, stack the badge under the title */
@media (max-width: 1180px) {
  .feature-detail h2,
  .feature-sheet-card h2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .feature-detail h2 .tag,
  .feature-sheet-card h2 .tag {
    justify-self: start;
    transform: none;
  }
}

/* Mobile bottom sheet polish */
@media (max-width: 760px) {
  .feature-detail h2,
  .feature-sheet-card h2 {
    font-size: clamp(1.75rem, 8vw, 2.35rem);
    line-height: 1.02;
  }

  .feature-detail h2 .tag,
  .feature-sheet-card h2 .tag {
    min-height: 27px;
    padding: 7px 11px;
    font-size: 0.68rem;
    white-space: nowrap !important;
  }
}

/* =========================================================
   FCC Landing — Mobile Header Menu + Hard Reload Polish
   ========================================================= */

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

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

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

.fcc-mobile-menu-backdrop {
  position: absolute;
  inset: 0;
  opacity: 0;
  background:
    radial-gradient(circle at 16% 12%, rgba(139, 92, 246, 0.24), transparent 34%),
    rgba(15, 18, 38, 0.48);
  -webkit-backdrop-filter: blur(16px) saturate(1.2);
  backdrop-filter: blur(16px) saturate(1.2);
  transition: opacity 240ms ease;
}

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

.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(86vw, 360px);
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 16px;
  border: 1px solid rgba(139, 92, 246, 0.18);
  border-radius: 28px;
  background:
    radial-gradient(circle at 28% 0%, rgba(236, 72, 153, 0.12), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(248, 245, 255, 0.92));
  box-shadow:
    0 30px 80px rgba(18, 18, 40, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
  -webkit-backdrop-filter: blur(24px) saturate(1.25);
  backdrop-filter: blur(24px) saturate(1.25);
  transform: translateX(calc(-100% - 24px)) scale(0.98);
  transition:
    transform 320ms cubic-bezier(0.2, 0.85, 0.2, 1),
    opacity 240ms ease;
  opacity: 0;
  overflow-y: auto;
}

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

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

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

.fcc-mobile-menu-brand img {
  width: 38px;
  height: 38px;
  object-fit: contain;
  filter: drop-shadow(0 10px 18px rgba(139, 92, 246, 0.22));
}

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

.fcc-mobile-menu-brand strong {
  color: #12152f;
  font-size: 1.05rem;
  line-height: 1;
  font-weight: 900;
  letter-spacing: -0.03em;
}

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

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

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

.fcc-mobile-menu-links a {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  min-height: 64px;
  padding: 10px 12px;
  border: 1px solid rgba(139, 92, 246, 0.12);
  border-radius: 20px;
  color: #13162f;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.86), rgba(247, 243, 255, 0.7));
  box-shadow: 0 12px 28px rgba(24, 24, 60, 0.055);
}

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

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

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

.fcc-mobile-menu-links strong {
  font-size: 0.94rem;
  line-height: 1.1;
  font-weight: 900;
  letter-spacing: -0.02em;
}

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

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

.fcc-mobile-login,
.fcc-mobile-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 18px;
  font-size: 0.95rem;
  font-weight: 900;
}

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

.fcc-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-mobile-menu-open {
  overflow: hidden;
}

/* Mobile header layout */
@media (max-width: 760px) {
  .site-header,
  .landing-header {
    position: sticky;
    top: 0;
    z-index: 100;
  }

  .nav,
  .site-nav,
  .landing-nav {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 70px;
    padding-left: max(14px, env(safe-area-inset-left, 0px));
    padding-right: max(14px, env(safe-area-inset-right, 0px));
    gap: 12px;
  }

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

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

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

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

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

  .brand,
  .landing-brand,
  .site-brand {
    min-width: 0;
    margin-right: auto;
  }

  .nav-links,
  .desktop-nav,
  .landing-nav-links {
    display: none !important;
  }

  .nav-actions {
    display: none !important;
  }

  .login-btn,
  .nav-login,
  .landing-login {
    display: none !important;
  }

  .nav .btn-primary,
  .site-nav .btn-primary,
  .landing-nav .btn-primary {
    display: none !important;
  }
}

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

@media (prefers-reduced-motion: reduce) {
  .fcc-mobile-menu-backdrop,
  .fcc-mobile-menu-panel,
  .fcc-mobile-menu-btn span {
    transition: 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;
  }
}
