/* ── Profit Syndicate marketing ── */

:root {
  --bg:        #0a0e1a;
  --bg-alt:    #0f1729;
  --bg-soft:   #131c33;
  --panel:     #11192c;
  --border:    #1e3a5f;
  --border-soft: #1a2744;
  --text:      #e2e8f0;
  --text-dim:  #94a3b8;
  --text-soft: #64748b;
  --cyan:      #38bdf8;
  --cyan-deep: #0284c7;
  --green:     #22c55e;
  --red:       #ef4444;
  --amber:     #eab308;
  --purple:    #a855f7;
  --font:      -apple-system, BlinkMacSystemFont, 'Inter', 'Segoe UI', system-ui, sans-serif;
  --font-mono: ui-monospace, 'JetBrains Mono', 'SF Mono', 'Menlo', monospace;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html, body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--cyan); text-decoration: none; }
a:hover { text-decoration: underline; }

.wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ── Topbar ─────────────────────────────────────────── */
.topbar {
  background: rgba(10, 14, 26, 0.85);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border-soft);
  padding: 14px 0;
  position: sticky;
  top: 0;
  z-index: 100;
}
.topbar .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
}
.brand:hover { text-decoration: none; }
.mark {
  width: 22px;
  height: 22px;
  background: var(--cyan);
  transform: rotate(45deg);
  border-radius: 3px;
}
.brand-name {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--cyan);
}
.brand-sub {
  font-size: 10px;
  color: var(--text-soft);
  letter-spacing: 1.5px;
  margin-top: 2px;
  text-transform: uppercase;
}
.top-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}
.top-nav a {
  color: var(--text-dim);
  font-size: 13px;
  padding: 8px 14px;
  border-radius: 6px;
}
.top-nav a:hover {
  color: var(--cyan);
  background: rgba(56, 189, 248, 0.08);
  text-decoration: none;
}
.cta-small {
  background: var(--cyan) !important;
  color: var(--bg) !important;
  font-weight: 700 !important;
}
.cta-small:hover { background: #7dd3fc !important; }

/* ── Hero ───────────────────────────────────────────── */
.hero {
  padding: 80px 0 56px;
  background: linear-gradient(180deg, rgba(56, 189, 248, 0.04), transparent);
  border-bottom: 1px solid var(--border-soft);
}
.hero-badge {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 1.5px;
  color: var(--green);
  background: rgba(34, 197, 94, 0.08);
  border: 1px solid rgba(34, 197, 94, 0.25);
  padding: 6px 12px;
  border-radius: 20px;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 28px;
}
.hero h1 {
  font-size: 56px;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}
.hero h1 em {
  font-style: normal;
  color: var(--cyan);
}
.hero-sub {
  font-size: 17px;
  color: var(--text-dim);
  max-width: 680px;
  margin-bottom: 36px;
  line-height: 1.6;
}
.hero-cta-row {
  display: flex;
  gap: 14px;
  margin-bottom: 56px;
  flex-wrap: wrap;
}
.btn-primary {
  background: var(--cyan);
  color: var(--bg);
  font-weight: 700;
  font-size: 14px;
  padding: 14px 22px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  display: inline-block;
  transition: background 0.15s;
}
.btn-primary:hover {
  background: #7dd3fc;
  text-decoration: none;
}
.btn-big {
  font-size: 15px;
  padding: 16px 28px;
}
.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
  font-weight: 600;
  font-size: 14px;
  padding: 14px 22px;
  border-radius: 8px;
  display: inline-block;
}
.btn-ghost:hover {
  background: var(--bg-alt);
  text-decoration: none;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-top: 8px;
}
.stat {
  background: var(--panel);
  border: 1px solid var(--border-soft);
  border-radius: 10px;
  padding: 18px 20px;
}
.stat-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-soft);
  margin-bottom: 6px;
}
.stat-value {
  font-size: 28px;
  font-weight: 700;
  color: var(--cyan);
  font-family: var(--font-mono);
  margin-bottom: 4px;
}
.stat-sub {
  font-size: 12px;
  color: var(--text-dim);
}

/* ── Sections ───────────────────────────────────────── */
.section {
  padding: 80px 0;
  border-bottom: 1px solid var(--border-soft);
}
.section-alt {
  background: var(--bg-alt);
}
.section-label {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--cyan);
  font-weight: 600;
  margin-bottom: 14px;
}
.section h2 {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin-bottom: 48px;
}
.section h2 em {
  font-style: normal;
  color: var(--cyan);
}

/* ── Steps ──────────────────────────────────────────── */
.steps {
  display: grid;
  gap: 24px;
}
.step {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 24px;
  background: var(--panel);
  border: 1px solid var(--border-soft);
  border-radius: 12px;
  padding: 28px 32px;
}
.step-num {
  font-size: 32px;
  font-weight: 800;
  color: var(--cyan);
  font-family: var(--font-mono);
  line-height: 1;
}
.step-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}
.step-body p {
  color: var(--text-dim);
  font-size: 14px;
  line-height: 1.6;
}

/* ── Features ──────────────────────────────────────── */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
}
.feat {
  background: var(--panel);
  border: 1px solid var(--border-soft);
  border-radius: 10px;
  padding: 24px;
  transition: border-color 0.15s;
}
.feat:hover {
  border-color: var(--border);
}
.feat-ico {
  font-size: 24px;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(56, 189, 248, 0.08);
  color: var(--c, var(--cyan));
  margin-bottom: 14px;
  border: 1px solid rgba(56, 189, 248, 0.18);
}
.feat-title {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 8px;
}
.feat-desc {
  color: var(--text-dim);
  font-size: 13px;
  line-height: 1.55;
}

/* ── Who it's for ──────────────────────────────────── */
.who-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.who-card {
  background: var(--panel);
  border: 1px solid var(--border-soft);
  border-radius: 12px;
  padding: 28px 32px;
}
.who-yes { border-left: 3px solid var(--green); }
.who-no  { border-left: 3px solid var(--red); }
.who-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-soft);
}
.who-ico {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
}
.who-ico.ok { background: rgba(34, 197, 94, 0.15); color: var(--green); }
.who-ico.no { background: rgba(239, 68, 68, 0.15); color: var(--red); }
.who-title {
  font-size: 15px;
  font-weight: 700;
}
.who-card ul {
  list-style: none;
}
.who-card li {
  position: relative;
  padding: 8px 0 8px 22px;
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.5;
}
.who-card li::before {
  content: '·';
  position: absolute;
  left: 8px;
  top: 8px;
  color: var(--text-soft);
  font-weight: 700;
}
.who-card em {
  color: var(--text);
  font-style: normal;
}

/* ── Apply form ────────────────────────────────────── */
.section-apply {
  background: var(--bg-alt);
}
.apply-head {
  text-align: center;
  margin-bottom: 40px;
}
.apply-sub {
  color: var(--text-dim);
  font-size: 15px;
  max-width: 540px;
  margin: 0 auto;
}
.apply-form {
  max-width: 560px;
  margin: 0 auto;
  background: var(--panel);
  border: 1px solid var(--border-soft);
  border-radius: 12px;
  padding: 32px;
}
.field {
  margin-bottom: 18px;
}
.field label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}
.field input,
.field textarea {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--border-soft);
  color: var(--text);
  font-family: inherit;
  font-size: 14px;
  padding: 11px 14px;
  border-radius: 7px;
  outline: none;
  transition: border-color 0.15s;
}
.field input:focus,
.field textarea:focus {
  border-color: var(--cyan);
}
.field textarea {
  resize: vertical;
  min-height: 100px;
  font-family: inherit;
  line-height: 1.5;
}
#submit-btn {
  width: 100%;
  margin-top: 8px;
}
#submit-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.form-msg {
  margin-top: 16px;
  font-size: 13px;
  text-align: center;
  min-height: 18px;
}
.form-msg.ok {
  color: var(--green);
}
.form-msg.err {
  color: var(--red);
}

/* ── Footer ────────────────────────────────────────── */
.footer {
  padding: 28px 0;
  font-size: 12px;
  color: var(--text-soft);
}
.footer .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.foot-right a { color: var(--text-dim); }

/* ── Responsive ────────────────────────────────────── */
@media (max-width: 720px) {
  .hero { padding: 56px 0 40px; }
  .hero h1 { font-size: 38px; }
  .hero-sub { font-size: 15px; }
  .section { padding: 56px 0; }
  .section h2 { font-size: 26px; margin-bottom: 32px; }
  .who-grid { grid-template-columns: 1fr; }
  .step { grid-template-columns: 48px 1fr; gap: 16px; padding: 22px; }
  .step-num { font-size: 24px; }
  .top-nav a:not(.cta-small) { display: none; }
  .footer .wrap { flex-direction: column; gap: 8px; text-align: center; }
}
