@import url('https://fonts.googleapis.com/css2?family=Exo+2:wght@400;500;600;700;800&display=swap'); :root { --brand-orange: #fd6216; --brand-orange-dark: #e45a14; --brand-navy: #050026; --ink: #100b2f; --bg-soft: #f6f8ff; } * { box-sizing: border-box; } body { margin: 0; font-family: 'Exo 2', sans-serif; color: var(--ink); background: radial-gradient(120% 90% at 0% 0%, rgba(253, 98, 22, 0.22), transparent 52%), radial-gradient(100% 80% at 100% 0%, rgba(26, 54, 93, 0.16), transparent 56%), linear-gradient(180deg, #fff9f4 0%, #f8f9ff 48%, #eef2ff 100%); } .container { width: min(1140px, calc(100% - 32px)); margin: 0 auto; } .topbar { position: sticky; top: 0; z-index: 40; border-bottom: 1px solid rgba(15, 23, 42, 0.08); background: rgba(255, 255, 255, 0.82); backdrop-filter: blur(10px); } .nav-row { min-height: 74px; display: flex; align-items: center; justify-content: space-between; } .brand-logo { height: 46px; width: auto; } .nav-actions { display: flex; gap: 10px; } .landing { min-height: 100vh; } .hero-wrap { padding: 38px 0 20px; } .hero-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 18px; } .eyebrow { margin: 0; font-weight: 700; color: var(--brand-orange); } .hero-title { margin: 8px 0 12px; font-size: clamp(30px, 4vw, 52px); line-height: 1.06; } .hero-copy { margin: 0; color: #475569; font-size: 16px; } .hero-actions { margin-top: 18px; display: flex; gap: 10px; flex-wrap: wrap; } .hero-panel { border: 1px solid #dbe1ec; border-radius: 18px; background: linear-gradient(150deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.78)); padding: 16px; box-shadow: 0 20px 42px -30px rgba(2, 6, 23, 0.66); } .hero-panel h3 { margin: 0 0 10px; font-size: 20px; } .chip-grid { display: flex; flex-wrap: wrap; gap: 8px; } .chip { border-radius: 999px; border: 1px solid #fed7aa; background: #fff7ed; color: #9a3412; font-size: 12px; font-weight: 700; padding: 6px 10px; } .section { padding: 28px 0; } .section.soft { background: linear-gradient(180deg, rgba(255, 255, 255, 0.26), rgba(255, 255, 255, 0.6)); border-top: 1px solid rgba(148, 163, 184, 0.24); } .section-title { margin: 0; font-size: 30px; } .section-copy { margin: 8px 0 0; color: #64748b; } .role-grid { margin-top: 16px; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px; } .role-card, .card { border: 1px solid #dbe1ec; border-radius: 16px; background: #fff; padding: 14px; } .role-card h3 { margin: 8px 0; font-size: 22px; } .role-card p, .card p, .note { margin: 0; color: #64748b; font-size: 14px; line-height: 1.5; } .role-badge { display: inline-block; border-radius: 999px; border: 1px solid rgba(253, 98, 22, 0.36); background: rgba(253, 98, 22, 0.1); color: #9a3412; font-size: 11px; font-weight: 700; padding: 4px 9px; } .role-card .btn { margin-top: 12px; } .split { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; } .card h3 { margin-top: 0; } .btn { border: 1px solid #cbd5e1; border-radius: 10px; padding: 10px 14px; font-weight: 700; background: #fff; color: #0f172a; text-decoration: none; display: inline-flex; align-items: center; justify-content: center; cursor: pointer; } .btn.primary { border-color: var(--brand-orange); background: var(--brand-orange); color: #fff; } .btn.primary:hover { background: var(--brand-orange-dark); } .page { max-width: 980px; margin: 0 auto; padding: 24px; } .title { margin: 0; font-size: 30px; font-weight: 800; } .subtitle { margin-top: 8px; color: #64748b; } .grid { display: grid; grid-template-columns: 1.25fr 0.75fr; gap: 16px; margin-top: 18px; } .field { margin-bottom: 12px; } .label { display: block; margin-bottom: 6px; font-size: 13px; font-weight: 700; } .input, .select, .textarea { width: 100%; border: 1px solid #cbd5e1; border-radius: 10px; padding: 10px; font-size: 14px; background: #fff; } .textarea { min-height: 84px; } .inline { display: flex; align-items: center; gap: 8px; } .actions { display: flex; gap: 10px; margin-top: 16px; } .note { margin-top: 8px; font-size: 12px; } .ok { color: #0f766e; font-weight: 700; } .error { margin-top: 6px; color: #b91c1c; font-size: 12px; font-weight: 700; } .step-pill { display: inline-block; font-size: 12px; border-radius: 999px; border: 1px solid #fed7aa; background: #fff7ed; padding: 4px 10px; margin-bottom: 10px; } .preview { font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 12px; background: #0f172a; color: #e2e8f0; border-radius: 12px; padding: 10px; max-height: 560px; overflow: auto; } @media (max-width: 980px) { .hero-grid, .split, .grid { grid-template-columns: 1fr; } .role-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } } @media (max-width: 640px) { .role-grid { grid-template-columns: 1fr; } .hero-wrap { padding-top: 24px; } } .nav-links { display: flex; gap: 16px; } .nav-links a, .footer-links a { text-decoration: none; color: #334155; font-weight: 600; } .nav-links a:hover, .footer-links a:hover { color: var(--brand-orange); } .footer { margin-top: 20px; border-top: 1px solid rgba(148, 163, 184, 0.25); background: rgba(255, 255, 255, 0.72); } .footer-row { min-height: 72px; display: flex; align-items: center; justify-content: space-between; gap: 10px; } .footer-row p { margin: 0; color: #64748b; font-size: 14px; } .footer-links { display: flex; gap: 14px; } @media (max-width: 900px) { .nav-row { flex-wrap: wrap; padding: 10px 0; } .footer-row { flex-direction: column; justify-content: center; align-items: flex-start; padding: 12px 0; } } .public-main { min-height: 100vh; } .public-header { position: sticky; top: 0; z-index: 60; border-bottom: 1px solid rgba(16, 11, 47, 0.1); background: rgba(255, 255, 255, 0.72); backdrop-filter: blur(14px); } .public-header-scrolled { box-shadow: 0 12px 28px -24px rgba(2, 6, 23, 0.5); } .desktop-only { display: flex; } .mobile-menu { display: none; } .mobile-nav { display: none; padding-bottom: 10px; gap: 10px; } .mobile-nav a { display: block; padding: 8px 0; text-decoration: none; color: #100b2f; font-weight: 600; } .scene-dark { background: transparent; } .scene-light { position: relative; } .scene-light::before { content: ''; position: absolute; inset: 8px 0; background: linear-gradient(180deg, rgba(255, 255, 255, 0.42), rgba(255, 255, 255, 0.2)); border-top: 1px solid rgba(255, 255, 255, 0.28); border-bottom: 1px solid rgba(255, 255, 255, 0.16); z-index: -1; } .public-hero { padding: 22px 0 16px; } .hero-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; align-items: center; } .hero-stack { display: grid; gap: 10px; } .float-card { border: 1px solid rgba(255, 255, 255, 0.24); border-radius: 16px; padding: 12px; background: linear-gradient(150deg, rgba(16, 11, 47, 0.78), rgba(16, 11, 47, 0.55)); color: #fff; backdrop-filter: blur(12px); } .float-card h3 { margin: 0 0 6px; } .float-card p { margin: 0; color: rgba(255, 255, 255, 0.82); } .public-section { padding: 16px 0; } .panel { border-radius: 24px; border: 1px solid rgba(255, 255, 255, 0.2); background: rgba(255, 255, 255, 0.1); padding: 18px; backdrop-filter: blur(12px); } .panel-light { border-color: #d9e2ef; background: #fff; } .panel-dark { border-color: rgba(255, 255, 255, 0.2); background: rgba(16, 11, 47, 0.44); } .panel-dark, .panel-dark h2, .panel-dark h3, .panel-dark h4, .panel-dark .center, .panel-dark .sub, .panel-dark p, .panel-dark span { color: #fff; } .section-head { display: flex; justify-content: space-between; gap: 10px; flex-wrap: wrap; } .section-head h2, .center { margin: 0; font-size: 30px; } .sub { color: #64748b; } .panel-dark .sub { color: rgba(255, 255, 255, 0.78); } .filter-row { display: flex; flex-wrap: wrap; gap: 8px; } .chip-btn { border: 1px solid rgba(253, 98, 22, 0.4); background: rgba(253, 98, 22, 0.08); color: #9a3412; border-radius: 999px; padding: 6px 10px; font-weight: 700; cursor: pointer; } .chip-btn.active { background: #fd6216; color: #fff; } .path-grid { margin-top: 14px; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; } .path-card { overflow: hidden; border-radius: 16px; border: 1px solid rgba(148, 163, 184, 0.34); background: #fff; } .path-card img { width: 100%; height: 170px; object-fit: cover; } .path-body { padding: 12px; } .path-body h3 { margin: 8px 0; color: #100b2f; } .path-body p { color: #475569; } .benefit-grid { margin-top: 14px; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; } .benefit-card { border: 1px solid rgba(255, 255, 255, 0.28); border-radius: 14px; padding: 12px; background: rgba(255, 255, 255, 0.07); } .benefit-card h3 { margin: 0 0 8px; font-size: 18px; } .benefit-card p { margin: 0; color: rgba(255, 255, 255, 0.85); } .flow-card { margin-top: 12px; display: grid; grid-template-columns: 1fr 1fr; gap: 14px; border: 1px solid #dbe1ec; border-radius: 16px; padding: 12px; } .flow-card > img { width: 100%; height: 100%; max-height: 360px; object-fit: cover; border-radius: 12px; } .step-list { margin-top: 10px; display: grid; gap: 8px; } .step-item { display: grid; grid-template-columns: 32px 1fr; gap: 8px; border: 1px solid #dbe1ec; border-radius: 12px; padding: 8px; } .step-item.active { border-color: #fd6216; background: #fff7ed; } .step-item span { display: inline-flex; width: 24px; height: 24px; align-items: center; justify-content: center; border-radius: 999px; background: #fd6216; color: #fff; font-size: 12px; font-weight: 700; } .step-item h4 { margin: 0; } .step-item p { margin: 4px 0 0; color: #475569; } .faq-wrap { max-width: 980px; } .faq-list { margin-top: 12px; display: grid; gap: 8px; } .faq-item { border: 1px solid rgba(255, 255, 255, 0.24); border-radius: 14px; background: rgba(255, 255, 255, 0.08); overflow: hidden; } .faq-item.open { border-color: rgba(253, 98, 22, 0.66); } .faq-q { width: 100%; border: 0; background: transparent; color: #fff; padding: 12px; font-weight: 700; display: flex; justify-content: space-between; cursor: pointer; } .faq-a { margin: 0; padding: 0 12px 12px; color: rgba(255, 255, 255, 0.82); } .cta-row { display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; } .public-footer { border-top: 1px solid rgba(16, 11, 47, 0.1); background: rgba(255, 255, 255, 0.78); backdrop-filter: blur(12px); } .ghost-dark { border-color: rgba(255, 255, 255, 0.28); color: #fff; background: rgba(255, 255, 255, 0.06); } @media (max-width: 1024px) { .path-grid, .benefit-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } } @media (max-width: 820px) { .desktop-only { display: none; } .mobile-menu { display: inline-flex; } .mobile-nav { display: block; } .hero-grid-2, .flow-card { grid-template-columns: 1fr; } } @media (max-width: 640px) { .path-grid, .benefit-grid { grid-template-columns: 1fr; } } .marketing-page { padding-top: 28px; padding-bottom: 28px; } .glass-dark { border: 1px solid rgba(255, 255, 255, 0.2); background: linear-gradient(145deg, rgba(16, 11, 47, 0.78), rgba(16, 11, 47, 0.5)); color: #fff; backdrop-filter: blur(14px); } .glass-light { border: 1px solid rgba(255, 255, 255, 0.24); background: linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.84)); backdrop-filter: blur(14px); } .title.light, .subtitle.light, .light { color: #fff; } .glass-light .subtitle { color: #334155; } .glass-light ul, .glass-light li, .glass-light p, .glass-light h1, .glass-light h2, .glass-light h3, .glass-light h4 { color: #100b2f; } .glass-dark .subtitle { color: rgba(255, 255, 255, 0.82); } /* Landing Parity Layer */ .lp-main { position: relative; min-height: 100vh; overflow-x: clip; } .lp-bg { pointer-events: none; position: fixed; inset: 0; z-index: 0; } .lp-dark-base { position: absolute; inset: 0; background: radial-gradient(110% 85% at 6% 0%, rgba(253, 98, 22, 0.2), transparent 56%), radial-gradient(90% 70% at 96% 10%, rgba(253, 98, 22, 0.16), transparent 58%), linear-gradient(180deg, #100b2f 0%, #0b0824 58%, #07051a 100%); } .lp-mesh { position: absolute; inset: -12% -12%; background: radial-gradient(42% 36% at 14% 26%, rgba(2, 6, 23, 0.46), transparent 76%), radial-gradient(34% 30% at 82% 14%, rgba(253, 98, 22, 0.2), transparent 74%), radial-gradient(40% 32% at 66% 80%, rgba(2, 6, 23, 0.4), transparent 74%); opacity: 0.58; } .lp-ribbon { position: absolute; inset: -18% -6%; background: linear-gradient(120deg, transparent 35%, rgba(253, 98, 22, 0.18) 55%, transparent 74%); filter: blur(14px); opacity: 0.38; } .lp-noise { position: absolute; inset: 0; opacity: 0.05; background-image: radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.38) 1px, transparent 0); background-size: 4px 4px; mix-blend-mode: soft-light; } .lp-chips { position: absolute; inset: 0; } .lp-chip { position: absolute; display: inline-flex; align-items: center; justify-content: center; min-width: 44px; height: 44px; border-radius: 999px; border: 1px solid rgba(253, 98, 22, 0.46); background: rgba(255, 255, 255, 0.14); color: #fd6216; font-size: 12px; font-weight: 700; backdrop-filter: blur(14px); box-shadow: 0 18px 36px -22px rgba(2, 6, 23, 0.8), 0 0 0 1px rgba(253, 98, 22, 0.46) inset; opacity: 0.52; } .lp-chip-slow { animation: lp-float-slow 8s ease-in-out infinite; } .lp-chip-mid { animation: lp-float-mid 6.4s ease-in-out infinite; } .lp-chip-fast { animation: lp-float-fast 5.6s ease-in-out infinite; } .lp-content { position: relative; z-index: 10; } .lp-hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; align-items: center; } .lp-hero-title { margin: 0; color: #fff; font-size: clamp(34px, 5vw, 56px); line-height: 1.08; font-weight: 800; } .lp-hero-copy { margin-top: 14px; color: rgba(255, 255, 255, 0.8); font-size: 17px; line-height: 1.6; } .lp-hero-slider { position: relative; min-height: 370px; } .lp-float-card { position: absolute; inset: 0; border-radius: 20px; border: 1px solid rgba(255, 255, 255, 0.18); background: linear-gradient(145deg, rgba(16, 11, 47, 0.72), rgba(16, 11, 47, 0.5)); padding: 18px; color: #fff; backdrop-filter: blur(18px); opacity: 0; transform: translateY(14px) scale(0.98); transition: all 380ms ease; } .lp-float-card.active { opacity: 1; transform: translateY(0) scale(1); } .lp-float-card h3 { margin: 0; font-size: 22px; } .lp-float-card ul { margin: 10px 0 16px; padding-left: 18px; color: rgba(255, 255, 255, 0.86); line-height: 1.6; } .lp-carousel-nav { margin-top: 10px; display: flex; align-items: center; justify-content: flex-end; gap: 8px; } .lp-benefit-panel { max-width: 980px; } .lp-benefit-hero { margin-top: 14px; border: 1px solid rgba(255, 255, 255, 0.24); border-radius: 18px; padding: 16px; background: rgba(255, 255, 255, 0.08); } .lp-benefit-hero h3 { margin: 0; font-size: 28px; } .lp-benefit-hero p { margin-top: 8px; color: rgba(255, 255, 255, 0.88); } .lp-benefit-dots { margin-top: 12px; display: flex; gap: 6px; } .lp-dot { width: 10px; height: 10px; border: 0; border-radius: 999px; background: rgba(255, 255, 255, 0.34); cursor: pointer; } .lp-dot.active { background: #fd6216; } @keyframes lp-float-slow { 0%, 100% { transform: translateY(0px); } 50% { transform: translateY(-7px); } } @keyframes lp-float-mid { 0%, 100% { transform: translateY(0px); } 50% { transform: translateY(-10px); } } @keyframes lp-float-fast { 0%, 100% { transform: translateY(0px); } 50% { transform: translateY(-12px); } } @media (max-width: 980px) { .lp-hero-grid { grid-template-columns: 1fr; } .lp-hero-slider { min-height: 340px; } }