.fc-landing {
  --text: #0e1726;
  --muted: #5e6a7d;
  --accent: #2563eb;
  color: var(--text);
  font-family: Inter, "Segoe UI", -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.65;
}

.fc-landing * {
  box-sizing: border-box;
}

.fc-landing a {
  color: inherit;
  text-decoration: none;
}

.fc-landing .page-shell {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background:
    radial-gradient(circle at 15% 0%, rgba(59, 130, 246, 0.14), transparent 28%),
    radial-gradient(circle at 100% 0%, rgba(124, 58, 237, 0.12), transparent 26%),
    radial-gradient(circle at 20% 65%, rgba(20, 184, 166, 0.08), transparent 22%),
    linear-gradient(180deg, #f8fbff 0%, #f4f8ff 42%, #f8fbff 100%);
}

.fc-landing .page-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(148, 163, 184, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148, 163, 184, 0.06) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.2), transparent 42%);
}

.fc-landing .orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(18px);
  pointer-events: none;
  opacity: 0.92;
}

.fc-landing .orb-a {
  width: 340px;
  height: 340px;
  top: 90px;
  left: -80px;
  background: rgba(37, 99, 235, 0.12);
}

.fc-landing .orb-b {
  width: 320px;
  height: 320px;
  top: 240px;
  right: -90px;
  background: rgba(124, 58, 237, 0.11);
}

.fc-landing .orb-c {
  width: 260px;
  height: 260px;
  top: 920px;
  left: 12%;
  background: rgba(20, 184, 166, 0.08);
}

.fc-landing .container {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.fc-landing .topbar-wrap {
  position: sticky;
  top: 14px;
  z-index: 20;
  padding-top: 18px;
}

.fc-landing .topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 16px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
}

.fc-landing .brand-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
  color: var(--text);
}

.fc-landing .brand-mark {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 800;
  letter-spacing: 0.04em;
  background: linear-gradient(135deg, #2563eb, #7c3aed 78%);
  box-shadow: 0 18px 34px rgba(37, 99, 235, 0.24);
  flex: 0 0 auto;
}

.fc-landing .brand-copy {
  min-width: 0;
}

.fc-landing .brand-title {
  display: block;
  font-size: 1.08rem;
  font-weight: 800;
  line-height: 1.05;
}

.fc-landing .brand-subtitle {
  display: block;
  color: var(--muted);
  font-size: 0.92rem;
  margin-top: 0.22rem;
}

.fc-landing .nav-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.fc-landing .nav-actions .fc-nav-link {
  min-height: 42px;
  padding: 10px 14px;
}

.fc-landing .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border-radius: 14px;
  font-weight: 700;
  transition: 0.18s ease;
}

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

.fc-landing .btn-ghost {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(148, 163, 184, 0.22);
  color: #1d4ed8;
}

.fc-landing .btn-primary {
  color: #fff;
  background: linear-gradient(180deg, #3b82f6, #2563eb);
  border: 1px solid #2563eb;
  box-shadow: 0 14px 30px rgba(37, 99, 235, 0.22);
}

.fc-landing .btn-white {
  color: #1d4ed8;
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 12px 30px rgba(255, 255, 255, 0.16);
}

.fc-landing .pill,
.fc-landing .eyebrow,
.fc-landing .chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(255, 255, 255, 0.86);
  box-shadow: 0 8px 20px rgba(31, 41, 55, 0.05);
  backdrop-filter: blur(10px);
  color: #314154;
  font-size: 0.84rem;
  font-weight: 650;
}

.fc-landing .pill-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, #14b8a6, #3b82f6);
  box-shadow: 0 0 0 6px rgba(20, 184, 166, 0.08);
}

.fc-landing .section {
  padding: 56px 0;
}

.fc-landing .section-tight-top {
  padding-top: 20px;
}

.fc-landing .hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: 46px;
  align-items: center;
  padding-top: 40px;
}

.fc-landing .hero-copy {
  max-width: 650px;
}

.fc-landing .hero h1 {
  margin: 18px 0 18px;
  font-size: clamp(2.7rem, 6vw, 5rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
  max-width: 12ch;
}

.fc-landing .hero-lead {
  max-width: 62ch;
  margin: 0;
  font-size: 1.08rem;
  color: var(--muted);
}

.fc-landing .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 28px;
}

.fc-landing .hero-link {
  color: #516177;
  font-weight: 700;
}

.fc-landing .hero-link:hover {
  color: var(--accent);
}

.fc-landing .trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.fc-landing .trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(140, 162, 196, 0.18);
  color: #445267;
  font-size: 0.92rem;
  font-weight: 600;
}

.fc-landing .trust-pill::before {
  content: "";
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.16), rgba(124, 58, 237, 0.16));
  border: 1px solid rgba(59, 130, 246, 0.16);
}

.fc-landing .chip-list {
  list-style: none;
  padding: 0;
  margin: 26px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.fc-landing .chip {
  color: #455469;
  font-weight: 600;
}

.fc-landing .hero-scene {
  position: relative;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fc-landing .scene-glow {
  position: absolute;
  inset: 12% 6% 16%;
  border-radius: 44px;
  background:
    radial-gradient(circle at 30% 35%, rgba(59, 130, 246, 0.28), transparent 32%),
    radial-gradient(circle at 75% 28%, rgba(124, 58, 237, 0.24), transparent 28%),
    radial-gradient(circle at 50% 85%, rgba(20, 184, 166, 0.18), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.66), rgba(255, 255, 255, 0.12));
}

.fc-landing .scene-panel {
  position: absolute;
  inset: 8% 10% 10%;
  border-radius: 42px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.54), rgba(255, 255, 255, 0.16));
  border: 1px solid rgba(255, 255, 255, 0.82);
  box-shadow: 0 30px 80px rgba(24, 39, 75, 0.08);
  backdrop-filter: blur(22px);
}

.fc-landing .scene-panel::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.42), transparent 28%);
  pointer-events: none;
}

.fc-landing .mock-phone {
  position: relative;
  z-index: 3;
  width: min(100%, 430px);
}

.fc-landing .mock-phone-frame {
  border-radius: 42px;
  padding: 14px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 249, 255, 0.96));
  border: 1px solid rgba(255, 255, 255, 0.92);
  box-shadow:
    0 34px 90px rgba(15, 23, 42, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.fc-landing .phone-topbar {
  display: flex;
  justify-content: center;
  padding: 4px 0 14px;
}

.fc-landing .phone-notch {
  width: 100px;
  height: 8px;
  border-radius: 999px;
  background: rgba(148, 163, 184, 0.4);
}

.fc-landing .phone-screen {
  padding: 18px;
  border-radius: 30px;
  background:
    radial-gradient(circle at 0% 0%, rgba(59, 130, 246, 0.08), transparent 30%),
    linear-gradient(180deg, #fbfdff 0%, #ffffff 100%);
}

.fc-landing .screen-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}

.fc-landing .screen-title {
  font-size: 15px;
  font-weight: 800;
}

.fc-landing .screen-avatar {
  width: 11px;
  height: 11px;
  border-radius: 999px;
  background: #cbd5e1;
}

.fc-landing .screen-card {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(226, 232, 240, 0.95);
  border-radius: 22px;
  padding: 16px;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.07);
  margin-bottom: 12px;
}

.fc-landing .screen-card.primary {
  background:
    radial-gradient(circle at 100% 0%, rgba(124, 58, 237, 0.08), transparent 32%),
    linear-gradient(180deg, #eef5ff 0%, #ffffff 100%);
}

.fc-landing .kicker {
  font-size: 12px;
  color: #637389;
}

.fc-landing .big-metric {
  margin-top: 4px;
  font-size: 34px;
  line-height: 1.04;
  font-weight: 820;
}

.fc-landing .muted-line {
  color: #64748b;
  font-size: 13px;
  margin-top: 6px;
}

.fc-landing .progress {
  height: 9px;
  margin-top: 14px;
  border-radius: 999px;
  overflow: hidden;
  background: #dbeafe;
}

.fc-landing .progress > span {
  display: block;
  width: 70%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #2563eb, #7c3aed 85%);
}

.fc-landing .micro-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 13px;
}

.fc-landing .micro-pills span {
  min-height: 25px;
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.08);
  color: #1d4ed8;
  font-size: 12px;
  font-weight: 700;
}

.fc-landing .mini-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 12px;
}

.fc-landing .mini-panel {
  padding: 12px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(226, 232, 240, 0.92);
}

.fc-landing .mini-icon {
  width: 36px;
  height: 36px;
  border-radius: 13px;
  margin-bottom: 10px;
}

.fc-landing .mini-blue {
  background: linear-gradient(135deg, #3b82f6, #2563eb);
}

.fc-landing .mini-violet {
  background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.fc-landing .feed-row {
  display: flex;
  gap: 12px;
  align-items: center;
}

.fc-landing .feed-icon {
  width: 44px;
  height: 44px;
  border-radius: 15px;
  flex: 0 0 auto;
}

.fc-landing .feed-orange {
  background: linear-gradient(135deg, #f59e0b, #fb7185);
}

.fc-landing .feed-teal {
  background: linear-gradient(135deg, #06b6d4, #14b8a6);
}

.fc-landing .line {
  height: 10px;
  border-radius: 999px;
  background: #e2e8f0;
}

.fc-landing .line + .line {
  margin-top: 8px;
}

.fc-landing .w-70 {
  width: 70%;
}

.fc-landing .w-54 {
  width: 54%;
}

.fc-landing .w-84 {
  width: 84%;
}

.fc-landing .bottom-nav {
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin-top: 18px;
  padding-top: 12px;
  border-top: 1px solid rgba(226, 232, 240, 0.92);
}

.fc-landing .bottom-nav span {
  width: 44px;
  height: 6px;
  border-radius: 999px;
  background: #dbe3ee;
}

.fc-landing .bottom-nav span.active {
  background: linear-gradient(90deg, #2563eb, #7c3aed);
}

.fc-landing .float-card {
  position: absolute;
  z-index: 4;
  width: 190px;
  padding: 14px 16px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.11);
  backdrop-filter: blur(18px);
}

.fc-landing .float-card small {
  display: block;
  color: #64748b;
  font-size: 0.76rem;
  margin-bottom: 4px;
}

.fc-landing .float-card strong {
  display: block;
  font-size: 1.05rem;
  line-height: 1.2;
}

.fc-landing .float-card p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 0.87rem;
}

.fc-landing .float-a {
  top: 90px;
  right: -8px;
  transform: rotate(6deg);
}

.fc-landing .float-b {
  bottom: 120px;
  left: 0;
  transform: rotate(-7deg);
}

.fc-landing .float-c {
  top: 290px;
  left: -22px;
  transform: rotate(-4deg);
}

.fc-landing .product-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.fc-landing .section-photo-analysis {
  padding-top: 30px;
  padding-bottom: 20px;
}

.fc-landing .photo-analysis-shell {
  max-width: 1100px;
  margin: 0 auto;
  padding: clamp(40px, 5vw, 56px);
  border-radius: 24px;
  background:
    radial-gradient(circle at 96% 2%, rgba(99, 102, 241, 0.14), transparent 46%),
    radial-gradient(circle at 4% 86%, rgba(56, 189, 248, 0.12), transparent 40%),
    linear-gradient(160deg, rgba(255, 255, 255, 0.98), rgba(248, 251, 255, 0.94));
  box-shadow:
    0 30px 60px rgba(46, 60, 98, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.96);
}

.fc-landing .photo-analysis {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(280px, 1fr);
  gap: clamp(24px, 3.6vw, 46px);
  align-items: center;
}

.fc-landing .photo-analysis-copy h2 {
  margin: 16px 0 16px;
  font-size: clamp(2.25rem, 4vw, 2.75rem);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.035em;
}

.fc-landing .photo-analysis-copy p {
  margin: 0;
  max-width: 59ch;
  font-size: 1.06rem;
  color: rgba(70, 84, 107, 0.9);
}

.fc-landing .photo-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  color: #4d5a71;
  background: linear-gradient(180deg, rgba(244, 247, 255, 0.95), rgba(231, 237, 255, 0.9));
  border: 1px solid rgba(184, 198, 239, 0.65);
  box-shadow: 0 8px 16px rgba(56, 68, 102, 0.12);
}

.fc-landing .photo-gradient {
  background: linear-gradient(100deg, #2563eb 0%, #7c3aed 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.fc-landing .photo-steps {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.fc-landing .photo-step {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 46px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(193, 205, 239, 0.55);
  background: linear-gradient(180deg, rgba(249, 251, 255, 0.98), rgba(243, 246, 252, 0.94));
  box-shadow: 0 10px 20px rgba(34, 52, 89, 0.08);
  color: #273248;
  font-size: 0.98rem;
  font-weight: 640;
}

.fc-landing .photo-step-num {
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 800;
  background: linear-gradient(145deg, #6366f1, #2563eb);
  box-shadow: 0 8px 16px rgba(67, 82, 213, 0.36);
}

.fc-landing .photo-demo {
  justify-self: center;
  width: min(100%, 360px);
  border-radius: 20px;
  border: 1px solid rgba(230, 235, 247, 0.95);
  background: #ffffff;
  box-shadow: 0 26px 44px rgba(49, 63, 98, 0.22);
  overflow: hidden;
}

.fc-landing .photo-demo-top {
  height: 132px;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 25% 0%, rgba(255, 255, 255, 0.5), transparent 45%),
    linear-gradient(135deg, #f8e5a6 0%, #f59e0b 100%);
}

.fc-landing .photo-demo-icon {
  font-size: 3.25rem;
  line-height: 1;
  filter: drop-shadow(0 8px 16px rgba(194, 132, 0, 0.25));
}

.fc-landing .photo-demo-body {
  padding: 18px;
}

.fc-landing .photo-demo-recognized {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #7a879c;
  font-size: 0.9rem;
}

.fc-landing .photo-demo-ai {
  min-height: 20px;
  min-width: 26px;
  border-radius: 7px;
  padding: 1px 7px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, #6366f1, #4338ca);
}

.fc-landing .photo-demo h3 {
  margin: 10px 0 16px;
  font-size: 1.65rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.08;
}

.fc-landing .photo-demo-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.fc-landing .photo-demo-stat {
  border-radius: 12px;
  padding: 10px 6px;
  background: #f5f7fc;
  border: 1px solid rgba(225, 232, 247, 0.9);
  text-align: center;
}

.fc-landing .photo-demo-stat strong {
  display: block;
  font-size: 1.3rem;
  line-height: 1;
}

.fc-landing .photo-demo-stat span {
  display: block;
  margin-top: 4px;
  font-size: 0.76rem;
  font-weight: 600;
  color: #75839a;
}

.fc-landing .photo-demo-cta {
  margin-top: 16px;
  display: inline-flex;
  width: 100%;
  justify-content: center;
  align-items: center;
  min-height: 46px;
  padding: 10px 14px;
  border-radius: 12px;
  color: #fff;
  font-weight: 730;
  background: linear-gradient(110deg, #2563eb 0%, #7c3aed 100%);
  box-shadow: 0 14px 24px rgba(80, 61, 205, 0.34);
}

.fc-landing .info-tile,
.fc-landing .feature-card,
.fc-landing .panel-card,
.fc-landing .article-card,
.fc-landing .faq-card {
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 20px;
  box-shadow: 0 18px 40px rgba(20, 32, 67, 0.08);
  backdrop-filter: blur(14px);
}

.fc-landing .info-tile {
  padding: 18px;
}

.fc-landing .tile-label {
  display: block;
  color: #65748a;
  font-size: 0.84rem;
  margin-bottom: 6px;
}

.fc-landing .tile-value {
  font-size: 1.04rem;
  font-weight: 780;
  line-height: 1.25;
}

.fc-landing .section-head {
  max-width: 720px;
  margin-bottom: 22px;
}

.fc-landing .section-head h2,
.fc-landing .article-card h2,
.fc-landing .panel-card h2,
.fc-landing .cta-panel h2 {
  margin: 0 0 12px;
  font-size: clamp(1.9rem, 4vw, 3rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.fc-landing .section-head p,
.fc-landing .article-card p,
.fc-landing .panel-card p,
.fc-landing .feature-card p,
.fc-landing .faq-card p,
.fc-landing .panel-card li,
.fc-landing .article-card li {
  color: var(--muted);
}

.fc-landing .feature-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 0.9fr;
  gap: 14px;
}

.fc-landing .feature-card {
  position: relative;
  overflow: hidden;
  padding: 24px;
}

.fc-landing .feature-card::after {
  content: "";
  position: absolute;
  right: -30px;
  bottom: -50px;
  width: 150px;
  height: 150px;
  border-radius: 999px;
  background: rgba(59, 130, 246, 0.06);
}

.fc-landing .feature-card.large {
  background:
    radial-gradient(circle at 100% 0%, rgba(59, 130, 246, 0.1), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.76));
}

.fc-landing .feature-icon {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  margin-bottom: 14px;
  font-weight: 800;
}

.fc-landing .icon-blue {
  background: rgba(37, 99, 235, 0.12);
  color: #2563eb;
}

.fc-landing .icon-violet {
  background: rgba(124, 58, 237, 0.12);
  color: #7c3aed;
}

.fc-landing .icon-teal-2 {
  background: rgba(20, 184, 166, 0.12);
  color: #0f766e;
}

.fc-landing .icon-orange-2 {
  background: rgba(249, 115, 22, 0.12);
  color: #ea580c;
}

.fc-landing .feature-card h3,
.fc-landing .panel-card h3,
.fc-landing .faq-card h3 {
  margin: 0 0 10px;
  font-size: 1.18rem;
  line-height: 1.15;
}

.fc-landing .two-col {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.fc-landing .panel-card {
  padding: 28px;
}

.fc-landing .timeline {
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
  position: relative;
}

.fc-landing .timeline::before {
  content: "";
  position: absolute;
  left: 13px;
  top: 6px;
  bottom: 10px;
  width: 2px;
  background: linear-gradient(180deg, rgba(59, 130, 246, 0.18), rgba(124, 58, 237, 0.18));
}

.fc-landing .timeline li {
  position: relative;
  padding-left: 48px;
  margin-bottom: 18px;
}

.fc-landing .timeline li:last-child {
  margin-bottom: 0;
}

.fc-landing .timeline li::before {
  content: attr(data-step);
  position: absolute;
  left: 0;
  top: 2px;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #dbeafe;
  color: #1d4ed8;
  font-size: 0.88rem;
  font-weight: 800;
  box-shadow: 0 0 0 8px rgba(219, 234, 254, 0.42);
}

.fc-landing .timeline strong {
  display: block;
  font-size: 1rem;
  margin-bottom: 3px;
  color: var(--text);
}

.fc-landing .section-calculator-teaser {
  padding-top: 40px;
}

.fc-landing .calculator-teaser {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(0, 0.96fr);
  gap: 28px;
  padding: 34px;
  border-radius: 34px;
  border: 1px solid rgba(255, 255, 255, 0.88);
  background: linear-gradient(180deg, #f9fbff 0%, #f3f6ff 100%);
  box-shadow: 0 24px 70px rgba(84, 102, 171, 0.12);
  overflow: hidden;
}

.fc-landing .calculator-teaser-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.fc-landing .calculator-teaser-orb {
  position: absolute;
  border-radius: 999px;
}

.fc-landing .calculator-teaser-orb-left {
  width: 240px;
  height: 240px;
  left: -90px;
  top: -20px;
  background: radial-gradient(circle, rgba(97, 124, 255, 0.12) 0%, rgba(97, 124, 255, 0) 72%);
}

.fc-landing .calculator-teaser-orb-right {
  width: 300px;
  height: 300px;
  right: -120px;
  bottom: -140px;
  background: radial-gradient(circle, rgba(137, 174, 255, 0.14) 0%, rgba(137, 174, 255, 0) 72%);
}

.fc-landing .calculator-teaser-copy,
.fc-landing .calculator-teaser-preview {
  position: relative;
  z-index: 1;
}

.fc-landing .calculator-teaser-kicker {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid #dbe4ff;
  background: rgba(255, 255, 255, 0.76);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #6b7aa2;
}

.fc-landing .calculator-teaser-copy h2 {
  margin: 16px 0 14px;
  max-width: 10ch;
  font-size: clamp(2.3rem, 5vw, 3.6rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
  color: #1d315f;
}

.fc-landing .calculator-teaser-copy p {
  margin: 0;
  max-width: 56ch;
  color: #607096;
  font-size: 1.04rem;
  line-height: 1.7;
}

.fc-landing .calculator-teaser-chips {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.fc-landing .calculator-teaser-chips span {
  border-radius: 999px;
  border: 1px solid #dfe7ff;
  background: rgba(255, 255, 255, 0.78);
  padding: 8px 13px;
  color: #62739a;
  font-size: 0.88rem;
  font-weight: 600;
}

.fc-landing .calculator-teaser-actions {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.fc-landing .calculator-teaser-actions .btn {
  min-height: 52px;
  border-radius: 18px;
  padding: 12px 22px;
}

.fc-landing .calculator-teaser-actions .btn-ghost {
  border-color: #dae4ff;
  color: #29427b;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 10px 24px rgba(84, 100, 166, 0.08);
}

.fc-landing .calculator-teaser-preview {
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.86);
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  padding: 18px;
  box-shadow: 0 18px 50px rgba(84, 101, 174, 0.12);
}

.fc-landing .preview-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
}

.fc-landing .preview-title,
.fc-landing .preview-goal span,
.fc-landing .preview-grid span,
.fc-landing .preview-activity span,
.fc-landing .preview-result > span,
.fc-landing .preview-maintenance span {
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.65rem;
  font-weight: 700;
  color: #8390b1;
}

.fc-landing .preview-head > div strong {
  display: block;
  margin-top: 6px;
  font-size: 2rem;
  line-height: 1;
  letter-spacing: -0.04em;
  color: #203462;
}

.fc-landing .preview-goal {
  border-radius: 15px;
  border: 1px solid #dfe7ff;
  background: #f7faff;
  padding: 8px 10px;
  text-align: right;
}

.fc-landing .preview-goal strong {
  display: block;
  margin-top: 4px;
  font-size: 0.88rem;
  color: #2f4a85;
}

.fc-landing .preview-grid {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.fc-landing .preview-grid article,
.fc-landing .preview-activity {
  border-radius: 18px;
  border: 1px solid #e3e9ff;
  background: rgba(255, 255, 255, 0.9);
  padding: 11px 12px;
  box-shadow: 0 8px 20px rgba(92, 105, 153, 0.05);
}

.fc-landing .preview-grid strong,
.fc-landing .preview-activity strong {
  display: block;
  margin-top: 6px;
  color: #243a69;
  font-size: 1.04rem;
}

.fc-landing .preview-activity {
  margin-top: 10px;
}

.fc-landing .preview-result {
  margin-top: 14px;
  border-radius: 21px;
  border: 1px solid #dfe8ff;
  background: linear-gradient(180deg, #f6f9ff 0%, #eef4ff 100%);
  padding: 14px;
}

.fc-landing .preview-result-values {
  margin-top: 10px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px;
}

.fc-landing .preview-result-values > div > strong {
  display: block;
  font-size: 2.6rem;
  line-height: 1;
  letter-spacing: -0.05em;
  color: #183361;
}

.fc-landing .preview-result-values > div > p {
  margin: 4px 0 0;
  color: #5b6b90;
  font-size: 0.92rem;
  line-height: 1.35;
}

.fc-landing .preview-maintenance {
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.76);
  padding: 8px 10px;
  box-shadow: 0 10px 20px rgba(80, 104, 168, 0.08);
  text-align: right;
}

.fc-landing .preview-maintenance strong {
  display: block;
  margin-top: 4px;
  color: #2c467f;
  font-size: 1.2rem;
}

.fc-landing .preview-result > p {
  margin: 12px 0 0;
  color: #617299;
  font-size: 0.85rem;
  line-height: 1.55;
}

.fc-landing .article-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) 280px;
  gap: 16px;
  align-items: start;
}

.fc-landing .article-card {
  padding: 34px;
}

.fc-landing .article-lead {
  font-size: 1.08rem;
  color: #485569;
  margin-bottom: 18px;
}

.fc-landing .article-aside {
  position: sticky;
  top: 96px;
  padding: 22px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 40px rgba(20, 32, 67, 0.08);
  backdrop-filter: blur(16px);
}

.fc-landing .article-aside h3 {
  margin: 0 0 12px;
  font-size: 1rem;
}

.fc-landing .aside-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.fc-landing .aside-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #4e5e72;
}

.fc-landing .aside-list li + li {
  margin-top: 10px;
}

.fc-landing .aside-list li::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: linear-gradient(135deg, #3b82f6, #7c3aed);
}

.fc-landing .check-list {
  padding-left: 1.2rem;
}

.fc-landing .callout {
  margin-top: 18px;
  padding: 16px 18px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(37, 99, 235, 0.06), rgba(124, 58, 237, 0.05));
  border: 1px solid rgba(140, 162, 196, 0.18);
  color: #405065;
  font-weight: 600;
}

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

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

.fc-landing .faq-card {
  padding: 22px;
}

.fc-landing .cta-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) auto;
  gap: 18px;
  align-items: center;
  padding: 36px;
  border-radius: 34px;
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 255, 255, 0.14), transparent 26%),
    linear-gradient(135deg, #1d4ed8 0%, #2563eb 48%, #7c3aed 100%);
  box-shadow: 0 28px 64px rgba(37, 99, 235, 0.24);
  color: #fff;
  overflow: hidden;
  position: relative;
}

.fc-landing .cta-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 10%, rgba(255, 255, 255, 0.1) 32%, transparent 56%);
  pointer-events: none;
}

.fc-landing .cta-panel .eyebrow {
  color: rgba(255, 255, 255, 0.94);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.18);
}

.fc-landing .cta-panel h2,
.fc-landing .cta-panel p {
  color: rgba(255, 255, 255, 0.96);
}

.fc-landing .cta-actions {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}

.fc-landing .cta-panel > div:first-child {
  position: relative;
  z-index: 1;
}

.fc-landing .cta-link {
  color: rgba(255, 255, 255, 0.94);
  font-weight: 700;
}

.fc-landing .footer {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
  justify-content: center;
  padding: 18px 0 42px;
  color: #627288;
}

.fc-landing .footer a {
  color: #627288;
}

@media (max-width: 1100px) {
  .fc-landing .hero,
  .fc-landing .feature-layout,
  .fc-landing .two-col,
  .fc-landing .cta-panel,
  .fc-landing .article-grid,
  .fc-landing .calculator-teaser {
    grid-template-columns: 1fr;
  }

  .fc-landing .photo-analysis {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .fc-landing .photo-demo {
    justify-self: start;
  }

  .fc-landing .calculator-teaser-copy h2 {
    max-width: none;
  }

  .fc-landing .hero-scene {
    min-height: 620px;
  }

  .fc-landing .article-aside {
    position: static;
  }
}

@media (max-width: 860px) {
  .fc-landing .product-strip,
  .fc-landing .reassurance-grid,
  .fc-landing .faq-grid {
    grid-template-columns: 1fr;
  }

  .fc-landing .topbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .fc-landing .nav-actions {
    width: 100%;
  }

  .fc-landing .nav-actions .fc-nav-link {
    flex: 1 1 auto;
  }

  .fc-landing .float-card {
    display: none;
  }
}

@media (max-width: 760px) {
  .fc-landing .container {
    width: min(100% - 20px, 1180px);
  }

  .fc-landing .hero {
    padding-top: 26px;
    gap: 28px;
  }

  .fc-landing .hero h1 {
    font-size: 2.7rem;
    max-width: none;
  }

  .fc-landing .section {
    padding: 40px 0;
  }

  .fc-landing .panel-card,
  .fc-landing .article-card,
  .fc-landing .feature-card,
  .fc-landing .faq-card,
  .fc-landing .cta-panel,
  .fc-landing .info-tile {
    padding: 22px 18px;
  }

  .fc-landing .hero-scene {
    min-height: auto;
  }

  .fc-landing .scene-panel {
    inset: 4% 0 4%;
  }

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

  .fc-landing .photo-analysis-copy h2 {
    font-size: clamp(2.25rem, 7vw, 2.65rem);
  }

  .fc-landing .photo-analysis-shell {
    padding: 24px 18px;
  }

  .fc-landing .photo-steps {
    flex-direction: column;
    align-items: stretch;
  }

  .fc-landing .photo-step {
    width: 100%;
  }

  .fc-landing .photo-demo {
    width: 100%;
  }

  .fc-landing .calculator-teaser {
    padding: 24px 18px;
    border-radius: 28px;
  }

  .fc-landing .calculator-teaser-actions {
    flex-direction: column;
  }

  .fc-landing .calculator-teaser-actions .btn {
    width: 100%;
  }

  .fc-landing .preview-head > div strong {
    font-size: 1.72rem;
  }

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

  .fc-landing .preview-result-values > div > strong {
    font-size: 2.2rem;
  }
}

.fc-calculator-page {
  color: #0f1f45;
  font-family: Inter, "Segoe UI", -apple-system, BlinkMacSystemFont, sans-serif;
  min-height: 100vh;
  background: linear-gradient(180deg, #f6f8ff 0%, #f3f6ff 55%, #ffffff 100%);
}

.fc-calculator-page * {
  box-sizing: border-box;
}

.fc-calculator-shell {
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto;
  padding: 20px 0 24px;
}

.fc-calculator-topbar {
  position: sticky;
  top: 12px;
  z-index: 24;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 14px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.84);
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 14px 30px rgba(87, 105, 171, 0.1);
  backdrop-filter: blur(18px);
  margin-bottom: 16px;
}

.fc-calculator-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  color: inherit;
  text-decoration: none;
}

.fc-calculator-brand .brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 800;
  letter-spacing: 0.04em;
  background: linear-gradient(135deg, #5b7dff, #6f6ff6 78%);
  box-shadow: 0 14px 30px rgba(80, 107, 208, 0.27);
}

.fc-calculator-brand .brand-title {
  display: block;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.08;
}

.fc-calculator-brand .brand-subtitle {
  display: block;
  margin-top: 2px;
  color: #66749b;
  font-size: 12px;
}

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

.fc-nav-link {
  min-height: 42px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid #dce5ff;
  background: #fff;
  color: #36518b;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 16px rgba(84, 100, 166, 0.08);
}

.fc-nav-link.is-active {
  color: #fff;
  background: linear-gradient(180deg, #5f82ff 0%, #4f73f4 100%);
  border: 1px solid #4f73f4;
  box-shadow: 0 10px 20px rgba(82, 116, 245, 0.24);
}

.fc-calculator-hero-wrap {
  overflow: hidden;
  border-radius: 36px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 24px 80px rgba(83, 101, 180, 0.12);
  backdrop-filter: blur(20px);
}

.fc-calculator-hero {
  position: relative;
  display: grid;
  gap: 28px;
  padding: 26px;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
}

.fc-calculator-radials {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.fc-radial {
  position: absolute;
  border-radius: 999px;
}

.fc-radial-a {
  left: -64px;
  top: 0;
  width: 224px;
  height: 224px;
  background: radial-gradient(circle, rgba(99, 124, 255, 0.12) 0%, rgba(99, 124, 255, 0) 72%);
}

.fc-radial-b {
  right: -44px;
  top: 90px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(122, 167, 255, 0.1) 0%, rgba(122, 167, 255, 0) 72%);
}

.fc-radial-c {
  left: 35%;
  bottom: -90px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(146, 170, 255, 0.1) 0%, rgba(146, 170, 255, 0) 70%);
}

.fc-calculator-copy,
.fc-calculator-card {
  position: relative;
  z-index: 1;
}

.fc-calculator-copy {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.fc-calculator-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  border: 1px solid #dce4ff;
  background: rgba(255, 255, 255, 0.75);
  padding: 8px 12px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #66749b;
}

.fc-calculator-copy h1 {
  margin: 18px 0 0;
  max-width: 10ch;
  font-size: clamp(2.4rem, 6vw, 4.25rem);
  font-weight: 650;
  line-height: 0.95;
  letter-spacing: -0.05em;
  color: #1d305f;
}

.fc-calculator-copy p {
  margin: 20px 0 0;
  max-width: 56ch;
  color: #5f6f94;
  font-size: 18px;
  line-height: 1.7;
}

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

.fc-calculator-chips span {
  border-radius: 999px;
  border: 1px solid #e0e8ff;
  background: rgba(255, 255, 255, 0.7);
  padding: 10px 14px;
  color: #607095;
  font-size: 14px;
  font-weight: 600;
}

.fc-calculator-stats {
  margin-top: 30px;
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.fc-calculator-stats article {
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 10px 28px rgba(81, 98, 163, 0.07);
  padding: 14px 14px 15px;
}

.fc-calculator-stats strong {
  display: block;
  font-size: 27px;
  letter-spacing: -0.03em;
  line-height: 1;
  color: #223867;
}

.fc-calculator-stats p {
  margin: 8px 0 0;
  font-size: 14px;
  line-height: 1.45;
}

.fc-calculator-card {
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  padding: 18px;
  box-shadow: 0 18px 50px rgba(84, 101, 174, 0.12);
}

.fc-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.fc-card-kicker {
  color: #6e7da1;
  font-size: 14px;
  font-weight: 500;
}

.fc-card-head h2 {
  margin: 2px 0 0;
  font-size: clamp(1.7rem, 3vw, 2rem);
  font-weight: 650;
  letter-spacing: -0.04em;
  color: #203462;
}

.fc-goal-chip {
  border-radius: 16px;
  border: 1px solid #dfe7ff;
  background: #f7faff;
  padding: 8px 12px;
  text-align: right;
}

.fc-goal-chip span {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #8190b4;
}

.fc-goal-chip strong {
  display: block;
  margin-top: 2px;
  font-size: 14px;
  color: #2f4a85;
}

.fc-form {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.fc-form label {
  border-radius: 18px;
  border: 1px solid #e2e8ff;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 8px 20px rgba(92, 105, 153, 0.05);
  padding: 9px 12px 11px;
}

.fc-form label > span {
  display: block;
  color: #8390b1;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.fc-form input,
.fc-form select {
  width: 100%;
  margin-top: 6px;
  border: none;
  border-radius: 10px;
  padding: 4px 0;
  background: transparent;
  color: #243a69;
  font-size: 18px;
  font-weight: 620;
  outline: none;
}

.fc-span-2 {
  grid-column: span 2;
}

.fc-calc-btn {
  grid-column: span 2;
  margin-top: 2px;
  border: 0;
  border-radius: 20px;
  background: linear-gradient(180deg, #5f82ff 0%, #4f73f4 100%);
  padding: 14px 18px;
  color: #fff;
  font-size: 17px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 14px 28px rgba(82, 116, 245, 0.35);
}

.fc-result {
  margin-top: 16px;
  border-radius: 26px;
  border: 1px solid #dfe8ff;
  background: linear-gradient(180deg, #f6f9ff 0%, #eef4ff 100%);
  padding: 16px;
}

.fc-result-main {
  display: inline-block;
}

.fc-result-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #7b89ad;
}

.fc-result-kcal {
  margin-top: 10px;
  font-size: clamp(2.1rem, 5vw, 3.4rem);
  font-weight: 650;
  line-height: 1;
  letter-spacing: -0.05em;
  color: #173261;
}

.fc-result-goal {
  margin-top: 6px;
  font-size: 16px;
  font-weight: 600;
  color: #5c6d92;
}

.fc-result-secondary {
  float: right;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.75);
  padding: 8px 12px;
  text-align: right;
  box-shadow: 0 10px 20px rgba(80, 104, 168, 0.08);
}

.fc-result-secondary span {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #8290b4;
}

.fc-result-secondary strong {
  display: block;
  margin-top: 1px;
  font-size: 21px;
  color: #2c467f;
}

.fc-result-note {
  clear: both;
  margin: 14px 0 0;
  color: #66769b;
  font-size: 14px;
}

.fc-result-extra {
  margin-top: 12px;
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.fc-result-extra article {
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.75);
  box-shadow: 0 10px 24px rgba(80, 100, 160, 0.06);
  padding: 12px;
}

.fc-result-extra h3 {
  margin: 0;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #7f8dae;
}

.fc-result-extra p {
  margin: 8px 0 0;
  color: #556689;
  font-size: 14px;
  line-height: 1.55;
}

.fc-miniapp-btn {
  margin-top: 12px;
  display: inline-flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  border: 1px solid #d7e2ff;
  background: rgba(255, 255, 255, 0.85);
  color: #27417b;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  padding: 13px 14px;
  box-shadow: 0 10px 24px rgba(84, 100, 166, 0.08);
}

.fc-calculator-content {
  margin-top: 26px;
  display: grid;
  gap: 16px;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.92fr);
}

.fc-calculator-article,
.fc-calculator-faq,
.fc-calculator-cta {
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.75);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 16px 48px rgba(85, 101, 168, 0.1);
  padding: 20px;
}

.fc-content-chip {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  border: 1px solid #dce5ff;
  background: #f7faff;
  padding: 6px 12px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #6c7aa2;
}

.fc-calculator-article h2,
.fc-calculator-faq h2,
.fc-calculator-cta h2 {
  margin: 14px 0 0;
  font-size: clamp(1.7rem, 3.8vw, 2.15rem);
  font-weight: 650;
  letter-spacing: -0.04em;
  color: #203563;
}

.fc-calculator-article p,
.fc-calculator-cta p {
  margin: 14px 0 0;
  color: #5f6f94;
  font-size: 16px;
  line-height: 1.75;
}

.fc-faq-list {
  margin-top: 14px;
  display: grid;
  gap: 10px;
}

.fc-faq-item {
  border-radius: 20px;
  border: 1px solid #e3e9ff;
  background: linear-gradient(180deg, #ffffff 0%, #f9fbff 100%);
  box-shadow: 0 10px 24px rgba(80, 100, 160, 0.05);
  padding: 14px;
}

.fc-faq-item h3 {
  margin: 0;
  color: #223a68;
  font-size: 17px;
  font-weight: 650;
  line-height: 1.4;
}

.fc-faq-item p {
  margin: 8px 0 0;
  color: #617299;
  font-size: 15px;
  line-height: 1.65;
}

.fc-calculator-cta {
  margin-top: 16px;
  background: linear-gradient(180deg, #ffffff 0%, #f7faff 100%);
  display: grid;
  gap: 14px;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  align-items: center;
}

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

.fc-cta-secondary,
.fc-cta-primary {
  min-height: 52px;
  border-radius: 20px;
  padding: 12px 18px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.fc-cta-secondary {
  border: 1px solid #dce5ff;
  background: #fff;
  color: #27417b;
  box-shadow: 0 10px 24px rgba(84, 100, 166, 0.08);
}

.fc-cta-primary {
  color: #fff;
  background: linear-gradient(180deg, #5f82ff 0%, #4d72f6 100%);
  box-shadow: 0 14px 28px rgba(82, 116, 245, 0.34);
}

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

  .fc-calculator-copy h1 {
    max-width: 12ch;
  }

  .fc-calculator-content,
  .fc-calculator-cta {
    grid-template-columns: 1fr;
  }

  .fc-calculator-cta-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 760px) {
  .fc-calculator-shell {
    width: calc(100% - 20px);
    padding-top: 10px;
  }

  .fc-calculator-topbar {
    align-items: stretch;
    gap: 10px;
    padding: 10px;
  }

  .fc-calculator-brand .brand-subtitle {
    font-size: 12px;
  }

  .fc-calculator-nav {
    width: 100%;
    gap: 6px;
  }

  .fc-nav-link {
    flex: 1;
    min-height: 44px;
    padding: 10px;
    font-size: 13px;
  }

  .fc-calculator-hero-wrap {
    border-radius: 24px;
  }

  .fc-calculator-hero {
    padding: 16px;
  }

  .fc-calculator-copy p {
    font-size: 16px;
  }

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

  .fc-calculator-content {
    margin-top: 16px;
  }

  .fc-calculator-article,
  .fc-calculator-faq,
  .fc-calculator-cta {
    border-radius: 24px;
    padding: 16px;
  }

  .fc-calculator-article p,
  .fc-calculator-cta p {
    font-size: 15px;
    line-height: 1.65;
  }

  .fc-calculator-cta-actions {
    width: 100%;
    flex-direction: column;
  }

  .fc-cta-secondary,
  .fc-cta-primary {
    width: 100%;
    min-height: 50px;
    font-size: 15px;
  }

  .fc-form,
  .fc-result-extra {
    grid-template-columns: 1fr;
  }

  .fc-span-2,
  .fc-calc-btn {
    grid-column: span 1;
  }

  .fc-result-secondary {
    float: none;
    margin-top: 12px;
    display: inline-block;
  }
}
