:root {
  --fg-bg-main: #FEFBFB;
  --fg-bg-soft: #FDF3F2;
  --fg-bg-blush: #F8E2E3;
  --fg-bg-card: #FFFFFF;
  --fg-bg-card-soft: #FFF7F8;
  --fg-primary: #D98785;
  --fg-primary-soft: #F4CAD0;
  --fg-primary-light: #F8E2E3;
  --fg-accent-pink: #FF8FB1;
  --fg-accent-bubble: #FFB3C7;
  --fg-accent-lilac: #DDB7F4;
  --fg-accent-peach: #F6B3A2;
  --fg-accent-warm: #FFC6A8;
  --fg-text-main: #2A1B24;
  --fg-text-heading: #1F141B;
  --fg-text-muted: #7B5E68;
  --fg-text-soft: #A9828F;
  --fg-text-white: #FFFFFF;
  --fg-border-soft: #F1D2D7;
  --fg-border-strong: #E7B9C1;
  --fg-success: #60BFA4;
  --fg-warning: #F5B86B;
  --fg-danger: #E46F83;
  --fg-info: #A98BE8;
  --fg-gradient-page: linear-gradient(135deg, #FEFBFB 0%, #FDF3F2 50%, #F8E2E3 100%);
  --fg-gradient-cta: linear-gradient(135deg, #FF8FB1 0%, #F6B3A2 100%);
  --fg-gradient-cta-hover: linear-gradient(135deg, #EFAEB4 0%, #DDB7F4 100%);
  --fg-gradient-brand: linear-gradient(135deg, #D98785 0%, #FF8FB1 45%, #DDB7F4 100%);
  --fg-shadow-soft: 0 12px 30px rgba(217, 135, 133, 0.12);
  --fg-shadow-card: 0 18px 45px rgba(217, 135, 133, 0.16);
  --fg-shadow-button: 0 12px 28px rgba(255, 143, 177, 0.32);
  --fg-radius-sm: 10px;
  --fg-radius-md: 16px;
  --fg-radius-lg: 24px;
  --fg-radius-xl: 32px;
  --fg-transition: all 0.25s ease;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Inter", "Segoe UI", sans-serif;
  color: var(--fg-text-main);
  background: var(--fg-gradient-page);
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img, svg { max-width: 100%; }
img { height: auto; }

.fg-page {
  min-height: 100vh;
  overflow-x: hidden;
}

.fg-container {
  width: min(1140px, calc(100% - 32px));
  margin: 0 auto;
}

.fg-image-card {
  position: relative;
  overflow: hidden;
  margin: 0;
  border-radius: 28px;
  border: 1px solid rgba(231, 185, 193, 0.75);
  box-shadow: 0 24px 60px rgba(217, 135, 133, 0.18);
  background: var(--fg-bg-card-soft);
}

.fg-image-card::after,
.fg-lifestyle-visual::after,
.fg-studio-visual::after,
.fg-contact-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(254, 251, 251, 0.05), rgba(255, 143, 177, 0.12));
}

.fg-image-card img,
.fg-lifestyle-photo,
.fg-live-photo,
.fg-contact-photo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.fg-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(254, 251, 251, 0.86);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(241, 210, 215, 0.72);
}

.fg-nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.fg-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  letter-spacing: 0;
  color: var(--fg-text-heading);
}

.fg-logo-mark {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--fg-shadow-soft);
  overflow: hidden;
}

.fg-logo-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 5px;
}

.fg-nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 0.92rem;
  color: var(--fg-text-muted);
  font-weight: 700;
}

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

.fg-mobile-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--fg-border-soft);
  border-radius: 14px;
  background: var(--fg-bg-card);
  color: var(--fg-text-main);
  cursor: pointer;
}

.fg-mobile-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
  border-radius: 999px;
}

.fg-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 900;
  color: var(--fg-text-white);
  background: var(--fg-gradient-cta);
  box-shadow: var(--fg-shadow-button);
  transition: var(--fg-transition);
  cursor: pointer;
}

.fg-button:hover {
  transform: translateY(-2px);
  background: var(--fg-gradient-cta-hover);
}

.fg-button-secondary {
  color: var(--fg-text-heading);
  background: rgba(255, 255, 255, 0.72);
  border-color: var(--fg-border-strong);
  box-shadow: var(--fg-shadow-soft);
}

.fg-section {
  padding: 86px 0;
}

.fg-hero {
  position: relative;
  padding: 86px 0 72px;
  background:
    radial-gradient(circle at top left, rgba(255, 143, 177, 0.22), transparent 34%),
    radial-gradient(circle at bottom right, rgba(221, 183, 244, 0.20), transparent 34%),
    linear-gradient(135deg, #FEFBFB 0%, #FDF3F2 50%, #F8E2E3 100%);
}

.fg-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 44px;
  align-items: center;
}

.fg-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 13px;
  border-radius: 999px;
  border: 1px solid var(--fg-border-strong);
  background: rgba(255, 255, 255, 0.68);
  color: var(--fg-primary);
  font-size: 0.78rem;
  font-weight: 900;
}

.fg-h1 {
  margin: 20px 0 18px;
  max-width: 780px;
  font-size: clamp(2.55rem, 6vw, 5.4rem);
  line-height: 0.94;
  letter-spacing: 0;
  color: var(--fg-text-heading);
}

.fg-lead {
  max-width: 760px;
  font-size: 1.08rem;
  color: var(--fg-text-muted);
}

.fg-hero-actions,
.fg-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.fg-trio {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.fg-trio span {
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--fg-bg-card);
  color: var(--fg-primary);
  border: 1px solid var(--fg-border-soft);
  font-weight: 900;
  box-shadow: var(--fg-shadow-soft);
}

.fg-hero-panel {
  position: relative;
  padding: 26px;
  border-radius: var(--fg-radius-xl);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--fg-border-soft);
  box-shadow: var(--fg-shadow-card);
  overflow: hidden;
}

.fg-hero-panel::before {
  content: "";
  position: absolute;
  inset: auto -20% -30% auto;
  width: 260px;
  height: 260px;
  border-radius: 999px;
  background: rgba(255, 143, 177, 0.18);
}

.fg-metric-grid {
  position: relative;
  display: grid;
  gap: 14px;
}

.fg-metric {
  padding: 20px;
  border-radius: 22px;
  background: var(--fg-bg-card);
  border: 1px solid var(--fg-border-soft);
}

.fg-metric strong {
  display: block;
  color: var(--fg-text-heading);
  font-size: 1.42rem;
}

.fg-metric span { color: var(--fg-text-muted); font-weight: 700; }

.fg-kicker {
  margin: 0 0 10px;
  color: var(--fg-primary);
  font-weight: 900;
}

.fg-section-title {
  max-width: 780px;
  margin: 0 0 16px;
  color: var(--fg-text-heading);
  font-size: clamp(2rem, 4vw, 3.55rem);
  line-height: 1;
  letter-spacing: 0;
}

.fg-section-copy {
  max-width: 780px;
  margin: 0 0 34px;
  color: var(--fg-text-muted);
  font-size: 1.02rem;
}

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

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

.fg-card {
  padding: 24px;
  border-radius: var(--fg-radius-lg);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--fg-border-soft);
  box-shadow: var(--fg-shadow-soft);
}

.fg-card h3 {
  margin: 0 0 10px;
  color: var(--fg-text-heading);
  font-size: 1.18rem;
}

.fg-card p { margin: 0; color: var(--fg-text-muted); }

.fg-problem {
  background: rgba(255, 247, 248, 0.78);
  border-top: 1px solid var(--fg-border-soft);
  border-bottom: 1px solid var(--fg-border-soft);
}

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

.fg-list li {
  position: relative;
  padding: 13px 14px 13px 42px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid var(--fg-border-soft);
  color: var(--fg-text-muted);
  font-weight: 700;
}

.fg-list li::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 18px;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--fg-gradient-cta);
}

.fg-split-card {
  padding: 30px;
  border-radius: var(--fg-radius-xl);
  background: var(--fg-bg-card);
  border: 1px solid var(--fg-border-soft);
  box-shadow: var(--fg-shadow-card);
}

.fg-split-card h3 { margin-top: 0; color: var(--fg-text-heading); }

.fg-band {
  border-radius: var(--fg-radius-xl);
  padding: 34px;
  background: linear-gradient(135deg, rgba(255, 143, 177, 0.16), rgba(221, 183, 244, 0.15));
  border: 1px solid var(--fg-border-soft);
  box-shadow: var(--fg-shadow-card);
}

.fg-note {
  margin-top: 18px;
  color: var(--fg-text-soft);
  font-size: 0.94rem;
  font-weight: 700;
}

.fg-steps {
  counter-reset: steps;
}

.fg-step {
  counter-increment: steps;
  position: relative;
  padding-left: 64px;
}

.fg-step::before {
  content: counter(steps);
  position: absolute;
  left: 22px;
  top: 24px;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--fg-gradient-cta);
  color: var(--fg-text-white);
  font-weight: 900;
}

.fg-cta {
  text-align: center;
  padding: 72px 0;
}

.fg-cta-inner {
  padding: 46px 24px;
  border-radius: var(--fg-radius-xl);
  background: var(--fg-bg-card);
  border: 1px solid var(--fg-border-soft);
  box-shadow: var(--fg-shadow-card);
}

.fg-cta-inner h2 {
  margin: 0 0 12px;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1;
  color: var(--fg-text-heading);
}

.fg-cta-inner p { color: var(--fg-text-muted); }

.fg-faq {
  display: grid;
  gap: 12px;
}

.fg-faq-item {
  border-radius: 18px;
  border: 1px solid var(--fg-border-soft);
  background: rgba(255, 255, 255, 0.82);
  overflow: hidden;
}

.fg-faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  background: transparent;
  border: 0;
  color: var(--fg-text-heading);
  font: inherit;
  font-weight: 900;
  text-align: left;
  cursor: pointer;
}

.fg-faq-icon { color: var(--fg-primary); font-weight: 900; }
.fg-faq-answer {
  display: none;
  padding: 0 20px 18px;
  color: var(--fg-text-muted);
}
.fg-faq-item.is-open .fg-faq-answer { display: block; }
.fg-faq-item.is-open .fg-faq-icon { transform: rotate(45deg); }

.fg-form-page {
  padding: 72px 0;
}

.fg-form-shell {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 28px;
  align-items: start;
}

.fg-form {
  padding: 28px;
  border-radius: var(--fg-radius-xl);
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--fg-border-soft);
  box-shadow: var(--fg-shadow-card);
}

.fg-field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.fg-field {
  display: grid;
  gap: 7px;
}

.fg-field-full { grid-column: 1 / -1; }
.fg-field label { color: var(--fg-text-heading); font-weight: 900; }

.fg-input,
.fg-select,
.fg-textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid var(--fg-border-soft);
  background: var(--fg-bg-card-soft);
  color: var(--fg-text-main);
  font: inherit;
  outline: none;
}

.fg-textarea { min-height: 120px; resize: vertical; }
.fg-input:focus,
.fg-select:focus,
.fg-textarea:focus {
  border-color: var(--fg-accent-pink);
  box-shadow: 0 0 0 4px rgba(255, 143, 177, 0.14);
}

.fg-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 13px;
  border-radius: 14px;
  background: var(--fg-bg-card-soft);
  border: 1px solid var(--fg-border-soft);
  color: var(--fg-text-muted);
  font-weight: 800;
}

.fg-alert {
  display: none;
  margin-bottom: 16px;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(228, 111, 131, 0.1);
  color: var(--fg-danger);
  border: 1px solid rgba(228, 111, 131, 0.22);
  font-weight: 800;
}

.fg-alert.is-visible { display: block; }

.fg-legal {
  padding: 72px 0;
}

.fg-legal article {
  max-width: 840px;
  padding: 34px;
  border-radius: var(--fg-radius-xl);
  background: var(--fg-bg-card);
  border: 1px solid var(--fg-border-soft);
  box-shadow: var(--fg-shadow-soft);
}

.fg-legal h1 {
  margin-top: 0;
  color: var(--fg-text-heading);
}

.fg-legal li { margin-bottom: 10px; color: var(--fg-text-muted); }

.fg-footer {
  padding: 54px 0 30px;
  background: #fff;
  border-top: 1px solid var(--fg-border-soft);
}

.fg-footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
}

.fg-footer h2 {
  margin: 0 0 8px;
  color: var(--fg-text-heading);
}

.fg-footer p { margin: 0 0 10px; color: var(--fg-text-muted); }

.fg-footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px 18px;
  color: var(--fg-text-muted);
  font-weight: 800;
}

.fg-powered {
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid var(--fg-border-soft);
  color: var(--fg-text-soft);
  font-size: 0.92rem;
}

@media (max-width: 920px) {
  .fg-nav-links {
    position: fixed;
    top: 76px;
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid var(--fg-border-soft);
    box-shadow: var(--fg-shadow-card);
  }
  .fg-nav-links.is-open { display: flex; }
  .fg-mobile-toggle { display: inline-block; }
  .fg-nav .fg-button { display: none; }
  .fg-hero-grid,
  .fg-grid-2,
  .fg-form-shell,
  .fg-footer-grid {
    grid-template-columns: 1fr;
  }
  .fg-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 640px) {
  .fg-container { width: min(100% - 24px, 1140px); }
  .fg-section { padding: 62px 0; }
  .fg-hero { padding: 58px 0 48px; }
  .fg-grid,
  .fg-field-grid { grid-template-columns: 1fr; }
  .fg-card,
  .fg-split-card,
  .fg-form,
  .fg-legal article { padding: 20px; }
  .fg-footer-links { justify-content: flex-start; }
}

/* Premium visual polish layer */
body {
  font-family: "Plus Jakarta Sans", "Trebuchet MS", sans-serif;
  background:
    radial-gradient(circle at 8% 8%, rgba(255, 143, 177, 0.18), transparent 28%),
    radial-gradient(circle at 92% 18%, rgba(221, 183, 244, 0.18), transparent 28%),
    var(--fg-gradient-page);
}

.fg-page::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(217, 135, 133, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(217, 135, 133, 0.045) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, black, transparent 76%);
  z-index: -1;
}

.fg-header {
  background: rgba(254, 251, 251, 0.76);
  box-shadow: 0 16px 45px rgba(217, 135, 133, 0.08);
}

.fg-logo { font-size: 1.02rem; }
.fg-logo-mark { width: 52px; height: 52px; border-radius: 18px; }

.fg-button {
  position: relative;
  overflow: hidden;
  letter-spacing: -0.01em;
}

.fg-button::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 15%, rgba(255, 255, 255, 0.36), transparent 52%);
  transform: translateX(-120%);
  transition: transform 0.65s ease;
}

.fg-button:hover::after { transform: translateX(120%); }
.fg-button-small { min-height: 40px; padding: 0 16px; font-size: 0.86rem; }

.fg-section { position: relative; padding: 96px 0; }
.fg-section-head { margin-bottom: 34px; }

.fg-kicker,
.fg-badge {
  width: fit-content;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.fg-badge {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(255, 247, 248, 0.72));
  box-shadow: var(--fg-shadow-soft);
}

.fg-h1,
.fg-section-title,
.fg-cta-inner h2,
.fg-showcase h2 {
  letter-spacing: -0.06em;
}

.fg-hero {
  isolation: isolate;
  min-height: calc(100vh - 76px);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.fg-hero::before {
  content: "";
  position: absolute;
  right: 7%;
  top: 16%;
  width: 420px;
  height: 520px;
  border: 1px solid rgba(217, 135, 133, 0.2);
  border-radius: 48% 48% 12px 12px;
  transform: rotate(9deg);
  background: linear-gradient(180deg, rgba(255,255,255,0.32), rgba(255,143,177,0.07));
  z-index: -1;
}

.fg-hero-orb {
  position: absolute;
  width: 310px;
  height: 310px;
  border-radius: 999px;
  filter: blur(12px);
  opacity: 0.55;
  z-index: -1;
}

.fg-hero-orb-one { left: -90px; top: 18%; background: rgba(255, 179, 199, 0.42); }
.fg-hero-orb-two { right: -80px; bottom: 8%; background: rgba(221, 183, 244, 0.44); }

.fg-hero-grid { grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr); gap: 58px; }
.fg-hero-copy { position: relative; }
.fg-lead { font-size: clamp(1.02rem, 1.6vw, 1.2rem); }

.fg-hero-media {
  position: relative;
  min-height: 620px;
}

.fg-hero-photo {
  position: absolute;
  inset: 0 0 auto 6%;
  height: 390px;
  border-radius: 36px;
  opacity: 0.92;
}

.fg-hero-photo img {
  object-position: center;
}

.fg-hero-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 20% 15%, rgba(255, 143, 177, 0.18), transparent 34%),
    linear-gradient(180deg, rgba(42, 27, 36, 0.08), rgba(254, 251, 251, 0.22));
  pointer-events: none;
}

.fg-trio span {
  background: rgba(255, 255, 255, 0.74);
  backdrop-filter: blur(12px);
}

.fg-hero-dashboard {
  position: relative;
  z-index: 2;
  margin-top: 230px;
  margin-left: -2%;
  max-width: 520px;
  padding: 26px;
  border-radius: 34px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.86), rgba(255, 247, 248, 0.72)),
    var(--fg-gradient-page);
  border: 1px solid rgba(231, 185, 193, 0.8);
  box-shadow: 0 28px 80px rgba(217, 135, 133, 0.2);
  overflow: hidden;
}

.fg-hero-media .fg-dashboard-footer::before,
.fg-hero-media .fg-dashboard-footer::after {
  display: none;
}

.fg-hero-dashboard::before,
.fg-hero-dashboard::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.fg-hero-dashboard::before {
  width: 240px;
  height: 240px;
  right: -90px;
  top: -80px;
  background: rgba(255, 143, 177, 0.2);
}

.fg-hero-dashboard::after {
  width: 180px;
  height: 180px;
  left: -70px;
  bottom: -70px;
  background: rgba(221, 183, 244, 0.22);
}

.fg-dashboard-topline,
.fg-dashboard-footer,
.fg-progress-row,
.fg-dashboard-metric {
  position: relative;
  z-index: 1;
}

.fg-dashboard-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.fg-live-dot {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(96, 191, 164, 0.14);
  color: #3f907a;
  font-weight: 900;
  font-size: 0.78rem;
}

.fg-live-dot::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--fg-success);
  box-shadow: 0 0 0 6px rgba(96, 191, 164, 0.12);
}

.fg-hero-dashboard h2 { position: relative; z-index: 1; margin: 12px 0 22px; line-height: 1.08; color: var(--fg-text-heading); }

.fg-dashboard-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 18px;
}

.fg-dashboard-metric {
  padding: 18px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(241, 210, 215, 0.9);
  box-shadow: var(--fg-shadow-soft);
}

.fg-dashboard-metric strong,
.fg-dashboard-metric small { display: block; }
.fg-dashboard-metric strong { margin-top: 12px; color: var(--fg-text-heading); }
.fg-dashboard-metric small { color: var(--fg-text-soft); font-weight: 800; }

.fg-progress-stack {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
  padding: 16px;
  border-radius: 24px;
  background: rgba(42, 27, 36, 0.045);
  border: 1px solid rgba(241, 210, 215, 0.72);
}

.fg-progress-row span { display: flex; justify-content: space-between; color: var(--fg-text-muted); font-size: 0.86rem; font-weight: 900; }
.fg-progress-row i {
  display: block;
  height: 8px;
  margin-top: 7px;
  border-radius: 999px;
  background: rgba(241, 210, 215, 0.75);
  overflow: hidden;
}

.fg-progress-row i::before {
  content: "";
  display: block;
  width: var(--fg-progress);
  height: 100%;
  border-radius: inherit;
  background: var(--fg-gradient-cta);
}

.fg-dashboard-footer {
  margin-top: 16px;
  padding: 13px 14px;
  border-radius: 999px;
  text-align: center;
  color: var(--fg-primary);
  font-weight: 900;
  background: rgba(255, 255, 255, 0.66);
  border: 1px solid rgba(241, 210, 215, 0.86);
}

.fg-icon {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(255, 143, 177, 0.18), rgba(221, 183, 244, 0.2));
  border: 1px solid rgba(231, 185, 193, 0.78);
  color: var(--fg-primary);
  flex: 0 0 auto;
}

.fg-icon::before,
.fg-icon::after { content: ""; display: block; box-sizing: border-box; }
.fg-icon-live::before { width: 18px; height: 13px; border: 2px solid currentColor; border-radius: 5px; }
.fg-icon-live::after { position: absolute; width: 7px; height: 7px; border-right: 2px solid currentColor; border-bottom: 2px solid currentColor; transform: translate(14px, -10px) rotate(-45deg); }
.fg-icon-camera::before { width: 20px; height: 14px; border: 2px solid currentColor; border-radius: 5px; box-shadow: inset 0 0 0 4px rgba(255,255,255,0.65); }
.fg-icon-lock::before { width: 18px; height: 14px; border: 2px solid currentColor; border-radius: 4px; transform: translateY(4px); }
.fg-icon-lock::after { position: absolute; width: 12px; height: 10px; border: 2px solid currentColor; border-bottom: 0; border-radius: 10px 10px 0 0; transform: translateY(-7px); }
.fg-icon-spark::before { width: 18px; height: 18px; background: currentColor; clip-path: polygon(50% 0, 62% 36%, 100% 50%, 62% 64%, 50% 100%, 38% 64%, 0 50%, 38% 36%); }
.fg-icon-chart::before { width: 20px; height: 17px; border-left: 2px solid currentColor; border-bottom: 2px solid currentColor; background: linear-gradient(to top, currentColor 0 38%, transparent 38% 100%); clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%); opacity: 0.9; }
.fg-icon-profile::before { width: 10px; height: 10px; border-radius: 50%; border: 2px solid currentColor; transform: translateY(-5px); }
.fg-icon-profile::after { position: absolute; width: 18px; height: 10px; border: 2px solid currentColor; border-radius: 999px 999px 4px 4px; transform: translateY(9px); }
.fg-icon-chat::before { width: 20px; height: 15px; border: 2px solid currentColor; border-radius: 7px; }
.fg-icon-chat::after { position: absolute; width: 8px; height: 8px; border-left: 2px solid currentColor; border-bottom: 2px solid currentColor; transform: translate(-5px, 9px) rotate(-22deg); }
.fg-icon-shield::before { width: 19px; height: 22px; background: currentColor; clip-path: polygon(50% 0, 88% 14%, 80% 72%, 50% 100%, 20% 72%, 12% 14%); opacity: 0.9; }
.fg-icon-calendar::before { width: 20px; height: 18px; border: 2px solid currentColor; border-radius: 5px; box-shadow: inset 0 5px 0 rgba(217,135,133,0.22); }
.fg-icon-revenue::before { width: 20px; height: 20px; border: 2px solid currentColor; border-radius: 50%; }
.fg-icon-revenue::after { position: absolute; width: 10px; height: 2px; background: currentColor; box-shadow: 0 5px 0 currentColor, 0 -5px 0 currentColor; }
.fg-icon-laptop::before { width: 22px; height: 14px; border: 2px solid currentColor; border-radius: 5px 5px 3px 3px; }
.fg-icon-laptop::after { position: absolute; width: 28px; height: 4px; border-radius: 0 0 7px 7px; background: currentColor; transform: translateY(12px); opacity: 0.85; }
.fg-icon-compass::before { width: 22px; height: 22px; border: 2px solid currentColor; border-radius: 50%; }
.fg-icon-compass::after { position: absolute; width: 10px; height: 14px; background: currentColor; clip-path: polygon(50% 0, 100% 100%, 50% 75%, 0 100%); transform: rotate(32deg); }
.fg-icon-chaos::before { width: 20px; height: 20px; border: 2px solid currentColor; border-radius: 50%; border-style: dashed; }
.fg-icon-chaos::after { position: absolute; width: 18px; height: 2px; background: currentColor; box-shadow: 0 -7px 0 currentColor, 0 7px 0 currentColor; transform: rotate(-18deg); opacity: 0.82; }

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

.fg-category-card,
.fg-feature-card {
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.fg-category-card::before,
.fg-feature-card::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px;
  border-radius: inherit;
  background: var(--fg-gradient-brand);
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  opacity: 0.38;
  pointer-events: none;
}

.fg-category-card:hover,
.fg-feature-card:hover { transform: translateY(-7px); box-shadow: var(--fg-shadow-card); }
.fg-category-card h3 { margin-top: 18px; }

.fg-problem-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: 32px;
  align-items: center;
}

.fg-chaos-board {
  min-height: 310px;
  position: relative;
  padding: 24px;
  border-radius: 34px;
  background:
    radial-gradient(circle at 18% 12%, rgba(255, 143, 177, 0.22), transparent 34%),
    linear-gradient(135deg, rgba(255,255,255,0.88), rgba(255,247,248,0.78));
  border: 1px solid var(--fg-border-soft);
  box-shadow: var(--fg-shadow-card);
}

.fg-chaos-board span {
  position: absolute;
  display: inline-flex;
  padding: 12px 15px;
  border-radius: 999px;
  color: var(--fg-text-muted);
  font-weight: 900;
  background: rgba(255,255,255,0.78);
  border: 1px solid var(--fg-border-soft);
  box-shadow: var(--fg-shadow-soft);
}

.fg-chaos-board span:nth-child(1) { left: 28px; top: 34px; }
.fg-chaos-board span:nth-child(2) { right: 34px; top: 66px; background: rgba(221,183,244,0.16); }
.fg-chaos-board span:nth-child(3) { left: 80px; top: 134px; background: rgba(255,179,199,0.18); }
.fg-chaos-board span:nth-child(4) { right: 72px; top: 172px; }
.fg-chaos-board span:nth-child(5) { left: 34px; bottom: 42px; background: rgba(246,179,162,0.18); }
.fg-chaos-board span:nth-child(6) { right: 36px; bottom: 34px; background: rgba(255,143,177,0.15); }
.fg-chaos-board span:nth-child(7) { left: 45%; top: 226px; background: rgba(221,183,244,0.16); }
.fg-chaos-board span:nth-child(8) { left: 32%; bottom: 92px; background: rgba(255,198,168,0.2); }

.fg-transition-line {
  grid-column: 1 / -1;
  margin: 0;
  padding: 20px 24px;
  border-radius: 24px;
  background: var(--fg-bg-card);
  border: 1px solid var(--fg-border-soft);
  color: var(--fg-primary);
  font-weight: 900;
  box-shadow: var(--fg-shadow-soft);
}

.fg-showcase {
  padding: 36px;
  border-radius: 38px;
  background:
    radial-gradient(circle at 12% 10%, rgba(255, 143, 177, 0.18), transparent 28%),
    radial-gradient(circle at 88% 86%, rgba(221, 183, 244, 0.2), transparent 30%),
    rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(231, 185, 193, 0.8);
  box-shadow: 0 34px 90px rgba(217, 135, 133, 0.18);
}

.fg-showcase-head { max-width: 780px; margin-bottom: 28px; }
.fg-showcase-head h2 { margin: 0 0 12px; color: var(--fg-text-heading); font-size: clamp(2.1rem, 5vw, 4.1rem); line-height: 0.98; }
.fg-showcase-head p { color: var(--fg-text-muted); }

.fg-handle-create {
  display: grid;
  grid-template-columns: 1.15fr 74px 0.85fr;
  gap: 18px;
  align-items: stretch;
}

.fg-system-column {
  padding: 28px;
  border-radius: 30px;
  border: 1px solid var(--fg-border-soft);
  background: rgba(255,255,255,0.78);
}

.fg-system-column-heavy { box-shadow: var(--fg-shadow-card); }
.fg-system-column-light { background: linear-gradient(145deg, rgba(255,247,248,0.86), rgba(255,255,255,0.72)); }
.fg-system-column h3 { margin: 0 0 18px; color: var(--fg-text-heading); font-size: 1.55rem; }

.fg-system-divider { display: grid; place-items: center; }
.fg-system-divider span {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--fg-gradient-cta);
  box-shadow: var(--fg-shadow-button);
  position: relative;
}
.fg-system-divider span::before,
.fg-system-divider span::after { content: ""; position: absolute; background: #fff; left: 18px; right: 18px; top: 28px; height: 2px; }
.fg-system-divider span::after { width: 10px; height: 10px; right: 17px; left: auto; top: 24px; background: transparent; border-right: 2px solid #fff; border-top: 2px solid #fff; transform: rotate(45deg); }

.fg-system-list { display: grid; gap: 10px; margin: 0; padding: 0; list-style: none; }
.fg-system-list li { position: relative; padding: 11px 12px 11px 38px; border-radius: 16px; background: rgba(255,255,255,0.72); color: var(--fg-text-muted); font-weight: 850; border: 1px solid rgba(241,210,215,0.72); }
.fg-system-list li::before { position: absolute; left: 13px; top: 12px; color: var(--fg-primary); font-weight: 900; }
.fg-check-list li::before { content: "?"; }
.fg-spark-list li::before { content: "?"; }

.fg-feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.fg-feature-card {
  min-height: 255px;
  display: flex;
  flex-direction: column;
  padding: 24px;
  border-radius: 28px;
  background: rgba(255,255,255,0.82);
  border: 1px solid var(--fg-border-soft);
  box-shadow: var(--fg-shadow-soft);
}

.fg-feature-card h3 { margin: 18px 0 10px; color: var(--fg-text-heading); line-height: 1.1; }
.fg-feature-card p { margin: 0; color: var(--fg-text-muted); }
.fg-feature-card small { width: fit-content; margin-top: auto; padding: 8px 11px; border-radius: 999px; background: var(--fg-bg-card-soft); color: var(--fg-primary); font-weight: 900; }

.fg-service-groups {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 30px 0 22px;
  padding: 12px;
  border: 1px solid rgba(241, 210, 215, 0.86);
  border-radius: 30px;
  background:
    radial-gradient(circle at 12% 0%, rgba(255, 143, 177, 0.16), transparent 28%),
    radial-gradient(circle at 88% 100%, rgba(221, 183, 244, 0.16), transparent 30%),
    rgba(255, 247, 248, 0.72);
  box-shadow: var(--fg-shadow-soft);
}

.fg-service-groups span {
  position: relative;
  display: grid;
  gap: 4px;
  min-height: 88px;
  padding: 17px 17px 17px 46px;
  border: 1px solid rgba(231, 185, 193, 0.72);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.82);
}

.fg-service-groups span::before {
  content: "";
  position: absolute;
  top: 22px;
  left: 18px;
  width: 13px;
  height: 13px;
  border-radius: 999px;
  background: var(--fg-gradient-cta);
  box-shadow: 0 0 0 8px rgba(255, 143, 177, 0.12);
}

.fg-service-groups strong {
  color: var(--fg-text-heading);
  font-size: 0.96rem;
  line-height: 1.2;
}

.fg-service-groups small {
  color: var(--fg-text-muted);
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.35;
}

.fg-service-grid {
  align-items: stretch;
}

.fg-service-card {
  isolation: isolate;
}

.fg-service-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 24px;
  right: 24px;
  height: 4px;
  border-radius: 0 0 999px 999px;
  background: var(--fg-service-accent, var(--fg-accent-pink));
  opacity: 0.72;
}

.fg-service-growth { --fg-service-accent: var(--fg-accent-pink); }
.fg-service-revenue { --fg-service-accent: var(--fg-accent-peach); }
.fg-service-ops { --fg-service-accent: var(--fg-accent-lilac); }

.fg-service-priority {
  grid-column: span 2;
  min-height: 248px;
  background:
    radial-gradient(circle at 82% 16%, color-mix(in srgb, var(--fg-service-accent) 24%, transparent), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(255, 247, 248, 0.78));
}

.fg-service-priority h3 {
  font-size: clamp(1.34rem, 2vw, 1.72rem);
}

.fg-service-priority small {
  background: linear-gradient(135deg, rgba(255, 143, 177, 0.16), rgba(221, 183, 244, 0.18));
  color: #7b4058;
}

.fg-live-section {
  margin: 0 16px;
  border-radius: 40px;
  background:
    radial-gradient(circle at 78% 24%, rgba(255,143,177,0.22), transparent 30%),
    linear-gradient(135deg, rgba(255,255,255,0.72), rgba(248,226,227,0.84));
  border: 1px solid var(--fg-border-soft);
}

.fg-live-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 1.1fr);
  gap: 32px;
  align-items: center;
}

.fg-live-stack {
  position: relative;
  padding: 28px;
  border-radius: 32px;
  background: rgba(255,255,255,0.82);
  border: 1px solid var(--fg-border-soft);
  box-shadow: var(--fg-shadow-card);
  overflow: hidden;
}

.fg-studio-visual {
  position: relative;
  min-height: 250px;
  margin-bottom: 22px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 24% 22%, rgba(255, 143, 177, 0.24), transparent 32%),
    radial-gradient(circle at 78% 30%, rgba(221, 183, 244, 0.24), transparent 30%),
    linear-gradient(135deg, rgba(255,255,255,0.72), rgba(255,247,248,0.78));
  border: 1px solid rgba(241, 210, 215, 0.9);
  overflow: hidden;
}

.fg-live-photo {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.fg-ring-light,
.fg-studio-camera,
.fg-studio-mic,
.fg-studio-laptop {
  position: absolute;
  z-index: 2;
  filter: drop-shadow(0 16px 24px rgba(217, 135, 133, 0.16));
}

.fg-studio-visual .fg-ring-light,
.fg-studio-visual .fg-studio-camera,
.fg-studio-visual .fg-studio-mic,
.fg-studio-visual .fg-studio-laptop {
  opacity: 0;
}

.fg-ring-light {
  left: 30px;
  top: 26px;
  width: 108px;
  height: 108px;
  border-radius: 50%;
  border: 13px solid rgba(255, 255, 255, 0.82);
  box-shadow: 0 0 0 2px rgba(255, 143, 177, 0.22), inset 0 0 0 2px rgba(221, 183, 244, 0.2);
}

.fg-ring-light::after {
  content: "";
  position: absolute;
  left: 46px;
  top: 94px;
  width: 5px;
  height: 86px;
  border-radius: 999px;
  background: rgba(217, 135, 133, 0.5);
}

.fg-studio-camera {
  left: 72px;
  top: 68px;
  width: 34px;
  height: 24px;
  border-radius: 8px;
  background: linear-gradient(135deg, #2A1B24, #7B5E68);
}

.fg-studio-camera::after {
  content: "";
  position: absolute;
  right: -12px;
  top: 6px;
  width: 14px;
  height: 12px;
  clip-path: polygon(0 20%, 100% 0, 100% 100%, 0 80%);
  background: #7B5E68;
}

.fg-studio-mic {
  right: 64px;
  top: 40px;
  width: 34px;
  height: 70px;
  border-radius: 999px;
  background: linear-gradient(145deg, #fff, #f4cad0);
  border: 2px solid rgba(231, 185, 193, 0.9);
}

.fg-studio-mic::after {
  content: "";
  position: absolute;
  left: 14px;
  top: 68px;
  width: 4px;
  height: 62px;
  border-radius: 999px;
  background: rgba(217, 135, 133, 0.55);
}

.fg-studio-laptop {
  right: 28px;
  bottom: 25px;
  width: 164px;
  height: 88px;
  border-radius: 16px;
  background: linear-gradient(145deg, #fff, #fff7f8);
  border: 2px solid rgba(231, 185, 193, 0.88);
}

.fg-studio-laptop::after {
  content: "";
  position: absolute;
  left: -16px;
  right: -16px;
  bottom: -13px;
  height: 15px;
  border-radius: 0 0 16px 16px;
  background: linear-gradient(135deg, #fff, #f4cad0);
}

.fg-live-stack h3 { margin: 0 0 20px; color: var(--fg-text-heading); font-size: 1.6rem; }
.fg-live-stack ol { margin: 0; padding: 0; list-style: none; counter-reset: live; }
.fg-live-stack li { counter-increment: live; position: relative; min-height: 56px; padding: 0 0 18px 58px; color: var(--fg-text-muted); font-weight: 900; }
.fg-live-stack li:not(:last-child)::after { content: ""; position: absolute; left: 21px; top: 42px; width: 2px; height: calc(100% - 30px); background: var(--fg-border-strong); }
.fg-live-stack li::before { content: counter(live); position: absolute; left: 0; top: 0; width: 44px; height: 44px; display: grid; place-items: center; border-radius: 16px; color: #fff; background: var(--fg-gradient-cta); box-shadow: var(--fg-shadow-soft); }

.fg-dmca-section {
  background: linear-gradient(135deg, rgba(221,183,244,0.16), rgba(255,179,199,0.18));
  border-top: 1px solid var(--fg-border-soft);
  border-bottom: 1px solid var(--fg-border-soft);
}

.fg-dmca-grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 34px;
  align-items: center;
}

.fg-shield-card {
  min-height: 330px;
  display: grid;
  place-items: center;
  padding: 30px;
  border-radius: 34px;
  background: rgba(255,255,255,0.72);
  border: 1px solid var(--fg-border-soft);
  box-shadow: var(--fg-shadow-card);
  color: var(--fg-primary);
  font-weight: 900;
  text-align: center;
}

.fg-shield-shape {
  width: 132px;
  height: 152px;
  background: var(--fg-gradient-brand);
  clip-path: polygon(50% 0, 90% 14%, 82% 72%, 50% 100%, 18% 72%, 10% 14%);
  box-shadow: var(--fg-shadow-button);
}

.fg-protection-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0 0;
}

.fg-protection-list span,
.fg-trust-row span,
.fg-apply-bullets span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 13px;
  border-radius: 999px;
  background: rgba(255,255,255,0.78);
  border: 1px solid var(--fg-border-soft);
  color: var(--fg-text-muted);
  font-weight: 900;
}

.fg-legal-note {
  padding: 16px;
  border-radius: 18px;
  background: rgba(255,255,255,0.74);
  border: 1px solid var(--fg-border-soft);
}

.fg-privacy-stack { display: grid; gap: 16px; }
.fg-privacy-card {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 24px;
  border-radius: 28px;
  background: rgba(255,255,255,0.8);
  border: 1px solid var(--fg-border-soft);
  box-shadow: var(--fg-shadow-soft);
}
.fg-privacy-card h3 { margin: 0 0 5px; color: var(--fg-text-heading); }
.fg-privacy-card p { margin: 0; color: var(--fg-text-muted); }

.fg-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.fg-timeline::before {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  top: 31px;
  height: 2px;
  background: linear-gradient(90deg, var(--fg-accent-pink), var(--fg-accent-lilac));
}

.fg-step {
  position: relative;
  padding: 76px 22px 24px;
  border-radius: 28px;
  background: rgba(255,255,255,0.82);
  border: 1px solid var(--fg-border-soft);
  box-shadow: var(--fg-shadow-soft);
}

.fg-step::before { display: none; }
.fg-step > span {
  position: absolute;
  left: 22px;
  top: 18px;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: var(--fg-gradient-cta);
  color: #fff;
  font-weight: 900;
  box-shadow: var(--fg-shadow-button);
}
.fg-step .fg-icon { position: absolute; right: 18px; top: 18px; }
.fg-step h3 { margin: 0 0 10px; color: var(--fg-text-heading); }
.fg-step p { margin: 0; color: var(--fg-text-muted); }

.fg-cta { padding: 96px 0; }
.fg-cta-inner {
  position: relative;
  overflow: hidden;
  padding: 58px 28px;
  background:
    radial-gradient(circle at 12% 18%, rgba(255,255,255,0.46), transparent 28%),
    var(--fg-gradient-brand);
  color: #fff;
  border: 0;
}
.fg-cta-inner h2,
.fg-cta-inner p { color: #fff; }
.fg-trust-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin: 24px 0 26px; }
.fg-trust-row span { color: #fff; background: rgba(255,255,255,0.16); border-color: rgba(255,255,255,0.28); }

.fg-faq-wrap { max-width: 920px; }
.fg-faq-item { box-shadow: var(--fg-shadow-soft); transition: background 0.25s ease, border-color 0.25s ease; }
.fg-faq-question { font-size: 1rem; }
.fg-faq-icon { transition: transform 0.25s ease; }
.fg-faq-answer { display: grid; grid-template-rows: 0fr; padding: 0 20px; transition: grid-template-rows 0.28s ease, padding 0.28s ease; }
.fg-faq-answer > p { overflow: hidden; margin: 0; color: var(--fg-text-muted); }
.fg-faq-item.is-open { background: linear-gradient(135deg, rgba(255,247,248,0.96), rgba(255,255,255,0.88)); border-color: var(--fg-border-strong); }
.fg-faq-item.is-open .fg-faq-answer { display: grid; grid-template-rows: 1fr; padding: 0 20px 18px; }
.fg-faq-item.is-open .fg-faq-icon { transform: rotate(45deg); }

.fg-apply-page {
  background:
    radial-gradient(circle at 14% 14%, rgba(255,143,177,0.2), transparent 30%),
    radial-gradient(circle at 88% 24%, rgba(221,183,244,0.2), transparent 32%),
    var(--fg-gradient-page);
}

.fg-apply-intro {
  position: sticky;
  top: 110px;
  padding: 26px;
  border-radius: 34px;
  background: rgba(255,255,255,0.56);
  border: 1px solid var(--fg-border-soft);
  box-shadow: var(--fg-shadow-soft);
}

.fg-apply-bullets { display: grid; gap: 12px; margin: 26px 0; }
.fg-apply-bullets span { justify-content: flex-start; border-radius: 20px; }
.fg-apply-bullets .fg-icon { width: 34px; height: 34px; border-radius: 12px; }
.fg-apply-note { padding: 18px; border-radius: 24px; background: var(--fg-bg-card); border: 1px solid var(--fg-border-soft); }
.fg-apply-note strong { color: var(--fg-text-heading); }
.fg-apply-note p { margin-bottom: 0; color: var(--fg-text-muted); }

.fg-form {
  position: relative;
  overflow: hidden;
  padding: 34px;
  background: rgba(255,255,255,0.9);
}
.fg-form::before { content: ""; position: absolute; inset: 0 0 auto; height: 6px; background: var(--fg-gradient-brand); }
.fg-form-card-head { margin-bottom: 20px; }
.fg-form-card-head h2 { margin: 4px 0 0; color: var(--fg-text-heading); font-size: clamp(1.6rem, 3vw, 2.25rem); letter-spacing: -0.04em; }
.fg-field { color: var(--fg-text-heading); font-weight: 900; }
.fg-input,
.fg-select,
.fg-textarea { transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease; }
.fg-input:focus,
.fg-select:focus,
.fg-textarea:focus { background: #fff; border-color: var(--fg-accent-lilac); box-shadow: 0 0 0 4px rgba(221,183,244,0.18), 0 10px 24px rgba(217,135,133,0.08); }
.fg-check { margin: 18px 0; align-items: center; }
.fg-check input { width: 20px; height: 20px; accent-color: var(--fg-accent-pink); }
.fg-form-submit { width: 100%; }
.fg-alert:not([hidden]) { display: block; }

.fg-reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fg-reveal.is-visible { opacity: 1; transform: translateY(0); }

.fg-mobile-toggle span { transition: transform 0.25s ease, opacity 0.25s ease; }
.fg-mobile-toggle.is-open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.fg-mobile-toggle.is-open span:nth-child(2) { opacity: 0; }
.fg-mobile-toggle.is-open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 1080px) {
  .fg-category-grid,
  .fg-feature-grid,
  .fg-freedom-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .fg-service-groups { grid-template-columns: 1fr; }
  .fg-service-priority { grid-column: auto; }
  .fg-handle-create { grid-template-columns: 1fr; }
  .fg-system-divider { display: none; }
  .fg-timeline { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .fg-timeline::before { display: none; }
  .fg-case-flow {
    grid-template-columns: 1fr;
  }
  .fg-contact-panel {
    grid-template-columns: 1fr;
  }
  .fg-case-column {
    min-height: auto;
  }
  .fg-case-system {
    transform: none;
  }
  .fg-case-arrow {
    transform: rotate(90deg);
  }
}

@media (max-width: 920px) {
  .fg-nav-links {
    transform: translateY(-8px) scale(0.98);
    opacity: 0;
    transition: opacity 0.22s ease, transform 0.22s ease;
  }
  .fg-nav-links.is-open { display: flex; opacity: 1; transform: translateY(0) scale(1); }
  .fg-hero { min-height: auto; }
  .fg-hero-grid,
  .fg-problem-grid,
  .fg-live-grid,
  .fg-dmca-grid { grid-template-columns: 1fr; }
  .fg-apply-intro { position: relative; top: auto; }
}

@media (max-width: 640px) {
  .fg-section { padding: 68px 0; }
  .fg-hero::before { width: 280px; height: 360px; right: -25%; }
  .fg-dashboard-metrics,
  .fg-category-grid,
  .fg-feature-grid,
  .fg-timeline,
  .fg-freedom-grid { grid-template-columns: 1fr; }
  .fg-showcase,
  .fg-form,
  .fg-apply-intro { padding: 22px; border-radius: 28px; }
  .fg-chaos-board { min-height: auto; display: flex; flex-wrap: wrap; gap: 10px; }
  .fg-chaos-board span { position: static; }
  .fg-live-section { margin: 0 8px; border-radius: 30px; }
  .fg-service-groups {
    margin: 24px 0 18px;
    padding: 10px;
    border-radius: 26px;
  }
  .fg-service-groups span {
    min-height: auto;
    padding: 14px 14px 14px 40px;
    border-radius: 20px;
  }
  .fg-service-groups span::before {
    top: 18px;
    left: 16px;
    width: 11px;
    height: 11px;
  }
  .fg-service-card::after {
    left: 20px;
    right: 20px;
  }
  .fg-privacy-card { align-items: flex-start; }
  .fg-step { padding-top: 72px; }
  .fg-lifestyle-visual { min-height: 210px; }
  .fg-flatlay-laptop { left: 26%; width: 150px; height: 92px; }
  .fg-flatlay-passport { width: 68px; height: 96px; }
  .fg-flatlay-phone { width: 52px; height: 100px; right: 22px; }
  .fg-freedom-panel { padding: 22px; border-radius: 28px; }
  .fg-case-panel { padding: 22px; border-radius: 28px; }
  .fg-case-column { padding: 20px; border-radius: 24px; }
  .fg-case-cta {
    align-items: stretch;
    flex-direction: column;
  }
  .fg-case-cta .fg-button {
    width: 100%;
  }
  .fg-contact-panel {
    padding: 22px;
    border-radius: 28px;
  }
  .fg-contact-card {
    padding: 20px;
    border-radius: 26px;
  }
  .fg-contact-actions .fg-button {
    width: 100%;
  }
  .fg-studio-visual,
  .fg-contact-visual {
    min-height: 180px;
  }
  .fg-studio-laptop {
    width: 130px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
  .fg-reveal { opacity: 1; transform: none; }
}

/* ASCII-safe icon fixes */
.fg-icon { position: relative; }
.fg-check-list li::before {
  content: "";
  width: 12px;
  height: 7px;
  border-left: 2px solid var(--fg-primary);
  border-bottom: 2px solid var(--fg-primary);
  transform: rotate(-45deg);
  top: 15px;
}
.fg-spark-list li::before {
  content: "";
  width: 14px;
  height: 14px;
  background: var(--fg-primary);
  clip-path: polygon(50% 0, 62% 36%, 100% 50%, 62% 64%, 50% 100%, 38% 64%, 0 50%, 38% 36%);
  top: 14px;
}

/* Lifestyle / operations showcase */
.fg-system-lifestyle {
  position: relative;
}

.fg-system-lifestyle::before {
  content: "";
  position: absolute;
  inset: 22px 28px auto auto;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 143, 177, 0.22), transparent 68%);
  pointer-events: none;
}

.fg-system-lifestyle .fg-showcase-head p {
  max-width: 850px;
  font-size: 1.08rem;
}

.fg-handle-card,
.fg-lifestyle-card {
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.fg-handle-card:hover,
.fg-lifestyle-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 64px rgba(217, 135, 133, 0.18);
}

.fg-handle-card {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(255, 247, 248, 0.82)),
    var(--fg-bg-card);
}

.fg-handle-card::after {
  content: "";
  position: absolute;
  right: -70px;
  bottom: -80px;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: rgba(217, 135, 133, 0.08);
}

.fg-lifestyle-card {
  background:
    radial-gradient(circle at 82% 12%, rgba(255, 255, 255, 0.5), transparent 28%),
    linear-gradient(135deg, rgba(255, 143, 177, 0.16), rgba(221, 183, 244, 0.18)),
    rgba(255, 255, 255, 0.78);
  border-color: rgba(231, 185, 193, 0.95);
}

.fg-lifestyle-card::before {
  content: "";
  position: absolute;
  right: 22px;
  top: 22px;
  width: 88px;
  height: 88px;
  border: 1px solid rgba(255, 143, 177, 0.28);
  border-radius: 48% 48% 10px 10px;
  transform: rotate(12deg);
  background: rgba(255, 255, 255, 0.22);
}

.fg-lifestyle-card::after {
  content: "";
  position: absolute;
  left: -70px;
  bottom: -80px;
  width: 210px;
  height: 210px;
  border-radius: 50%;
  background: rgba(221, 183, 244, 0.18);
}

.fg-handle-card > *,
.fg-lifestyle-card > * {
  position: relative;
  z-index: 1;
}

.fg-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: -4px 0 20px;
}

.fg-mini-chip {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(241, 210, 215, 0.9);
  color: var(--fg-primary);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.02em;
  box-shadow: 0 8px 18px rgba(217, 135, 133, 0.08);
}

.fg-lifestyle-card .fg-mini-chip {
  color: var(--fg-text-heading);
  background: rgba(255, 255, 255, 0.64);
}

.fg-lifestyle-note {
  margin: 18px 0 0;
  padding: 16px 17px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.66);
  border: 1px solid rgba(241, 210, 215, 0.88);
  color: var(--fg-primary);
  font-weight: 950;
  line-height: 1.45;
}

.fg-lifestyle-visual {
  position: relative;
  min-height: 285px;
  margin-top: 22px;
  border-radius: 28px;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 14%, rgba(255, 143, 177, 0.2), transparent 30%),
    radial-gradient(circle at 86% 18%, rgba(221, 183, 244, 0.24), transparent 28%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.62), rgba(255, 247, 248, 0.72));
  border: 1px solid rgba(241, 210, 215, 0.92);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.75), 0 18px 42px rgba(217, 135, 133, 0.12);
}

.fg-lifestyle-photo {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.fg-lifestyle-visual::before {
  content: "Create Anywhere";
  position: absolute;
  left: 18px;
  top: 18px;
  z-index: 3;
  padding: 8px 11px;
  border-radius: 999px;
  background: rgba(255,255,255,0.76);
  border: 1px solid rgba(241,210,215,0.88);
  color: var(--fg-primary);
  font-size: 0.76rem;
  font-weight: 950;
}

.fg-map-lines {
  position: absolute;
  z-index: 1;
  inset: 0;
  opacity: 0.62;
  background:
    radial-gradient(ellipse at 28% 54%, transparent 0 34px, rgba(221, 183, 244, 0.34) 35px 36px, transparent 37px),
    radial-gradient(ellipse at 70% 45%, transparent 0 44px, rgba(255, 143, 177, 0.24) 45px 46px, transparent 47px),
    linear-gradient(28deg, transparent 0 45%, rgba(217, 135, 133, 0.18) 45.3% 45.8%, transparent 46%),
    linear-gradient(-18deg, transparent 0 50%, rgba(221, 183, 244, 0.2) 50.3% 50.9%, transparent 51%);
}

.fg-flatlay-laptop,
.fg-flatlay-passport,
.fg-flatlay-phone,
.fg-flatlay-sunglasses,
.fg-flatlay-sun {
  position: absolute;
  z-index: 2;
  filter: drop-shadow(0 18px 24px rgba(217, 135, 133, 0.16));
}

.fg-lifestyle-visual .fg-map-lines,
.fg-lifestyle-visual .fg-flatlay-laptop,
.fg-lifestyle-visual .fg-flatlay-passport,
.fg-lifestyle-visual .fg-flatlay-phone,
.fg-lifestyle-visual .fg-flatlay-sunglasses,
.fg-lifestyle-visual .fg-flatlay-sun {
  opacity: 0;
}

.fg-flatlay-laptop {
  left: 26%;
  top: 70px;
  width: 190px;
  height: 112px;
  border-radius: 16px;
  background: linear-gradient(145deg, #fff, #fff7f8);
  border: 2px solid rgba(231, 185, 193, 0.86);
  transform: rotate(-5deg);
}

.fg-flatlay-laptop::before {
  content: "";
  position: absolute;
  inset: 15px;
  border-radius: 10px;
  background:
    linear-gradient(90deg, rgba(255,143,177,0.22) 0 32%, transparent 32%),
    linear-gradient(135deg, rgba(221,183,244,0.24), rgba(255,255,255,0.76));
}

.fg-flatlay-laptop::after {
  content: "";
  position: absolute;
  left: -18px;
  right: -18px;
  bottom: -16px;
  height: 18px;
  border-radius: 0 0 18px 18px;
  background: linear-gradient(135deg, #fff, #f4cad0);
  border: 1px solid rgba(231, 185, 193, 0.86);
}

.fg-flatlay-laptop span {
  position: absolute;
  left: 72px;
  bottom: -10px;
  width: 48px;
  height: 5px;
  border-radius: 999px;
  background: rgba(217, 135, 133, 0.32);
  z-index: 2;
}

.fg-flatlay-passport {
  left: 28px;
  bottom: 28px;
  width: 82px;
  height: 116px;
  border-radius: 13px;
  background: linear-gradient(145deg, #DDB7F4, #FFB3C7);
  transform: rotate(9deg);
}

.fg-flatlay-passport::before {
  content: "";
  position: absolute;
  inset: 18px 18px auto;
  height: 28px;
  border: 2px solid rgba(255,255,255,0.72);
  border-radius: 50%;
}

.fg-flatlay-passport::after {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 24px;
  height: 3px;
  border-radius: 999px;
  background: rgba(255,255,255,0.76);
  box-shadow: 0 10px 0 rgba(255,255,255,0.56);
}

.fg-flatlay-phone {
  right: 34px;
  bottom: 34px;
  width: 62px;
  height: 118px;
  border-radius: 18px;
  background: linear-gradient(145deg, #fff, #fdf3f2);
  border: 2px solid rgba(231, 185, 193, 0.86);
  transform: rotate(7deg);
}

.fg-flatlay-phone::before {
  content: "";
  position: absolute;
  left: 10px;
  right: 10px;
  top: 16px;
  height: 70px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(255,143,177,0.2), rgba(221,183,244,0.24));
}

.fg-flatlay-phone::after {
  content: "";
  position: absolute;
  left: 25px;
  bottom: 10px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(217, 135, 133, 0.24);
}

.fg-flatlay-sunglasses {
  left: 122px;
  top: 52px;
  width: 88px;
  height: 34px;
  transform: rotate(-12deg);
}

.fg-flatlay-sunglasses::before,
.fg-flatlay-sunglasses::after {
  content: "";
  position: absolute;
  top: 5px;
  width: 32px;
  height: 22px;
  border-radius: 999px 999px 12px 12px;
  background: linear-gradient(135deg, rgba(42, 27, 36, 0.82), rgba(217, 135, 133, 0.62));
  border: 2px solid rgba(255, 255, 255, 0.74);
}

.fg-flatlay-sunglasses::before { left: 4px; }
.fg-flatlay-sunglasses::after { right: 4px; }

.fg-flatlay-sunglasses {
  background: linear-gradient(90deg, transparent 0 38px, rgba(217, 135, 133, 0.72) 38px 50px, transparent 50px);
}

.fg-flatlay-sun {
  right: 116px;
  top: 34px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: radial-gradient(circle, #FFC6A8 0 36%, rgba(255,198,168,0.24) 38% 100%);
}

.fg-freedom-section {
  padding-top: 34px;
}

.fg-freedom-panel {
  position: relative;
  overflow: hidden;
  padding: 34px;
  border-radius: 38px;
  background:
    radial-gradient(circle at 12% 10%, rgba(255, 143, 177, 0.16), transparent 28%),
    radial-gradient(circle at 90% 78%, rgba(221, 183, 244, 0.2), transparent 30%),
    rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(241, 210, 215, 0.92);
  box-shadow: var(--fg-shadow-card);
}

.fg-freedom-panel::before {
  content: "";
  position: absolute;
  right: -56px;
  top: -70px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(255, 179, 199, 0.22);
}

.fg-freedom-copy {
  position: relative;
  z-index: 1;
  max-width: 850px;
}

.fg-freedom-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.fg-freedom-card {
  min-height: 165px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
  border-radius: 28px;
  background: linear-gradient(145deg, rgba(255,255,255,0.86), rgba(255,247,248,0.72));
  border: 1px solid rgba(241, 210, 215, 0.92);
  box-shadow: var(--fg-shadow-soft);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.fg-freedom-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--fg-shadow-card);
}

.fg-freedom-card h3 {
  margin: 18px 0 0;
  color: var(--fg-text-heading);
  font-size: 1.08rem;
  line-height: 1.12;
}

.fg-freedom-card:nth-child(2),
.fg-freedom-card:nth-child(4) {
  background: linear-gradient(135deg, rgba(255,143,177,0.14), rgba(221,183,244,0.16)), rgba(255,255,255,0.78);
}

/* Example scenario flow */
.fg-case-section {
  padding-top: 40px;
}

.fg-case-panel {
  position: relative;
  overflow: hidden;
  padding: 36px;
  border-radius: 40px;
  background:
    radial-gradient(circle at 14% 12%, rgba(255, 143, 177, 0.16), transparent 30%),
    radial-gradient(circle at 92% 20%, rgba(221, 183, 244, 0.18), transparent 28%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.82), rgba(255, 247, 248, 0.76));
  border: 1px solid rgba(241, 210, 215, 0.94);
  box-shadow: var(--fg-shadow-card);
}

.fg-case-panel::before {
  content: "";
  position: absolute;
  right: -80px;
  bottom: -90px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(255, 143, 177, 0.12);
}

.fg-case-flow {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 48px 1.08fr 48px 1fr;
  gap: 14px;
  align-items: stretch;
}

.fg-case-column {
  position: relative;
  min-height: 430px;
  padding: 24px;
  border-radius: 30px;
  border: 1px solid rgba(241, 210, 215, 0.9);
  box-shadow: var(--fg-shadow-soft);
  overflow: hidden;
}

.fg-case-column::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: var(--fg-gradient-brand);
  opacity: 0.72;
}

.fg-case-before {
  background: linear-gradient(145deg, rgba(255,255,255,0.76), rgba(253,243,242,0.68));
}

.fg-case-system {
  background:
    radial-gradient(circle at 88% 12%, rgba(255,255,255,0.42), transparent 30%),
    linear-gradient(135deg, rgba(255, 143, 177, 0.2), rgba(246, 179, 162, 0.22)),
    rgba(255,255,255,0.82);
  transform: translateY(-10px);
  box-shadow: 0 28px 72px rgba(255, 143, 177, 0.18);
}

.fg-case-after {
  background:
    radial-gradient(circle at 78% 14%, rgba(221, 183, 244, 0.22), transparent 32%),
    linear-gradient(145deg, rgba(255,255,255,0.78), rgba(248,226,227,0.72));
}

.fg-case-column h3 {
  margin: 18px 0 16px;
  color: var(--fg-text-heading);
  font-size: 1.35rem;
}

.fg-case-column ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.fg-case-column li {
  position: relative;
  padding: 11px 12px 11px 34px;
  border-radius: 15px;
  background: rgba(255,255,255,0.62);
  border: 1px solid rgba(241,210,215,0.72);
  color: var(--fg-text-muted);
  font-weight: 850;
  line-height: 1.35;
}

.fg-case-column li::before {
  content: "";
  position: absolute;
  left: 13px;
  top: 17px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--fg-gradient-cta);
}

.fg-case-arrow {
  align-self: center;
  justify-self: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--fg-gradient-cta);
  box-shadow: var(--fg-shadow-button);
  position: relative;
}

.fg-case-arrow::before {
  content: "";
  position: absolute;
  left: 15px;
  top: 22px;
  width: 16px;
  height: 2px;
  background: #fff;
}

.fg-case-arrow::after {
  content: "";
  position: absolute;
  right: 14px;
  top: 18px;
  width: 9px;
  height: 9px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
}

.fg-case-note {
  position: relative;
  z-index: 1;
  margin: 22px 0 0;
  padding: 16px 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(241, 210, 215, 0.9);
  color: var(--fg-text-soft);
  font-size: 0.94rem;
  font-weight: 850;
}

.fg-case-cta {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 18px;
  padding: 20px;
  border-radius: 24px;
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(241, 210, 215, 0.9);
}

.fg-case-cta h3 {
  margin: 0;
  color: var(--fg-text-heading);
  font-size: 1.25rem;
}

/* FansGate system preview */
.fg-system-preview-section {
  padding-top: 22px;
}

.fg-system-preview {
  position: relative;
  overflow: hidden;
  padding: clamp(26px, 5vw, 46px);
  border-radius: 44px;
  background:
    linear-gradient(110deg, rgba(255, 255, 255, 0.82) 0 54%, rgba(255, 247, 248, 0.55) 54% 100%),
    radial-gradient(circle at 16% 12%, rgba(255, 143, 177, 0.18), transparent 32%),
    radial-gradient(circle at 92% 16%, rgba(221, 183, 244, 0.2), transparent 30%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(248, 226, 227, 0.72));
  border: 1px solid rgba(241, 210, 215, 0.95);
  box-shadow: var(--fg-shadow-card);
}

.fg-system-preview::before {
  content: "";
  position: absolute;
  right: -88px;
  top: -96px;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  border: 1px solid rgba(217, 135, 133, 0.15);
  background:
    radial-gradient(circle, rgba(255, 143, 177, 0.18), transparent 62%),
    rgba(255, 255, 255, 0.22);
}

.fg-system-preview::after {
  content: "";
  position: absolute;
  left: 44px;
  bottom: 42px;
  width: 54%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(217, 135, 133, 0.28), transparent);
}

.fg-system-preview-head,
.fg-system-spine,
.fg-system-preview-grid,
.fg-system-preview-note {
  position: relative;
  z-index: 1;
}

.fg-system-preview-head {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(280px, 0.7fr);
  gap: 28px;
  align-items: end;
}

.fg-system-preview-head .fg-section-title {
  max-width: 680px;
}

.fg-system-preview-head .fg-section-copy {
  margin: 0 0 6px;
  padding: 18px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(241, 210, 215, 0.82);
  font-weight: 760;
}

.fg-system-spine {
  display: grid;
  grid-template-columns: auto 1fr auto 1fr auto 1fr auto;
  align-items: center;
  gap: 10px;
  margin: 26px 0 24px;
  padding: 10px;
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(255, 143, 177, 0.07), rgba(221, 183, 244, 0.08)),
    rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(241, 210, 215, 0.9);
  box-shadow: var(--fg-shadow-soft);
}

.fg-system-spine span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(241, 210, 215, 0.76);
  color: var(--fg-text-heading);
  font-size: 0.86rem;
  font-weight: 950;
}

.fg-system-spine i {
  height: 1px;
  min-width: 24px;
  background: linear-gradient(90deg, rgba(217, 135, 133, 0.16), rgba(255, 143, 177, 0.52), rgba(221, 183, 244, 0.16));
}

.fg-system-preview-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
}

.fg-system-preview-card {
  grid-column: span 2;
  min-height: 198px;
  display: flex;
  flex-direction: column;
  padding: 20px;
  border-radius: 30px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.78), rgba(255, 247, 248, 0.58)),
    var(--fg-bg-card);
  border: 1px solid rgba(241, 210, 215, 0.9);
  box-shadow: var(--fg-shadow-soft);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.fg-system-preview-card:nth-child(1),
.fg-system-preview-card:nth-child(4) {
  grid-column: span 3;
}

.fg-system-preview-card:nth-child(3),
.fg-system-preview-card:nth-child(6) {
  background:
    linear-gradient(135deg, rgba(255, 143, 177, 0.12), rgba(221, 183, 244, 0.13)),
    rgba(255, 255, 255, 0.78);
}

.fg-system-preview-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 143, 177, 0.5);
  box-shadow: 0 22px 52px rgba(217, 135, 133, 0.17);
}

.fg-system-preview-card h3 {
  margin: 14px 0 8px;
  color: var(--fg-text-heading);
  font-size: 1.14rem;
  line-height: 1.12;
}

.fg-system-preview-card small {
  margin-top: auto;
  color: var(--fg-text-soft);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.14em;
}

.fg-system-preview-card p {
  margin: 0;
  color: var(--fg-text-muted);
  font-weight: 720;
  line-height: 1.48;
}

.fg-system-preview-note {
  display: flex;
  gap: 12px;
  align-items: center;
  margin: 22px 0 0;
  padding: 16px 18px;
  border-radius: 20px;
  background:
    linear-gradient(135deg, rgba(255, 143, 177, 0.08), rgba(221, 183, 244, 0.1)),
    rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(241, 210, 215, 0.88);
  color: var(--fg-text-soft);
  font-size: 0.92rem;
  font-weight: 850;
}

.fg-system-preview-note strong {
  flex: 0 0 auto;
  color: var(--fg-primary);
}

/* Private creator learning */
.fg-learning-section {
  padding-top: 18px;
}

.fg-learning-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(330px, 0.72fr);
  gap: 26px;
  align-items: stretch;
  overflow: hidden;
  padding: clamp(26px, 4.5vw, 42px);
  border-radius: 42px;
  background:
    radial-gradient(circle at 18% 12%, rgba(255, 179, 199, 0.18), transparent 32%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(253, 243, 242, 0.72));
  border: 1px solid rgba(241, 210, 215, 0.92);
  box-shadow: var(--fg-shadow-card);
}

.fg-learning-panel::before {
  content: "";
  position: absolute;
  right: 28%;
  top: -70px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(221, 183, 244, 0.16);
  filter: blur(2px);
}

.fg-learning-copy,
.fg-learning-card {
  position: relative;
  z-index: 1;
}

.fg-learning-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.fg-learning-copy .fg-section-title {
  max-width: 760px;
}

.fg-learning-card {
  overflow: hidden;
  padding: 20px;
  border-radius: 32px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.82), rgba(255, 247, 248, 0.72)),
    var(--fg-bg-card);
  border: 1px solid rgba(231, 185, 193, 0.78);
  box-shadow: var(--fg-shadow-soft);
}

.fg-learning-orbit {
  position: relative;
  height: 72px;
  margin-bottom: 12px;
}

.fg-learning-orbit span {
  position: absolute;
  left: 0;
  top: 8px;
  width: 64px;
  height: 64px;
  border-radius: 24px;
  background: var(--fg-gradient-cta);
  box-shadow: var(--fg-shadow-button);
}

.fg-learning-orbit span::before,
.fg-learning-orbit span::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
}

.fg-learning-orbit span::before {
  left: 17px;
  top: 17px;
  width: 30px;
  height: 6px;
}

.fg-learning-orbit span::after {
  left: 17px;
  top: 31px;
  width: 22px;
  height: 6px;
}

.fg-learning-orbit i {
  position: absolute;
  left: 54px;
  right: 0;
  top: 39px;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 143, 177, 0.54), rgba(221, 183, 244, 0.16), transparent);
}

.fg-learning-paths {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.fg-learning-paths li {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  padding: 14px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.66);
  border: 1px solid rgba(241, 210, 215, 0.78);
}

.fg-learning-paths strong {
  display: block;
  color: var(--fg-text-heading);
  font-size: 0.98rem;
  line-height: 1.15;
}

.fg-learning-paths p {
  margin: 5px 0 0;
  color: var(--fg-text-muted);
  font-size: 0.9rem;
  font-weight: 720;
  line-height: 1.42;
}

.fg-learning-note {
  margin: 16px 0 0;
  padding: 13px 14px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(255, 143, 177, 0.1), rgba(221, 183, 244, 0.1));
  color: var(--fg-text-soft);
  font-size: 0.86rem;
  font-weight: 900;
}

/* Contact section */
.fg-contact-section {
  padding-top: 44px;
}

.fg-contact-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 0.78fr);
  gap: 28px;
  align-items: stretch;
  overflow: hidden;
  padding: 36px;
  border-radius: 40px;
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 143, 177, 0.2), transparent 30%),
    radial-gradient(circle at 88% 28%, rgba(221, 183, 244, 0.22), transparent 30%),
    linear-gradient(135deg, rgba(255,255,255,0.78), rgba(248,226,227,0.82));
  border: 1px solid rgba(241, 210, 215, 0.95);
  box-shadow: var(--fg-shadow-card);
}

.fg-contact-panel::before {
  content: "";
  position: absolute;
  left: -90px;
  bottom: -110px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: rgba(255, 143, 177, 0.14);
}

.fg-contact-copy,
.fg-contact-card {
  position: relative;
  z-index: 1;
}

.fg-contact-trust {
  display: grid;
  gap: 11px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.fg-contact-trust li {
  position: relative;
  padding: 12px 14px 12px 40px;
  border-radius: 17px;
  background: rgba(255,255,255,0.68);
  border: 1px solid rgba(241, 210, 215, 0.88);
  color: var(--fg-text-muted);
  font-weight: 900;
}

.fg-contact-trust li::before {
  content: "";
  position: absolute;
  left: 15px;
  top: 17px;
  width: 12px;
  height: 7px;
  border-left: 2px solid var(--fg-primary);
  border-bottom: 2px solid var(--fg-primary);
  transform: rotate(-45deg);
}

.fg-contact-card {
  padding: 24px;
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(241, 210, 215, 0.95);
  box-shadow: var(--fg-shadow-card);
}

.fg-contact-card h3 {
  margin: 8px 0 10px;
  color: var(--fg-text-heading);
  font-size: 1.7rem;
  letter-spacing: -0.04em;
}

.fg-contact-card p {
  margin: 0 0 20px;
  color: var(--fg-text-muted);
}

.fg-contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.fg-contact-visual {
  position: relative;
  min-height: 245px;
  margin-bottom: 20px;
  border-radius: 28px;
  overflow: hidden;
  background:
    radial-gradient(circle at 74% 22%, rgba(255, 143, 177, 0.22), transparent 30%),
    linear-gradient(135deg, rgba(255,247,248,0.9), rgba(221,183,244,0.18));
  border: 1px solid rgba(241, 210, 215, 0.9);
}

.fg-contact-photo {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.fg-contact-phone {
  position: absolute;
  z-index: 2;
  right: 42px;
  top: 30px;
  width: 74px;
  height: 132px;
  border-radius: 22px;
  background: linear-gradient(145deg, #fff, #fdf3f2);
  border: 2px solid rgba(231, 185, 193, 0.9);
  box-shadow: 0 18px 28px rgba(217, 135, 133, 0.16);
}

.fg-contact-phone::before {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  top: 18px;
  height: 78px;
  border-radius: 15px;
  background: linear-gradient(135deg, rgba(255, 143, 177, 0.2), rgba(221, 183, 244, 0.22));
}

.fg-message-bubble {
  position: absolute;
  z-index: 2;
  border-radius: 22px;
  background: rgba(255,255,255,0.82);
  border: 1px solid rgba(241,210,215,0.92);
  box-shadow: var(--fg-shadow-soft);
}

.fg-contact-visual .fg-contact-phone,
.fg-contact-visual .fg-message-bubble {
  opacity: 0;
}

.fg-message-bubble::before,
.fg-message-bubble::after {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  height: 4px;
  border-radius: 999px;
  background: rgba(217, 135, 133, 0.34);
}

.fg-message-bubble::before { top: 18px; }
.fg-message-bubble::after { top: 32px; width: 48%; }
.fg-message-one { left: 24px; top: 42px; width: 126px; height: 62px; }
.fg-message-two { left: 54px; bottom: 34px; width: 106px; height: 54px; background: rgba(255, 179, 199, 0.22); }

/* Adult premium tone pass */
.fg-h1 {
  background: linear-gradient(135deg, var(--fg-text-heading) 0%, #4e2539 52%, var(--fg-primary) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.fg-hero-dashboard {
  border-color: rgba(255, 143, 177, 0.34);
  box-shadow: 0 34px 95px rgba(255, 143, 177, 0.16), 0 14px 35px rgba(221, 183, 244, 0.14);
}

.fg-hero-dashboard .fg-dashboard-footer::before {
  content: "";
  position: absolute;
  left: 18px;
  top: -118px;
  width: 86px;
  height: 118px;
  border-radius: 44px 44px 24px 24px;
  background:
    radial-gradient(circle at 50% 24%, rgba(255, 255, 255, 0.78) 0 18px, transparent 19px),
    linear-gradient(160deg, rgba(255, 143, 177, 0.38), rgba(221, 183, 244, 0.24));
  border: 1px solid rgba(255, 255, 255, 0.58);
  opacity: 0.72;
  pointer-events: none;
}

.fg-hero-dashboard .fg-dashboard-footer::after {
  content: "";
  position: absolute;
  right: 18px;
  top: -100px;
  width: 56px;
  height: 92px;
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(255,255,255,0.88), rgba(255,247,248,0.72));
  border: 2px solid rgba(231, 185, 193, 0.76);
  box-shadow: inset 0 0 0 8px rgba(255, 143, 177, 0.08);
  pointer-events: none;
}

.fg-live-dot {
  background: linear-gradient(135deg, rgba(255, 143, 177, 0.16), rgba(221, 183, 244, 0.18));
  color: #8f4961;
}

.fg-button {
  background: linear-gradient(135deg, #ff6fa2 0%, #f6a58f 48%, #ddb7f4 100%);
}

.fg-button:hover {
  background: linear-gradient(135deg, #ff8fb1 0%, #d98785 42%, #cba2ef 100%);
}

.fg-category-card h3,
.fg-feature-card h3 {
  color: #321725;
}

.fg-shield-card {
  background:
    radial-gradient(circle at 50% 18%, rgba(255, 143, 177, 0.22), transparent 34%),
    linear-gradient(145deg, rgba(255,255,255,0.84), rgba(255,247,248,0.72));
}

.fg-shield-shape {
  width: 150px;
  height: 172px;
  filter: drop-shadow(0 18px 28px rgba(255, 143, 177, 0.26));
}

.fg-cta-inner {
  box-shadow: 0 34px 95px rgba(255, 143, 177, 0.24), 0 18px 55px rgba(217, 135, 133, 0.2);
}

.fg-freedom-panel,
.fg-showcase {
  border-color: rgba(255, 143, 177, 0.26);
}

.fg-chaos-board {
  min-height: 370px;
}

.fg-chaos-board span:nth-child(7) {
  left: 42%;
  top: 242px;
}

.fg-chaos-board span:nth-child(8) {
  left: 24%;
  bottom: 32px;
}

/* Final mobile safety pass */
@media (max-width: 1080px) {
  .fg-hero-grid,
  .fg-problem-grid,
  .fg-live-grid,
  .fg-dmca-grid,
  .fg-contact-panel,
  .fg-form-shell {
    grid-template-columns: 1fr;
  }

  .fg-case-flow,
  .fg-handle-create {
    grid-template-columns: 1fr;
  }

  .fg-case-arrow,
  .fg-system-divider {
    display: none;
  }

  .fg-case-system {
    transform: none;
  }
}

@media (max-width: 760px) {
  .fg-container {
    width: min(100% - 22px, 1140px);
  }

  .fg-header {
    backdrop-filter: blur(14px);
  }

  .fg-nav {
    min-height: 68px;
    gap: 12px;
  }

  .fg-logo {
    min-width: 0;
    font-size: 0.92rem;
  }

  .fg-logo-mark {
    width: 42px;
    height: 42px;
    border-radius: 14px;
  }

  .fg-mobile-toggle {
    flex: 0 0 auto;
  }

  .fg-nav-links {
    top: 72px;
    left: 10px;
    right: 10px;
    max-height: calc(100dvh - 88px);
    overflow-y: auto;
    gap: 10px;
  }

  .fg-nav-links a {
    min-height: 44px;
    display: flex;
    align-items: center;
    padding: 0 10px;
    border-radius: 12px;
  }

  .fg-section {
    padding: 58px 0;
  }

  .fg-hero {
    min-height: auto;
    padding: 48px 0 42px;
  }

  .fg-hero::before,
  .fg-hero-orb {
    opacity: 0.38;
  }

  .fg-hero-grid {
    gap: 26px;
  }

  .fg-hero-media {
    min-height: auto;
  }

  .fg-hero-photo {
    position: relative;
    inset: auto;
    height: clamp(230px, 62vw, 340px);
    border-radius: 28px;
  }

  .fg-hero-dashboard {
    margin: -34px 10px 0;
  }

  .fg-h1 {
    font-size: clamp(2.15rem, 12vw, 3.3rem);
    line-height: 1;
    letter-spacing: -0.055em;
  }

  .fg-section-title,
  .fg-showcase-head h2,
  .fg-cta-inner h2 {
    font-size: clamp(1.85rem, 9vw, 2.7rem);
    line-height: 1.04;
  }

  .fg-lead,
  .fg-section-copy {
    font-size: 0.98rem;
  }

  .fg-hero-actions,
  .fg-contact-actions,
  .fg-trust-row {
    align-items: stretch;
    flex-direction: column;
  }

  .fg-button,
  .fg-button-secondary {
    width: 100%;
    min-height: 48px;
  }

  .fg-dashboard-metrics,
  .fg-category-grid,
  .fg-feature-grid,
  .fg-freedom-grid,
  .fg-timeline,
  .fg-field-grid {
    grid-template-columns: 1fr;
  }

  .fg-hero-dashboard,
  .fg-showcase,
  .fg-case-panel,
  .fg-freedom-panel,
  .fg-contact-panel,
  .fg-form,
  .fg-apply-intro {
    padding: 22px;
    border-radius: 28px;
  }

  .fg-system-column,
  .fg-case-column,
  .fg-contact-card,
  .fg-feature-card,
  .fg-card,
  .fg-privacy-card {
    padding: 20px;
    border-radius: 24px;
  }

  .fg-case-column,
  .fg-feature-card,
  .fg-freedom-card {
    min-height: auto;
  }

  .fg-chaos-board {
    min-height: auto;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 18px;
  }

  .fg-chaos-board span,
  .fg-chaos-board span:nth-child(n) {
    position: static;
    max-width: 100%;
    white-space: normal;
  }

  .fg-lifestyle-visual,
  .fg-studio-visual,
  .fg-contact-visual {
    min-height: 180px;
  }

  .fg-lifestyle-photo,
  .fg-live-photo,
  .fg-contact-photo {
    object-position: center;
  }

  .fg-flatlay-laptop {
    left: 24%;
    top: 74px;
    width: 140px;
    height: 86px;
  }

  .fg-flatlay-passport {
    left: 18px;
    width: 62px;
    height: 90px;
  }

  .fg-flatlay-phone {
    right: 20px;
    width: 48px;
    height: 92px;
  }

  .fg-flatlay-sunglasses {
    left: 94px;
    top: 46px;
    transform: rotate(-9deg) scale(0.82);
  }

  .fg-flatlay-sun {
    right: 86px;
    transform: scale(0.82);
  }

  .fg-ring-light {
    left: 18px;
    width: 86px;
    height: 86px;
    border-width: 10px;
  }

  .fg-ring-light::after {
    left: 37px;
    top: 76px;
  }

  .fg-studio-camera {
    left: 52px;
    top: 58px;
  }

  .fg-studio-mic {
    right: 34px;
    transform: scale(0.86);
    transform-origin: top right;
  }

  .fg-studio-laptop {
    right: 20px;
    width: 124px;
    height: 74px;
  }

  .fg-contact-phone {
    right: 28px;
    width: 58px;
    height: 108px;
  }

  .fg-message-one {
    left: 18px;
    width: 104px;
  }

  .fg-message-two {
    left: 34px;
    width: 94px;
  }

  .fg-hero-dashboard .fg-dashboard-footer::before,
  .fg-hero-dashboard .fg-dashboard-footer::after {
    display: none;
  }

  .fg-footer-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 420px) {
  .fg-container {
    width: min(100% - 18px, 1140px);
  }

  .fg-logo span:last-child {
    max-width: 150px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .fg-badge,
  .fg-mini-chip,
  .fg-trust-row span,
  .fg-protection-list span {
    max-width: 100%;
    white-space: normal;
  }

  .fg-h1 {
    font-size: clamp(2rem, 12vw, 2.75rem);
  }

  .fg-dashboard-metric,
  .fg-system-list li,
  .fg-case-column li,
  .fg-contact-trust li,
  .fg-list li {
    padding-right: 12px;
  }

  .fg-flatlay-laptop {
    left: 20%;
    width: 126px;
  }

  .fg-flatlay-sunglasses {
    left: 74px;
  }
}

@media (max-width: 360px) {
  .fg-container {
    width: min(100% - 14px, 1140px);
  }

  .fg-logo span:last-child {
    max-width: 128px;
  }

  .fg-hero-dashboard,
  .fg-showcase,
  .fg-case-panel,
  .fg-freedom-panel,
  .fg-contact-panel,
  .fg-form,
  .fg-apply-intro,
  .fg-system-column,
  .fg-case-column,
  .fg-contact-card,
  .fg-feature-card,
  .fg-card,
  .fg-privacy-card {
    padding: 17px;
  }

  .fg-lifestyle-visual,
  .fg-studio-visual,
  .fg-contact-visual {
    min-height: 160px;
  }

  .fg-hero-photo {
    height: 220px;
  }

  .fg-hero-dashboard {
    margin-left: 4px;
    margin-right: 4px;
  }

  .fg-flatlay-passport,
  .fg-flatlay-sunglasses,
  .fg-flatlay-sun {
    display: none;
  }

  .fg-flatlay-laptop {
    left: 18px;
    top: 62px;
  }

  .fg-flatlay-phone {
    right: 16px;
    bottom: 24px;
  }

  .fg-ring-light {
    transform: scale(0.82);
    transform-origin: top left;
  }

  .fg-studio-mic {
    display: none;
  }

  .fg-contact-phone {
    right: 18px;
    transform: scale(0.88);
    transform-origin: top right;
  }

  .fg-message-one,
  .fg-message-two {
    left: 14px;
    width: 92px;
  }
}

/* Premium footer refresh */
.fg-footer {
  padding: 54px 0 26px;
  background: linear-gradient(180deg, #FEFBFB 0%, #FDF3F2 55%, #F8E2E3 100%);
  border-top: 1px solid #F1D2D7;
}

.fg-footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(180px, 0.7fr) minmax(220px, 0.8fr);
  gap: 34px;
  align-items: start;
}

.fg-footer-brand h2 {
  margin: 0 0 10px;
  color: #1F141B;
  font-size: 1.35rem;
  letter-spacing: -0.03em;
}

.fg-footer-logo {
  display: inline-flex;
  align-items: center;
  width: min(260px, 100%);
  margin: -10px 0 14px;
  text-decoration: none;
}

.fg-footer-logo img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 18px 40px rgba(217, 135, 133, 0.12);
}

.fg-footer-brand p,
.fg-footer-col p,
.fg-footer-bottom p {
  margin: 0;
  color: #7B5E68;
}

.fg-footer-note {
  margin-top: 18px !important;
  max-width: 420px;
  font-size: 0.93rem;
  font-weight: 850;
  color: #A9828F !important;
}

.fg-footer-title {
  margin: 0 0 14px;
  color: #1F141B;
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.fg-footer .fg-footer-links {
  display: grid;
  gap: 9px;
  justify-content: stretch;
  color: #7B5E68;
  font-weight: 850;
}

.fg-footer .fg-footer-links a {
  width: fit-content;
  color: #7B5E68;
  transition: color 0.2s ease, transform 0.2s ease;
}

.fg-footer .fg-footer-links a:hover {
  color: #FF8FB1;
  transform: translateX(3px);
}

.fg-footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px 20px;
  margin-top: 34px;
  padding-top: 20px;
  border-top: 1px solid #F1D2D7;
  font-size: 0.92rem;
}

.fg-powered-link {
  color: #D98785;
  font-weight: 950;
}

.fg-powered-link:hover {
  color: #FF8FB1;
}

.fg-footer-socials {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 18px 0 4px;
}

.fg-footer-socials a {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(231, 185, 193, 0.72);
  background: rgba(255, 255, 255, 0.72);
  color: #D98785;
  box-shadow: 0 10px 24px rgba(217, 135, 133, 0.1);
  transition: transform 0.22s ease, color 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.fg-footer-socials a:hover {
  transform: translateY(-2px);
  color: #FF8FB1;
  border-color: rgba(255, 143, 177, 0.7);
  background: #FFFFFF;
  box-shadow: 0 14px 30px rgba(255, 143, 177, 0.18);
}

.fg-footer-socials svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.fg-footer-socials a:nth-child(2) svg {
  fill: currentColor;
  stroke: none;
}

.fg-footer-socials a:nth-child(3) svg path:first-child {
  fill: currentColor;
  stroke: none;
}

@media (max-width: 760px) {
  .fg-footer {
    padding: 42px 0 24px;
  }

  .fg-footer-grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .fg-footer-bottom {
    display: grid;
    justify-content: stretch;
    gap: 8px;
  }
}

/* Final image positioning pass after live QA */
@media (min-width: 921px) {
  .fg-hero-media {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    min-height: auto;
    padding-top: 34px;
  }

  .fg-hero-photo {
    position: relative;
    inset: auto;
    width: min(92%, 580px);
    height: 390px;
    margin-left: auto;
    margin-right: 0;
    border-radius: 34px;
  }

  .fg-hero-dashboard {
    width: min(92%, 560px);
    max-width: 560px;
    margin: -58px auto 0 0;
  }
}

.fg-hero-media .fg-dashboard-footer::before,
.fg-hero-media .fg-dashboard-footer::after {
  display: none !important;
  content: none !important;
}

.fg-hero-photo img {
  object-position: center center;
}

.fg-lifestyle-visual {
  min-height: 320px;
}

.fg-studio-visual {
  min-height: 320px;
}

.fg-contact-visual {
  min-height: 300px;
}

.fg-lifestyle-photo {
  object-position: center center;
}

.fg-live-photo {
  object-position: center center;
}

.fg-contact-photo {
  object-position: center center;
}

@media (max-width: 920px) {
  .fg-hero-media {
    display: flex;
    flex-direction: column;
    min-height: auto;
  }

  .fg-hero-photo {
    position: relative;
    inset: auto;
    width: 100%;
    height: clamp(260px, 68vw, 420px);
    border-radius: 28px;
  }

  .fg-hero-dashboard {
    max-width: none;
    margin: -26px 14px 0;
  }

  .fg-lifestyle-visual,
  .fg-studio-visual,
  .fg-contact-visual {
    min-height: 250px;
  }
}

@media (max-width: 520px) {
  .fg-hero-photo {
    height: 250px;
  }

  .fg-hero-dashboard {
    margin: -18px 8px 0;
  }

  .fg-lifestyle-visual,
  .fg-studio-visual,
  .fg-contact-visual {
    min-height: 220px;
  }
}

@media (max-width: 360px) {
  .fg-hero-photo {
    height: 220px;
  }

  .fg-lifestyle-visual,
  .fg-studio-visual,
  .fg-contact-visual {
    min-height: 190px;
  }
}

/* Language switch */
.fg-lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.28rem;
  border: 1px solid rgba(231, 185, 193, 0.75);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 10px 24px rgba(217, 135, 133, 0.1);
}

/* 404 page */
.fg-error-page {
  min-height: 82vh;
  padding: 150px 0 80px;
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 143, 177, 0.2), transparent 32%),
    radial-gradient(circle at 82% 70%, rgba(221, 183, 244, 0.22), transparent 32%),
    var(--fg-gradient-page);
}

.fg-error-shell {
  display: grid;
  gap: 24px;
}

.fg-age-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 20px;
  border: 1px solid rgba(231, 185, 193, 0.78);
  border-radius: var(--fg-radius-lg);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--fg-shadow-soft);
  color: var(--fg-text-muted);
  backdrop-filter: blur(18px);
}

.fg-age-bar strong {
  color: var(--fg-text-heading);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.8rem;
}

.fg-age-bar span {
  font-size: 0.95rem;
}

.fg-error-card {
  position: relative;
  overflow: hidden;
  padding: clamp(32px, 6vw, 72px);
  border: 1px solid rgba(231, 185, 193, 0.78);
  border-radius: var(--fg-radius-xl);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 247, 248, 0.82)),
    radial-gradient(circle at top right, rgba(255, 143, 177, 0.18), transparent 34%);
  box-shadow: var(--fg-shadow-card);
}

.fg-error-card::after {
  content: "404";
  position: absolute;
  right: clamp(18px, 5vw, 60px);
  bottom: -34px;
  font-size: clamp(6rem, 18vw, 15rem);
  font-weight: 900;
  letter-spacing: -0.08em;
  color: rgba(217, 135, 133, 0.08);
  pointer-events: none;
}

.fg-error-card .fg-h1,
.fg-error-card .fg-lead,
.fg-error-card .fg-kicker,
.fg-error-actions,
.fg-error-trust {
  position: relative;
  z-index: 1;
}

.fg-error-card .fg-lead {
  max-width: 680px;
}

.fg-error-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}

.fg-error-trust {
  margin-top: 26px;
}

/* Thank-you confirmation */
.fg-thank-page {
  min-height: 82vh;
  padding-top: 150px;
  background:
    radial-gradient(circle at 14% 20%, rgba(255, 143, 177, 0.2), transparent 32%),
    radial-gradient(circle at 86% 72%, rgba(221, 183, 244, 0.22), transparent 34%),
    var(--fg-gradient-page);
}

.fg-thank-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.7fr);
  gap: clamp(28px, 5vw, 76px);
  align-items: center;
}

.fg-thank-copy .fg-lead {
  max-width: 720px;
}

.fg-thank-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.fg-thank-card {
  position: relative;
  overflow: hidden;
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid rgba(231, 185, 193, 0.82);
  border-radius: var(--fg-radius-xl);
  background:
    linear-gradient(145deg, rgba(255,255,255,0.92), rgba(255,247,248,0.86)),
    radial-gradient(circle at top right, rgba(255,143,177,0.2), transparent 36%);
  box-shadow: var(--fg-shadow-card);
}

.fg-thank-card::before {
  content: "";
  position: absolute;
  inset: -30% auto auto 55%;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: rgba(221, 183, 244, 0.25);
  filter: blur(28px);
  pointer-events: none;
}

.fg-thank-card-top {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 22px;
  z-index: 1;
}

.fg-reference-box {
  position: relative;
  z-index: 1;
  padding: 22px;
  border: 1px solid rgba(231, 185, 193, 0.72);
  border-radius: var(--fg-radius-lg);
  background:
    linear-gradient(135deg, rgba(255,143,177,0.14), rgba(246,179,162,0.12)),
    rgba(255,255,255,0.72);
}

.fg-reference-box small {
  display: block;
  margin-bottom: 9px;
  color: var(--fg-text-muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.fg-reference-box strong {
  display: block;
  color: var(--fg-text-heading);
  font-size: clamp(1.25rem, 3vw, 1.8rem);
  letter-spacing: 0.08em;
  word-break: break-word;
}

.fg-reference-box p {
  margin: 10px 0 0;
  color: var(--fg-text-muted);
  font-size: 0.95rem;
}

.fg-thank-steps {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.fg-thank-steps div {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 14px;
  padding: 15px;
  border: 1px solid rgba(241, 210, 215, 0.78);
  border-radius: var(--fg-radius-md);
  background: rgba(255, 255, 255, 0.72);
}

.fg-thank-steps span {
  grid-row: span 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 14px;
  background: var(--fg-gradient-cta);
  color: #fff;
  font-size: 0.76rem;
  font-weight: 900;
  box-shadow: var(--fg-shadow-button);
}

.fg-thank-steps strong {
  color: var(--fg-text-heading);
}

.fg-thank-steps p {
  margin: 4px 0 0;
  color: var(--fg-text-muted);
  line-height: 1.5;
}

.fg-thank-note {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.fg-thank-note span {
  padding: 8px 11px;
  border: 1px solid rgba(231, 185, 193, 0.68);
  border-radius: 999px;
  background: rgba(255, 247, 248, 0.78);
  color: var(--fg-text-muted);
  font-size: 0.82rem;
  font-weight: 800;
}

@media (max-width: 720px) {
  .fg-error-page {
    padding: 120px 0 56px;
  }

  .fg-age-bar {
    align-items: flex-start;
    flex-direction: column;
  }

  .fg-error-actions .fg-button {
    width: 100%;
  }

  .fg-thank-page {
    padding-top: 120px;
  }

  .fg-thank-shell {
    grid-template-columns: 1fr;
  }

  .fg-thank-actions .fg-button {
    width: 100%;
  }
}

.fg-lang-option {
  display: inline-flex;
  align-items: center;
  gap: 0.28rem;
  min-height: 34px;
  padding: 0.38rem 0.62rem;
  border-radius: 999px;
  color: var(--fg-text-muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.fg-lang-option:hover,
.fg-lang-option.active {
  color: var(--fg-text-heading);
  background: linear-gradient(135deg, rgba(255, 143, 177, 0.18), rgba(221, 183, 244, 0.22));
}

@media (max-width: 920px) {
  .fg-lang-switch {
    width: 100%;
    justify-content: center;
    margin-top: 0.35rem;
  }

  .fg-lang-option {
    flex: 1;
    justify-content: center;
  }
}

/* Final polish: subtle motion and premium surface response */
@keyframes fgFloatSoft {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(0deg); }
  50% { transform: translate3d(0, -10px, 0) rotate(0.35deg); }
}

@keyframes fgPulseGlow {
  0%, 100% { opacity: 0.62; transform: scale(1); }
  50% { opacity: 0.92; transform: scale(1.045); }
}

@keyframes fgProgressShine {
  0% { transform: translateX(-120%); }
  100% { transform: translateX(180%); }
}

.fg-header {
  transition: box-shadow 0.25s ease, background-color 0.25s ease, backdrop-filter 0.25s ease, border-color 0.25s ease;
}

.fg-header.is-scrolled {
  background: rgba(254, 251, 251, 0.9);
  box-shadow: 0 18px 48px rgba(217, 135, 133, 0.14);
  border-color: rgba(231, 185, 193, 0.74);
}

.fg-nav-links a:not(.fg-button):not(.fg-lang-option) {
  position: relative;
}

.fg-nav-links a:not(.fg-button):not(.fg-lang-option)::after {
  content: "";
  position: absolute;
  left: 10%;
  right: 10%;
  bottom: -7px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, #FF8FB1, #DDB7F4);
  opacity: 0;
  transform: scaleX(0.55);
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.fg-nav-links a:not(.fg-button):not(.fg-lang-option):hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.fg-button {
  isolation: isolate;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.fg-button:hover {
  box-shadow: 0 16px 34px rgba(255, 143, 177, 0.34);
}

.fg-button:active {
  transform: translateY(0) scale(0.985);
}

.fg-reveal {
  filter: blur(5px);
  transform: translateY(24px) scale(0.988);
  transition:
    opacity 0.72s ease var(--fg-reveal-delay, 0ms),
    transform 0.72s cubic-bezier(0.2, 0.8, 0.2, 1) var(--fg-reveal-delay, 0ms),
    filter 0.72s ease var(--fg-reveal-delay, 0ms);
}

.fg-reveal.is-visible {
  filter: blur(0);
  transform: translateY(0) scale(1);
}

.fg-hero-photo,
.fg-lifestyle-visual,
.fg-studio-visual,
.fg-contact-visual {
  will-change: transform;
}

.fg-hero-photo::after,
.fg-lifestyle-visual::after,
.fg-studio-visual::after,
.fg-contact-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 22% 18%, rgba(255, 255, 255, 0.34), transparent 24%),
    linear-gradient(135deg, rgba(255, 143, 177, 0.1), rgba(221, 183, 244, 0.11));
  mix-blend-mode: screen;
}

.fg-hero-media::before,
.fg-lifestyle-card::before,
.fg-live-section::before,
.fg-contact-panel::before {
  animation: fgPulseGlow 7s ease-in-out infinite;
}

.fg-progress-row i {
  position: relative;
  overflow: hidden;
}

.fg-progress-row i::after {
  content: "";
  position: absolute;
  inset: 0;
  width: 45%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.58), transparent);
  animation: fgProgressShine 3.6s ease-in-out infinite;
}

.fg-card,
.fg-feature-card,
.fg-case-column,
.fg-privacy-card,
.fg-freedom-card,
.fg-contact-card,
.fg-live-stack,
.fg-hero-dashboard,
.fg-form {
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    border-color 0.28s ease,
    background-color 0.28s ease;
}

.fg-card:hover,
.fg-feature-card:hover,
.fg-case-column:hover,
.fg-privacy-card:hover,
.fg-freedom-card:hover,
.fg-contact-card:hover,
.fg-live-stack:hover,
.fg-form:hover {
  border-color: rgba(255, 143, 177, 0.58);
  box-shadow: 0 22px 52px rgba(217, 135, 133, 0.18);
}

.fg-spotlight-card {
  position: relative;
  overflow: hidden;
}

.fg-spotlight-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0;
  background: radial-gradient(
    circle at var(--fg-pointer-x, 50%) var(--fg-pointer-y, 50%),
    rgba(255, 143, 177, 0.2),
    transparent 34%
  );
  transition: opacity 0.24s ease;
}

.fg-spotlight-card:hover::after {
  opacity: 1;
}

.fg-spotlight-card > * {
  position: relative;
  z-index: 1;
}

.fg-mini-chip,
.fg-trust-badge,
.fg-status-pill,
.fg-chip {
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.fg-mini-chip:hover,
.fg-trust-badge:hover,
.fg-status-pill:hover,
.fg-chip:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 143, 177, 0.48);
  box-shadow: 0 12px 26px rgba(217, 135, 133, 0.12);
}

@media (min-width: 921px) {
  .fg-hero-photo {
    animation: fgFloatSoft 8.5s ease-in-out infinite;
  }

  .fg-lifestyle-visual,
  .fg-contact-visual {
    animation: fgFloatSoft 9.5s ease-in-out infinite;
  }

  .fg-studio-visual {
    animation: fgFloatSoft 10.5s ease-in-out infinite reverse;
  }
}

@media (hover: none) {
  .fg-card:hover,
  .fg-feature-card:hover,
  .fg-case-column:hover,
  .fg-system-preview-card:hover,
  .fg-learning-card:hover,
  .fg-privacy-card:hover,
  .fg-freedom-card:hover,
  .fg-contact-card:hover,
  .fg-live-stack:hover,
  .fg-form:hover {
    transform: none;
  }
}

@media (max-width: 920px) {
  .fg-learning-panel {
    grid-template-columns: 1fr;
  }

  .fg-system-preview-head {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .fg-system-spine {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border-radius: 28px;
  }

  .fg-system-spine i {
    display: none;
  }

  .fg-system-preview-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .fg-system-preview-card,
  .fg-system-preview-card:nth-child(1),
  .fg-system-preview-card:nth-child(4) {
    grid-column: auto;
  }
}

@media (max-width: 640px) {
  .fg-learning-panel {
    border-radius: 30px;
    padding: 24px;
  }

  .fg-learning-card {
    border-radius: 26px;
    padding: 16px;
  }

  .fg-learning-paths li {
    grid-template-columns: 42px minmax(0, 1fr);
    padding: 12px;
  }

  .fg-system-preview {
    border-radius: 30px;
    padding: 24px;
  }

  .fg-system-preview-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .fg-system-spine {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-radius: 24px;
  }

  .fg-system-spine span {
    min-height: 42px;
    padding: 0 12px;
  }

  .fg-system-preview-card {
    min-height: auto;
    border-radius: 24px;
  }

  .fg-system-preview-note {
    display: block;
  }

  .fg-system-preview-note strong {
    display: block;
    margin-bottom: 6px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .fg-reveal {
    opacity: 1;
    filter: none;
    transform: none;
  }
}

/* 18+ Age Gate */
body.fg-age-locked {
  overflow: hidden;
}

.fg-age-gate[hidden] {
  display: none;
}

.fg-age-gate {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  padding: 20px;
}

.fg-age-gate-backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 12%, rgba(255, 143, 177, 0.26), transparent 34%),
    radial-gradient(circle at 82% 20%, rgba(221, 183, 244, 0.24), transparent 34%),
    rgba(31, 20, 27, 0.78);
  backdrop-filter: blur(18px);
}

.fg-age-gate-card {
  position: relative;
  width: min(560px, 100%);
  padding: clamp(24px, 5vw, 42px);
  border-radius: var(--fg-radius-xl);
  border: 1px solid rgba(231, 185, 193, 0.78);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(255, 247, 248, 0.9)),
    var(--fg-bg-card);
  box-shadow: 0 30px 90px rgba(42, 27, 36, 0.28), var(--fg-shadow-card);
  text-align: center;
  overflow: hidden;
}

.fg-age-gate-card::before {
  content: "";
  position: absolute;
  inset: -35% -20% auto auto;
  width: 260px;
  height: 260px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255, 143, 177, 0.24), transparent 66%);
  pointer-events: none;
}

.fg-age-kicker {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--fg-border-strong);
  background: rgba(255, 143, 177, 0.1);
  color: var(--fg-primary);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.fg-age-gate-card h2 {
  position: relative;
  margin: 0;
  color: var(--fg-text-heading);
  font-size: clamp(2rem, 6vw, 4rem);
  line-height: 0.95;
  letter-spacing: -0.07em;
}

.fg-age-gate-card p {
  position: relative;
  margin: 16px auto 0;
  max-width: 440px;
  color: var(--fg-text-muted);
}

.fg-age-actions {
  position: relative;
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 26px;
}

.fg-age-actions .fg-button {
  border: 0;
  cursor: pointer;
}

.fg-age-note {
  font-size: 0.85rem;
  color: var(--fg-text-soft) !important;
}

@media (max-width: 560px) {
  .fg-age-gate {
    padding: 14px;
  }

  .fg-age-gate-card {
    border-radius: 24px;
  }

  .fg-age-actions {
    flex-direction: column;
  }

  .fg-age-actions .fg-button,
  .fg-age-actions .fg-button-secondary {
    width: 100%;
  }
}

/* Mobile QA fixes: age gate, header, hero and horizontal overflow */
html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

.fg-page,
.fg-container,
.fg-hero-copy,
.fg-hero-media,
.fg-hero-dashboard,
.fg-image-card {
  min-width: 0;
}

@media (min-width: 921px) {
  .fg-hero {
    padding: 48px 0 72px;
  }

  .fg-hero-grid {
    min-height: calc(100vh - 124px);
    align-items: center;
  }
}

@media (max-width: 920px) {
  .fg-nav {
    min-height: 68px;
    gap: 10px;
  }

  .fg-logo {
    flex: 1 1 auto;
    min-width: 0;
    max-width: calc(100% - 58px);
  }

  .fg-logo > span:last-child {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .fg-mobile-toggle {
    flex: 0 0 46px;
    width: 46px;
    height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }

  .fg-mobile-toggle span {
    margin: 3px 0;
  }

  .fg-nav-links {
    top: 72px;
    left: 12px;
    right: 12px;
    width: auto;
    max-width: calc(100vw - 24px);
    max-height: calc(100dvh - 88px);
    overflow-y: auto;
  }

  .fg-hero-grid,
  .fg-form-shell,
  .fg-thank-shell {
    min-width: 0;
  }
}

@media (max-width: 640px) {
  .fg-container {
    width: calc(100% - 24px);
    max-width: 366px;
    margin-left: 12px;
    margin-right: 12px;
  }

  .fg-hero {
    padding: 40px 0 50px;
  }

  .fg-hero-grid {
    gap: 24px;
  }

  .fg-h1 {
    max-width: 100%;
    font-size: clamp(2.08rem, 10.7vw, 2.85rem);
    line-height: 1;
    letter-spacing: -0.055em;
    overflow-wrap: break-word;
    text-wrap: balance;
  }

  .fg-lead {
    max-width: 100%;
    font-size: 0.98rem;
    line-height: 1.55;
  }

  .fg-hero-actions,
  .fg-cta-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .fg-hero-actions .fg-button,
  .fg-cta-row .fg-button {
    width: 100%;
  }

  .fg-hero-photo {
    border-radius: 24px;
    aspect-ratio: 1 / 0.82;
  }

  .fg-hero-dashboard {
    width: 100%;
    max-width: 366px;
    margin-inline: auto;
    border-radius: 28px;
    padding: 22px;
  }

  .fg-dashboard-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .fg-dashboard-metric {
    min-height: 132px;
    padding: 16px;
  }

  .fg-dashboard-footer {
    font-size: 0.85rem;
    padding-inline: 12px;
  }
}

@media (max-width: 560px) {
  .fg-age-gate {
    padding: 14px;
    place-items: center;
    grid-template-columns: minmax(0, 1fr);
    width: 100%;
    max-width: 100vw;
    overflow: hidden;
  }

  .fg-age-gate-card {
    width: min(340px, calc(100% - 28px));
    max-width: 340px;
    min-width: 0;
    box-sizing: border-box;
    justify-self: center;
    margin-inline: 0;
    padding: 24px 20px;
    border-radius: 26px;
  }

  .fg-age-kicker {
    max-width: 100%;
    justify-content: center;
    text-align: center;
    white-space: normal;
  }

  .fg-age-gate-card h2 {
    max-width: 100%;
    font-size: clamp(1.86rem, 8.8vw, 2.34rem);
    line-height: 1;
    letter-spacing: -0.045em;
    overflow-wrap: break-word;
    text-wrap: balance;
  }

  .fg-age-gate-card p {
    max-width: 100%;
    font-size: 0.94rem;
  }

  .fg-age-actions {
    width: 100%;
    gap: 10px;
  }
}

@media (max-width: 380px) {
  .fg-h1 {
    font-size: clamp(1.96rem, 10.2vw, 2.46rem);
  }

  .fg-dashboard-metrics {
    grid-template-columns: 1fr;
  }
}

/* Live QA mobile overflow hardening */
@media (max-width: 560px) {
  .fg-age-gate {
    padding: 14px !important;
    place-items: center !important;
    grid-template-columns: minmax(0, 1fr) !important;
    width: 100vw !important;
    max-width: 100vw !important;
    overflow: hidden !important;
  }

  .fg-age-gate-card {
    width: calc(100vw - 28px) !important;
    max-width: 340px !important;
    min-width: 0 !important;
    box-sizing: border-box !important;
    justify-self: center !important;
    margin: 0 auto !important;
    padding: 24px 20px !important;
    border-radius: 26px !important;
    overflow: hidden !important;
  }

  .fg-age-gate-card::before {
    right: -120px !important;
  }

  .fg-age-gate-card h2 {
    font-size: clamp(1.86rem, 8.8vw, 2.34rem) !important;
    line-height: 1 !important;
    letter-spacing: -0.045em !important;
    overflow-wrap: break-word !important;
  }

  .fg-age-gate-card p {
    max-width: 100% !important;
    font-size: 0.94rem !important;
  }

  .fg-age-actions {
    width: 100% !important;
    gap: 10px !important;
  }
}
