@import url('https://fonts.googleapis.com/css2?family=DM+Mono:wght@400;500&family=Manrope:wght@400;500;600;700;800&display=swap');




/* =========================================================
   VARIABLES
   ========================================================= */

:root {
  --b: #08090c;
  --s: #111319;
  --s2: #171a23;

  --line: #ffffff16;

  --txt: #f3f4f7;
  --muted: #9096a8;

  --blue: #6591ff;
  --purple: #bd90ff;
  --green: #8ce7a3;

  --font-mono: 'DM Mono', monospace;
  --font-main: Manrope, Arial, sans-serif;

  --ease: cubic-bezier(.16, 1, .3, 1);
}


/* =========================================================
   TOKYO NIGHT BACKGROUND
   ========================================================= */

.bento-page {
  min-height: 100svh;
  margin: 0;

  background:
    /* Tokyo neon glow — top right */
    radial-gradient(
      circle at 82% 12%,
      #2457a844 0%,
      #182b571c 28%,
      transparent 48%
    ),

    /* Pink neon reflection — left */
    radial-gradient(
      circle at 8% 48%,
      #b13b7b20 0%,
      #64265b12 30%,
      transparent 55%
    ),

    /* Electric blue glow — bottom */
    radial-gradient(
      circle at 72% 92%,
      #3157a52b 0%,
      transparent 42%
    ),

    /* Deep city atmosphere */
    linear-gradient(
      135deg,
      #05070b 0%,
      #080b13 42%,
      #090a12 72%,
      #06070c 100%
    );

  color: var(--txt);
  font-family: var(--font-main);

  perspective: 1200px;

  position: relative;
  overflow-x: hidden;
}


/* =========================================================
   TOKYO CITY LIGHT / GRAIN
   ========================================================= */

.bento-page::before {
  content: "";

  position: fixed;
  inset: 0;

  z-index: -1;

  opacity: .28;

  background-image:
    radial-gradient(
      #7d8fc42e 1px,
      transparent 1px
    );

  background-size: 5px 5px;

  mask-image:
    linear-gradient(
      to bottom,
      #0009,
      transparent 82%
    );

  pointer-events: none;
}


/* =========================================================
   SUBTLE NEON HORIZON
   ========================================================= */

.bento-page::after {
  content: "";

  position: fixed;
  left: -10%;
  right: -10%;
  bottom: 4%;

  height: 220px;

  z-index: -1;

  background:
    radial-gradient(
      ellipse at center,
      #315bb51c 0%,
      #b43d7d0c 35%,
      transparent 70%
    );

  filter: blur(30px);

  pointer-events: none;
}


/* =========================================================
   LAYOUT
   ========================================================= */

.shell {
  width: min(
    1160px,
    calc(100% - 48px)
  );

  margin-inline: auto;
}


.bento-main {
  padding: 120px 0 110px;
}


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

.bento-hero {
  display: grid;

  grid-template-columns:
    1.2fr
    .8fr;

  align-items: center;

  min-height: 310px;
}


.bento-hero h1,
.work-heading h1,
.contact-hero h1 {
  margin: 0;

  color: #f7f7fa;

  font-size:
    clamp(
      48px,
      6.1vw,
      78px
    );

  line-height: 1.03;

  letter-spacing: -.085em;

  font-weight: 800;
}

.bento-hero h1 em,
.work-heading h1 em,
.contact-hero h1 em,
.availability-card em,
.build-card em {
  font-style: normal;

  background:
    linear-gradient(
      90deg,
      #789fff,
      #cc98ff
    );

  -webkit-background-clip: text;
  background-clip: text;

  color: transparent;
}


.bento-hero > div > p:not(.bento-kicker),
.work-heading > div > p:not(.bento-kicker),
.contact-hero > p:not(.bento-kicker) {
  max-width: 570px;

  margin: 24px 0 0;

  color: var(--muted);

  font-size: 15px;
  line-height: 1.75;
}

/* =========================================================
   KICKER / SECTION LABEL
   ========================================================= */

.bento-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;

  margin: 0 0 18px;

  color: #7f8aa5;
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.bento-kicker::before {
  content: "";

  width: 18px;
  height: 1px;

  background: #758cff;
  box-shadow: 0 0 8px #758cff55;
}

.bento-kicker::after {
  content: "///";

  color: #59627a;
  font-size: 8px;
  letter-spacing: .08em;
}


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

.hero-orbit {
  position: relative;

  display: grid;
  place-items: center;

  height: 270px;
}


.hero-orbit::before,
.hero-orbit::after {
  content: "";

  position: absolute;

  border-radius: 50%;

  border: 1px solid #a79cff58;
}


.hero-orbit::before {
  width: 190px;
  height: 190px;

  box-shadow:
    0 0 65px #6c5eff3d;
}


.hero-orbit::after {
  width: 240px;
  height: 240px;

  border-style: dashed;

  opacity: .5;
}


.orbit-avatar,
.mini-avatar {
  display: grid;
  place-items: center;

  border-radius: 50%;

  background:
    linear-gradient(
      145deg,
      #d8dcff,
      #a66fe4 49%,
      #273273 51%
    );

  color: #15172d;

  font-weight: 800;

  box-shadow:
    0 0 0 6px #7a95ff1a;
}


.orbit-avatar {
  z-index: 1;

  width: 125px;
  height: 125px;

  font-size: 30px;
}


.orbit-tag {
  position: absolute;

  z-index: 2;

  padding: 8px 10px;

  border:
    1px solid #8a96c855;

  border-radius: 9px;

  background: #181b2ae8;

  color: #c5cdf0;

  font:
    10px
    var(--font-mono);

  box-shadow:
    0 8px 20px #0007;
}


.t1 {
  top: 20px;
  left: 15%;
}


.t2 {
  top: 65px;
  right: 7%;

  color: #ffe699;
}


.t3 {
  bottom: 23px;
  left: 8%;

  color: #f2b4ff;
}


/* =========================================================
   BENTO CARDS
   ========================================================= */

.bento-grid {
  display: grid;

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

  gap: 14px;

  margin-top: 30px;
}


.bento-card {
  border:
    1px solid var(--line);

  border-radius: 16px;

  background:
    linear-gradient(
      145deg,
      #151720e8,
      #101218e8
    );

  box-shadow:
    inset 0 1px #ffffff05,
    0 18px 42px #0002;
}


/* =========================================================
   IDENTITY
   ========================================================= */

.identity-card {
  grid-row: span 2;

  padding: 20px;
}


.card-top {
  display: flex;

  justify-content: space-between;

  color: #7c849a;

  font:
    9px
    var(--font-mono);
}


.card-top i {
  color: var(--green);

  font-style: normal;
}


.identity {
  display: flex;

  align-items: center;

  gap: 13px;

  margin: 35px 0 23px;
}


.mini-avatar {
  width: 61px;
  height: 61px;

  font-size: 16px;
}


.identity h2,
.identity p {
  margin: 0;
}


.identity h2 {
  color: #d0a6ff;

  font-size: 23px;

  letter-spacing: -.06em;
}


.identity p {
  margin-top: 5px;

  color: #838a9c;

  font:
    10px
    var(--font-mono);
}


.identity-text {
  margin: 0;

  color: #a6acbb;

  font-size: 13px;

  line-height: 1.7;
}


.chips {
  display: flex;

  flex-wrap: wrap;

  gap: 7px;

  margin-top: 25px;
}


.chips span {
  padding: 6px 9px;

  border:
    1px solid #b696ff45;

  border-radius: 99px;

  color: #c8a9ff;

  font:
    9px
    var(--font-mono);
}


/* =========================================================
   STACK
   ========================================================= */

.stack-card {
  grid-column: span 2;

  padding: 20px;
}


.stack-list {
  display: grid;

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

  gap: 0;

  margin-top: 18px;
}


.stack-list div {
  display: flex;

  align-items: center;

  gap: 11px;

  padding: 13px 0;

  border-top:
    1px solid var(--line);
}


.stack-list b {
  color: #7d88a5;

  font:
    10px
    var(--font-mono);
}


.stack-list span {
  color: #e7e9f2;

  font-size: 13px;

  font-weight: 700;
}


.stack-list i {
  margin-left: auto;
  margin-right: 20px;

  color: #777f95;

  font:
    9px
    var(--font-mono);

  font-style: normal;
}


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

.availability-card {
  position: relative;

  min-height: 188px;

  padding: 21px;

  overflow: hidden;

  background:
    radial-gradient(
      circle at 80% 15%,
      #326d583b,
      transparent 45%
    ),
    linear-gradient(
      145deg,
      #151a20,
      #101514
    );
}


.availability-card .pulse,
.contact-status .pulse {
  display: block;

  width: 8px;
  height: 8px;

  border-radius: 50%;

  background: #86eea0;

  box-shadow:
    0 0 13px #86eea0;
}


.availability-card p,
.contact-status p,
.build-card > p,
.social-card > p,
.location-card > p {
  margin: 20px 0 7px;

  color: #80899d;

  font:
    9px
    var(--font-mono);

  letter-spacing: .08em;
}


.availability-card h2 {
  margin: 0;

  color: #e9f5ed;

  font-size: 22px;

  line-height: 1.2;

  letter-spacing: -.055em;
}


.availability-card a,
.build-card a {
  display: inline-block;

  margin-top: 19px;

  color: #95eba9;

  font-size: 11px;

  text-decoration: none;
}


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

.stats-card {
  grid-column: span 2;

  display: grid;

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

  padding: 21px;
}


.stats-card div + div {
  padding-left: 20px;

  border-left:
    1px solid var(--line);
}


.stats-card small {
  color: #7d859a;

  font:
    9px
    var(--font-mono);
}


.stats-card strong {
  display: block;

  margin-top: 10px;

  color: #edf0f8;

  font-size: 28px;

  letter-spacing: -.08em;
}


.stats-card strong span {
  color: #b79aff;
}


/* =========================================================
   QUOTE
   ========================================================= */

.quote-card {
  grid-column: span 3;

  padding: 22px 26px;

  background:
    linear-gradient(
      110deg,
      #192443,
      #16182a 52%,
      #22152d
    );
}


.quote-card span {
  color: #c49cff;

  font-size: 31px;
}


.quote-card p {
  max-width: 560px;

  margin: 0;

  color: #bbc2d8;

  font-size: 16px;

  line-height: 1.55;
}


.quote-card b {
  color: #fff;
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 780px) {

  .shell {
    width: calc(100% - 38px);
  }


  .bento-main {
    padding: 52px 0 75px;
  }


  .bento-hero {
    grid-template-columns: 1fr;
  }


  .hero-orbit {
    height: 230px;

    margin-top: 22px;
  }


  .bento-grid,
  .project-bento,
  .contact-grid {
    grid-template-columns: 1fr;
  }


  .stack-card,
  .stats-card,
  .quote-card,
  .project-card.large {
    grid-column: auto;
  }


  .stack-list {
    grid-template-columns: 1fr;
  }


  .stats-card {
    gap: 15px;
  }


  .stats-card div + div {
    padding-left: 12px;
  }
}