@charset "utf-8";
    :root {
      --bg: #070b16;
      --panel: #0b1220;
      --panel-2: #0d1526;
      --panel-3: #10192d;
      --border: #1b2640;
      --border-soft: rgba(121, 142, 194, 0.14);
      --text: #f5f7fb;
      --muted: #9aa5bc;
      --muted-2: #71819f;
      --blue: #6f7cff;
      --blue-2: #8f66ff;
      --purple: #7d52ff;
      --green: #5fe3a8;
      --red: #ff626b;
      --shadow: 0 18px 50px rgba(0, 0, 0, 0.34);
      --radius-xl: 24px;
      --radius-lg: 20px;
      --radius-md: 16px;
      --radius-sm: 12px;
      --container: 1320px;
    }

    * { box-sizing: border-box; }
    html, body { margin: 0; padding: 0; }

    body {
      font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      background:
        radial-gradient(circle at top center, rgba(64, 92, 177, 0.14), transparent 34%),
        linear-gradient(180deg, #050914 0%, #070b16 100%);
      color: var(--text);
      min-height: 100vh;
    }

    a { color: inherit; text-decoration: none; }
    img { display: block; max-width: 100%; }

    .container {
      width: min(var(--container), calc(100% - 48px));
      margin: 0 auto;
    }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 10;
      backdrop-filter: blur(10px);
      background: rgba(7, 11, 22, 0.72);
      border-bottom: 1px solid rgba(255,255,255,0.04);
    }

    .header-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
      min-height: 82px;
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .brand-mark {
      max-height:90px !important; 
    }
	
    .header-nav {
      display: flex;
      align-items: center;
      gap: 36px;
      color: #d7dff0;
      font-weight: 600;
      font-size: 15px;
    }

    .header-nav a {
      color: #d7dff0;
      transition: color .18s ease;
    }

    .header-nav a:hover { color: #fff; }

    .header-actions {
      display: flex;
      align-items: center;
      gap: 16px;
    }

    .ghost-link {
      color: #eef2ff;
      font-weight: 600;
      font-size: 15px;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      min-height: 54px;
      padding: 0 26px;
      border-radius: 15px;
      border: 1px solid transparent;
      font-size: 17px;
      font-weight: 700;
      letter-spacing: -0.01em;
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, background .18s ease;
      cursor: pointer;
    }

    .btn:hover { transform: translateY(-1px); }

    .btn-primary {
      background: linear-gradient(90deg, #6182ff 0%, #6f65ff 45%, #8a5fff 100%);
      color: #fff;
      box-shadow: 0 14px 30px rgba(95, 108, 255, 0.28);
    }

    .btn-secondary {
      background: rgba(255,255,255,0.01);
      color: #fff;
      border-color: rgba(165, 181, 224, 0.22);
      box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
    }

   <!-- main {
   <!--   padding: 28px 0 44px;
   <!-- }

    section {
      margin-bottom: 28px;
    }

    .hero {
      display: grid;
      grid-template-columns: 1.03fr 0.97fr;
      gap: 0;
      align-items: stretch;
      margin-bottom: 24px;
      position: relative;
      border-radius: 32px;
      overflow: hidden;
      border: 1px solid rgba(130, 147, 201, 0.1);
      background: #060b17;
      box-shadow: var(--shadow);
      min-height: 560px;
    }

    .hero::before {
      content: "";
      position: absolute;
      inset: 0;
      z-index: 1;
      background: linear-gradient(90deg, rgba(5, 9, 20, 0.96) 0%, rgba(5, 9, 20, 0.92) 24%, rgba(5, 9, 20, 0.72) 40%, rgba(5, 9, 20, 0.34) 58%, rgba(5, 9, 20, 0.12) 100%);
      pointer-events: none;
    }

    .hero-copy {
      padding: 42px 0 42px 42px;
      position: relative;
      z-index: 2;
      display: flex;
      flex-direction: column;
      justify-content: center;
      max-width: 720px;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      min-height: 38px;
      padding: 0 16px;
      border-radius: 999px;
      color: #c8d1e5;
      background: rgba(103, 120, 255, 0.08);
      border: 1px solid rgba(124, 140, 255, 0.14);
      font-size: 13px;
      font-weight: 700;
      letter-spacing: .08em;
      text-transform: uppercase;
      width: fit-content;
    }

    .hero h1 {
      margin: 22px 0 18px;
      font-size: clamp(48px, 5.5vw, 72px);
      line-height: 1.02;
      letter-spacing: -0.045em;
      font-weight: 900;
      max-width: 720px;
    }

    .hero h1 .accent {
      background: linear-gradient(90deg, #6280ff 0%, #756dff 48%, #a05aff 100%);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
    }

    .hero-copy p {
      margin: 0;
      max-width: 680px;
      color: #b2bdd2;
      font-size: 20px;
      line-height: 1.55;
      letter-spacing: -0.01em;
    }

    .hero-copy p + p {
      margin-top: 18px;
      color: #dfe5f3;
      font-weight: 700;
    }
	
	.hero-actions-a {
      display: flex;
      gap: 16px;
      margin-top: 8px;
      flex-wrap: wrap;
    }

    .hero-actions {
      display: flex;
      gap: 16px;
      margin-top: 34px;
      flex-wrap: wrap;
    }

    .hero-visual {
      position: absolute;
      inset: 0;
      min-height: 560px;
      overflow: hidden;
      background: transparent;
      z-index: 0;
    }

    .hero-visual img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center top;
      transform: scale(1.01);
    }

    .feature-card,
    .panel,
    .mini-card,
    .setup-item,
    .footer-card,
    .process-strip {
      background: linear-gradient(180deg, rgba(15, 22, 39, 1) 0%, rgba(8, 14, 26, 1) 100%);
      border: 1px solid rgba(120, 140, 255, 0.08);
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow);
      transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    }

    .feature-card:hover,
    .panel:hover,
    .process-step:hover {
      transform: translateY(-4px);
      box-shadow: 0 25px 70px rgba(0,0,0,0.5);
    }

    .process-strip {
      position: relative;
      padding: 26px;
      margin-bottom: 28px;
      background: linear-gradient(180deg, rgba(25, 35, 70, 0.35), rgba(10, 16, 29, 0.98));
      border: 1px solid rgba(120, 140, 255, 0.18);
      box-shadow: 0 20px 60px rgba(70, 90, 255, 0.12);
      overflow: hidden;
    }

    .process-strip::before {
      content: "";
      position: absolute;
      inset: -1px;
      border-radius: inherit;
      background: radial-gradient(circle at top left, rgba(111,124,255,0.18), transparent 60%);
      z-index: 0;
      pointer-events: none;
    }

    .process-strip > * {
      position: relative;
      z-index: 1;
    }

    .feature-strip {
      margin-top: -6px;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px;
      margin-bottom: 22px;
    }

    .feature-card {
      display: flex;
      gap: 18px;
      padding: 24px;
      min-height: 118px;
      align-items: flex-start;
      position: relative;
      overflow: hidden;
      isolation: isolate;
    }

    .feature-card::before {
      content: "";
      position: absolute;
      inset: 0;
      border-radius: inherit;
      background: linear-gradient(
        180deg,
        rgba(255,255,255,0.035),
        rgba(255,255,255,0.00) 40%
      );
      pointer-events: none;
      z-index: 0;
    }

    .feature-card::after {
      content: "";
      position: absolute;
      left: 18px;
      right: 18px;
      bottom: -1px;
      height: 4px;
      border-radius: 999px;
      background: linear-gradient(
        90deg,
        rgba(110, 120, 255, 0.00) 0%,
        rgba(127, 86, 255, 0.55) 22%,
        rgba(166, 97, 255, 0.95) 50%,
        rgba(127, 86, 255, 0.55) 78%,
        rgba(110, 120, 255, 0.00) 100%
      );
      box-shadow:
        0 0 10px rgba(140, 90, 255, 0.32),
        0 0 22px rgba(98, 128, 255, 0.16);
      pointer-events: none;
      z-index: 0;
    }

    .feature-card > * {
      position: relative;
      z-index: 1;
    }

    .feature-card:hover::after {
      box-shadow:
        0 0 12px rgba(150, 95, 255, 0.38),
        0 0 28px rgba(98, 128, 255, 0.2);
    }

    .feature-icon {
      width: 56px;
      height: 56px;
      min-width: 56px;
      border-radius: 18px;
      display: grid;
      place-items: center;
      background: rgba(111, 124, 255, 0.09);
      border: 1px solid rgba(133, 149, 255, 0.15);
      color: #9db0ff;
      font-size: 24px;
      font-weight: 800;
    }

    .feature-card h3,
    .panel h3,
    .cta-banner h2,
    .footer-card h3,
    .process-strip h3 {
      margin: 0 0 8px;
      font-size: 30px;
      line-height: 1.15;
      letter-spacing: -0.03em;
      font-weight: 800;
    }

    .feature-card h3 { font-size: 28px; }

    .feature-card p,
    .panel p,
    .footer-card p,
    .roadmap li,
    .how-list li,
    .process-strip p,
    .process-step p {
      margin: 0;
      color: #a2afc7;
      font-size: 16px;
      line-height: 1.7;
    }

    .process-header {
      display: flex;
      align-items: end;
      justify-content: space-between;
      gap: 16px;
      margin-bottom: 22px;
    }

    .process-subtitle {
      color: #dfe5f3;
      font-size: 18px;
      font-weight: 700;
      line-height: 1.6;
      max-width: 680px;
    }

    .process-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px;
    }

    .process-step {
      padding: 20px;
      border-radius: 18px;
      background: linear-gradient(180deg, rgba(12, 18, 32, 0.98) 0%, rgba(8, 14, 26, 0.98) 100%);
      border: 1px solid rgba(121, 142, 194, 0.12);
      min-height: 176px;
    }

    .process-step-num {
      width: 42px;
      height: 42px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      margin-bottom: 14px;
      background: rgba(111, 124, 255, 0.12);
      border: 1px solid rgba(125, 140, 255, 0.18);
      color: #b8c5ff;
      font-size: 17px;
      font-weight: 800;
    }

    .process-step h4 {
      margin: 0 0 8px;
      color: #eef2ff;
      font-size: 21px;
      line-height: 1.2;
      font-weight: 800;
    }

    .content-grid {
      display: grid;
      grid-template-columns: 1.06fr 0.94fr 0.9fr;
      gap: 22px;
      margin-bottom: 24px;
    }

    .panel {
      padding: 22px 22px 24px;
      min-height: 100%;
    }

    .panel:first-child {
      box-shadow:
        0 25px 60px rgba(0,0,0,0.4),
        0 0 0 1px rgba(120,140,255,0.08),
        0 0 30px rgba(90,110,255,0.08);
    }

    .panel-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      margin-bottom: 18px;
    }

    .panel-kicker {
      display: block;
      color: #9aa8c9;
      font-size: 12px;
      text-transform: uppercase;
      letter-spacing: .12em;
      font-weight: 800;
      margin-bottom: 6px;
    }

    .panel-link {
      color: #c9d2ea;
      font-size: 14px;
      font-weight: 700;
    }
	
	.compact-feature-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 10px;
}

.compact-feature-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.compact-feature-item:last-child {
  border-bottom: none;
}

.compact-feature-icon {
  width: 34px;
  height: 34px;
  min-width: 34px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(111, 124, 255, 0.1);
  border: 1px solid rgba(133, 149, 255, 0.14);
  font-size: 15px;
}

.compact-feature-item h4 {
  margin: 0 0 4px;
  font-size: 16px;
  line-height: 1.2;
  color: #eef2ff;
  font-weight: 800;
}

.compact-feature-item p {
  margin: 0;
  font-size: 14px;
  line-height: 1.45;
  color: #9eabc4;
}

    .setup-list {
      display: flex;
      flex-direction: column;
      gap: 14px;
    }

    .setup-item {
      display: grid;
      grid-template-columns: 112px 1fr;
      gap: 16px;
      padding: 14px;
      border-radius: 16px;
      box-shadow: none;
      border-color: rgba(116, 131, 179, 0.12);
    }

    .setup-thumb {
      width: 112px;
      height: 72px;
      border-radius: 12px;
      overflow: hidden;
      background: linear-gradient(135deg, #081322 0%, #162f56 55%, #0b1626 100%);
      border: 1px solid rgba(121, 142, 194, 0.14);
      position: relative;
    }

    .setup-thumb::before,
    .setup-thumb::after {
      content: "";
      position: absolute;
      inset: auto 8px 12px 8px;
      height: 2px;
      background: linear-gradient(90deg, transparent 0%, rgba(78, 255, 165, .7) 30%, rgba(110, 120, 255, .7) 100%);
      transform: rotate(-11deg);
      transform-origin: left center;
    }

    .setup-thumb::after {
      inset: 10px 14px auto 14px;
      background: linear-gradient(90deg, rgba(94, 122, 255, 0.7) 0%, rgba(255, 91, 129, 0.7) 100%);
      transform: rotate(8deg);
    }

    .setup-title-row {
      display: flex;
      align-items: center;
      gap: 10px;
      flex-wrap: wrap;
      margin-bottom: 4px;
    }

    .setup-symbol {
      color: #f5f7fb;
      font-size: 19px;
      font-weight: 800;
    }

    .tag {
      display: inline-flex;
      align-items: center;
      min-height: 24px;
      padding: 0 9px;
      border-radius: 999px;
      font-size: 11px;
      font-weight: 800;
      letter-spacing: .08em;
      text-transform: uppercase;
      border: 1px solid transparent;
    }

    .tag-green {
      color: #6df4b7;
      background: rgba(77, 234, 167, 0.12);
      border-color: rgba(77, 234, 167, 0.18);
    }

    .tag-red {
      color: #ff868d;
      background: rgba(255, 98, 107, 0.12);
      border-color: rgba(255, 98, 107, 0.2);
    }

    .setup-item h4 {
      margin: 0 0 6px;
      font-size: 20px;
      line-height: 1.2;
      font-weight: 700;
      color: #eef2ff;
    }

    .setup-meta {
      margin-top: 10px;
      color: #7f90b0;
      font-size: 14px;
    }

    .how-list,
    .roadmap {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .how-list li,
    .roadmap li {
      position: relative;
      padding-left: 66px;
      min-height: 56px;
    }

    .how-list li + li,
    .roadmap li + li {
      margin-top: 26px;
    }

    .step-num,
    .road-dot {
      position: absolute;
      left: 0;
      top: 2px;
      width: 44px;
      height: 44px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      background: rgba(111, 124, 255, 0.1);
      border: 1px solid rgba(125, 140, 255, 0.15);
      color: #9aa7ff;
      font-weight: 800;
      font-size: 18px;
    }

    .roadmap li { padding-left: 58px; }

    .roadmap li::before {
      content: "";
      position: absolute;
      left: 21px;
      top: 40px;
      bottom: -24px;
      width: 2px;
      background: linear-gradient(180deg, rgba(102, 120, 255, 0.5), rgba(102, 120, 255, 0.05));
    }

    .roadmap li:last-child::before { display: none; }

    .road-title {
      display: block;
      color: #eef2ff;
      font-size: 17px;
      font-weight: 800;
      margin-bottom: 6px;
    }

    .cta-banner {
      position: relative;
      overflow: hidden;
      border-radius: 26px;
      border: 1px solid rgba(125, 140, 255, 0.16);
      box-shadow: var(--shadow);
      min-height: 178px;
      margin-bottom: 22px;
      background: #0b1020;
    }

    .cta-banner img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0.96;
    }

    .cta-banner::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(90deg, rgba(8, 11, 21, 0.86) 0%, rgba(8, 11, 21, 0.5) 44%, rgba(8, 11, 21, 0.18) 70%, rgba(8, 11, 21, 0.12) 100%);
    }

    .cta-banner-inner {
      position: relative;
      z-index: 1;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
      min-height: 178px;
      padding: 34px 34px 34px 36px;
    }

    .cta-banner p {
      margin: 0;
      max-width: 660px;
      color: #d5dbeb;
      font-size: 20px;
      line-height: 1.55;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 0.9fr 1.5fr;
      gap: 22px;
    }

    .footer-card {
      padding: 22px;
      min-height: 100%;
    }

    .founder {
      display: flex;
      align-items: flex-start;
      gap: 16px;
    }

    .founder-avatar {
      width: 64px;
      height: 64px;
      border-radius: 50%;
      border: 1px solid rgba(129, 143, 181, 0.16);
      flex: 0 0 auto;
      position: relative;
      overflow: hidden;
    }

    .founder-avatar::before {
      content: "";
      position: absolute;
      left: 16px;
      top: 13px;
      width: 30px;
      height: 30px;
      border-radius: 50%;
    }

    .founder-avatar::after {
      content: "";
      position: absolute;
      left: 10px;
      bottom: 0;
      width: 44px;
      height: 28px;
      border-radius: 24px 24px 0 0;
    }

    .quote {
      color: #d8deef;
      font-size: 16px;
      line-height: 1.65;
      margin: 0 0 12px;
    }

    .founder-name {
      color: #fff;
      font-size: 15px;
      font-weight: 800;
    }

    .values-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
      height: 100%;
    }

    .mini-card {
      padding: 20px 18px;
      border-radius: 18px;
      box-shadow: none;
      text-align: center;
      min-height: 190px;
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
    }

    .mini-icon {
      width: 46px;
      height: 46px;
      margin: 0 auto 14px;
      border-radius: 14px;
      display: grid;
      place-items: center;
      color: #cdd5ea;
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(255,255,255,0.05);
      font-weight: 800;
      font-size: 20px;
    }

    .mini-card h4 {
      margin: 0 0 8px;
      font-size: 17px;
      line-height: 1.2;
      font-weight: 800;
      color: #eef2ff;
    }

    .mini-card p {
      margin: 0;
      color: #9eabc4;
      font-size: 14px;
      line-height: 1.65;
    }

    .site-footer {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
      color: #7f8cab;
      font-size: 14px;
      padding: 28px 0 0;
    }

    .site-footer-links {
      display: flex;
      gap: 18px;
      flex-wrap: wrap;
    }
	
	.compact-feature-icon img {
  width: 28px;
  height: 28px;
  display: block;
}

    @media (max-width: 1180px) {
      .hero,
      .content-grid,
      .footer-grid,
      .process-grid {
        grid-template-columns: 1fr;
      }

      .hero {
        min-height: auto;
      }

      .hero::before {
        background: linear-gradient(180deg, rgba(5, 9, 20, 0.88) 0%, rgba(5, 9, 20, 0.72) 34%, rgba(5, 9, 20, 0.38) 58%, rgba(5, 9, 20, 0.18) 100%);
      }

      .hero-copy {
        padding: 36px 28px 420px 28px;
        max-width: none;
      }

      .hero-visual {
        min-height: 440px;
      }

      .hero-visual img {
        object-position: center top;
      }

      .process-header {
        flex-direction: column;
        align-items: flex-start;
      }

      .cta-banner-inner { flex-direction: column; align-items: flex-start; }
    }

    @media (max-width: 920px) {
      .header-inner {
        flex-wrap: wrap;
        padding: 18px 0;
        min-height: auto;
      }

      .header-nav {
        order: 3;
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
        gap: 18px 28px;
      }

      .feature-strip,
      .values-grid {
        grid-template-columns: 1fr;
      }

      .brand { font-size: 24px; }
      .hero h1 { font-size: clamp(44px, 12vw, 74px); }
      .hero-copy p { font-size: 18px; }
      .cta-banner h2,
      .panel h3,
      .feature-card h3,
      .process-strip h3 { font-size: 24px; }
    }

    @media (max-width: 680px) {
      .container {
        width: min(var(--container), calc(100% - 24px));
      }

      .hero-actions,
      .header-actions {
        width: 100%;
        flex-wrap: wrap;
      }

      .btn { width: 100%; }
      .setup-item { grid-template-columns: 1fr; }
      .setup-thumb { width: 100%; height: 140px; }
      .site-footer {
        flex-direction: column;
        align-items: flex-start;
      }
    }
