:root{
  --fc-navy:#101736;
  --fc-ink:#101828;
  --fc-muted:rgba(16,24,40,.72);
  --fc-yellow:#ffcc0a;
  --fc-green:#0f8a6c;
  --fc-magenta:#a54a97;
  --fc-line:rgba(16,24,40,.12);
  --fc-soft:#f4f7fb;
  --fc-white:#ffffff;
  --fc-shadow:0 22px 60px rgba(16,24,40,.18);
}

*{box-sizing:border-box}
html,body{margin:0;padding:0}
body.fc-page{
  color:var(--fc-ink);
  background:#fff;
}

.fc-page main{
  font-family:Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.fc-page main img{max-width:100%;display:block}
.fc-page main a{color:inherit;text-decoration:none}

.fc-wrap{
  width:min(1120px, calc(100% - 40px));
  margin:0 auto;
}

.fc-hero{
  background:
    linear-gradient(135deg, rgba(16,23,54,.98) 0%, rgba(20,41,76,.96) 52%, rgba(15,138,108,.94) 100%);
  color:#fff;
  padding:70px 0 60px;
}

.fc-hero__grid{
  display:grid;
  grid-template-columns:minmax(0, 1fr) minmax(310px, 430px);
  gap:42px;
  align-items:center;
}

.fc-kicker{
  margin:0 0 12px;
  color:rgba(255,255,255,.76);
  font-size:.78rem;
  font-weight:800;
  letter-spacing:.12em;
  text-transform:uppercase;
}

.fc-kicker--dark{color:rgba(16,24,40,.62)}

.fc-hero h1,
.fc-section h2,
.fc-cta h2{
  margin:0;
  line-height:1.06;
  letter-spacing:0;
}

.fc-hero h1{
  max-width:780px;
  font-size:clamp(2.45rem, 5vw, 4.8rem);
}

.fc-lead{
  margin:18px 0 0;
  max-width:68ch;
  color:rgba(255,255,255,.82);
  font-size:1.08rem;
  line-height:1.65;
}

.fc-actions,
.fc-cta__actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:26px;
}

.fc-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:46px;
  padding:12px 18px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.24);
  font-weight:800;
  transition:transform .18s ease, border-color .18s ease, background .18s ease;
}

.fc-btn:hover{transform:translateY(-2px)}
.fc-btn--primary{
  background:var(--fc-yellow);
  border-color:var(--fc-yellow);
  color:#111326;
}
.fc-btn--ghost{
  background:rgba(255,255,255,.08);
  color:#fff;
}

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

.fc-pills li{
  padding:9px 11px;
  border:1px solid rgba(255,255,255,.2);
  border-radius:999px;
  background:rgba(255,255,255,.08);
  color:rgba(255,255,255,.88);
  font-size:.9rem;
  font-weight:700;
}

.fc-hero__media,
.fc-photo{
  margin:0;
}

.fc-hero__media{
  display:grid;
  gap:12px;
  justify-items:center;
}

.fc-hero__media img{
  width:min(100%, 390px);
  padding:12px;
  border:1px solid rgba(255,255,255,.55);
  border-radius:30px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.96), rgba(255,204,10,.9) 42%, rgba(255,255,255,.88) 58%, rgba(165,74,151,.72)),
    #ffcc0a;
  box-shadow:
    0 0 0 1px rgba(255,204,10,.36),
    0 22px 60px rgba(0,0,0,.34),
    inset 0 0 0 1px rgba(255,255,255,.5);
}

.fc-hero__media figcaption,
.fc-photo figcaption{
  color:rgba(255,255,255,.72);
  font-size:.86rem;
  text-align:center;
}

.fc-section{
  background:var(--fc-navy);
  color:#fff;
  padding:72px 0;
}

.fc-section--white{
  background:#fff;
  color:var(--fc-ink);
}

.fc-section h2,
.fc-cta h2{
  font-size:clamp(1.9rem, 3.2vw, 3.05rem);
}

.fc-section p,
.fc-cta p{
  color:var(--fc-muted);
  line-height:1.7;
}

.fc-section:not(.fc-section--white) p{
  color:rgba(255,255,255,.74);
}

.fc-intro,
.fc-split{
  display:grid;
  grid-template-columns:minmax(0, 1fr) minmax(300px, .76fr);
  gap:28px;
  align-items:center;
}

.fc-intro__panel{
  border:1px solid var(--fc-line);
  border-radius:8px;
  background:var(--fc-soft);
  padding:24px;
  display:grid;
  gap:10px;
}

.fc-intro__panel strong{
  font-size:1.2rem;
  color:var(--fc-navy);
}

.fc-intro__panel span{
  color:var(--fc-muted);
  line-height:1.65;
}

.fc-section__head{
  max-width:780px;
  margin-bottom:26px;
}

.fc-section__head--dark{color:var(--fc-ink)}

.fc-grid4{
  display:grid;
  grid-template-columns:repeat(4, minmax(0, 1fr));
  gap:16px;
}

.fc-card,
.fc-steps article{
  border:1px solid rgba(255,255,255,.16);
  border-radius:8px;
  background:rgba(255,255,255,.08);
  padding:20px;
}

.fc-card span,
.fc-steps span{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:36px;
  height:36px;
  border-radius:50%;
  background:var(--fc-yellow);
  color:#111326;
  font-weight:900;
}

.fc-card h3,
.fc-steps h3{
  margin:18px 0 8px;
  font-size:1.05rem;
}

.fc-card p,
.fc-steps p{
  margin:0;
  font-size:.96rem;
}

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

.fc-checklist li{
  border:1px solid var(--fc-line);
  border-radius:8px;
  padding:16px 18px;
  background:var(--fc-soft);
  color:rgba(16,24,40,.82);
  line-height:1.55;
  font-weight:700;
}

.fc-ai-section{
  padding:52px 0 62px;
}

.fc-ai-layout{
  display:grid;
  grid-template-columns:minmax(0, 610px) minmax(320px, 352px);
  gap:126px;
  align-items:center;
}

.fc-ai-copy{
  padding-top:12px;
}

.fc-ai-copy .fc-kicker{
  margin-bottom:14px;
  color:#34405a;
  font-size:.73rem;
  letter-spacing:.12em;
}

.fc-ai-copy h2{
  max-width:560px;
  font-family:"Bebas Neue", Impact, sans-serif;
  font-size:clamp(3rem, 5.1vw, 4.15rem);
  line-height:1;
  color:#000e2b;
}

.fc-ai-copy > p{
  max-width:640px;
  margin:24px 0 46px;
  color:#22304a;
  font-size:1rem;
  line-height:1.7;
}

.fc-ai-copy .fc-checklist{
  max-width:472px;
  gap:12px;
}

.fc-ai-copy .fc-checklist li{
  min-height:60px;
  display:flex;
  align-items:center;
  padding:17px 18px;
  border-color:#d6dce7;
  border-radius:7px;
  background:#f3f6fa;
  color:#1f2b40;
  font-size:1rem;
  line-height:1.45;
  font-weight:800;
}

.fc-ai-frame{
  position:relative;
  width:100%;
  min-height:626px;
  border:5px solid #050505;
  background:#050505;
  overflow:hidden;
}

.fc-ai-video{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center center;
  display:block;
}

.fc-visuals{
  display:grid;
  grid-template-columns:minmax(0, 1fr) minmax(280px, 380px);
  gap:28px;
  align-items:center;
}

.fc-photo{
  display:grid;
  gap:12px;
}

.fc-photo img{
  width:100%;
  max-height:680px;
  object-fit:contain;
  border-radius:8px;
  background:#eef2f7;
  box-shadow:var(--fc-shadow);
}

.fc-reel{
  justify-self:center;
  width:min(100%, 320px);
}

.fc-reel__frame{
  position:relative;
  overflow:hidden;
  border:10px solid #0b1022;
  border-radius:28px;
  background:#0b1022;
  aspect-ratio:9 / 16;
  box-shadow:0 26px 70px rgba(0,0,0,.32);
}

.fc-reel__frame video{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  background:#111326;
}

.fc-reel__fallback{
  position:absolute;
  inset:0;
  display:none;
  align-items:end;
  background:#111326;
  overflow:hidden;
}

.fc-reel__fallback img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  opacity:.74;
}

.fc-reel__fallback:after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg, rgba(0,0,0,.05), rgba(0,0,0,.72));
}

.fc-reel__fallback div{
  position:relative;
  z-index:1;
  display:grid;
  gap:6px;
  padding:22px;
  color:#fff;
}

.fc-reel__fallback strong{
  font-size:1.2rem;
}

.fc-reel__fallback span{
  color:rgba(255,255,255,.78);
  line-height:1.45;
  font-weight:700;
}

.fc-reel__frame.is-fallback video{
  display:none;
}

.fc-reel__frame.is-fallback .fc-reel__fallback{
  display:flex;
}

.fc-reel__tag{
  position:absolute;
  left:14px;
  top:14px;
  padding:7px 10px;
  border-radius:999px;
  background:rgba(255,204,10,.92);
  color:#111326;
  font-size:.78rem;
  font-weight:900;
  z-index:2;
}

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

.fc-section--white .fc-steps article{
  border-color:var(--fc-line);
  background:var(--fc-soft);
}

.fc-section--white .fc-steps p{
  color:var(--fc-muted);
}

.fc-cta{
  padding:72px 0;
  background:
    linear-gradient(135deg, #111326 0%, #143c63 58%, #a54a97 100%);
  color:#fff;
}

.fc-cta__inner{
  display:flex;
  justify-content:space-between;
  gap:28px;
  align-items:center;
}

.fc-cta p{
  max-width:760px;
  color:rgba(255,255,255,.76);
}

@media (max-width: 980px){
  .fc-hero__grid,
  .fc-intro,
  .fc-split,
  .fc-ai-layout,
  .fc-visuals{
    grid-template-columns:1fr;
  }
  .fc-ai-layout{gap:34px}
  .fc-ai-copy .fc-checklist{max-width:none}
  .fc-ai-frame{
    min-height:420px;
    max-width:520px;
  }
  .fc-grid4{grid-template-columns:repeat(2, minmax(0, 1fr))}
  .fc-cta__inner{flex-direction:column;align-items:flex-start}
}

@media (max-width: 620px){
  .fc-wrap{width:min(1120px, calc(100% - 28px))}
  .fc-hero{padding:54px 0 46px}
  .fc-section,
  .fc-cta{padding:56px 0}
  .fc-ai-section{padding:44px 0 52px}
  .fc-ai-copy > p{margin-bottom:28px}
  .fc-ai-frame{min-height:330px;border-width:4px}
  .fc-grid4,
  .fc-steps{grid-template-columns:1fr}
  .fc-btn{width:100%}
}

@media (prefers-reduced-motion: reduce){
  .fc-btn{transition:none}
  .fc-btn:hover{transform:none}
}
