
    :root {
      --bg: #05070d;
      --bg-2: #08111f;
      --card: rgba(255, 255, 255, 0.045);
      --card-2: rgba(255, 255, 255, 0.075);
      --border: rgba(255, 255, 255, 0.1);
      --text: #ffffff;
      --muted: #94a3b8;
      --muted-2: #cbd5e1;
      --blue: #2563eb;
      --blue-dark: #1d4ed8;
      --cyan: #06b6d4;
      --cyan-soft: #8cb4ff;
      --shadow: rgba(37, 99, 235, 0.25);
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    html {
  scroll-behavior: smooth;
}

    html {
      scroll-behavior: smooth;
    }

    body {
      min-height: 100vh;
      background: var(--bg);
      color: var(--text);
      font-family: 'Inter', Arial, sans-serif;
      overflow-x: hidden;
    }

    body::before,
    body::after {
      content: "";
      position: fixed;
      width: 520px;
      height: 520px;
      border-radius: 999px;
      pointer-events: none;
      z-index: -1;
      filter: blur(120px);
    }

    body::before {
      top: -260px;
      left: 50%;
      transform: translateX(-50%);
      background: rgba(37, 99, 235, 0.28);
    }

    body::after {
      top: 32%;
      right: -260px;
      background: rgba(6, 182, 212, 0.16);
    }

    a {
      color: inherit;
      text-decoration: none;
    }

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

    .container {
      width: min(1120px, calc(100% - 40px));
      margin: 0 auto;
    }

    .header {
      position: sticky;
      top: 0;
      z-index: 50;
      border-bottom: 1px solid var(--border);
      background: rgba(5, 7, 13, 0.86);
      backdrop-filter: blur(18px);
      height: 70px;
  display: flex;
  align-items: center;
    }

    .nav {
      height: 78px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 14px;
    }

    .brand-logo-img {
      width: 156px;
      height: auto;
      object-fit: contain;
    }

    .brand-fallback {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .brand-symbol {
      width: 42px;
      height: 42px;
      border-radius: 16px;
      display: grid;
      place-items: center;
      background: linear-gradient(135deg, var(--blue), var(--cyan));
      color: white;
      font-weight: 800;
      letter-spacing: -0.07em;
      box-shadow: 0 0 34px var(--shadow);
    }

    .brand-name {
      font-weight: 700;
      letter-spacing: -0.04em;
      font-size: 1.1rem;
    }

    .brand-tagline {
      margin-top: 2px;
      font-size: 0.62rem;
      text-transform: uppercase;
      letter-spacing: 0.33em;
      color: var(--muted);
    }

    .menu {
      display: flex;
      align-items: center;
      gap: 32px;
      color: var(--muted-2);
      font-size: 0.9rem;
      font-weight: 500;
    }

    .menu a {
      transition: color 0.2s ease;
    }

    .menu a:hover {
      color: var(--cyan);
    }

    .btn {
      border: none;
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      min-height: 48px;
      padding: 0 26px;
      border-radius: 999px;
      font-family: inherit;
      font-weight: 700;
      font-size: 0.95rem;
      transition: transform 0.2s ease, background 0.2s ease, border 0.2s ease;
    }

    .btn:hover {
      transform: translateY(-1px);
    }

    .btn-primary {
      background: var(--blue);
      color: white;
      box-shadow: 0 18px 45px rgba(37, 99, 235, 0.24);
    }

    .btn-primary:hover {
      background: var(--blue-dark);
    }

    .btn-secondary {
      background: rgba(255,255,255,0.04);
      color: white;
      border: 1px solid rgba(255,255,255,0.15);
    }

    .hero {
      padding: 96px 0 76px;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: 1.02fr 0.98fr;
      gap: 56px;
      align-items: center;
    }

    .pill {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      border: 1px solid rgba(37, 99, 235, 0.42);
      background: rgba(37, 99, 235, 0.11);
      color: var(--cyan-soft);
      border-radius: 999px;
      padding: 9px 15px;
      font-size: 0.88rem;
      font-weight: 600;
      margin-bottom: 28px;
    }

    .hero h1,
    .section-title,
    .cta h2 {
      letter-spacing: -0.055em;
      line-height: 1.02;
    }

    .hero h1 {
      font-size: clamp(2.65rem, 6vw, 4.6rem);
      font-weight: 700;
      max-width: 760px;
    }

    .hero p {
      margin-top: 24px;
      max-width: 640px;
      color: var(--muted-2);
      font-size: 1.08rem;
      line-height: 1.8;
    }

    .hero-actions {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
      margin-top: 36px;
    }

    .metrics {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px;
      border-top: 1px solid var(--border);
      margin-top: 48px;
      padding-top: 24px;
      max-width: 640px;
    }

    .metric strong {
      display: block;
      font-size: 1.55rem;
      letter-spacing: -0.05em;
    }

    .metric span {
      color: var(--muted);
      font-size: 0.9rem;
    }

    .dashboard-wrap {
      border: 1px solid var(--border);
      border-radius: 32px;
      padding: 16px;
      background: linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02));
      box-shadow: 0 25px 80px rgba(2, 6, 23, 0.72);
    }

    .dashboard {
      border: 1px solid var(--border);
      border-radius: 24px;
      background: var(--bg-2);
      padding: 28px;
    }

    .dashboard-top {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      margin-bottom: 26px;
      gap: 16px;
    }

    .dashboard small {
      color: var(--muted);
      font-size: 0.85rem;
    }

    .dashboard h3 {
      font-size: 1.55rem;
      margin-top: 5px;
      letter-spacing: -0.04em;
    }

    .online {
      border-radius: 999px;
      color: var(--cyan);
      background: rgba(6, 182, 212, 0.11);
      padding: 7px 13px;
      font-size: 0.83rem;
      font-weight: 700;
    }

    .progress-card {
      border: 1px solid var(--border);
      border-radius: 18px;
      background: rgba(255,255,255,0.035);
      padding: 16px;
      margin-bottom: 14px;
    }

    .progress-label {
      display: flex;
      align-items: center;
      justify-content: space-between;
      color: var(--muted-2);
      font-size: 0.88rem;
      margin-bottom: 12px;
    }

    .progress-label b {
      color: var(--cyan);
    }

    .progress-bar {
      height: 8px;
      background: rgba(255,255,255,0.1);
      border-radius: 999px;
      overflow: hidden;
    }

    .progress-fill {
      width: 68%;
      height: 100%;
      border-radius: inherit;
      background: linear-gradient(90deg, var(--blue), var(--cyan));
    }

    .next-step {
      margin-top: 20px;
      padding: 22px;
      border-radius: 20px;
      background: linear-gradient(90deg, var(--blue), var(--cyan));
    }

    .next-step span {
      opacity: 0.9;
      font-size: 0.9rem;
      font-weight: 700;
    }

    .next-step p {
      margin-top: 7px;
      font-size: 1.3rem;
      font-weight: 700;
      letter-spacing: -0.035em;
    }

    section {
      scroll-margin-top: 100px;
    }

    .section {
      padding: 70px 0;
    }

    .section-kicker {
      color: var(--cyan);
      text-transform: uppercase;
      letter-spacing: 0.35em;
      font-size: 0.76rem;
      font-weight: 800;
      margin-bottom: 18px;
    }

    .section-title {
      font-size: clamp(2rem, 4vw, 3.5rem);
      font-weight: 700;
      max-width: 790px;
    }

    .section-description {
      max-width: 470px;
      color: var(--muted);
      line-height: 1.75;
    }

    .cards-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
      margin-top: 44px;
    }

    .card {
      border: 1px solid var(--border);
      background: var(--card);
      border-radius: 28px;
      padding: 26px;
      min-height: 230px;
      transition: transform 0.22s ease, border 0.22s ease, background 0.22s ease;
    }

    .card:hover {
      transform: translateY(-5px);
      border-color: rgba(37, 99, 235, 0.46);
      background: rgba(255,255,255,0.065);
    }

    .icon {
      width: 48px;
      height: 48px;
      border-radius: 18px;
      display: grid;
      place-items: center;
      background: rgba(37, 99, 235, 0.12);
      color: var(--cyan);
      margin-bottom: 24px;
    }

    .card h3 {
      font-size: 1.17rem;
      letter-spacing: -0.035em;
      margin-bottom: 12px;
    }

    .card p {
      color: var(--muted);
      line-height: 1.7;
      font-size: 0.93rem;
    }

    .feature-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }

    .feature-card {
      min-height: 190px;
      border: 1px solid var(--border);
      border-radius: 28px;
      padding: 28px;
      background: linear-gradient(135deg, rgba(255,255,255,0.075), rgba(255,255,255,0.02));
    }

    .feature-card .icon {
      background: transparent;
      width: auto;
      height: auto;
      place-items: start;
      margin-bottom: 18px;
    }

    .process-box {
      border: 1px solid var(--border);
      border-radius: 34px;
      background: var(--bg-2);
      padding: 42px;
      display: grid;
      grid-template-columns: 0.9fr 1.1fr;
      gap: 56px;
      align-items: center;
      overflow: hidden;
    }

    .steps {
      display: grid;
      gap: 15px;
    }

    .step {
      display: flex;
      align-items: center;
      gap: 16px;
      border: 1px solid var(--border);
      background: rgba(255,255,255,0.035);
      border-radius: 18px;
      padding: 16px;
    }

    .step-number {
      width: 40px;
      height: 40px;
      border-radius: 999px;
      display: grid;
      place-items: center;
      background: linear-gradient(135deg, var(--blue), var(--cyan));
      font-size: 0.8rem;
      font-weight: 800;
      flex-shrink: 0;
    }

    .step p {
      font-weight: 600;
      color: #f8fafc;
    }

    .section-header-row {
      display: flex;
      align-items: end;
      justify-content: space-between;
      gap: 32px;
      margin-bottom: 44px;
    }

    .portfolio-grid,
    .solutions-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }

    .project-card {
      border: 1px solid var(--border);
      border-radius: 28px;
      background: var(--card);
      overflow: hidden;
    }

    .project-visual {
      height: 150px;
      background:
        radial-gradient(circle at 30% 20%, rgba(6,182,212,0.55), transparent 35%),
        linear-gradient(135deg, rgba(37,99,235,0.55), rgba(5,7,13,0.2));
    }

    .project-content {
      padding: 26px;
    }

    .project-category {
      color: var(--cyan);
      font-size: 0.9rem;
      font-weight: 700;
      margin-bottom: 10px;
    }

    .project-content h3,
    .solution-card h3,
    .feature-card h3 {
      font-size: 1.25rem;
      letter-spacing: -0.035em;
      margin-bottom: 12px;
    }

    .project-content p,
    .solution-card p,
    .feature-card p {
      color: var(--muted);
      font-size: 0.93rem;
      line-height: 1.75;
    }

    .solutions-heading {
      text-align: center;
      margin-bottom: 44px;
    }

    .solutions-heading .section-title {
      margin: 0 auto;
      max-width: 820px;
    }

    .solution-card {
      border: 1px solid var(--border);
      border-radius: 28px;
      background: var(--card);
      padding: 30px;
      min-height: 340px;
    }

    .solution-card.featured {
      border-color: rgba(37, 99, 235, 0.62);
      background: rgba(37, 99, 235, 0.11);
      box-shadow: 0 30px 70px rgba(37, 99, 235, 0.1);
    }

    .solution-card ul {
      list-style: none;
      border-top: 1px solid var(--border);
      padding-top: 22px;
      margin-top: 24px;
      display: grid;
      gap: 14px;
    }

    .solution-card li {
      display: flex;
      align-items: center;
      gap: 12px;
      color: var(--muted-2);
      font-size: 0.92rem;
    }

    .check {
      color: var(--cyan);
      flex-shrink: 0;
    }

    .cta {
      padding: 70px 0 88px;
    }

    .cta-box {
      border-radius: 34px;
      padding: 46px;
      background: linear-gradient(90deg, var(--blue), var(--cyan));
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 32px;
      align-items: center;
      box-shadow: 0 30px 90px rgba(37, 99, 235, 0.18);
    }

    .cta h2 {
      font-size: clamp(2rem, 4vw, 3.5rem);
      font-weight: 700;
    }

    .cta p {
      margin-top: 16px;
      color: rgba(255,255,255,0.86);
      max-width: 660px;
      line-height: 1.75;
    }

    .btn-dark {
      background: var(--bg);
      color: white;
    }

    .footer {
      border-top: 1px solid rgba(255,255,255,0.08);
      padding: 28px 0;
      color: var(--muted);
      font-size: 0.9rem;
      padding-top: 40px;
    }

   .footer-logo {
  height: 48px;
  opacity: 0.5;
}
    .footer-content {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
      flex-wrap: wrap;
    }

    .footer-brand {
      display: flex;
      align-items: center;
      gap: 14px;
    
    }

    .footer img {
      width: 110px;
      height: auto;
    }

    .footer-links {
      display: flex;
      gap: 18px;
      flex-wrap: wrap;
    }

    .fade-in {
      opacity: 0;
      transform: translateY(18px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }

    .fade-in.visible {
      opacity: 1;
      transform: translateY(0);
    }

    .mobile-menu-btn {
      display: none;
      width: 44px;
      height: 44px;
      border-radius: 14px;
      border: 1px solid var(--border);
      background: rgba(255,255,255,0.04);
      color: white;
      cursor: pointer;
    }

    @media (max-width: 980px) {
      .hero-grid,
      .process-box,
      .cta-box {
        grid-template-columns: 1fr;
      }

      .cards-grid,
      .feature-grid,
      .portfolio-grid,
      .solutions-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .section-header-row {
        align-items: flex-start;
        flex-direction: column;
      }
    }

    @media (max-width: 760px) {
      .container {
        width: min(100% - 28px, 1120px);
      }

      .nav {
        height: 72px;
      }

      .brand-logo-img {
        width: 130px;
      }

      .brand-tagline {
        display: none;
      }

      .menu {
        position: absolute;
        left: 14px;
        right: 14px;
        top: 78px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 10px;
        border: 1px solid var(--border);
        border-radius: 22px;
        background: rgba(8, 17, 31, 0.98);
      }

      .menu.open {
        display: flex;
      }

      .menu a {
        padding: 14px;
        border-radius: 14px;
      }

      .menu a:hover {
        background: rgba(255,255,255,0.05);
      }

      .mobile-menu-btn {
        display: grid;
        place-items: center;
      }

      .header .btn-primary {
        display: none;
      }

      .hero {
        padding-top: 62px;
      }

      .hero h1 {
        font-size: 2.6rem;
      }

      .hero p {
        font-size: 1rem;
      }

      .metrics,
      .cards-grid,
      .feature-grid,
      .portfolio-grid,
      .solutions-grid {
        grid-template-columns: 1fr;
      }

      .dashboard {
        padding: 20px;
      }

      .process-box,
      .cta-box {
        padding: 26px;
        border-radius: 28px;
      }

      .section {
        padding: 54px 0;
      }

      .cta {
        padding-top: 54px;
      }
    }
 

    .section-method {
  padding-top: 40px;
}

.method-header {
  max-width: 760px;
  margin-bottom: 42px;
}

.method-header .section-description {
  margin-top: 18px;
}

.method-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.method-card {
  position: relative;
  min-height: 260px;
  padding: 32px;
  border-radius: 30px;
  border: 1px solid rgba(255,255,255,0.1);
  background:
    linear-gradient(145deg, rgba(37,99,235,0.13), rgba(255,255,255,0.035)),
    #0a0f1a;
  overflow: hidden;
}

.method-card::after {
  content: "";
  position: absolute;
  right: -70px;
  bottom: -70px;
  width: 180px;
  height: 180px;
  border-radius: 999px;
  background: rgba(6,182,212,0.16);
  filter: blur(35px);
}

.method-number {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  margin-bottom: 36px;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  font-size: 0.85rem;
  font-weight: 800;
}

.method-card h3 {
  position: relative;
  z-index: 1;
  max-width: 250px;
  font-size: 1.35rem;
  line-height: 1.15;
  letter-spacing: -0.04em;
  margin-bottom: 16px;
}

.method-card p {
  position: relative;
  z-index: 1;
  color: var(--muted);
  line-height: 1.7;
  font-size: 0.95rem;
}

@media (max-width: 900px) {
  .method-grid {
    grid-template-columns: 1fr;
  }
}

.logo {
  height: 42px;
  width: auto;
  object-fit: contain;
}

.hero-logo {
  width: 280px;
  max-width: 100%;
  margin-bottom: 34px;
  filter: drop-shadow(0 0 28px rgba(37, 99, 235, 0.35));
}

.brand-watermark {
  position: fixed;
  right: -120px;
  bottom: -120px;
  width: 520px;
  opacity: 0.035;
  z-index: -1;
  pointer-events: none;
}

.card,
.feature-card,
.method-card,
.project-card,
.solution-card {
  position: relative;
  overflow: hidden;
}

.card::before,
.feature-card::before,
.method-card::before,
.project-card::before,
.solution-card::before {
  content: "ID";
  position: absolute;
  right: 22px;
  top: 18px;
  font-size: 4rem;
  font-weight: 800;
  letter-spacing: -0.12em;
  color: rgba(37, 99, 235, 0.045);
  pointer-events: none;
}

.card:hover,
.feature-card:hover,
.method-card:hover,
.project-card:hover,
.solution-card:hover {
  border-color: rgba(37, 99, 235, 0.45);
  box-shadow: 0 0 40px rgba(37, 99, 235, 0.08);
}

.section-kicker {
  color: #06b6d4;
  text-shadow: 0 0 18px rgba(6, 182, 212, 0.35);
}

.btn,
.btn-primary {
  background: linear-gradient(135deg, #2563eb, #06b6d4);
  box-shadow: 0 0 30px rgba(37, 99, 235, 0.25);
}

.project-visual {
  width: 100%;
  height: 180px;
  border-radius: 16px 16px 0 0;
  overflow: hidden;
  background: #0b1220;
}

.project-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.project-card {
  display: block;
  text-decoration: none;
  color: inherit;
}

.project-card:hover {
  transform: translateY(-6px);
  transition: 0.3s;
  cursor: pointer;
}

.dashboard-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.dashboard-logo {
  width: 40px;
  height: auto;
  opacity: 0.9;
}
.animated-bar {
  width: 40%;
  transition: width 0.8s ease;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  box-shadow: 0 0 18px rgba(6, 182, 212, 0.35);
}

.online {
  position: relative;
}

.online::before {
  content: "";
  width: 8px;
  height: 8px;
  background: #06b6d4;
  border-radius: 50%;
  display: inline-block;
  margin-right: 7px;
  animation: pulseOnline 1.4s infinite;
}

@keyframes pulseOnline {
  0%, 100% {
    opacity: 0.4;
    transform: scale(1);
  }

  50% {
    opacity: 1;
    transform: scale(1.35);
  }
}

.cta-button {
  position: relative;
  padding: 14px 26px;
  border-radius: 999px;

  background: transparent;
  color: #fff;
  font-weight: 600;

  border: 1px solid transparent;
  overflow: hidden;
}

.cta-button::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 999px;
  padding: 2px;

  background: linear-gradient(90deg, #2563eb, #06b6d4);

  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);

  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);

  -webkit-mask-composite: xor;
  mask-composite: exclude;

  pointer-events: none;
}

/* HOVER */
.cta-button:hover {
  background: rgba(255,255,255,0.05);
}

@media (max-width: 760px) {
  .metrics {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 36px;
    padding-top: 24px;
  }

  .metric {
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 16px 18px;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 18px;

    background: rgba(255,255,255,0.04);
  }

  .metric strong {
    font-size: 1.25rem;
  }

  .metric span {
    font-size: 0.9rem;
    text-align: right;
  }
}

.testimonials-grid {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  
}

.testimonial-card {
  position: relative;
  overflow: hidden;
  min-height: 300px;
  padding: 26px;
  border-radius: 28px;
  border: 1px solid var(--border);
  background:
    linear-gradient(145deg, rgba(37,99,235,0.12), rgba(255,255,255,0.035)),
    #0a0f1a;
    max-width: 320px;
    width: 100%;
}

.testimonial-card::before {
  content: "ID";
  position: absolute;
  right: 22px;
  top: 18px;
  font-size: 4rem;
  font-weight: 800;
  letter-spacing: -0.12em;
  color: rgba(37, 99, 235, 0.045);
  pointer-events: none;
}

.testimonial-profile {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 26px;
  position: relative;
  z-index: 1;
}

.testimonial-profile img {
  width: 54px;
  height: 54px;
  min-width: 54px;

  border-radius: 10px;
  object-fit: cover;
  object-position: center;
  display: block;
box-shadow: 0 0 0 1px rgba(255,255,255,0.08),
              0 6px 18px rgba(6,182,212,0.15);
  border: 1px solid rgba(6, 182, 212, 0.35);
  background: #0b1220;
}

.testimonial-profile h3 {
  font-size: 1rem;
  margin-bottom: 4px;
}

.testimonial-profile span {
  color: var(--cyan);
  font-size: 0.82rem;
  font-weight: 600;
}

.testimonial-card p {
  position: relative;
  z-index: 1;
  color: var(--muted-2);
  line-height: 1.75;
  font-size: 0.95rem;
}

@media (max-width: 760px) {
  .testimonials-grid {
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 16px;

    overflow-x: auto;
    overflow-y: hidden;

    scroll-snap-type: x mandatory;
    padding-bottom: 18px;

    width: 100%;
  }

  .testimonial-card {
    flex: 0 0 82%;
    width: 82%;
    max-width: 82%;
    min-width: 82%;

    scroll-snap-align: center;
  }

  .testimonials-grid::-webkit-scrollbar {
    display: none;
  }

  .testimonials-grid {
    scrollbar-width: none;
  }
}

.founder-section {
  padding-top: 90px;
}

.founder-box {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 42px;
  align-items: center;

  padding: 34px;
  border-radius: 34px;
  border: 1px solid var(--border);
  background:
    radial-gradient(circle at 15% 20%, rgba(6,182,212,0.14), transparent 35%),
    linear-gradient(145deg, rgba(37,99,235,0.10), rgba(255,255,255,0.03)),
    #08111f;
}

.founder-image {
  height: 430px;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.12);
}

.founder-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.founder-content h2 {
  font-size: clamp(2.2rem, 4vw, 4rem);
  letter-spacing: -0.055em;
  line-height: 1;
  margin-bottom: 10px;
}

.founder-role {
  color: var(--cyan);
  font-weight: 700;
  margin-bottom: 24px;
}

.founder-content p {
  color: var(--muted-2);
  line-height: 1.8;
  font-size: 1rem;
  margin-bottom: 16px;
}

.founder-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.founder-tags span {
  padding: 10px 14px;
  border-radius: 999px;
  color: #dbeafe;
  background: rgba(37,99,235,0.12);
  border: 1px solid rgba(6,182,212,0.22);
  font-size: 0.85rem;
  font-weight: 600;
}

@media (max-width: 760px) {
  .founder-box {
    grid-template-columns: 1fr;
    padding: 24px;
  }

  .founder-image {
    height: 320px;
  }
}