:root {
  --navy: #050D18;
  --navy2: #0A1728;
  --blue: #102A46;
  --gold: #B8934F;
  --gold2: #E4C477;
  --paper: #F6F1E8;
  --white: #FFFFFF;
  --text: #111827;
  --muted: #6B7280;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Tajawal', sans-serif;
  background: var(--paper);
  color: var(--text);
  overflow-x: hidden;
}

.cursor-glow {
  position: fixed;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(228,196,119,.18), transparent 65%);
  pointer-events: none;
  z-index: 1;
  transform: translate(-50%, -50%);
}

.rav-nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 50;
  padding: 20px 0;
  background: var(--paper);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  color: white;
  text-decoration: none;
  font-weight: 900;
  letter-spacing: 4px;
  font-size: 25px;
  width: 100px;
}

.brand span {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, var(--gold2), var(--gold));
  color: var(--navy);
  border-radius: 14px;
  margin-right: 10px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links a {
  color: var(--text);
  text-decoration: none;
  font-weight: 800;
}

.nav-links a:hover {
  color: var(--gold2);
}

.nav-cta {
  border: 1px solid var(--navy);
  padding: 10px 20px;
  border-radius: 999px;
}

.hero {
  position: relative;
  min-height: 100vh;
  color: white;
  background:
    radial-gradient(circle at 75% 20%, rgba(228,196,119,.20), transparent 27%),
    linear-gradient(135deg, #020710, var(--navy), var(--blue));
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 90px 90px;
  animation: gridMove 18s linear infinite;
}

@keyframes gridMove {
  from { background-position: 0 0; }
  to { background-position: 90px 90px; }
}

.hero-bg-text {
  position: absolute;
  left: -30px;
  bottom: -55px;
  font-size: 15vw;
  font-weight: 900;
  color: rgba(255,255,255,.035);
  letter-spacing: -10px;
  line-height: 1;
}

.orb {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(228,196,119,.18);
  animation: floatOrb 7s ease-in-out infinite;
}

.orb-one {
  width: 620px;
  height: 620px;
  right: -220px;
  top: 80px;
}

.orb-two {
  width: 250px;
  height: 250px;
  left: 8%;
  bottom: 12%;
  animation-delay: 1.5s;
}

@keyframes floatOrb {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-28px); }
}

.hero-content {
  position: relative;
  z-index: 3;
  margin-top: 80px;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold2);
  background: rgba(228,196,119,.08);
  border: 1px solid rgba(228,196,119,.28);
  border-radius: 999px;
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.tag::before {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--gold2);
  border-radius: 50%;
  box-shadow: 0 0 16px var(--gold2);
}

.tag.dark {
  color: var(--navy);
  background: rgba(184,147,79,.12);
  border-color: rgba(184,147,79,.22);
}

.hero h1 {
  font-size: clamp(54px, 7vw, 105px);
  line-height: .92;
  margin: 30px 0;
  font-weight: 900;
  letter-spacing: -3px;
}

.hero-p {
  max-width: 760px;
  font-size: 21px;
  line-height: 1.85;
  color: rgba(255,255,255,.72);
  font-weight: 500;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.btn-main,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 30px;
  border-radius: 16px;
  text-decoration: none;
  font-weight: 900;
}

.btn-main {
  background: linear-gradient(145deg, var(--gold2), var(--gold));
  color: var(--navy);
  box-shadow: 0 22px 60px rgba(184,147,79,.24);
}

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

.hero-console {
  padding: 34px;
  border-radius: 34px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  backdrop-filter: blur(24px);
  box-shadow: 0 45px 120px rgba(0,0,0,.28);
}

.console-head {
  display: flex;
  justify-content: space-between;
  color: rgba(255,255,255,.7);
  font-weight: 900;
}

.console-head small {
  color: var(--gold2);
}

.console-number {
  font-size: 120px;
  color: var(--gold2);
  font-weight: 900;
  line-height: 1;
  margin: 30px 0 10px;
}

.hero-console p {
  color: rgba(255,255,255,.7);
  font-size: 17px;
}

.console-list {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.console-list div {
  display: flex;
  gap: 14px;
  padding: 15px;
  border-radius: 16px;
  background: rgba(255,255,255,.07);
  color: white;
  font-weight: 800;
}

.console-list span {
  color: var(--gold2);
}

.founder-section {
  padding: 120px 0;
  background: var(--paper);
}

.founder-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 60px;
  align-items: center;
}

.founder-frame {
  position: relative;
  min-height: 560px;
  border-radius: 46px;
  background:
    radial-gradient(circle at top, rgba(228,196,119,.24), transparent 30%),
    linear-gradient(145deg, var(--navy), var(--blue));
  display: grid;
  place-items: center;
  overflow: hidden;
  box-shadow: 0 40px 120px rgba(5,13,24,.18);
}

.founder-frame::before {
  content: "FOUNDER";
  position: absolute;
  bottom: -10px;
  font-size: 90px;
  font-weight: 900;
  color: rgba(255,255,255,.05);
}

.founder-initials {
  width: 180px;
  height: 180px;
  border-radius: 42px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, var(--gold2), var(--gold));
  color: var(--navy);
  font-size: 58px;
  font-weight: 900;
  z-index: 2;
}

.founder-ring {
  position: absolute;
  width: 340px;
  height: 340px;
  border: 1px solid rgba(228,196,119,.28);
  border-radius: 50%;
  animation: spin 16s linear infinite;
}

.founder-ring::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  background: var(--gold2);
  border-radius: 50%;
  top: 35px;
  left: 55px;
  box-shadow: 0 0 25px var(--gold2);
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.founder-content h2,
.section-head h2,
.sectors-section h2,
.vision-section h2,
.contact-card h2 {
  font-size: clamp(42px, 5vw, 72px);
  line-height: 1.03;
  color: var(--navy);
  font-weight: 900;
  letter-spacing: -2px;
  margin: 26px 0;
}

.founder-content p {
  color: var(--muted);
  font-size: 20px;
  line-height: 1.9;
}

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

.founder-stats div {
  background: white;
  padding: 24px;
  border-radius: 24px;
  border: 1px solid rgba(184,147,79,.16);
  box-shadow: 0 18px 60px rgba(5,13,24,.06);
}

.founder-stats strong {
  display: block;
  color: var(--navy);
  font-size: 34px;
  font-weight: 900;
}

.founder-stats span {
  color: var(--muted);
  font-weight: 800;
}

.portfolio-section {
  padding: 120px 0;
  background: white;
}

.section-head {
  max-width: 900px;
  margin-bottom: 65px;
}

.portfolio-stack {
  display: grid;
  gap: 18px;
}

.company-item {
  position: relative;
  display: grid;
  grid-template-columns: 90px 1fr 1.3fr 180px;
  align-items: center;
  gap: 25px;
  padding: 34px;
  border-radius: 28px;
  background: var(--paper);
  border: 1px solid rgba(184,147,79,.14);
  overflow: hidden;
  transition: .35s ease;
}

.company-item:hover {
  transform: scale(.985);
  background: var(--navy);
  color: white;
}

.company-item:hover p {
  color: rgba(255,255,255,.68);
}

.company-item:hover h3 {
  color: white;
}

.num {
  color: var(--gold);
  font-weight: 900;
  letter-spacing: 2px;
}

.company-item h3 {
  color: var(--navy);
  font-size: 38px;
  font-weight: 900;
}

.company-item p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
  margin: 0;
}

.company-item small {
  color: var(--gold);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.sectors-section {
  padding: 125px 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(228,196,119,.18), transparent 28%),
    linear-gradient(135deg, var(--navy), var(--blue));
  color: white;
}

.sectors-section h2 {
  color: white;
}

.sectors-section p {
  color: rgba(255,255,255,.7);
  font-size: 19px;
  line-height: 1.85;
}

.sector-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.sector-card {
  min-height: 190px;
  display: flex;
  align-items: end;
  padding: 34px;
  border-radius: 30px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  color: white;
  font-size: 28px;
  font-weight: 900;
  transition: .35s ease;
}

.sector-card:hover {
  background: rgba(228,196,119,.14);
  transform: translateY(-10px);
}

.method-section {
  padding: 120px 0;
  background: var(--paper);
}

.method-line {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.method-step {
  background: white;
  padding: 34px;
  min-height: 280px;
  border-radius: 30px;
  border: 1px solid rgba(184,147,79,.16);
  box-shadow: 0 20px 70px rgba(5,13,24,.06);
}

.method-step span {
  color: var(--gold);
  font-weight: 900;
}

.method-step h4 {
  color: var(--navy);
  font-size: 32px;
  font-weight: 900;
  margin: 32px 0 16px;
}

.method-step p {
  color: var(--muted);
  line-height: 1.8;
}

.vision-section {
  padding: 140px 0;
  background:
    radial-gradient(circle at center, rgba(228,196,119,.18), transparent 30%),
    var(--navy);
  color: white;
}

.vision-section h2 {
  color: white;
  max-width: 1100px;
  margin: 28px auto;
}

.vision-section p {
  color: rgba(255,255,255,.7);
  font-size: 21px;
}

.contact-section {
  padding: 110px 0;
  background: white;
}

.contact-card {
  text-align: center;
  padding: 80px;
  border-radius: 46px;
  background:
    radial-gradient(circle at top right, rgba(228,196,119,.24), transparent 30%),
    linear-gradient(145deg, var(--navy), var(--blue));
  color: white;
  box-shadow: 0 40px 120px rgba(5,13,24,.16);
}

.contact-card h2 {
  color: white;
}

.contact-card p {
  color: rgba(255,255,255,.7);
  font-size: 20px;
  margin-bottom: 32px;
}

footer {
  background: #020710;
  color: white;
  padding: 30px 0;
}

.footer-wrap {
  display: flex;
  justify-content: space-between;
}

.footer-wrap strong {
  color: var(--gold2);
  letter-spacing: 3px;
}

.footer-wrap span {
  color: rgba(255,255,255,.5);
}

.reveal {
  opacity: 0;
  transform: translateY(45px);
  transition: 1s cubic-bezier(.2,.8,.2,1);
}

.reveal.show {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { transition-delay: .12s; }
.delay-2 { transition-delay: .24s; }
.delay-3 { transition-delay: .36s; }
.delay-4 { transition-delay: .48s; }

@media (max-width: 991px) {
  .nav-links {
    display: none;
  }

  .hero {
    padding: 120px 0 70px;
  }

  .hero-console {
    margin-top: 45px;
  }

  .founder-grid,
  .company-item,
  .method-line {
    grid-template-columns: 1fr;
  }

  .sector-grid,
  .founder-stats {
    grid-template-columns: 1fr;
  }

  .founder-frame {
    min-height: 420px;
  }
}

@media (max-width: 575px) {
  .hero h1 {
    font-size: 46px;
  }

  .hero-p {
    font-size: 17px;
  }

  .contact-card {
    padding: 36px;
  }

  .footer-wrap {
    flex-direction: column;
    gap: 12px;
  }
}

/* =========================
   Raventis Final Premium Fixes
   Founder / Companies / Responsive
========================= */
.founder-section {
            position: relative;
            overflow: hidden;
            padding: 130px 0;
        }

        .founder-section::before {
            content: "";
            position: absolute;
            width: 520px;
            height: 520px;
            right: -160px;
            top: 80px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(6, 23, 47, .14), transparent 66%);
            pointer-events: none;
        }

        .founder-section::after {
            content: "FOUNDER";
            position: absolute;
            left: 3%;
            bottom: 28px;
            font-size: clamp(58px, 11vw, 160px);
            font-weight: 900;
            letter-spacing: .08em;
            color: rgba(6, 23, 47, .035);
            pointer-events: none;
        }

        .founder-grid {
            position: relative;
            z-index: 2;
            display: grid;
            grid-template-columns: .9fr 1.1fr;
            align-items: center;
            gap: 70px;
        }

        .founder-visual {
            position: relative;
        }

        .founder-frame {
            width: min(430px, 100%);
            aspect-ratio: 1 / 1.15;
            margin: auto;
            border-radius: 34px;
            overflow: hidden;
            position: relative;
            background: linear-gradient(145deg, rgba(6, 23, 47, .12), rgba(255, 255, 255, .88));
            border: 1px solid rgba(6, 23, 47, .12);
            box-shadow: 0 35px 90px rgba(6, 23, 47, .18);
        }

        .founder-frame::before {
            content: "";
            position: absolute;
            inset: 14px;
            border-radius: 26px;
            border: 1px solid rgba(255, 255, 255, .45);
            z-index: 3;
            pointer-events: none;
        }

        .founder-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center top;
            border-radius: inherit;
            position: relative;
            z-index: 2;
            filter: saturate(1.03) contrast(1.02);
        }

        .founder-ring {
            position: absolute;
            inset: auto 22px 22px 22px;
            height: 105px;
            border-radius: 24px;
            background: linear-gradient(180deg, rgba(6, 23, 47, .92), rgba(6, 23, 47, .72));
            z-index: 4;
            border: 1px solid rgba(255, 255, 255, .14);
            box-shadow: 0 22px 60px rgba(0, 0, 0, .22);
        }

        .founder-ring::before {
            content: "Amir Mamdouh Narouz";
            position: absolute;
            left: 22px;
            top: 22px;
            color: #fff;
            font-weight: 900;
            font-size: 18px;
            letter-spacing: .2px;
        }

        .founder-ring::after {
            content: "Founder & CEO · Raventis Group";
            position: absolute;
            left: 22px;
            top: 52px;
            color: rgba(255, 255, 255, .74);
            font-size: 13px;
            font-weight: 600;
        }

        .founder-badge {
            position: absolute;
            right: -18px;
            top: 46px;
            z-index: 5;
            width: 120px;
            height: 120px;
            border-radius: 50%;
            display: grid;
            place-items: center;
            text-align: center;
            background: #06172f;
            color: #fff;
            border: 8px solid #fff;
            box-shadow: 0 18px 50px rgba(6, 23, 47, .22);
            font-weight: 900;
            line-height: 1.1;
        }

        .founder-badge span {
            display: block;
            font-size: 28px;
        }

        .founder-badge small {
            display: block;
            font-size: 11px;
            opacity: .75;
            margin-top: 4px;
        }

        .founder-content {
            padding: 40px;
            border-radius: 34px;
            background: rgba(255, 255, 255, .62);
            border: 1px solid rgba(6, 23, 47, .09);
            box-shadow: 0 28px 80px rgba(6, 23, 47, .08);
            backdrop-filter: blur(18px);
        }

        .founder-content h2 {
            max-width: 780px;
            margin-top: 16px;
            margin-bottom: 20px;
            line-height: 1.04;
        }

        .founder-lead {
            font-size: 18px;
            line-height: 1.85;
            color: rgba(6, 23, 47, .82);
            margin-bottom: 18px;
        }

        .founder-about-grid {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 14px;
            margin: 28px 0;
        }

        .founder-mini-card {
            padding: 18px;
            border-radius: 22px;
            background: rgba(6, 23, 47, .055);
            border: 1px solid rgba(6, 23, 47, .08);
            transition: transform .3s ease, box-shadow .3s ease;
        }

        .founder-mini-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 16px 40px rgba(6, 23, 47, .09);
        }

        .founder-mini-card strong {
            display: block;
            margin-bottom: 7px;
            color: #06172f;
            font-size: 16px;
            font-weight: 900;
        }

        .founder-mini-card span {
            display: block;
            color: rgba(6, 23, 47, .68);
            font-size: 14px;
            line-height: 1.65;
        }

        .founder-highlights {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin: 22px 0 26px;
        }

        .founder-highlights span {
            padding: 9px 14px;
            border-radius: 999px;
            font-size: 14px;
            font-weight: 800;
            letter-spacing: .2px;
            color: #06172f;
            background: rgba(6, 23, 47, .075);
            border: 1px solid rgba(6, 23, 47, .11);
        }

        .founder-stats {
            display: grid;
            grid-template-columns: repeat(4, minmax(0, 1fr));
            gap: 12px;
            margin-top: 22px;
        }

        .founder-stats div {
            padding: 18px 14px;
            border-radius: 22px;
            background: #06172f;
            color: #fff;
            min-height: 112px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .founder-stats strong {
            display: block;
            font-size: 26px;
            font-weight: 900;
            line-height: 1;
            margin-bottom: 9px;
        }

        .founder-stats span {
            display: block;
            font-size: 12px;
            font-weight: 700;
            color: rgba(255, 255, 255, .7);
            line-height: 1.35;
        }

        .founder-quote {
            margin-top: 24px;
            padding: 20px 22px;
            border-radius: 22px;
            color: #06172f;
            background: linear-gradient(135deg, rgba(6, 23, 47, .08), rgba(6, 23, 47, .025));
            border: 1px solid rgba(6, 23, 47, .09);
        }

        .founder-quote p {
            margin: 0;
            font-weight: 900;
            line-height: 1.7;
        }

        .section-head p {
            max-width: 760px;
            margin-top: 14px;
            opacity: .78;
            line-height: 1.8;
        }

        @media (max-width: 991px) {
            .founder-grid {
                grid-template-columns: 1fr;
                gap: 38px;
            }

            .founder-content {
                padding: 28px;
            }

            .founder-badge {
                right: 12px;
            }
        }

        @media (max-width: 576px) {
            .founder-section {
                padding: 90px 0;
            }

            .founder-about-grid,
            .founder-stats {
                grid-template-columns: 1fr;
            }

            .founder-content {
                padding: 22px;
                border-radius: 26px;
            }

            .founder-frame {
                border-radius: 28px;
            }
        }

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(228,196,119,.08), transparent 26%),
    radial-gradient(circle at 82% 74%, rgba(16,42,70,.08), transparent 30%);
}

body > *:not(.cursor-glow) {
  position: relative;
  z-index: 2;
}

.rav-nav {
  background: rgba(246,241,232,.84);
  border-bottom: 1px solid rgba(5,13,24,.08);
}

.brand img {
  display: block;
  max-height: 62px;
  object-fit: contain;
}

.nav-cta:hover,
.btn-main:hover,
.btn-secondary:hover {
  transform: translateY(-2px);
}

.btn-main,
.btn-secondary,
.nav-cta,
.company-item,
.method-step,
.sector-card {
  transition: transform .28s ease, background .28s ease, color .28s ease, border-color .28s ease, box-shadow .28s ease;
}

.founder-content {
  isolation: isolate;
}

.founder-mini-card,
.founder-stats div,
.company-item,
.method-step {
  position: relative;
  overflow: hidden;
}

.founder-mini-card::after,
.founder-stats div::after,
.company-item::after,
.method-step::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,.22), transparent);
  transform: translateX(-120%);
  transition: transform .65s ease;
  pointer-events: none;
}

.founder-mini-card:hover::after,
.founder-stats div:hover::after,
.company-item:hover::after,
.method-step:hover::after {
  transform: translateX(120%);
}

.founder-section {
  background:
    radial-gradient(circle at 90% 10%, rgba(184,147,79,.14), transparent 26%),
    linear-gradient(180deg, var(--paper), #fff 54%, var(--paper));
}

.founder-frame {
  transform-style: preserve-3d;
}

.founder-image {
  display: block;
}

.founder-content h2 {
  background: linear-gradient(135deg, var(--navy), var(--blue));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.founder-lead strong {
  color: var(--navy);
}

.founder-highlights span {
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.35);
}

.portfolio-section {
  background:
    linear-gradient(180deg, #fff, #fbf8f1 52%, #fff);
}

.company-item {
  min-height: 160px;
}

.company-item h3,
.company-item p,
.company-item small,
.company-item .num {
  position: relative;
  z-index: 2;
}

.company-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 92% 50%, rgba(228,196,119,.18), transparent 24%),
    linear-gradient(135deg, var(--navy), var(--blue));
  opacity: 0;
  transition: opacity .32s ease;
}

.company-item:hover::before {
  opacity: 1;
}

.company-item:hover {
  transform: translateY(-6px) scale(1);
  box-shadow: 0 28px 80px rgba(5,13,24,.16);
}

.section-head p {
  color: var(--muted);
  font-size: 18px;
}

.cursor-glow {
  mix-blend-mode: multiply;
}

@media (max-width: 1200px) {
  .company-item {
    grid-template-columns: 70px 1fr 1.2fr 150px;
  }
}

@media (max-width: 991px) {
  .hero-content {
    margin-top: 20px;
  }

  .founder-section,
  .portfolio-section,
  .sectors-section,
  .method-section,
  .contact-section {
    padding: 90px 0;
  }

  .company-item {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .company-item h3 {
    font-size: 32px;
  }

  .founder-frame {
    width: min(430px, 100%);
  }
}

@media (max-width: 575px) {
  .cursor-glow {
    display: none;
  }

  .brand {
    width: 86px;
  }

  .hero h1 {
    letter-spacing: -1.4px;
  }

  .hero-actions a {
    width: 100%;
  }

  .founder-badge {
    width: 92px;
    height: 92px;
    border-width: 6px;
    right: 0;
    top: 22px;
  }

  .founder-badge span {
    font-size: 22px;
  }

  .founder-ring {
    left: 14px;
    right: 14px;
    bottom: 14px;
  }

  .founder-ring::before,
  .founder-ring::after {
    left: 16px;
  }

  .founder-ring::before {
    font-size: 15px;
  }

  .founder-ring::after {
    font-size: 11px;
  }

  .section-head {
    margin-bottom: 38px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}



/* =========================
   Premium About / Founder Section
   Replaces old founder styling
========================= */

.about-founder-section {
  position: relative;
  overflow: hidden;
  padding: 140px 0;
  background:
    radial-gradient(circle at 12% 15%, rgba(228,196,119,.16), transparent 28%),
    radial-gradient(circle at 88% 78%, rgba(16,42,70,.10), transparent 30%),
    linear-gradient(180deg, var(--paper), #fff 52%, var(--paper));
}

.about-founder-section::before {
  content: "ABOUT";
  position: absolute;
  right: -18px;
  top: 70px;
  font-size: clamp(64px, 13vw, 190px);
  font-weight: 900;
  letter-spacing: -.06em;
  color: rgba(5,13,24,.035);
  line-height: 1;
  pointer-events: none;
}

.about-founder-shell {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 72px;
  align-items: center;
  padding: 34px;
  border-radius: 48px;
  background: rgba(255,255,255,.58);
  border: 1px solid rgba(184,147,79,.16);
  box-shadow: 0 45px 120px rgba(5,13,24,.10);
  backdrop-filter: blur(22px);
}

.about-founder-media {
  position: relative;
  min-height: 560px;
  display: grid;
  place-items: center;
}

.about-founder-orbit {
  position: absolute;
  width: min(470px, 88vw);
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid rgba(184,147,79,.24);
  animation: spin 22s linear infinite;
}

.about-founder-orbit::before,
.about-founder-orbit::after {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--gold2);
  box-shadow: 0 0 28px rgba(228,196,119,.85);
}

.about-founder-orbit::before {
  top: 42px;
  left: 72px;
}

.about-founder-orbit::after {
  right: 62px;
  bottom: 64px;
  width: 10px;
  height: 10px;
  opacity: .75;
}

.about-founder-card {
  position: relative;
  width: min(390px, 100%);
  aspect-ratio: 1 / 1.22;
  border-radius: 38px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 0%, rgba(228,196,119,.34), transparent 38%),
    linear-gradient(145deg, var(--navy), var(--blue));
  box-shadow: 0 38px 100px rgba(5,13,24,.24);
  border: 1px solid rgba(255,255,255,.16);
  transform-style: preserve-3d;
}

.about-founder-card::before {
  content: "";
  position: absolute;
  inset: 14px;
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,.35);
  z-index: 3;
  pointer-events: none;
}

.about-founder-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center top;
  filter: saturate(1.04) contrast(1.04);
}

.about-founder-name {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  z-index: 4;
  padding: 20px;
  border-radius: 24px;
  background: rgba(5,13,24,.78);
  border: 1px solid rgba(255,255,255,.13);
  backdrop-filter: blur(18px);
}

.about-founder-name strong,
.about-founder-name span {
  display: block;
}

.about-founder-name strong {
  color: #fff;
  font-size: 18px;
  font-weight: 900;
}

.about-founder-name span {
  margin-top: 5px;
  color: rgba(255,255,255,.66);
  font-size: 13px;
  font-weight: 700;
}

.about-founder-floating-card {
  position: absolute;
  z-index: 5;
  min-width: 132px;
  padding: 17px 18px;
  border-radius: 22px;
  background: rgba(255,255,255,.84);
  border: 1px solid rgba(184,147,79,.20);
  box-shadow: 0 20px 55px rgba(5,13,24,.12);
  backdrop-filter: blur(16px);
}

.about-founder-floating-card.top {
  top: 72px;
  right: 8px;
}

.about-founder-floating-card.bottom {
  left: 0;
  bottom: -10px;
}

.about-founder-floating-card strong {
  display: block;
  color: var(--navy);
  font-size: 28px;
  font-weight: 900;
  line-height: 1;
}

.about-founder-floating-card span {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .8px;
}

.about-founder-content h2 {
  max-width: 760px;
  margin: 22px 0;
  font-size: 38px;
  line-height: 1.02;
  letter-spacing: -2.4px;
  font-weight: 900;
  color: transparent;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  -webkit-background-clip: text;
  background-clip: text;
}

.about-founder-lead {
  max-width: 760px;
  color: rgba(5,13,24,.72);
  font-size: 19px;
  line-height: 1.9;
  font-weight: 500;
  margin-bottom: 28px;
}

.about-founder-points {
  display: grid;
  gap: 14px;
  margin: 30px 0;
}

.about-founder-points div {
  position: relative;
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 6px 16px;
  padding: 20px;
  border-radius: 24px;
  background: rgba(246,241,232,.78);
  border: 1px solid rgba(184,147,79,.15);
  transition: transform .28s ease, box-shadow .28s ease, background .28s ease;
  overflow: hidden;
}

.about-founder-points div:hover {
  transform: translateX(6px);
  background: #fff;
  box-shadow: 0 18px 48px rgba(5,13,24,.08);
}

.about-founder-points span {
  grid-row: span 2;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: var(--navy);
  background: linear-gradient(145deg, var(--gold2), var(--gold));
  font-weight: 900;
}

.about-founder-points strong {
  color: var(--navy);
  font-size: 18px;
  font-weight: 900;
}

.about-founder-points p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.about-founder-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.about-founder-stats div {
  padding: 22px 18px;
  border-radius: 24px;
  background:
    radial-gradient(circle at top right, rgba(228,196,119,.16), transparent 42%),
    linear-gradient(145deg, var(--navy), var(--blue));
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 22px 65px rgba(5,13,24,.12);
}

.about-founder-stats strong {
  display: block;
  color: var(--gold2);
  font-size: 31px;
  font-weight: 900;
  line-height: 1;
}

.about-founder-stats span {
  display: block;
  margin-top: 9px;
  color: rgba(255,255,255,.68);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.35;
}

@media (max-width: 991px) {
  .about-founder-section {
    padding: 90px 0;
  }

  .about-founder-shell {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 24px;
  }

  .about-founder-media {
    min-height: 500px;
  }

  .about-founder-content h2 {
    letter-spacing: -1.5px;
  }
}

@media (max-width: 575px) {
  .about-founder-shell {
    padding: 16px;
    border-radius: 32px;
  }

  .about-founder-media {
    min-height: 430px;
  }

  .about-founder-card {
    width: 100%;
    border-radius: 30px;
  }

  .about-founder-floating-card {
    min-width: 105px;
    padding: 14px;
  }

  .about-founder-floating-card.top {
    right: -2px;
    top: 38px;
  }

  .about-founder-floating-card.bottom {
    left: -2px;
    bottom: 44px;
  }

  .about-founder-points div,
  .about-founder-stats {
    grid-template-columns: 1fr;
  }

  .about-founder-points span {
    margin-bottom: 4px;
  }

  .about-founder-lead {
    font-size: 17px;
  }
}
