@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=JetBrains+Mono:wght@400;500&display=swap');

    :root {
      --bg: #0f172a;
      --surface: #1e293b;
      --text: #f8fafc;
      --muted: #94a3b8;
      --border: #334155;
      --accent: #6366f1;
      --accent-hover: #818cf8;
      --font-sans: 'Plus Jakarta Sans', system-ui, sans-serif;
      --font-mono: 'JetBrains Mono', monospace;
    }
    
    body {
      background-color: var(--bg);
      background-image: radial-gradient(circle at top center, #1e293b 0%, #0f172a 100%);
      background-attachment: fixed;
      color: var(--text);
      font-family: var(--font-sans);
      margin: 0;
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
    }

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

    /* Header */
    .header {
      padding: 1.5rem 0;
      background: rgba(15, 23, 42, 0.7);
      backdrop-filter: blur(12px);
      position: sticky;
      top: 0;
      z-index: 100;
      border-bottom: 1px solid rgba(255,255,255,0.05);
    }
    .header-inner {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
    .logo {
      font-weight: 800;
      font-size: 1.5rem;
      letter-spacing: -0.03em;
      color: var(--text);
      text-decoration: none;
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }
    .logo-icon {
      color: var(--accent);
    }
    .nav-links {
      display: flex;
      gap: 2rem;
    }
    .nav-link {
      color: var(--muted);
      text-decoration: none;
      font-weight: 600;
      font-size: 0.95rem;
      transition: color 0.2s;
    }
    .nav-link:hover {
      color: var(--text);
    }

    /* Buttons */
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 0.875rem 2rem;
      font-size: 1rem;
      font-weight: 600;
      border-radius: 99px;
      text-decoration: none;
      transition: all 0.2s ease;
      cursor: pointer;
    }
    .btn-primary {
      background: var(--accent);
      color: #ffffff;
      box-shadow: 0 10px 25px -5px rgba(99, 102, 241, 0.4);
    }
    .btn-primary:hover {
      background: var(--accent-hover);
      transform: translateY(-2px);
      box-shadow: 0 15px 30px -5px rgba(99, 102, 241, 0.6);
    }
    .btn-secondary {
      background: rgba(255,255,255,0.05);
      color: var(--text);
      border: 1px solid rgba(255,255,255,0.1);
    }
    .btn-secondary:hover {
      background: rgba(255,255,255,0.1);
    }

    /* Sections */
    .section {
      padding: 8rem 0;
    }

    /* Hero */
    .hero {
      padding: 8rem 0 4rem;
      text-align: center;
      position: relative;
    }
    .hero-title {
      font-size: clamp(3.5rem, 7vw, 5.5rem);
      font-weight: 800;
      line-height: 1.1;
      letter-spacing: -0.03em;
      margin: 0 auto 1.5rem;
      max-width: 1000px;
      color: var(--text);
    }
    .hero-subtitle {
      font-size: 1.25rem;
      color: var(--muted);
      max-width: 700px;
      margin: 0 auto 3rem;
      line-height: 1.6;
    }
    .hero-actions {
      display: flex;
      gap: 1rem;
      justify-content: center;
      margin-bottom: 5rem;
    }
    .hero-image {
      border-radius: 24px;
      overflow: hidden;
      box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
      border: 1px solid rgba(255,255,255,0.1);
      background: var(--surface);
      padding: 0.5rem;
    }
    .hero-image-inner {
      border-radius: 18px;
      overflow: hidden;
    }

    /* Centered Text */
    .centered-text {
      max-width: 800px;
      margin: 0 auto;
      text-align: center;
    }
    .centered-text h2 {
      font-size: 2.5rem;
      font-weight: 800;
      margin: 0 0 1.5rem;
      letter-spacing: -0.02em;
      white-space: pre-line;
    }
    .centered-text p {
      font-size: 1.25rem;
      color: var(--muted);
      line-height: 1.7;
      margin: 0;
    }

    /* Step List */
    .step-section {
      background: #0f172a;
      border-top: 1px solid rgba(255,255,255,0.05);
      border-bottom: 1px solid rgba(255,255,255,0.05);
      position: relative;
      overflow: hidden;
      padding: 8rem 0;
    }
    .step-list-title {
      text-align: center;
      font-size: 3.5rem;
      font-weight: 800;
      margin: 0 0 5rem;
      letter-spacing: -0.03em;
    }
    .step-timeline {
      display: flex;
      flex-direction: column;
      gap: 4rem;
      max-width: 800px;
      margin: 0 auto;
      position: relative;
    }
    .step-timeline::before {
      content: '';
      position: absolute;
      left: 3rem;
      top: 0;
      bottom: 0;
      width: 1px;
      background: linear-gradient(to bottom, transparent, var(--accent), transparent);
      opacity: 0.3;
    }
    .step-item {
      display: flex;
      gap: 3rem;
      align-items: flex-start;
      position: relative;
    }
    .step-number-large {
      font-family: var(--font-mono);
      font-size: 4rem;
      font-weight: 800;
      color: transparent;
      -webkit-text-stroke: 1px rgba(255,255,255,0.2);
      line-height: 1;
      min-width: 6rem;
      text-align: right;
    }
    .step-item:hover .step-number-large {
      color: var(--accent);
      -webkit-text-stroke: 0;
      transition: all 0.3s ease;
    }
    .step-content {
      padding-top: 0.5rem;
    }
    .step-title {
      font-size: 2rem;
      font-weight: 700;
      margin: 0 0 1rem;
      letter-spacing: -0.02em;
    }
    .step-desc {
      color: var(--muted);
      font-size: 1.125rem;
      line-height: 1.7;
      margin: 0;
    }
    @media (max-width: 768px) {
      .step-timeline::before { display: none; }
      .step-item { flex-direction: column; gap: 1rem; }
      .step-number-large { text-align: left; font-size: 3rem; }
    }

    /* Image Break */
    .image-break {
      text-align: center;
    }
    .image-break-img {
      border-radius: 24px;
      overflow: hidden;
      border: 1px solid rgba(255,255,255,0.1);
      margin-bottom: 1.5rem;
      box-shadow: 0 20px 40px -10px rgba(0,0,0,0.3);
    }
    .image-break-caption {
      color: var(--muted);
      font-size: 0.95rem;
      font-family: var(--font-mono);
    }

    /* Feature Grid */
    .feature-list-section {
      padding: 10rem 0;
    }
    .feature-list-header {
      margin-bottom: 5rem;
    }
    .feature-list-title {
      font-size: clamp(2.5rem, 5vw, 4rem);
      font-weight: 800;
      margin: 0 0 1.5rem;
      letter-spacing: -0.03em;
      line-height: 1.1;
      max-width: 800px;
    }
    .feature-list-subtitle {
      color: var(--accent);
      font-size: 1.5rem;
      font-weight: 500;
      margin: 0;
      max-width: 600px;
    }
    .feature-list {
      display: flex;
      flex-direction: column;
      border-top: 1px solid rgba(255,255,255,0.1);
    }
    .feature-list-item {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      padding: 3rem 0;
      border-bottom: 1px solid rgba(255,255,255,0.1);
      align-items: start;
      transition: background 0.3s ease;
    }
    .feature-list-item:hover {
      background: rgba(255,255,255,0.02);
      padding-left: 2rem;
      padding-right: 2rem;
      margin-left: -2rem;
      margin-right: -2rem;
    }
    .feature-list-item-title {
      font-size: 2rem;
      font-weight: 700;
      margin: 0;
      letter-spacing: -0.02em;
      color: var(--text);
    }
    .feature-list-item-desc {
      color: var(--muted);
      font-size: 1.125rem;
      line-height: 1.7;
      margin: 0;
    }
    @media (max-width: 768px) {
      .feature-list-item { grid-template-columns: 1fr; gap: 1rem; }
      .feature-list-item:hover { padding-left: 0; padding-right: 0; margin-left: 0; margin-right: 0; background: transparent; }
    }

    /* Feature Split */
    .split-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: center;
    }
    @media (max-width: 992px) {
      .split-grid { grid-template-columns: 1fr; }
    }
    .split-grid.reverse .split-text { order: 2; }
    .split-grid.reverse .split-visual-wrapper { order: 1; }
    @media (max-width: 992px) {
      .split-grid.reverse .split-text { order: 1; }
      .split-grid.reverse .split-visual-wrapper { order: 2; }
    }
    .split-title {
      font-size: 2.5rem;
      font-weight: 800;
      margin: 0 0 1rem;
      letter-spacing: -0.02em;
    }
    .split-subtitle {
      font-size: 1.25rem;
      color: var(--text);
      font-weight: 500;
      margin-bottom: 1.5rem;
    }
    .split-desc {
      font-size: 1.125rem;
      color: var(--muted);
      line-height: 1.7;
      margin: 0;
      white-space: pre-line;
    }
    .split-visual {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
  background: #000;
  box-shadow: 0 20px 40px -10px rgba(0,0,0,0.3);
  max-width: 450px;
  margin: 0 auto;
  width: 100%;
    }
    .split-caption {
      color: var(--muted);
      font-size: 0.875rem;
      font-family: var(--font-mono);
      margin-top: 1rem;
      text-align: center;
    }
    .code-block {
  padding: 2rem;
  margin: 0;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: #e2e8f0;
  overflow-x: auto;
  line-height: 1.6;
  white-space: pre-wrap;
  word-break: break-word;
    }

    /* CTA Block */
    .cta-block {
      text-align: center;
      padding: 8rem 0;
    }
    .cta-title {
      font-size: 3.5rem;
      font-weight: 800;
      margin: 0 0 1.5rem;
      letter-spacing: -0.03em;
    }
    .cta-subtitle {
      font-size: 1.25rem;
      color: var(--muted);
      margin: 0 auto 3rem;
      max-width: 600px;
      line-height: 1.6;
    }

    /* Footer */
    .site-footer {
      background: #0a0f1c;
      padding: 6rem 0 2rem;
      border-top: 1px solid rgba(255,255,255,0.05);
      margin-top: 4rem;
    }
    .footer-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 4rem;
      margin-bottom: 6rem;
    }
    @media (max-width: 992px) {
      .footer-grid { grid-template-columns: 1fr 1fr; }
      .footer-brand-col { grid-column: 1 / -1; }
    }
    @media (max-width: 576px) {
      .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    }
    .footer-tagline {
      color: var(--muted);
      margin-top: 1.5rem;
      line-height: 1.6;
      max-width: 300px;
    }
    .footer-heading {
      color: var(--text);
      font-size: 1rem;
      font-weight: 700;
      margin: 0 0 1.5rem;
      letter-spacing: 0.05em;
      text-transform: uppercase;
    }
    .footer-links-col {
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }
    .footer-links-col a {
      color: var(--muted);
      text-decoration: none;
      transition: color 0.2s;
      font-size: 0.95rem;
    }
    .footer-links-col a:hover {
      color: var(--accent);
    }
    .footer-bottom {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding-top: 2rem;
      border-top: 1px solid rgba(255,255,255,0.05);
      color: var(--muted);
      font-size: 0.875rem;
    }
    .footer-legal {
      display: flex;
      gap: 2rem;
    }
    .footer-legal a {
      color: var(--muted);
      text-decoration: none;
    }
    .footer-legal a:hover {
      color: var(--text);
    }
    @media (max-width: 768px) {
      .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
    }
    .hero-highlights {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  margin-top: 3rem;
}
    .hero-highlight {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.5rem;
  background: rgba(30, 41, 59, 0.3);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text);
}
    .hero-highlight i {
  width: 20px;
  height: 20px;
  color: var(--accent);
}
    .hero-visual-wrapper {
  max-width: 1000px;
  margin: 0 auto;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255,255,255,0.1);
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(12px);
  min-height: 500px;
  display: flex;
  align-items: stretch;
}
    .full-width-text {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
}
    .full-width-visual {
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
  background: #000;
  box-shadow: 0 20px 40px -10px rgba(0,0,0,0.3);
  width: 100%;
}
    .full-width-visual img, .full-width-visual > * {
  width: 100%;
  height: auto;
  display: block;
}
    .hero-visual-wrapper > * {
  width: 100%;
  flex: 1;
}