

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;

  background: #0c0c0b;
  color: #f1f0ed;

  font-family:
    Inter,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;

  line-height: 1.5;
}


/* =================================
   SIDEBAR
================================= */

.sidebar {
  position: fixed;

  top: 0;
  left: 0;

  width: 250px;
  height: 100vh;

  padding: 32px 26px;

  background: #0c0c0b;

  border-right: 1px solid #1c1b19;

  z-index: 100;
}

.sidebar-inner {
  height: 100%;

  display: flex;
  flex-direction: column;
}


/* =================================
   PROFILE
================================= */

.profile-top {
  display: flex;
  align-items: center;

  gap: 11px;
}

.profile-top img {
  width: 30px;
  height: 30px;

  border-radius: 20%;

  object-fit: cover;

  border: 1px solid #292826;
}

.profile h1 {
  margin: 0;

  font-size: 14px;
  font-weight: 600;
}

.role {
  margin: 5px 0 0 0px;

  color: #85837f;

  font-size: 12px;
}


/* =================================
   AVAILABILITY
================================= */

.availability {
  display: flex;
  align-items: center;

  gap: 8px;

  margin-top: 22px;

  color: #aaa8a3;

  font-size: 12px;
}

.availability-dot,
.status-dot {
  width: 7px;
  height: 7px;

  flex-shrink: 0;

  border-radius: 50%;

  background: #6fcf78;

  box-shadow:
    0 0 0 3px rgba(111, 207, 120, 0.08);
}

/* =================================
   NAVIGATION
================================= */

.navigation {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-top: 65px;
}

.nav-item {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 9px 10px;
  border-radius: 6px;
  color: #777570;
  text-decoration: none;
  font-size: 13px;

  transition:
    color 0.2s ease,
    background 0.2s ease;
}

.nav-item span {
  width: 20px;
  color: #4e4c49;
  font-size: 9px;
  letter-spacing: 0.05em;
}

/* Hover = slightly lighter than the active state */
.nav-item:hover {
  color: #e5e3de;
  background: #1b1b18;
}

/* Active/current section */
.nav-item.active {
  color: #f1f0ed;
  background: #151513;
}

.nav-item.active span {
  color: #888580;
}

/* =================================
   SIDEBAR BOTTOM
================================= */

.sidebar-bottom {
  display: flex;
  justify-content: space-between;

  margin-top: auto;

  padding-top: 20px;

  color: #4e4c49;

  font-size: 10px;
}


/* =================================
   MAIN CONTENT
================================= */

.main-content {
  width: calc(100% - 250px);

  margin-left: 250px;

  padding: 0 70px;
}


/* =================================
   HERO
================================= */

.hero {
  position: relative;

  min-height: 100vh;

  display: flex;
  align-items: center;

  overflow: hidden;
}


/* =================================
   HALFTONE
================================= */

.halftone {
  position: absolute;

  top: -10%;
  right: -8%;

  width: 750px;
  height: 750px;

  opacity: 0.4;

  background-image:
    radial-gradient(
      circle,
      rgba(190, 188, 180, 0.28) 1px,
      transparent 1.5px
    );

  background-size: 11px 11px;

  mask-image:
    radial-gradient(
      circle at center,
      black 0%,
      rgba(0, 0, 0, 0.8) 25%,
      rgba(0, 0, 0, 0.25) 55%,
      transparent 72%
    );

  -webkit-mask-image:
    radial-gradient(
      circle at center,
      black 0%,
      rgba(0, 0, 0, 0.8) 25%,
      rgba(0, 0, 0, 0.25) 55%,
      transparent 72%
    );

  pointer-events: none;
}


/* =================================
   HERO CONTENT
================================= */

.hero-content {
  position: relative;

  width: 100%;

  padding: 100px 0 50px;
}


/* =================================
   HERO INTRO
================================= */

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

  margin-bottom: 75px;

  color: #55524d;

  font-size: 9px;

  letter-spacing: 0.14em;
}

.hero-status {
  display: flex;
  align-items: center;

  gap: 9px;
}

.status-dot {
  width: 5px;
  height: 5px;

  box-shadow:
    0 0 0 3px rgba(111, 207, 120, 0.06);
}


/* =================================
   HERO TITLE
================================= */

.hero-role {
  margin: 0 0 20px;

  color: #77746e;

  font-size: 13px;

  text-transform: uppercase;

  letter-spacing: 0.14em;
}

.hero-title h2 {
  margin: 0;

  font-size: clamp(75px, 11vw, 170px);

  font-weight: 500;

  line-height: 0.82;

  letter-spacing: -0.075em;
}

.hero-title h2 span {
  color: #6c6963;
}


/* =================================
   HERO BOTTOM
================================= */

.hero-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;

  margin-top: 75px;
}

.hero-statement {
  max-width: 550px;
}

.statement-label {
  margin: 0 0 12px;

  color: #57544f;

  font-size: 9px;

  letter-spacing: 0.14em;
}

.hero-statement h3 {
  margin: 0;

  font-size: clamp(25px, 3vw, 42px);

  font-weight: 400;

  line-height: 1.08;

  letter-spacing: -0.04em;
}

.statement-description {
  max-width: 420px;

  margin: 18px 0 0;

  color: #706d67;

  font-size: 12px;

  line-height: 1.7;
}


/* =================================
   HERO ACTIONS
================================= */

.hero-actions {
  display: flex;
  gap: 8px;
}

.hero-button {
  display: flex;
  align-items: center;

  gap: 25px;

  padding: 11px 14px;

  color: #aaa7a0;

  border: 1px solid #292723;

  text-decoration: none;

  font-size: 11px;

  transition:
    background 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease;
}

.hero-button span {
  font-size: 14px;
}

.hero-button:hover {
  color: #eeeae3;

  background: #151411;

  transform: translateY(-2px);
}

.hero-button.primary {
  color: #0c0c0b;

  background: #e5e2db;

  border-color: #e5e2db;
}

.hero-button.primary:hover {
  color: #0c0c0b;

  background: #ffffff;
}


/* =================================
   HERO STATS
================================= */

.hero-stats {
  display: grid;

  grid-template-columns:
    repeat(4, 1fr);

  gap: 1px;

  margin-top: 70px;

  border-top: 1px solid #24221f;
}

.stat {
  display: flex;
  flex-direction: column;

  gap: 3px;

  padding-top: 16px;
}

.stat strong {
  color: #d6d2ca;

  font-size: 18px;

  font-weight: 400;

  letter-spacing: -0.03em;
}

.stat span {
  color: #55524d;

  font-size: 8px;

  letter-spacing: 0.12em;
}


/* =================================
   SECTIONS
================================= */

.section {
  padding-top: 120px;
}

.section-heading {
  margin-bottom: 65px;
}

.eyebrow {
  margin: 0 0 10px;

  color: #77746f;

  font-size: 11px;

  text-transform: uppercase;

  letter-spacing: 0.15em;
}

.section-heading h2 {
  margin: 0;

  font-size: clamp(36px, 5vw, 58px);

  font-weight: 500;

  letter-spacing: -0.055em;
}


/* =================================
   WORKS
================================= */

.work-category {
  margin-bottom: 120px;
}

.category-label {
  display: flex;
  align-items: baseline;

  gap: 12px;

  margin-bottom: 35px;

  padding-bottom: 14px;

  border-bottom: 1px solid #1c1b19;
}

.category-number {
  color: #55534f;

  font-size: 10px;

  letter-spacing: 0.08em;
}

.category-label h3 {
  margin: 0;

  font-size: 18px;

  font-weight: 500;
}


/* =================================
   PROJECT
================================= */

.project {
  margin-bottom: 75px;
}

.video-container {
  overflow: hidden;

  width: 100%;

  aspect-ratio: 16 / 9;

  background: #121210;

  border: 1px solid #211f1d;
}

.video-container iframe {
  display: block;

  width: 100%;
  height: 100%;

  border: none;
}

.project-info {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 40px;

  padding-top: 20px;
}

.project-number {
  margin: 0 0 5px;

  color: #5e5b56;

  font-size: 10px;
}

.project-info h4 {
  margin: 0;

  font-size: 19px;

  font-weight: 500;
}

.project-description {
  max-width: 450px;

  margin: 0;

  color: #817e78;

  font-size: 13px;

  line-height: 1.7;
}


/* =================================
   SERVICES
================================= */

.services-grid {
  display: grid;

  grid-template-columns:
    repeat(3, 1fr);

  gap: 1px;

  background: #24221f;

  border: 1px solid #24221f;
}

.service {
  min-height: 250px;

  padding: 28px;

  background: #0c0c0b;
}

.service > span {
  color: #5a5752;

  font-size: 10px;
}

.service h3 {
  margin: 75px 0 12px;

  font-size: 18px;

  font-weight: 500;
}

.service p {
  margin: 0;

  color: #7d7a75;

  font-size: 13px;

  line-height: 1.7;
}


/* =================================
   PRICING
================================= */

.pricing-grid {
  display: grid;

  grid-template-columns:
    repeat(3, 1fr);

  gap: 14px;
}

.pricing-card {
  position: relative;

  display: flex;
  flex-direction: column;

  min-height: 500px;

  padding: 30px;

  background: #11110f;

  border: 1px solid #22211e;

  transition:
    transform 0.2s ease,
    border-color 0.2s ease;
}

.pricing-card:hover {
  transform: translateY(-3px);

  border-color: #35332f;
}

.pricing-card.popular {
  background: #151512;

  border-color: #45423c;
}

.popular-label {
  position: absolute;

  top: 18px;
  right: 18px;

  padding: 5px 8px;

  color: #c5c1b9;

  background: #25231f;

  font-size: 9px;

  text-transform: uppercase;

  letter-spacing: 0.08em;
}

.pricing-label {
  margin: 0 0 10px;

  color: #55524d;

  font-size: 10px;
}

.pricing-card h3 {
  margin: 0;

  font-size: 21px;

  font-weight: 500;
}

.pricing-description {
  margin: 10px 0 0;

  color: #77746f;

  font-size: 12px;
}

.price {
  margin-top: 45px;

  font-size: 45px;

  font-weight: 500;

  letter-spacing: -0.05em;
}

.price span {
  color: #77746f;

  font-size: 20px;
}

.custom-price {
  font-size: 27px;

  letter-spacing: -0.02em;
}

.pricing-card ul {
  display: flex;
  flex-direction: column;

  gap: 12px;

  margin: 35px 0;

  padding: 0;

  list-style: none;

  color: #85827d;

  font-size: 12px;
}

.pricing-card li::before {
  content: "—";

  margin-right: 8px;

  color: #4d4a45;
}

.pricing-button {
  display: flex;
  justify-content: center;

  margin-top: auto;

  padding: 11px;

  color: #dcd9d3;

  border: 1px solid #302e2a;

  text-decoration: none;

  font-size: 12px;

  transition:
    background 0.2s ease,
    border-color 0.2s ease;
}

.pricing-button:hover {
  background: #1b1a17;

  border-color: #45423d;
}


/* =================================
   CONTACT
================================= */

.contact-section {
  padding-bottom: 120px;
}

.contact-box {
  display: grid;

  grid-template-columns: 1fr auto;

  gap: 35px;

  padding: 40px;

  background: #11110f;

  border: 1px solid #22211e;
}

.contact-box h3 {
  margin: 0 0 10px;

  font-size: 25px;

  font-weight: 500;

  letter-spacing: -0.03em;
}

.contact-box p {
  max-width: 450px;

  margin: 0;

  color: #77746f;

  font-size: 13px;
}

.discord-button {
  display: flex;
  align-items: center;

  align-self: center;

  gap: 20px;

  padding: 13px 18px;

  color: #0c0c0b;

  background: #e7e4de;

  text-decoration: none;

  font-size: 12px;

  transition:
    background 0.2s ease,
    transform 0.2s ease;
}

.discord-button:hover {
  background: white;

  transform: translateY(-2px);
}

.discord-button span {
  font-size: 16px;
}

.discord-username {
  grid-column: 1 / -1;

  display: flex;

  gap: 12px;

  padding-top: 20px;

  border-top: 1px solid #24221f;

  font-size: 11px;
}

.discord-username span {
  color: #55524d;
}

.discord-username strong {
  color: #aaa7a0;

  font-weight: 400;
}


/* =================================
   FOOTER
================================= */

.footer {
  padding-bottom: 35px;
}

.footer-line {
  width: 100%;
  height: 1px;

  background: #24221f;
}

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

  padding-top: 22px;
}

.footer-content p {
  margin: 0;

  color: #5d5a55;

  font-size: 11px;
}

.footer-content a {
  color: #706d67;

  text-decoration: none;

  font-size: 11px;
}

.footer-content a:hover {
  color: #e4e1db;
}

.footer-content a span {
  margin-left: 6px;
}


/* =================================
   RESPONSIVE
================================= */

@media (max-width: 1000px) {

  .main-content {
    padding: 0 40px;
  }

  .hero-title h2 {
    font-size: clamp(70px, 12vw, 125px);
  }

  .services-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

}


@media (max-width: 800px) {

  .sidebar {
    position: relative;

    width: 100%;
    height: auto;

    padding: 24px 20px;

    border-right: none;
    border-bottom: 1px solid #1c1b19;
  }

  .sidebar-bottom {
    display: none;
  }

  .navigation {
    flex-direction: row;

    margin-top: 30px;

    overflow-x: auto;
  }

  .nav-item {
    flex: 0 0 auto;
  }

  .main-content {
    width: 100%;

    margin-left: 0;

    padding: 0 25px;
  }

  .hero {
    min-height: auto;
  }

  .hero-content {
    padding: 90px 0 60px;
  }

  .hero-intro {
    margin-bottom: 55px;
  }

  .hero-bottom {
    flex-direction: column;
    align-items: flex-start;

    gap: 35px;
  }

  .hero-stats {
    grid-template-columns:
      repeat(2, 1fr);

    row-gap: 25px;
  }

  .project-info {
    grid-template-columns: 1fr;

    gap: 12px;
  }

  .contact-box {
    grid-template-columns: 1fr;
  }

  .discord-button {
    justify-self: start;
  }
}


@media (max-width: 500px) {

  .main-content {
    padding: 0 18px;
  }

  .hero-title h2 {
    font-size: 68px;
  }

  .hero-role {
    font-size: 10px;
  }

  .hero-actions {
    width: 100%;
  }

  .hero-button {
    flex: 1;
  }

  .halftone {
    right: -50%;

    width: 600px;
    height: 600px;
  }

  .section {
    padding-top: 85px;
  }

  .section-heading {
    margin-bottom: 45px;
  }

  .contact-box {
    padding: 25px;
  }
}

/* =================================
   SCROLL REVEAL ANIMATION
================================= */

.reveal {
  opacity: 0;
  transform: translateY(25px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}

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

/* Optional staggered delays */

.reveal.delay-1 {
  transition-delay: 0.1s;
}

.reveal.delay-2 {
  transition-delay: 0.2s;
}

.reveal.delay-3 {
  transition-delay: 0.3s;
}

.reveal.delay-4 {
  transition-delay: 0.4s;
}

/* =================================
   CONTRIBUTIONS
================================= */

.contributions-section {
  padding-bottom: 40px;
}

.contributions-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid #24221f;
}

.contribution {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 30px;
  padding: 35px 0;
  border-bottom: 1px solid #24221f;
}

.contribution-number {
  color: #55524d;
  font-size: 10px;
  letter-spacing: 0.08em;
}

.contribution-main {
  width: 100%;
}

.contribution-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 30px;
}

.contribution-type {
  margin: 0 0 8px;
  color: #55524d;
  font-size: 9px;
  letter-spacing: 0.14em;
}

.contribution h3 {
  margin: 0;
  color: #f1f0ed;
  font-size: 26px;
  font-weight: 500;
  letter-spacing: -0.04em;
}

.contribution-visits {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  flex-shrink: 0;
}

.contribution-visits strong {
  color: #d6d2ca;
  font-size: 25px;
  font-weight: 400;
  letter-spacing: -0.04em;
}

.contribution-visits span {
  color: #55524d;
  font-size: 8px;
  letter-spacing: 0.14em;
}

.contribution-description {
  max-width: 600px;
  margin: 18px 0 0;
  color: #77746f;
  font-size: 13px;
  line-height: 1.7;
}


/* =================================
   CONTRIBUTIONS RESPONSIVE
================================= */

@media (max-width: 800px) {
  .contribution {
    grid-template-columns: 45px 1fr;
    gap: 15px;
  }

  .contribution-header {
    flex-direction: column;
    gap: 18px;
  }

  .contribution-visits {
    align-items: flex-start;
  }
}