 :root {
     --bg: #0b1220;
     --paper: #fff;
     --paper2: #f7f8fb;
     --ink: #0f172a;
     --muted: #6b7280;
     --brand: #f97316;
     --brand-600: #ea580c;
     --accent: #fb923c;
     --line: #e5e7eb;
     --radius: 18px;
     --shadow: 0 12px 28px rgba(2, 6, 23, .12)
 }

 * {
     box-sizing: border-box
 }

 html,
 body {
     margin: 0;
     padding: 0;
     background: var(--paper2);
     color: var(--ink);
     font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, sans-serif
 }

 a {
     color: var(--brand);
     text-decoration: none
 }

 img {
     max-width: 100%;
     height: auto;
     display: block
 }

 .container {
     max-width: 1200px;
     margin: 0 auto;
     padding: 0 20px
 }

 /* Topbar */
 .topbar {
     background: #0b1220;
     color: #fff;
     border-bottom: 1px solid rgba(255, 255, 255, .08)
 }

 .topbar-inner {
     display: flex;
     justify-content: space-between;
     align-items: center;
     height: 40px;
     font-size: 13px
 }

 .social {
     display: flex;
     gap: 12px;
     opacity: .8
 }

 /* Header */
 header {
     position: sticky;
     top: 40px;
     z-index: 60;
     background: rgba(11, 18, 32, .9);
     backdrop-filter: saturate(160%) blur(8px);
     border-bottom: 1px solid rgba(255, 255, 255, .06)
 }

 .nav {
     display: flex;
     align-items: center;
     justify-content: space-between;
     height: 70px;
     color: #fff
 }

 .brand {
     display: flex;
     align-items: center;
     gap: 12px;
     font-weight: 800;
     color: #fff
 }

 .badge {
     width: 38px;
     height: 38px;
     display: grid;
     place-items: center;
     border-radius: 10px;
     background: linear-gradient(135deg, var(--brand), var(--accent));
     color: #fff
 }

 .nav-links a {
     color: #e5e7eb;
     margin: 0 12px
 }

 .btn {
     display: inline-flex;
     align-items: center;
     gap: 8px;
     padding: 11px 16px;
     border-radius: 12px;
     border: 1px solid var(--line);
     background: #fff;
     color: var(--ink);
     font-weight: 700;
     box-shadow: var(--shadow)
 }

 .btn.primary {
     background: linear-gradient(135deg, var(--brand), var(--accent));
     color: #fff;
     border: none
 }

 .btn.ghost {
     background: transparent;
     border: 1px solid rgba(255, 255, 255, .14);
     color: #fff
 }

 /* Ticker & Alarm */
 .ticker {
     background: #111827;
     color: #fff;
     font-weight: 700;
     overflow: hidden;
     white-space: nowrap;
     border-top: 1px solid rgba(255, 255, 255, .08);
     border-bottom: 1px solid rgba(255, 255, 255, .08)
 }

 .ticker .inner {
     display: inline-block;
     padding: 9px 0;
     animation: ticker 24s linear infinite
 }

 @keyframes ticker {
     from {
         transform: translateX(100%)
     }

     to {
         transform: translateX(-100%)
     }
 }

 .alarm {
     display: none;
     position: sticky;
     top: 110px;
     z-index: 55;
     background: linear-gradient(90deg, #ef4444, #f59e0b);
     color: #fff;
     font-weight: 800;
     padding: 10px 14px
 }

 /* Hero */
 .hero {
     background: var(--bg) url('https://images.unsplash.com/photo-1531297484001-80022131f5a1?q=80&w=1600&auto=format&fit=crop') center/cover no-repeat;
     color: #fff;
     position: relative
 }

 .hero::after {
     content: "";
     position: absolute;
     inset: 0;
 }

 .hero-inner {
     position: relative;
     padding: 96px 0 78px;
     display: grid;
     grid-template-columns: 1.15fr .85fr;
     gap: 36px;
     align-items: center
 }

 .eyebrow {
     display: inline-flex;
     gap: 8px;
     padding: 6px 10px;
     border-radius: 999px;
     background: rgba(249, 115, 22, .2);
     border: 1px solid rgba(255, 255, 255, .2);
     font-size: 12px;
     font-weight: 800
 }

 h1 {
     font-size: 48px;
     line-height: 1.05;
     margin: 14px 0 12px
 }

 .lead {
     color: #e5e7eb;
     font-size: 18px
 }

 .hero-card {
     background: rgba(255, 255, 255, .07);
     border: 1px solid rgba(255, 255, 255, .14);
     border-radius: var(--radius);
     padding: 18px;
     box-shadow: var(--shadow)
 }

 .kpis {
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 14px;
     margin-top: 18px
 }

 .kpi {
     background: rgba(255, 255, 255, .07);
     border: 1px solid rgba(255, 255, 255, .14);
     border-radius: 14px;
     padding: 12px 14px;
     color: #e5e7eb
 }

 .kpi b {
     font-size: 20px;
     color: #fff
 }

 /* Sections */
 .section {
     padding: 72px 0;
     border-top: 1px solid var(--line)
 }

 .section h2 {
     font-size: 34px;
     margin: 0 0 8px
 }

 .muted {
     color: var(--muted)
 }

 /* Feature grid */
 .grid {
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 18px;
     margin-top: 22px
 }

 .card {
     background: #fff;
     border: 1px solid var(--line);
     border-radius: var(--radius);
     padding: 18px;
     box-shadow: var(--shadow)
 }

 .card .title {
     font-weight: 800;
     margin-bottom: 6px
 }

 /* Showcase */
 .showcase {
     display: grid;
     grid-template-columns: 1.3fr .7fr;
     gap: 22px
 }

 .shot {
     background: #e5e7eb center/cover no-repeat;
     border-radius: 16px;
     border: 1px solid var(--line);
     min-height: 340px;
     box-shadow: var(--shadow)
 }

 .stack-3 {
     display: grid;
     grid-template-columns: 1fr;
     gap: 12px
 }

 .shot.sm {
     min-height: 100px
 }

 /* Feature list columns */
 .cols {
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 14px
 }

 .cols ul {
     margin: 0;
     padding: 0 0 0 18px
 }

 /* Pricing */
 .pricing {
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 18px
 }

 .price-card {
     position: relative;
     background: #fff;
     border: 1px solid var(--line);
     border-radius: 20px;
     padding: 20px;
     box-shadow: var(--shadow)
 }

 .price {
     font-size: 36px;
     font-weight: 800
 }

 .label {
     position: absolute;
     top: 14px;
     right: 14px;
     background: linear-gradient(135deg, var(--brand), var(--accent));
     color: #fff;
     padding: 6px 10px;
     border-radius: 999px;
     font-size: 12px;
     font-weight: 700
 }

 /* Footer */
 footer {
     padding: 40px 0;
     border-top: 1px solid var(--line);
     color: var(--muted)
 }

 /* Responsive */
 @media(max-width:1024px) {
     header {
         top: 40px
     }

     .hero-inner {
         grid-template-columns: 1fr
     }

     .kpis {
         grid-template-columns: repeat(2, 1fr)
     }

     .grid {
         grid-template-columns: repeat(2, 1fr)
     }

     .showcase {
         grid-template-columns: 1fr
     }

     .pricing {
         grid-template-columns: repeat(2, 1fr)
     }

     .cols {
         grid-template-columns: repeat(2, 1fr)
     }
 }

 @media(max-width:640px) {
     h1 {
         font-size: 36px
     }

     .kpis,
     .grid,
     .pricing,
     .cols {
         grid-template-columns: 1fr
     }
 }