/* ===== FP-FLOW — fulfillment brand styles (blue/cyan accent) ===== */
:root {
  --bg:      #07080d;
  --bg-2:    #0a0c15;
  --text:    #eef2f8;
  --body:    #c7cdda;
  --muted:   #8992a6;
  --line:    rgba(255,255,255,0.09);
  --line-2:  rgba(255,255,255,0.14);
  --card:    rgba(255,255,255,0.035);
  --card-2:  rgba(255,255,255,0.06);
  --accent:  #38a8ff;
  --accent-2:#22d3ee;
  --violet:  #4f6bff;
  --grad:    linear-gradient(115deg, #2f80ff 0%, #22d3ee 60%, #4f6bff 115%);
  --grad-soft: linear-gradient(115deg, rgba(47,128,255,.16), rgba(34,211,238,.16));
  --radius:  18px;
  --maxw:    1180px;
  --ease:    cubic-bezier(.22,.61,.36,1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: var(--bg);
  color: var(--body);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
::selection { background: rgba(56,168,255,.28); color: #fff; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ---- animated aurora background ---- */
.bg { position: fixed; inset: 0; z-index: -2; overflow: hidden; background:
    radial-gradient(1200px 800px at 80% -10%, rgba(34,211,238,.10), transparent 60%),
    radial-gradient(1000px 700px at 0% 100%, rgba(79,107,255,.10), transparent 55%),
    var(--bg); }
.orb { position: absolute; border-radius: 50%; filter: blur(90px); opacity: .5; will-change: transform; }
.orb.a { width: 46vw; height: 46vw; left: -8vw; top: -10vw; background: radial-gradient(circle at 30% 30%, #2f80ff, transparent 70%); animation: drift1 22s var(--ease) infinite alternate; }
.orb.b { width: 40vw; height: 40vw; right: -6vw; top: 4vw; background: radial-gradient(circle at 60% 40%, #22d3ee, transparent 70%); animation: drift2 26s var(--ease) infinite alternate; }
.orb.c { width: 42vw; height: 42vw; left: 30vw; bottom: -18vw; background: radial-gradient(circle at 50% 50%, #4f46e5, transparent 70%); opacity: .4; animation: drift3 30s var(--ease) infinite alternate; }
.grain { position: fixed; inset: 0; z-index: -1; pointer-events: none; opacity: .5;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E"); }
@keyframes drift1 { to { transform: translate(8vw, 6vw) scale(1.15); } }
@keyframes drift2 { to { transform: translate(-7vw, 8vw) scale(1.1); } }
@keyframes drift3 { to { transform: translate(4vw, -8vw) scale(1.2); } }

/* ---- layout ---- */
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
section { position: relative; padding: clamp(72px, 11vw, 140px) 0; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: .78rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 22px;
}
.eyebrow::before { content: ""; width: 26px; height: 1px; background: var(--accent); opacity: .6; }
h1, h2, h3 { font-family: "Sora", "Inter", sans-serif; color: var(--text); line-height: 1.08; letter-spacing: -.02em; font-weight: 700; }
h1 { font-size: clamp(2.4rem, 5.6vw, 4.1rem); }
h2 { font-size: clamp(1.9rem, 4vw, 3rem); }
h3 { font-size: 1.22rem; letter-spacing: -.01em; }
.lead { font-size: clamp(1.05rem, 1.7vw, 1.28rem); color: var(--body); max-width: 46ch; }
.grad-text { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.section-head { max-width: 640px; margin-bottom: 56px; }
.section-head p { margin-top: 18px; color: var(--muted); font-size: 1.08rem; }

/* ---- buttons ---- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; font-family: "Sora", sans-serif;
  font-weight: 600; font-size: .98rem; padding: 15px 26px; border-radius: 999px; cursor: pointer;
  border: 1px solid transparent; transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s; }
.btn svg { width: 18px; height: 18px; }
.btn-primary { background: var(--grad); color: #041225; box-shadow: 0 10px 30px -8px rgba(47,128,255,.5); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 40px -8px rgba(34,211,238,.6); }
.btn-ghost { background: rgba(255,255,255,.04); color: var(--text); border-color: var(--line-2); }
.btn-ghost:hover { transform: translateY(-2px); background: rgba(255,255,255,.08); }
.btn.loading { opacity: .7; pointer-events: none; }
.btn[disabled] { opacity: .55; cursor: not-allowed; }

/* ---- nav ---- */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 50; transition: background .3s, border-color .3s, backdrop-filter .3s;
  border-bottom: 1px solid transparent; }
.nav.scrolled { background: rgba(7,8,13,.72); backdrop-filter: blur(14px); border-bottom-color: var(--line); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.logo { font-family: "Sora", sans-serif; font-weight: 800; letter-spacing: .04em; font-size: 1.05rem; color: #fff; }
.logo span { color: var(--accent); }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a.link { color: var(--muted); font-size: .93rem; font-weight: 500; transition: color .2s; }
.nav-links a.link:hover { color: var(--text); }
.nav-cta { padding: 10px 20px; font-size: .9rem; }

/* ---- hero ---- */
.hero { padding-top: clamp(120px, 16vw, 170px); }
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.hero h1 { margin-bottom: 24px; }
.hero .lead { margin-bottom: 30px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.hero-points { list-style: none; margin-top: 30px; display: grid; gap: 14px; }
.hero-points li { display: flex; gap: 12px; align-items: flex-start; color: var(--body); font-size: 1rem; }
.hero-points .chk { flex: none; width: 24px; height: 24px; border-radius: 50%; background: var(--grad-soft); border: 1px solid var(--line-2);
  display: grid; place-items: center; color: var(--accent); margin-top: 1px; }
.hero-points .chk svg { width: 13px; height: 13px; }
.hero-points b { color: var(--text); font-weight: 600; }

/* ---- form card ---- */
.form-card { background: var(--card); border: 1px solid var(--line); border-radius: 22px; overflow: hidden;
  box-shadow: 0 30px 70px -30px rgba(0,0,0,.8); backdrop-filter: blur(8px); }
.form-card .fc-head { padding: 18px 22px; border-bottom: 1px solid var(--line); display: flex; align-items: center; gap: 10px; }
.form-card .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 10px var(--accent); }
.form-card .fc-head span { font-family: "Sora", sans-serif; font-size: .95rem; color: var(--text); font-weight: 600; }
.form-card .fc-head small { color: var(--muted); font-weight: 500; margin-left: auto; }

.form { padding: 22px; display: grid; gap: 17px; }
.field { display: grid; gap: 7px; }
.field label { font-size: .84rem; font-weight: 600; color: var(--text); }
.field .req { color: var(--accent-2); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 17px; }
input[type=text], input[type=email], input[type=tel], select, textarea {
  width: 100%; background: rgba(255,255,255,.04); border: 1px solid var(--line-2); border-radius: 12px;
  padding: 12px 14px; color: var(--text); font: inherit; font-size: .96rem; transition: border-color .2s, background .2s; }
input::placeholder, textarea::placeholder { color: #656d80; }
input:focus, select:focus, textarea:focus { outline: none; border-color: var(--accent); background: rgba(255,255,255,.06); }
textarea { min-height: 84px; resize: vertical; }
select { appearance: none; -webkit-appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%238992a6' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 13px center; padding-right: 38px; }
select option { background: #0d0f18; color: var(--text); }

/* multi-select chips */
.chips { display: flex; flex-wrap: wrap; gap: 9px; }
.chip { position: relative; }
.chip input { position: absolute; opacity: 0; pointer-events: none; }
.chip span { display: inline-block; padding: 8px 14px; border-radius: 999px; border: 1px solid var(--line-2);
  background: rgba(255,255,255,.03); color: var(--body); font-size: .88rem; cursor: pointer; transition: all .2s; user-select: none; }
.chip input:checked + span { background: var(--grad-soft); border-color: var(--accent); color: #fff; }
.chip input:focus-visible + span { outline: 2px solid var(--accent); outline-offset: 2px; }

/* consent */
.consent { display: flex; gap: 11px; align-items: flex-start; }
.consent input { margin-top: 3px; width: 17px; height: 17px; accent-color: var(--accent); flex: none; }
.consent label { font-size: .9rem; color: var(--body); font-weight: 500; }

.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-msg { font-size: .9rem; min-height: 1px; }
.form-msg.error { color: #ff9a9a; }
.form-foot { color: var(--muted); font-size: .8rem; text-align: center; }

/* ---- services ---- */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.card { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 32px; transition: border-color .3s, transform .3s, background .3s; }
.card:hover { border-color: var(--line-2); transform: translateY(-4px); background: var(--card-2); }
.card .ic { width: 50px; height: 50px; border-radius: 13px; display: grid; place-items: center; margin-bottom: 22px;
  background: var(--grad-soft); border: 1px solid var(--line-2); color: var(--accent); }
.card .ic svg { width: 24px; height: 24px; }
.card h3 { margin-bottom: 10px; }
.card p { color: var(--muted); }

/* feature list */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.feats { list-style: none; display: grid; gap: 16px; }
.feats li { display: flex; gap: 14px; align-items: flex-start; color: var(--body); }
.feats .chk { flex: none; width: 24px; height: 24px; border-radius: 50%; background: var(--grad-soft); border: 1px solid var(--line-2);
  display: grid; place-items: center; color: var(--accent); margin-top: 2px; }
.feats .chk svg { width: 13px; height: 13px; }
.feats b { color: var(--text); font-weight: 600; }

/* ---- CTA band ---- */
.cta-band { text-align: center; }
.cta-inner { background: var(--card); border: 1px solid var(--line); border-radius: 26px; padding: clamp(44px,7vw,80px) 32px;
  position: relative; overflow: hidden; }
.cta-inner::before { content: ""; position: absolute; inset: 0; background: var(--grad-soft); opacity: .6; z-index: 0; }
.cta-inner > * { position: relative; z-index: 1; }
.cta-inner h2 { margin-bottom: 18px; }
.cta-inner p { color: var(--muted); max-width: 52ch; margin: 0 auto 32px; font-size: 1.1rem; }

/* ---- footer ---- */
.footer { border-top: 1px solid var(--line); padding: 54px 0 46px; }
.footer-top { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 20px; margin-bottom: 30px; }
.footer-links { display: flex; gap: 26px; flex-wrap: wrap; }
.footer-links a { color: var(--muted); font-size: .92rem; transition: color .2s; }
.footer-links a:hover { color: var(--text); }
.disclaimer { color: #5b6072; font-size: .78rem; line-height: 1.7; max-width: 90ch; }
.copyright { color: var(--muted); font-size: .85rem; margin-bottom: 18px; }

/* ---- scroll reveal ---- */
.js .reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-d="1"] { transition-delay: .08s; }
.reveal[data-d="2"] { transition-delay: .16s; }
.reveal[data-d="3"] { transition-delay: .24s; }
@media (prefers-reduced-motion: reduce) {
  .js .reveal { opacity: 1; transform: none; transition: none; }
  .orb { animation: none; }
  html { scroll-behavior: auto; }
}

/* ---- responsive ---- */
@media (max-width: 900px) {
  .hero-grid, .two-col { grid-template-columns: 1fr; gap: 40px; }
  .cards { grid-template-columns: 1fr; }
  .nav-links .link { display: none; }
}
@media (max-width: 560px) {
  .field-row { grid-template-columns: 1fr; }
  .footer-top { flex-direction: column; align-items: flex-start; }
}
