/* =========================================================
   AHMED MAHER — PERSONAL WEBSITE
   V2 STYLE SYSTEM
   Black90-inspired / Founder-led / Minimal / Premium
========================================================= */


/* =========================================================
   01. ROOT
========================================================= */

:root {

  /* Brand */
  --black: #050505;
  --black-2: #080808;
  --black-3: #0d0d0d;
  --black-4: #121212;
  --black-5: #181818;

  --yellow: #ffd400;
  --yellow-hover: #ffe451;

  --white: #ffffff;
  --white-soft: #f3f3f3;

  --gray-light: #c2c2c2;
  --gray: #8c8c8c;
  --gray-dark: #5f5f5f;

  /* Borders */
  --border: rgba(255, 255, 255, 0.09);
  --border-hover: rgba(255, 255, 255, 0.18);
  --yellow-border: rgba(255, 212, 0, 0.35);

  /* Effects */
  --yellow-soft: rgba(255, 212, 0, 0.08);

  --shadow:
    0 30px 80px rgba(0, 0, 0, 0.42);

  --shadow-small:
    0 15px 40px rgba(0, 0, 0, 0.30);

  /* Layout */
  --container: 1200px;

  --header-height: 76px;

  --radius: 8px;
  --radius-card: 18px;
  --radius-large: 30px;

  /* Motion */
  --ease:
    cubic-bezier(0.22, 1, 0.36, 1);

  --ease-standard:
    cubic-bezier(0.4, 0, 0.2, 1);
}



/* =========================================================
   02. RESET
========================================================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}


body {
  font-family:
    "Cairo",
    Arial,
    sans-serif;

  background:
    var(--black);

  color:
    var(--white);

  line-height: 1.8;

  overflow-x: hidden;

  -webkit-font-smoothing:
    antialiased;

  text-rendering:
    optimizeLegibility;
}


body.menu-open {
  overflow: hidden;
}


a {
  color: inherit;
  text-decoration: none;
}


button,
input,
textarea {
  font-family: inherit;
}


button {
  cursor: pointer;
}


img {
  display: block;
  max-width: 100%;
}


::selection {
  background:
    var(--yellow);

  color:
    var(--black);
}


.container {
  width:
    min(92%, var(--container));

  margin-inline: auto;
}



/* =========================================================
   03. GLOBAL BACKGROUND
========================================================= */

.noise {
  position: fixed;

  inset: 0;

  pointer-events: none;

  z-index: -20;

  opacity: 0.02;

  background-image:
    radial-gradient(
      rgba(255,255,255,.9) 0.8px,
      transparent 0.8px
    );

  background-size:
    5px 5px;
}


.glow {
  position: fixed;

  width: 500px;
  height: 500px;

  border-radius: 50%;

  filter:
    blur(180px);

  pointer-events: none;

  z-index: -15;
}


.glow-one {
  background:
    var(--yellow);

  top: -320px;
  right: -260px;

  opacity: 0.045;
}


.glow-two {
  background:
    var(--yellow);

  bottom: -350px;
  left: -300px;

  opacity: 0.025;
}



/* =========================================================
   04. GENERAL SECTIONS
========================================================= */

.section {
  position: relative;

  padding:
    125px 0;

  overflow: hidden;
}


.section-dark {
  background:
    var(--black-2);
}


/* small section accent */

.section::before {
  content: "";

  position: absolute;

  top: 0;
  right: 5%;

  width: 70px;
  height: 3px;

  background:
    var(--yellow);
}



/* =========================================================
   05. HEADER
========================================================= */

.header {
  position: fixed;

  top: 0;
  right: 0;
  left: 0;

  height:
    var(--header-height);

  z-index: 1000;

  background:
    rgba(5, 5, 5, 0.70);

  backdrop-filter:
    blur(20px);

  -webkit-backdrop-filter:
    blur(20px);

  border-bottom:
    1px solid transparent;

  transition:
    background .3s ease,
    border-color .3s ease,
    box-shadow .3s ease;
}


.header.scrolled {
  background:
    rgba(5, 5, 5, 0.94);

  border-color:
    var(--border);

  box-shadow:
    0 8px 30px
    rgba(0,0,0,.18);
}


.nav {
  position: relative;

  height: 100%;

  display: flex;

  align-items: center;

  justify-content: space-between;
}



/* =========================================================
   06. LOGO
========================================================= */

.logo {
  direction: ltr;

  display: inline-flex;

  align-items: center;

  font-family:
    Arial,
    sans-serif;

  font-size: 30px;

  font-weight: 900;

  letter-spacing: -2px;

  line-height: 1;

  transition:
    transform .3s var(--ease);
}


.logo:hover {
  transform:
    translateY(-2px);
}


.logo span {
  color:
    var(--yellow);

  margin-right: 1px;
}



/* =========================================================
   07. DESKTOP NAVIGATION
========================================================= */

.desktop-nav {
  display: flex;

  align-items: center;

  gap: 30px;
}


.desktop-nav a {
  position: relative;

  color:
    var(--gray-light);

  font-size: 12px;

  font-weight: 600;

  transition:
    color .25s ease;
}


.desktop-nav a::after {
  content: "";

  position: absolute;

  right: 0;

  bottom: -9px;

  width: 0;

  height: 2px;

  background:
    var(--yellow);

  transition:
    width .3s var(--ease);
}


.desktop-nav a:hover,
.desktop-nav a.active {
  color:
    var(--white);
}


.desktop-nav a:hover::after,
.desktop-nav a.active::after {
  width: 100%;
}


.nav-actions {
  display: flex;

  align-items: center;

  gap: 12px;
}



/* =========================================================
   08. MOBILE MENU
========================================================= */

.menu-btn {
  display: none;

  width: 42px;
  height: 42px;

  align-items: center;

  justify-content: center;

  border:
    1px solid var(--border);

  background:
    var(--black-3);

  color:
    var(--yellow);

  border-radius:
    var(--radius);

  font-size: 18px;
}


.mobile-menu {
  display: none;

  position: absolute;

  top:
    var(--header-height);

  right: 0;
  left: 0;

  background:
    rgba(5,5,5,.98);

  border-bottom:
    1px solid var(--border);

  padding:
    22px 4%;
}


.mobile-menu.active {
  display: grid;

  gap: 0;
}


.mobile-menu a {
  padding:
    15px 0;

  color:
    var(--gray-light);

  border-bottom:
    1px solid var(--border);

  transition:
    color .25s ease,
    padding-right .25s var(--ease);
}


.mobile-menu a:last-child {
  border-bottom: 0;
}


.mobile-menu a:hover,
.mobile-menu a.active {
  color:
    var(--yellow);

  padding-right:
    8px;
}



/* =========================================================
   09. BUTTONS
========================================================= */

.btn {
  position: relative;

  display: inline-flex;

  align-items: center;

  justify-content: center;

  min-height: 49px;

  padding:
    0 25px;

  overflow: hidden;

  border:
    2px solid var(--yellow);

  border-radius:
    var(--radius);

  background:
    var(--yellow);

  color:
    var(--black);

  font-size: 12px;

  font-weight: 800;

  white-space: nowrap;

  transition:
    transform .3s var(--ease),
    background .3s ease,
    border-color .3s ease,
    color .3s ease;
}


.btn::before {
  content: "";

  position: absolute;

  top: 0;

  left: -120%;

  width: 70%;
  height: 100%;

  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(255,255,255,.4),
      transparent
    );

  transform:
    skewX(-20deg);

  transition:
    left .6s ease;
}


.btn:hover::before {
  left: 140%;
}


.btn:hover {
  transform:
    translateY(-2px);

  background:
    var(--white);

  border-color:
    var(--white);
}


.btn-outline {
  background:
    transparent;

  color:
    var(--white);

  border-color:
    var(--border-hover);
}


.btn-outline:hover {
  background:
    var(--white);

  border-color:
    var(--white);

  color:
    var(--black);
}


.btn-small {
  min-height: 39px;

  padding:
    0 17px;

  font-size: 11px;
}



/* =========================================================
   10. HERO
========================================================= */

.hero {
  position: relative;

  min-height: 100vh;

  display: flex;

  align-items: center;

  padding-top:
    150px;

  background:
    linear-gradient(
      90deg,
      rgba(255,212,0,.025),
      transparent 35%
    ),
    var(--black);
}


/* geometric background */

.hero::after {
  content: "";

  position: absolute;

  width: 320px;
  height: 320px;

  left: -175px;

  bottom: 80px;

  border:
    50px solid var(--yellow);

  opacity: .025;

  transform:
    rotate(45deg);

  pointer-events: none;

  animation:
    heroShape 22s linear infinite;
}


@keyframes heroShape {

  from {
    transform:
      rotate(45deg);
  }

  to {
    transform:
      rotate(405deg);
  }

}


.hero-grid {
  display: grid;

  grid-template-columns:
    1.12fr .88fr;

  gap: 90px;

  align-items: center;
}



/* =========================================================
   11. HERO COPY
========================================================= */

.hero-copy {
  position: relative;

  z-index: 2;
}


.eyebrow,
.label {
  display: inline-flex;

  align-items: center;

  gap: 10px;

  color:
    var(--yellow);

  font-family:
    Arial,
    sans-serif;

  font-size: 10px;

  font-weight: 800;

  letter-spacing: 2.4px;

  text-transform: uppercase;
}


.eyebrow::before,
.label::before {
  content: "";

  width: 32px;
  height: 3px;

  background:
    var(--yellow);
}


.hero h1 {
  max-width: 900px;

  margin-top: 27px;

  font-size:
    clamp(50px, 6vw, 86px);

  line-height: 1.15;

  letter-spacing: -3px;

  font-weight: 900;
}


.hero h1 span {
  color:
    var(--yellow);
}


.hero-description {
  max-width: 700px;

  margin-top: 30px;

  color:
    var(--gray-light);

  font-size: 15px;

  line-height: 2.05;
}


.hero-buttons {
  display: flex;

  align-items: center;

  flex-wrap: wrap;

  gap: 12px;

  margin-top: 35px;
}



/* =========================================================
   12. HERO STATS
========================================================= */

.hero-stats {
  display: flex;

  max-width: 650px;

  margin-top: 65px;

  border-top:
    1px solid var(--border);
}


.hero-stats div {
  flex: 1;

  padding:
    24px 24px 0;

  border-left:
    1px solid var(--border);
}


.hero-stats div:first-child {
  padding-right: 0;
}


.hero-stats div:last-child {
  border-left: 0;
}


.hero-stats strong {
  display: block;

  font-family:
    Arial,
    sans-serif;

  color:
    var(--yellow);

  font-size: 25px;

  font-weight: 900;
}


.hero-stats span {
  display: block;

  margin-top: 3px;

  color:
    var(--gray);

  font-size: 10px;
}



/* =========================================================
   13. HERO IMAGE
========================================================= */

.hero-visual {
  display: flex;

  align-items: center;

  justify-content: center;
}


.profile-frame {
  position: relative;

  width: 390px;

  height: 520px;
}


.profile-placeholder {
  position: relative;

  width: 100%;

  height: 100%;

  overflow: hidden;

  display: flex;

  align-items: center;

  justify-content: center;

  background:
    linear-gradient(
      145deg,
      #111,
      #060606
    );

  border:
    1px solid var(--border);

  box-shadow:
    var(--shadow);

  transition:
    transform .5s var(--ease),
    border-color .5s ease;
}


.profile-placeholder:hover {
  transform:
    translateY(-5px);

  border-color:
    var(--yellow-border);
}


.profile-placeholder img {
  position: relative;

  z-index: 2;

  width: 100%;

  height: 100%;

  object-fit: cover;

  object-position:
    center center;
}


.profile-placeholder::before {
  content: "";

  position: absolute;

  z-index: 4;

  top: -75px;

  right: -75px;

  width: 145px;

  height: 145px;

  background:
    var(--yellow);

  transform:
    rotate(45deg);
}


.profile-placeholder::after {
  content: "";

  position: absolute;

  z-index: 4;

  right: 0;

  bottom: 0;

  width: 68%;

  height: 5px;

  background:
    var(--yellow);
}


.profile-fallback {
  position: absolute;

  z-index: 1;

  direction: ltr;

  color:
    rgba(255,255,255,.07);

  font-family:
    Arial,
    sans-serif;

  font-size: 95px;

  font-weight: 900;
}



/* =========================================================
   14. FLOATING CARDS
========================================================= */

.floating-card {
  position: absolute;

  z-index: 10;

  min-width: 160px;

  padding:
    14px 17px;

  background:
    rgba(8,8,8,.94);

  backdrop-filter:
    blur(12px);

  border:
    1px solid var(--border);

  border-right:
    3px solid var(--yellow);

  box-shadow:
    var(--shadow-small);
}


.floating-card span {
  display: block;

  color:
    var(--gray);

  font-family:
    Arial,
    sans-serif;

  font-size: 8px;

  letter-spacing: 1px;

  text-transform: uppercase;
}


.floating-card strong {
  display: block;

  margin-top: 2px;

  font-family:
    Arial,
    sans-serif;

  font-size: 17px;

  font-weight: 800;
}


.card-one {
  top: 75px;

  right: -70px;

  animation:
    floatOne 5s
    ease-in-out infinite;
}


.card-two {
  left: -60px;

  bottom: 130px;

  animation:
    floatTwo 6s
    ease-in-out infinite;
}


.card-three {
  right: -35px;

  bottom: 25px;

  animation:
    floatThree 5.5s
    ease-in-out infinite;
}


@keyframes floatOne {

  0%,
  100% {
    transform:
      translateY(0);
  }

  50% {
    transform:
      translateY(-8px);
  }

}


@keyframes floatTwo {

  0%,
  100% {
    transform:
      translateY(0);
  }

  50% {
    transform:
      translateY(7px);
  }

}


@keyframes floatThree {

  0%,
  100% {
    transform:
      translateY(0);
  }

  50% {
    transform:
      translateY(-6px);
  }

}



/* =========================================================
   15. QUOTE / MAIN MESSAGE
========================================================= */

.quote-section {
  position: relative;

  overflow: hidden;

  padding:
    70px 0;

  background:
    var(--yellow);
}


.quote-section::after {
  content: ".AM";

  position: absolute;

  left: 3%;

  top: 50%;

  transform:
    translateY(-50%);

  color:
    rgba(0,0,0,.045);

  font-family:
    Arial,
    sans-serif;

  font-size: 160px;

  font-weight: 900;
}


.quote-section p {
  position: relative;

  z-index: 2;

  max-width: 1000px;

  margin: auto;

  color:
    var(--black);

  text-align: center;

  font-size:
    clamp(24px, 3vw, 38px);

  font-weight: 900;

  line-height: 1.6;
}


.quote-section p span {
  color:
    var(--black);
}



/* =========================================================
   16. SECTION HEADINGS
========================================================= */

.section-heading {
  max-width: 950px;

  margin-bottom:
    70px;
}


.section-heading > span {
  position: relative;

  color:
    var(--yellow);

  font-family:
    Arial,
    sans-serif;

  font-size: 10px;

  font-weight: 800;

  letter-spacing: 2.5px;

  text-transform: uppercase;
}


.section-heading h2 {
  margin-top:
    18px;

  max-width: 900px;

  font-size:
    clamp(38px, 5vw, 65px);

  line-height: 1.25;

  letter-spacing: -2px;

  font-weight: 900;
}



/* =========================================================
   17. ABOUT
========================================================= */

.about-grid {
  display: grid;

  grid-template-columns:
    1fr 1.2fr;

  gap: 85px;
}


.about-text {
  padding-right:
    24px;

  border-right:
    3px solid var(--yellow);
}


.about-text p {
  margin-bottom:
    24px;

  color:
    var(--gray-light);

  font-size:
    15px;
}


.about-text strong {
  color:
    var(--white);
}



/* =========================================================
   18. ABOUT CARDS
========================================================= */

.about-cards {
  display: grid;

  grid-template-columns:
    repeat(2, 1fr);

  gap: 14px;
}


.mini-card {
  position: relative;

  min-height: 205px;

  overflow: hidden;

  padding:
    27px;

  background:
    var(--black-3);

  border:
    1px solid var(--border);

  border-radius:
    var(--radius-card);

  transition:
    transform .4s var(--ease),
    background .4s ease,
    border-color .4s ease;
}


.mini-card::after {
  content: "";

  position: absolute;

  left: -25px;

  bottom: -25px;

  width: 50px;

  height: 50px;

  background:
    var(--yellow);

  transform:
    rotate(45deg);

  opacity: .9;
}


.mini-card:hover {
  transform:
    translateY(-6px);

  background:
    var(--black-4);

  border-color:
    var(--yellow-border);
}


.mini-card > span {
  color:
    var(--yellow);

  font-family:
    Arial,
    sans-serif;

  font-size: 11px;

  font-weight: 900;
}


.mini-card h3 {
  margin-top:
    34px;

  font-family:
    Arial,
    sans-serif;

  font-size: 22px;

  font-weight: 900;
}


.mini-card p {
  margin-top:
    8px;

  color:
    var(--gray);

  font-size: 12px;
}



/* =========================================================
   19. CURRENT MODE
========================================================= */

.current-mode {
  position: relative;

  display: grid;

  grid-template-columns:
    1.2fr 1fr;

  gap: 65px;

  overflow: hidden;

  padding:
    55px;

  background:
    var(--black-3);

  border:
    1px solid var(--border);

  border-radius:
    var(--radius-large);
}


.current-mode::after {
  content: "";

  position: absolute;

  bottom: -55px;

  left: -55px;

  width: 110px;

  height: 110px;

  background:
    var(--yellow);

  transform:
    rotate(45deg);
}


.current-mode h2 {
  margin:
    15px 0;

  font-size:
    clamp(34px, 4vw, 48px);

  line-height: 1.3;
}


.current-mode p {
  max-width: 650px;

  color:
    var(--gray-light);

  font-size: 14px;
}


.mode-values {
  display: grid;

  grid-template-columns:
    1fr;

  gap: 8px;
}


.mode-values div {
  position: relative;

  padding:
    19px 20px;

  overflow: hidden;

  background:
    var(--black-2);

  border:
    1px solid var(--border);

  border-right:
    4px solid var(--yellow);

  transition:
    transform .35s var(--ease),
    border-color .35s ease,
    background .35s ease;
}


.mode-values div:hover {
  transform:
    translateX(-5px);

  background:
    var(--black-4);

  border-color:
    var(--yellow-border);
}


.mode-values strong {
  display: block;

  color:
    var(--white);

  font-family:
    Arial,
    sans-serif;

  font-size: 20px;

  font-weight: 900;
}


.mode-values span {
  display: block;

  margin-top:
    2px;

  color:
    var(--yellow);

  font-family:
    Arial,
    sans-serif;

  font-size: 8px;

  letter-spacing: 1px;
}



/* =========================================================
   20. TIMELINE
========================================================= */

.timeline {
  position: relative;

  border-right:
    1px solid var(--border);
}


.timeline-item {
  position: relative;

  display: grid;

  grid-template-columns:
    130px 1fr;

  padding:
    0 40px 65px 0;
}


.timeline-item::before {
  content: "";

  position: absolute;

  right: -6px;

  top: 9px;

  width: 11px;

  height: 11px;

  background:
    var(--yellow);

  transform:
    rotate(45deg);

  transition:
    transform .35s var(--ease),
    box-shadow .35s ease;
}


.timeline-item:hover::before {
  transform:
    rotate(45deg)
    scale(1.35);

  box-shadow:
    0 0 20px
    rgba(255,212,0,.35);
}


.timeline-year {
  color:
    var(--yellow);

  font-family:
    Arial,
    sans-serif;

  font-size: 15px;

  font-weight: 900;
}


.timeline-content {
  max-width: 700px;

  transition:
    transform .35s var(--ease);
}


.timeline-item:hover
.timeline-content {
  transform:
    translateX(-5px);
}


.timeline-content h3 {
  margin-bottom:
    7px;

  font-family:
    Arial,
    sans-serif;

  font-size: 22px;

  font-weight: 900;
}


.timeline-content p {
  color:
    var(--gray-light);

  font-size: 14px;
}



/* =========================================================
   21. BLACK90 / CAPITAL LARGE CARD
========================================================= */

.black90-card {
  position: relative;

  display: grid;

  grid-template-columns:
    1fr 1fr;

  align-items: center;

  gap: 70px;

  overflow: hidden;

  padding:
    60px;

  background:
    var(--black-3);

  border:
    1px solid var(--border);

  border-radius:
    var(--radius-large);
}


.black90-card::before {
  content: "";

  position: absolute;

  left: -150px;

  top: -150px;

  width: 260px;

  height: 260px;

  background:
    var(--yellow);

  opacity: .055;

  transform:
    rotate(45deg);
}


.black90-card h2 {
  position: relative;

  margin:
    12px 0 20px;

  font-family:
    Arial,
    sans-serif;

  font-size:
    clamp(50px, 7vw, 92px);

  font-weight: 900;

  line-height: 1;

  letter-spacing: -5px;
}


.black90-card p {
  position: relative;

  max-width: 560px;

  color:
    var(--gray-light);

  font-size: 14px;
}



/* =========================================================
   22. ARCHITECTURE
========================================================= */

.architecture {
  position: relative;

  text-align: center;
}


.architecture-main {
  padding:
    23px;

  background:
    var(--yellow);

  color:
    var(--black);

  border-radius:
    var(--radius);

  font-family:
    Arial,
    sans-serif;

  font-size: 25px;

  font-weight: 900;
}


.architecture-line {
  width: 1px;

  height: 45px;

  margin: auto;

  background:
    var(--yellow);
}


.architecture-grid {
  display: grid;

  grid-template-columns:
    repeat(3, 1fr);

  gap: 8px;
}


.architecture-grid div {
  padding:
    17px 9px;

  background:
    var(--black-2);

  border:
    1px solid var(--border);

  border-bottom:
    3px solid var(--yellow);

  border-radius:
    var(--radius);

  transition:
    transform .3s var(--ease),
    border-color .3s ease,
    background .3s ease;
}


.architecture-grid div:hover {
  transform:
    translateY(-4px);

  border-color:
    var(--yellow-border);

  background:
    var(--black-4);
}


.architecture-grid small {
  display: block;

  color:
    var(--gray);

  font-family:
    Arial,
    sans-serif;

  font-size: 7px;

  line-height: 1.5;

  letter-spacing: .7px;

  text-transform: uppercase;
}


.architecture-grid strong {
  display: block;

  margin-top:
    3px;

  font-family:
    Arial,
    sans-serif;

  font-size: 12px;

  font-weight: 800;
}



/* =========================================================
   23. VENTURES
========================================================= */

.venture-grid {
  display: grid;

  grid-template-columns:
    repeat(3, 1fr);

  gap: 15px;
}


.venture-card {
  position: relative;

  min-height:
    420px;

  overflow: hidden;

  padding:
    30px;

  background:
    var(--black-3);

  border:
    1px solid var(--border);

  border-radius:
    var(--radius-card);

  transition:
    transform .4s var(--ease),
    background .4s ease,
    border-color .4s ease;
}


.venture-card::after {
  content: "";

  position: absolute;

  right: 0;

  bottom: 0;

  width: 0;

  height: 4px;

  background:
    var(--yellow);

  transition:
    width .4s var(--ease);
}


.venture-card:hover {
  transform:
    translateY(-6px);

  background:
    var(--black-4);

  border-color:
    var(--border-hover);
}


.venture-card:hover::after {
  width: 100%;
}


.venture-card.featured {
  background:
    linear-gradient(
      145deg,
      rgba(255,212,0,.07),
      transparent 45%
    ),
    var(--black-3);

  border-color:
    var(--yellow-border);
}


.venture-top {
  display: flex;

  align-items: center;

  justify-content: space-between;
}


.venture-number {
  color:
    var(--yellow);

  font-family:
    Arial,
    sans-serif;

  font-size: 12px;

  font-weight: 900;
}


.status {
  padding:
    5px 9px;

  border:
    1px solid var(--border);

  border-radius:
    var(--radius);

  font-family:
    Arial,
    sans-serif;

  font-size: 7px;

  font-weight: 900;

  letter-spacing: .8px;
}


.status.active {
  background:
    var(--yellow);

  color:
    var(--black);

  border-color:
    var(--yellow);
}


.status.preparing {
  color:
    var(--yellow);
}


.status.fund {
  color:
    var(--gray-light);
}


.venture-card h3 {
  margin-top:
    42px;

  font-family:
    Arial,
    sans-serif;

  font-size:
    clamp(34px, 4vw, 47px);

  font-weight: 900;

  letter-spacing: -2px;

  transition:
    color .3s ease,
    transform .3s var(--ease);
}


.venture-card:hover h3 {
  color:
    var(--yellow);

  transform:
    translateY(-3px);
}


.venture-subtitle {
  margin-bottom:
    23px;

  color:
    var(--yellow) !important;

  font-family:
    Arial,
    sans-serif;

  font-size: 8px !important;

  letter-spacing: 1px;

  text-transform: uppercase;
}


.venture-card p {
  color:
    var(--gray-light);

  font-size: 13px;
}


.tags {
  display: flex;

  flex-wrap: wrap;

  gap: 6px;

  margin-top:
    28px;
}


.tags span {
  padding:
    5px 9px;

  border:
    1px solid var(--border);

  border-radius:
    3px;

  color:
    var(--gray-light);

  font-family:
    Arial,
    sans-serif;

  font-size: 7px;

  transition:
    background .25s ease,
    color .25s ease,
    transform .25s var(--ease);
}


.tags span:hover {
  transform:
    translateY(-2px);

  background:
    var(--yellow);

  color:
    var(--black);
}



/* =========================================================
   24. PRINCIPLES
========================================================= */

.principles {
  display: grid;

  grid-template-columns:
    repeat(4, 1fr);

  border-top:
    1px solid var(--border);
}


.principle {
  min-height:
    240px;

  padding:
    28px;

  border-left:
    1px solid var(--border);

  transition:
    background .3s ease;
}


.principle:last-child {
  border-left: 0;
}


.principle:hover {
  background:
    var(--black-3);
}


.principle > span {
  color:
    var(--yellow);

  font-family:
    Arial,
    sans-serif;

  font-size: 11px;

  font-weight: 900;
}


.principle h3 {
  margin-top:
    52px;

  font-family:
    Arial,
    sans-serif;

  font-size: 24px;

  font-weight: 900;
}


.principle p {
  margin-top:
    10px;

  color:
    var(--gray);

  font-size: 12px;
}



/* =========================================================
   25. SKILLS
========================================================= */

.skills-grid {
  display: flex;

  flex-wrap: wrap;

  gap: 9px;
}


.skills-grid span {
  padding:
    11px 17px;

  background:
    var(--black-3);

  border:
    1px solid var(--border);

  border-radius:
    var(--radius);

  color:
    var(--gray-light);

  font-family:
    Arial,
    sans-serif;

  font-size: 10px;

  transition:
    transform .25s var(--ease),
    background .25s ease,
    border-color .25s ease,
    color .25s ease;
}


.skills-grid span:hover {
  transform:
    translateY(-3px);

  background:
    var(--yellow);

  color:
    var(--black);

  border-color:
    var(--yellow);
}



/* =========================================================
   26. VISION
========================================================= */

.vision-section {
  padding:
    155px 0;

  background:
    var(--yellow);
}


.vision-section::before {
  background:
    var(--black);
}


.vision-box {
  max-width:
    1000px;

  margin-inline:
    auto;

  text-align:
    center;
}


.vision-box .label {
  color:
    var(--black);
}


.vision-box .label::before {
  background:
    var(--black);
}


.vision-box h2 {
  margin-top:
    27px;

  color:
    var(--black);

  font-size:
    clamp(40px, 6vw, 73px);

  line-height:
    1.3;

  letter-spacing:
    -3px;

  font-weight:
    900;
}


.vision-box h2 span {
  color:
    var(--black);
}


.vision-box p {
  max-width:
    740px;

  margin:
    30px auto 0;

  color:
    rgba(0,0,0,.7);

  font-size:
    15px;

  font-weight:
    600;
}



/* =========================================================
   27. CONTACT
========================================================= */

.contact-section {
  padding-bottom:
    150px;
}


.contact-box {
  position: relative;

  overflow: hidden;

  padding:
    75px 45px;

  text-align:
    center;

  background:
    var(--black-2);

  border:
    1px solid var(--border);

  border-radius:
    var(--radius-large);

  transition:
    border-color .4s ease;
}


.contact-box:hover {
  border-color:
    var(--yellow-border);
}


.contact-box::before {
  content: "";

  position: absolute;

  top: -95px;

  right: -95px;

  width: 180px;

  height: 180px;

  background:
    var(--yellow);

  transform:
    rotate(45deg);
}


.contact-box::after {
  content: "";

  position: absolute;

  left: -110px;

  bottom: -110px;

  width: 190px;

  height: 190px;

  border:
    30px solid var(--yellow);

  opacity: .12;

  transform:
    rotate(45deg);
}


.contact-box > * {
  position: relative;

  z-index: 2;
}


.contact-box h2 {
  max-width:
    820px;

  margin:
    18px auto;

  font-size:
    clamp(36px, 5vw, 60px);

  line-height:
    1.35;
}


.contact-box p {
  max-width:
    700px;

  margin-inline:
    auto;

  color:
    var(--gray-light);

  font-size:
    14px;
}


.contact-actions {
  display: flex;

  justify-content:
    center;

  flex-wrap:
    wrap;

  gap:
    11px;

  margin-top:
    32px;
}



/* =========================================================
   28. FOOTER
========================================================= */

.footer {
  padding:
    40px 0;

  background:
    #030303;

  border-top:
    1px solid var(--border);
}


.footer-content {
  display: flex;

  justify-content:
    space-between;

  align-items:
    flex-end;

  gap:
    30px;
}


.footer p {
  margin-top:
    7px;

  color:
    var(--gray);

  font-size:
    10px;
}



/* =========================================================
   29. REVEAL ANIMATION
========================================================= */

.reveal {
  opacity: 0;

  transform:
    translateY(28px);

  filter:
    blur(3px);

  transition:
    opacity .8s var(--ease),
    transform .8s var(--ease),
    filter .8s var(--ease);
}


.reveal.visible {
  opacity: 1;

  transform:
    translateY(0);

  filter:
    blur(0);
}



/* =========================================================
   30. LOAD ANIMATIONS
========================================================= */

.hero-copy {
  animation:
    heroCopyIn
    .9s var(--ease)
    .1s both;
}


.hero-visual {
  animation:
    heroVisualIn
    1s var(--ease)
    .25s both;
}


@keyframes heroCopyIn {

  from {
    opacity: 0;

    transform:
      translateX(35px);
  }

  to {
    opacity: 1;

    transform:
      translateX(0);
  }

}


@keyframes heroVisualIn {

  from {
    opacity: 0;

    transform:
      translateX(-35px)
      scale(.98);
  }

  to {
    opacity: 1;

    transform:
      translateX(0)
      scale(1);
  }

}



/* =========================================================
   31. SCROLLBAR
========================================================= */

::-webkit-scrollbar {
  width: 7px;
}


::-webkit-scrollbar-track {
  background:
    var(--black);
}


::-webkit-scrollbar-thumb {
  background:
    #292929;
}


::-webkit-scrollbar-thumb:hover {
  background:
    var(--yellow);
}



/* =========================================================
   32. TABLET
========================================================= */

@media (max-width: 1024px) {

  .desktop-nav {
    display: none;
  }


  .menu-btn {
    display: inline-flex;
  }


  .hero-grid {
    grid-template-columns: 1fr;

    gap: 80px;
  }


  .hero-copy {
    order: 1;
  }


  .hero-visual {
    order: 2;
  }


  .about-grid,
  .black90-card,
  .current-mode {
    grid-template-columns: 1fr;
  }


  .venture-grid {
    grid-template-columns:
      repeat(2, 1fr);
  }


  .venture-card:last-child {
    grid-column:
      1 / -1;
  }


  .principles {
    grid-template-columns:
      repeat(2, 1fr);
  }


  .principle {
    border-bottom:
      1px solid var(--border);
  }


  .current-mode {
    gap: 45px;
  }


  .mode-values {
    grid-template-columns:
      repeat(3, 1fr);
  }

}



/* =========================================================
   33. MOBILE
========================================================= */

@media (max-width: 700px) {

  :root {
    --header-height: 70px;
  }


  .section {
    padding:
      85px 0;
  }


  .section::before {
    width:
      45px;
  }


  .header {
    height:
      var(--header-height);
  }


  .header .btn-small {
    display: none;
  }


  .logo {
    font-size:
      27px;
  }


  .hero {
    min-height:
      auto;

    padding-top:
      125px;

    padding-bottom:
      100px;
  }


  .hero-grid {
    gap:
      65px;
  }


  .hero h1 {
    font-size:
      46px;

    letter-spacing:
      -2px;
  }


  .hero-description {
    font-size:
      13px;
  }


  .hero-buttons {
    display: grid;

    grid-template-columns:
      1fr;
  }


  .hero-buttons .btn {
    width: 100%;
  }


  .hero-stats {
    margin-top:
      50px;
  }


  .hero-stats div {
    padding:
      18px 9px 0;
  }


  .hero-stats strong {
    font-size:
      19px;
  }


  .hero-stats span {
    font-size:
      8px;
  }


  .profile-frame {
    width:
      min(100%, 315px);

    height:
      430px;
  }


  .card-one {
    right:
      -5px;
  }


  .card-two {
    left:
      -5px;
  }


  .card-three {
    right:
      5px;
  }


  .floating-card {
    min-width:
      125px;

    padding:
      11px 13px;
  }


  .floating-card strong {
    font-size:
      14px;
  }


  .quote-section {
    padding:
      52px 0;
  }


  .quote-section::after {
    font-size:
      110px;
  }


  .about-grid {
    gap:
      45px;
  }


  .about-cards {
    grid-template-columns:
      1fr;
  }


  .current-mode {
    padding:
      34px 22px;

    gap:
      35px;
  }


  .mode-values {
    grid-template-columns:
      1fr;
  }


  .timeline-item {
    grid-template-columns:
      1fr;

    gap:
      8px;

    padding-right:
      30px;
  }


  .black90-card {
    padding:
      38px 22px;

    gap:
      45px;
  }


  .black90-card h2 {
    font-size:
      50px;

    letter-spacing:
      -3px;
  }


  .architecture-grid {
    grid-template-columns:
      1fr 1fr;
  }


  .venture-grid {
    grid-template-columns:
      1fr;
  }


  .venture-card:last-child {
    grid-column:
      auto;
  }


  .venture-card {
    min-height:
      auto;
  }


  .principles {
    grid-template-columns:
      1fr;
  }


  .principle {
    min-height:
      200px;

    border-left: 0;

    border-bottom:
      1px solid var(--border);
  }


  .principle h3 {
    margin-top:
      35px;
  }


  .vision-section {
    padding:
      110px 0;
  }


  .vision-box h2 {
    letter-spacing:
      -2px;
  }


  .contact-box {
    padding:
      55px 20px;
  }


  .contact-actions {
    display: grid;

    grid-template-columns:
      1fr;
  }


  .contact-actions .btn {
    width: 100%;
  }


  .footer-content {
    flex-direction:
      column;

    align-items:
      flex-start;
  }

}



/* =========================================================
   34. SMALL MOBILE
========================================================= */

@media (max-width: 420px) {

  .hero h1 {
    font-size:
      39px;
  }


  .section-heading h2 {
    font-size:
      34px;
  }


  .architecture-grid {
    grid-template-columns:
      1fr;
  }


  .hero-stats {
    display: grid;

    grid-template-columns:
      repeat(3, 1fr);
  }


  .hero-stats div {
    border-left: 0;

    text-align:
      center;
  }

}



/* =========================================================
   35. ACCESSIBILITY
========================================================= */

@media (prefers-reduced-motion: reduce) {

  html {
    scroll-behavior:
      auto;
  }


  *,
  *::before,
  *::after {

    animation-duration:
      0.01ms !important;

    animation-iteration-count:
      1 !important;

    transition-duration:
      0.01ms !important;

  }


  .reveal {
    opacity: 1;

    transform: none;

    filter: none;
  }

}