/* ── Orbion Page Styles ──────────────────────────────────────────────────── */

/* Hero */
.orb-hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  padding: 100px 0 60px; overflow: hidden;
  background: linear-gradient(160deg, #050a14 0%, #0c1220 60%, #0f0a2a 100%);
}
.orb-hero-bg { position: absolute; inset: 0; pointer-events: none; }
.orb-blob { position: absolute; border-radius: 50%; filter: blur(80px); }
.orb-blob-1 { width: 500px; height: 500px; background: radial-gradient(circle, #6366f1, transparent); top: -100px; right: -100px; opacity: .3; }
.orb-blob-2 { width: 400px; height: 400px; background: radial-gradient(circle, #8b5cf6, transparent); bottom: 0; left: 100px; opacity: .2; }
.orb-hero-content { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.orb-logo-wrap {
  width: 64px; height: 64px; background: linear-gradient(135deg, #6366f1, #4f46e5);
  border-radius: 16px; display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px; box-shadow: 0 8px 32px rgba(99,102,241,.35);
}
.orb-badge {
  display: inline-block; padding: 5px 14px; background: rgba(99,102,241,.15);
  border: 1px solid rgba(99,102,241,.3); border-radius: 20px;
  font-size: 11px; font-weight: 700; color: #818cf8;
  letter-spacing: .08em; text-transform: uppercase; margin-bottom: 20px;
}
.orb-hero-text h1 {
  font-size: clamp(32px, 5vw, 56px); font-weight: 900;
  line-height: 1.08; letter-spacing: -.03em; margin-bottom: 20px; color: #fff;
}
.orb-hero-text p { font-size: 17px; color: #94a3b8; line-height: 1.7; margin-bottom: 36px; max-width: 480px; }
.orb-hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

/* Hero visual */
.orb-screen-wrap { display: flex; justify-content: center; }
.orb-screen {
  width: 100%; max-width: 500px; background: #0c1220;
  border: 1px solid rgba(255,255,255,.08); border-radius: 14px;
  overflow: hidden; box-shadow: 0 32px 80px rgba(0,0,0,.5);
}
.orb-screen-bar { height: 38px; background: #080d18; border-bottom: 1px solid rgba(255,255,255,.06); display: flex; align-items: center; padding: 0 14px; gap: 6px; }
.screen-url { flex:1; text-align:center; font-size:11px; color:#475569; background:rgba(255,255,255,.04); border-radius:5px; padding:3px 10px; margin: 0 8px; }
.orb-screen-img { width: 100%; height: auto; display: block; }
.orb-screen-placeholder { width: 100%; min-height: 280px; display: flex; align-items: center; justify-content: center; background: #080d18; }
.orb-placeholder-grid { display: flex; gap: 16px; padding: 24px; }
.orb-app-card { width: 120px; background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.06); border-radius: 12px; padding: 16px; display: flex; flex-direction: column; align-items: center; gap: 10px; }
.orb-app-icon { width: 40px; height: 40px; border-radius: 10px; }
.c1 .orb-app-icon { background: #3b82f6; }
.c2 .orb-app-icon { background: #f97316; }
.c3 .orb-app-icon { background: #8b5cf6; }
.orb-app-name { height: 8px; width: 80%; background: rgba(255,255,255,.1); border-radius: 4px; }

/* Numbers */
.orb-numbers { background: rgba(99,102,241,.08); border-top: 1px solid rgba(99,102,241,.2); border-bottom: 1px solid rgba(99,102,241,.2); padding: 32px 0; }
.orb-numbers-grid { display: flex; align-items: center; justify-content: center; gap: 0; flex-wrap: wrap; }
.orb-num { padding: 0 48px; text-align: center; }
.orb-num-val { font-size: 30px; font-weight: 900; color: #818cf8; letter-spacing: -.02em; }
.orb-num-label { font-size: 12px; color: var(--text-muted); margin-top: 4px; letter-spacing: .03em; }
.orb-num-sep { width: 1px; height: 40px; background: rgba(99,102,241,.2); }

/* Features */
.orb-features-section { background: var(--bg); }
.orb-features-list { display: flex; flex-direction: column; gap: 80px; margin-top: 60px; }
.orb-feature-row { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.orb-feature-row-rev .orb-feature-content { order: 2; }
.orb-feature-row-rev .orb-feature-visual { order: 1; }
.orb-feature-icon-wrap {
  width: 52px; height: 52px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center; margin-bottom: 16px;
}
.orb-fi-indigo { background: rgba(99,102,241,.15); color: #818cf8; }
.orb-fi-orange { background: rgba(249,115,22,.15); color: #f97316; }
.orb-fi-green  { background: rgba(16,185,129,.15);  color: #10b981; }
.orb-fi-purple { background: rgba(139,92,246,.15);  color: #a78bfa; }
.orb-feature-content h3 { font-size: 24px; font-weight: 800; margin-bottom: 12px; letter-spacing: -.02em; }
.orb-feature-content p  { color: var(--text-dim); font-size: 15px; line-height: 1.7; margin-bottom: 16px; }
.orb-feature-bullets { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.orb-feature-bullets li { display: flex; align-items: center; gap: 8px; font-size: 14px; color: var(--text-dim); }
.orb-feature-bullets li::before { content: '✓'; color: #818cf8; font-weight: 700; }

/* Mock Designer */
.orb-mock-designer { background: var(--bg2); border: 1px solid var(--border); border-radius: 12px; overflow: hidden; }
.orb-mock-toolbar { background: var(--bg3); padding: 8px 12px; display: flex; gap: 6px; border-bottom: 1px solid var(--border); }
.orb-mock-btn { width: 28px; height: 22px; background: rgba(99,102,241,.15); border-radius: 4px; }
.orb-mock-canvas { padding: 16px; display: flex; flex-direction: column; gap: 12px; }
.orb-mock-field { display: flex; flex-direction: column; gap: 4px; }
.orb-mock-field.full { width: 100%; }
.orb-mock-field.half { flex: 1; }
.orb-mock-row { display: flex; gap: 10px; }
.orb-mock-lbl { height: 8px; width: 60px; background: rgba(255,255,255,.1); border-radius: 3px; }
.orb-mock-inp { height: 28px; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08); border-radius: 5px; }
.orb-mock-sel { height: 28px; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08); border-radius: 5px; }
.orb-mock-area { height: 70px; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08); border-radius: 5px; }
.orb-mock-btn-row { display: flex; justify-content: flex-end; }
.orb-mock-submit { width: 90px; height: 28px; background: linear-gradient(135deg, #6366f1, #4f46e5); border-radius: 6px; }

/* Mock Workflow */
.orb-mock-workflow { background: var(--bg2); border: 1px solid var(--border); border-radius: 12px; padding: 24px; display: flex; flex-direction: column; align-items: center; gap: 6px; }
.orb-wf-node { padding: 8px 16px; border-radius: 8px; font-size: 11px; font-weight: 600; text-align: center; min-width: 120px; }
.orb-wf-start  { background: rgba(16,185,129,.15); color: #10b981; border: 1px solid rgba(16,185,129,.3); }
.orb-wf-action { background: rgba(99,102,241,.15); color: #818cf8; border: 1px solid rgba(99,102,241,.3); }
.orb-wf-cond   { background: rgba(245,158,11,.15);  color: #f59e0b; border: 1px solid rgba(245,158,11,.3); }
.orb-wf-approve { background: rgba(249,115,22,.15); color: #f97316; border: 1px solid rgba(249,115,22,.3); }
.orb-wf-end    { background: rgba(16,185,129,.15);  color: #10b981; border: 1px solid rgba(16,185,129,.3); }
.orb-wf-arrow  { font-size: 16px; color: var(--text-muted); }
.orb-wf-branches { display: flex; gap: 24px; }
.orb-wf-branch { display: flex; flex-direction: column; align-items: center; gap: 6px; }
.orb-wf-branch-lbl { font-size: 10px; color: var(--text-muted); font-weight: 600; }

/* Mock Chat */
.orb-mock-chat { background: var(--bg2); border: 1px solid var(--border); border-radius: 12px; padding: 16px; display: flex; flex-direction: column; gap: 12px; }
.orb-chat-msg { display: flex; gap: 8px; align-items: flex-end; }
.orb-chat-right { flex-direction: row-reverse; }
.orb-chat-avatar { width: 28px; height: 28px; border-radius: 50%; background: #6366f1; display: flex; align-items: center; justify-content: center; font-size: 10px; font-weight: 700; color: #fff; flex-shrink: 0; }
.orb-av-r { background: #10b981; }
.orb-chat-bubble { background: rgba(255,255,255,.07); border-radius: 10px 10px 10px 2px; padding: 8px 12px; font-size: 12px; color: var(--text); max-width: 200px; }
.orb-bubble-r { background: rgba(99,102,241,.2); border-radius: 10px 10px 2px 10px; }
.orb-chat-attach { display: flex; align-items: center; gap: 6px; padding: 6px 10px; background: rgba(255,255,255,.04); border: 1px solid var(--border); border-radius: 6px; font-size: 11px; color: var(--text-muted); }
.orb-chat-input { padding: 8px 12px; background: rgba(255,255,255,.05); border: 1px solid var(--border); border-radius: 8px; font-size: 11px; color: #475569; }

/* Mock DB */
.orb-mock-db { background: var(--bg2); border: 1px solid var(--border); border-radius: 12px; padding: 20px; }
.orb-db-conn { display: flex; align-items: center; gap: 12px; padding-bottom: 14px; border-bottom: 1px solid var(--border); margin-bottom: 14px; }
.orb-db-icon { font-size: 24px; }
.orb-db-name { font-size: 13px; font-weight: 600; color: var(--text); }
.orb-db-host { font-size: 11px; color: var(--text-muted); margin-top: 2px; font-family: monospace; }
.orb-db-status { color: #10b981; font-size: 18px; margin-left: auto; }
.orb-db-tables { display: flex; flex-direction: column; gap: 8px; }
.orb-db-table { font-size: 12px; color: var(--text-dim); padding: 6px 10px; background: rgba(255,255,255,.04); border-radius: 6px; font-family: monospace; }

/* Case Study */
.orb-case-section { background: var(--bg2); }
.orb-screenshots { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin: 40px 0; }
.orb-screenshot-item { display: flex; flex-direction: column; gap: 12px; }
.orb-ss-browser { background: #0c1220; border: 1px solid rgba(255,255,255,.08); border-radius: 12px; overflow: hidden; }
.orb-ss-bar { height: 36px; background: #080d18; display: flex; align-items: center; padding: 0 12px; gap: 5px; border-bottom: 1px solid rgba(255,255,255,.06); }
.orb-ss-content { padding: 16px; min-height: 200px; }
.orb-ss-caption { font-size: 12px; color: var(--text-muted); text-align: center; line-height: 1.5; }

/* Portal mock */
.orb-ss-portal { display: flex; flex-direction: column; gap: 12px; }
.orb-ss-header { display: flex; justify-content: space-between; align-items: center; font-size: 11px; }
.orb-ss-logo { color: var(--text); font-weight: 600; font-size: 12px; }
.orb-ss-time { color: var(--text-muted); font-size: 13px; font-weight: 700; }
.orb-ss-apps { display: flex; gap: 10px; }
.orb-ss-app { flex: 1; padding: 12px; border-radius: 8px; display: flex; flex-direction: column; align-items: center; gap: 6px; text-align: center; }
.orb-app-blue { background: rgba(59,130,246,.2); border: 1px solid rgba(59,130,246,.3); }
.orb-app-orange { background: rgba(249,115,22,.2); border: 1px solid rgba(249,115,22,.3); }
.orb-ss-app-icon { font-size: 18px; color: #fff; opacity: .7; }
.orb-ss-app-name { font-size: 10px; font-weight: 700; color: #fff; }
.orb-ss-app-desc { font-size: 9px; color: rgba(255,255,255,.5); }

/* Form mock */
.orb-ss-form { display: flex; flex-direction: column; gap: 10px; }
.orb-ss-form-header { display: flex; justify-content: space-between; align-items: center; }
.orb-ss-form-title { font-size: 11px; font-weight: 700; color: var(--text); }
.orb-ss-btns { display: flex; gap: 4px; }
.orb-ss-btn-cancel { font-size: 9px; padding: 3px 8px; border-radius: 4px; background: rgba(255,255,255,.1); color: var(--text-dim); }
.orb-ss-btn-save   { font-size: 9px; padding: 3px 8px; border-radius: 4px; background: #6366f1; color: #fff; }
.orb-ss-fields { display: flex; flex-direction: column; gap: 8px; }
.orb-ss-field-row { display: flex; gap: 6px; }
.orb-ss-field { display: flex; flex-direction: column; gap: 2px; flex: 1; }
.orb-ss-fl { font-size: 9px; color: var(--text-muted); }
.orb-ss-fi { font-size: 10px; padding: 3px 6px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.08); border-radius: 3px; color: var(--text-dim); }
.orb-fi-sel { color: var(--text); }
.orb-fi-empty { height: 18px; }
.orb-fi-area { height: 36px; }
.orb-ss-upload { font-size: 9px; color: #6366f1; text-align: center; padding: 8px; border: 1px dashed rgba(99,102,241,.3); border-radius: 4px; }

/* Table mock */
.orb-ss-table { display: flex; flex-direction: column; gap: 0; }
.orb-ss-table-header { display: grid; grid-template-columns: 80px 70px 80px 90px 1fr; gap: 4px; padding: 4px 8px; font-size: 9px; font-weight: 700; color: var(--text-muted); background: rgba(255,255,255,.03); border-radius: 4px 4px 0 0; }
.orb-ss-row { display: grid; grid-template-columns: 80px 70px 80px 90px 1fr; gap: 4px; padding: 5px 8px; font-size: 9px; color: var(--text-dim); border-bottom: 1px solid rgba(255,255,255,.04); }
.orb-row-selected { background: rgba(99,102,241,.08); }
.orb-st { display: inline-block; padding: 1px 5px; border-radius: 3px; font-size: 8px; font-weight: 700; }
.orb-st-open { background: rgba(249,115,22,.2); color: #f97316; }
.orb-st-work { background: rgba(16,185,129,.2); color: #10b981; }
.orb-case-cta { text-align: center; margin-top: 16px; }

/* How it works */
.orb-howto-section { background: var(--bg3); }
.orb-steps { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr; gap: 0; align-items: start; margin-top: 56px; }
.orb-step { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 0 12px; }
.orb-step-num { width: 36px; height: 36px; border-radius: 50%; background: linear-gradient(135deg, #6366f1, #4f46e5); color: #fff; font-size: 16px; font-weight: 800; display: flex; align-items: center; justify-content: center; margin-bottom: 12px; box-shadow: 0 4px 16px rgba(99,102,241,.3); }
.orb-step-icon { width: 52px; height: 52px; background: rgba(99,102,241,.1); border-radius: 14px; display: flex; align-items: center; justify-content: center; color: #818cf8; margin-bottom: 14px; }
.orb-step h4 { font-size: 15px; font-weight: 700; margin-bottom: 8px; }
.orb-step p  { font-size: 13px; color: var(--text-dim); line-height: 1.6; }
.orb-step-arrow { font-size: 24px; color: rgba(99,102,241,.4); padding: 48px 0 0; align-self: start; }

/* CTA */
.orb-cta-section {
  background: linear-gradient(135deg, #1e1b4b, #312e81);
  padding: 80px 0;
}
.orb-cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.orb-cta-inner h2 { font-size: 32px; font-weight: 800; color: #fff; margin-bottom: 8px; }
.orb-cta-inner p  { color: rgba(255,255,255,.6); font-size: 16px; }
.orb-cta-btns { display: flex; gap: 12px; flex-shrink: 0; }

/* Responsive */
@media (max-width: 1024px) {
  .orb-hero-content { grid-template-columns: 1fr; }
  .orb-hero-visual { display: none; }
  .orb-feature-row { grid-template-columns: 1fr; }
  .orb-feature-row-rev .orb-feature-content { order: 0; }
  .orb-feature-row-rev .orb-feature-visual { order: 0; }
  .orb-screenshots { grid-template-columns: 1fr; }
  .orb-steps { grid-template-columns: 1fr 1fr; gap: 24px; }
  .orb-step-arrow { display: none; }
  .orb-cta-inner { flex-direction: column; text-align: center; }
}
@media (max-width: 768px) {
  .orb-steps { grid-template-columns: 1fr; }
  .orb-num { padding: 16px; }
  .orb-num-sep { display: none; }
}
