:root {
  --bg: #080d18;
  --bg-soft: #0b1120;
  --surface: #101827;
  --surface-light: #151f31;
  --line: rgba(160, 184, 222, .14);
  --line-bright: rgba(160, 184, 222, .25);
  --text: #f4f7fb;
  --muted: #8c9ab1;
  --blue: #3377ff;
  --cyan: #19cbe6;
  --violet: #8d5cff;
  --green: #5ee6a8;
  --mono: "DM Mono", monospace;
  --sans: "Manrope", sans-serif;
  --max: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

::selection {
  color: #fff;
  background: rgba(51, 119, 255, .65);
}

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 100;
  opacity: .035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");
}

.cursor-glow {
  position: fixed;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  pointer-events: none;
  z-index: -1;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(51, 119, 255, .08), transparent 68%);
  opacity: 0;
  transition: opacity .3s;
}

.site-header {
  position: fixed;
  z-index: 90;
  top: 0;
  left: 0;
  right: 0;
  height: 84px;
  padding: 0 max(28px, calc((100vw - var(--max)) / 2));
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid transparent;
  transition: background .3s, border-color .3s, height .3s;
}

.site-header.scrolled {
  height: 70px;
  background: rgba(8, 13, 24, .78);
  backdrop-filter: blur(20px);
  border-color: var(--line);
}

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

.brand-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  font: 500 12px var(--mono);
  letter-spacing: -.04em;
  border: 1px solid var(--line-bright);
  background: linear-gradient(145deg, rgba(51, 119, 255, .18), rgba(25, 203, 230, .04));
}

.brand-copy {
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -.01em;
}

.brand-copy small {
  display: block;
  color: var(--muted);
  font: 400 8px/1.5 var(--mono);
  letter-spacing: .08em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 34px;
}

.nav-links a {
  color: #b5c0d0;
  font: 500 11px var(--mono);
  text-transform: uppercase;
  letter-spacing: .08em;
  transition: color .2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: #fff;
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 11px 16px;
  border: 1px solid var(--line-bright);
  font: 500 10px var(--mono);
  letter-spacing: .06em;
  text-transform: uppercase;
}

.status-dot {
  width: 7px;
  height: 7px;
  display: inline-block;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 10px rgba(94, 230, 168, .7);
}

.menu-button {
  display: none;
  width: 38px;
  height: 38px;
  padding: 10px;
  border: 1px solid var(--line);
  background: transparent;
}

.menu-button span {
  display: block;
  width: 100%;
  height: 1px;
  margin: 5px 0;
  background: white;
  transition: transform .2s;
}

.section {
  position: relative;
  max-width: var(--max);
  margin: 0 auto;
  padding: 130px 28px;
}

.hero {
  max-width: none;
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(420px, .88fr);
  align-items: center;
  gap: 3vw;
  padding-top: 130px;
  padding-left: max(28px, calc((100vw - var(--max)) / 2));
  padding-right: max(28px, calc((100vw - var(--max)) / 2));
  overflow: hidden;
}

.hero-grid {
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: .26;
  background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, black, transparent 90%);
}

.hero::before {
  content: "";
  position: absolute;
  width: 50vw;
  height: 50vw;
  right: -12vw;
  top: -15vw;
  z-index: -1;
  background: radial-gradient(circle, rgba(55, 92, 255, .16), transparent 68%);
}

.eyebrow,
.section-marker {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--muted);
  font: 500 9px var(--mono);
  letter-spacing: .13em;
  text-transform: uppercase;
}

.eyebrow::before,
.section-marker::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--blue);
}

.eyebrow span,
.section-marker span {
  color: var(--cyan);
}

.hero h1 {
  max-width: 800px;
  margin: 28px 0 26px;
  font-size: clamp(54px, 6.2vw, 94px);
  line-height: .98;
  letter-spacing: -.065em;
  font-weight: 600;
}

h1 em,
h2 em,
blockquote em {
  font-style: normal;
  color: transparent;
  -webkit-text-stroke: 1px rgba(244, 247, 251, .6);
}

.hero-lede {
  max-width: 650px;
  color: #a5b1c4;
  font-size: clamp(16px, 1.25vw, 19px);
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 38px;
}

.button {
  min-height: 50px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 26px;
  padding: 0 22px;
  border: 1px solid var(--line-bright);
  background: transparent;
  color: #fff;
  cursor: pointer;
  font: 600 10px var(--mono);
  letter-spacing: .07em;
  text-transform: uppercase;
  transition: transform .2s, background .2s, border-color .2s;
}

.button:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, .4);
}

.button-primary {
  border-color: var(--blue);
  background: var(--blue);
  box-shadow: 0 12px 32px rgba(37, 99, 235, .22);
}

.button-primary:hover {
  background: #4382ff;
}

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

.hero-meta {
  display: grid;
  grid-template-columns: repeat(3, auto);
  justify-content: start;
  gap: 42px;
  margin-top: 64px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  color: #c1cad8;
  font: 400 10px/1.7 var(--mono);
  text-transform: uppercase;
  letter-spacing: .04em;
}

.hero-meta div>span {
  display: block;
  color: #5d6b81;
  font-size: 8px;
  letter-spacing: .13em;
}

.hero-meta b {
  color: var(--green);
  font-weight: 400;
}

.hero-meta i {
  margin-right: 6px;
}

.hero-visual {
  min-height: 610px;
  position: relative;
  display: grid;
  place-items: center;
}

.core-sphere {
  position: relative;
  width: min(25vw, 340px);
  height: min(25vw, 340px);
  min-width: 260px;
  min-height: 260px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 13px;
  border: 1px solid rgba(134, 164, 255, .2);
  border-radius: 50%;
  background: radial-gradient(circle at 38% 32%, rgba(105, 91, 255, .34), rgba(17, 31, 61, .82) 42%, rgba(8, 13, 24, .95) 72%);
  box-shadow: inset -35px -35px 80px rgba(0, 0, 0, .4), 0 0 80px rgba(67, 96, 255, .13);
  font: 500 11px var(--mono);
  letter-spacing: .15em;
}

.core-sphere::after {
  content: "";
  position: absolute;
  inset: 8%;
  border-radius: 50%;
  border: 1px dashed rgba(150, 175, 255, .12);
}

.core-sphere strong {
  color: var(--cyan);
  font-weight: 400;
}

.sphere-glow {
  position: absolute;
  width: 55%;
  height: 55%;
  left: 10%;
  top: 8%;
  border-radius: 50%;
  filter: blur(25px);
  background: rgba(111, 86, 255, .25);
}

.orbit {
  position: absolute;
  border: 1px solid rgba(104, 137, 190, .17);
  border-radius: 50%;
  left: 50%;
  top: 50%;
}

.orbit-one {
  width: 440px;
  height: 440px;
  margin-left: -220px;
  margin-top: -220px;
  animation: orbit 24s linear infinite;
}

.orbit-two {
  width: 540px;
  height: 330px;
  margin-left: -270px;
  margin-top: -165px;
  border-color: rgba(111, 132, 181, .12);
  animation: orbit2 30s linear infinite;
}

/* Dot on orbit-one */
.orbit-one::after {
  content: "";
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 15px var(--cyan);
  left: 50%;
  top: 0;
  margin-left: -3.5px;
  offset-path: ellipse(220px 220px);
  animation: orbitDot1 24s linear infinite;
}

/* Dot on orbit-two */
.orbit-two::after {
  content: "";
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--violet);
  box-shadow: 0 0 15px var(--violet);
  left: 50%;
  top: 0;
  margin-left: -3.5px;
  offset-path: ellipse(270px 165px);
  animation: orbitDot2 30s linear infinite;
}

/* Orbit rotation animations */
@keyframes orbit {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes orbit2 {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Dot orbital motion */
@keyframes orbitDot1 {
  from { offset-distance: 0%; }
  to { offset-distance: 100%; }
}

@keyframes orbitDot2 {
  from { offset-distance: 0%; }
  to { offset-distance: 100%; }
}

.floating-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 190px;
  padding: 13px;
  border: 1px solid var(--line-bright);
  background: rgba(13, 22, 39, .72);
  backdrop-filter: blur(16px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, .24);
  animation: float 6s ease-in-out infinite;
}

.floating-card strong,
.floating-card small {
  display: block;
}

.floating-card strong {
  font-size: 11px;
}

.floating-card small {
  margin-top: 2px;
  color: var(--muted);
  font: 8px var(--mono);
}

.card-icon {
  width: 33px;
  height: 33px;
  display: grid;
  place-items: center;
  color: #fff;
  border-radius: 7px;
  background: linear-gradient(145deg, var(--blue), var(--violet));
}

.card-ios {
  left: 0;
  top: 25%;
}

.card-ai {
  right: -3%;
  bottom: 24%;
  animation-delay: -3s;
}

@keyframes float {
  50% {
    transform: translateY(-10px);
  }
}

.visual-index {
  position: absolute;
  right: 0;
  top: 12%;
  color: #526076;
  font: 8px var(--mono);
  letter-spacing: .2em;
  writing-mode: vertical-rl;
}

.scroll-cue {
  position: absolute;
  bottom: 28px;
  left: max(28px, calc((100vw - var(--max)) / 2));
  display: flex;
  align-items: center;
  gap: 12px;
  color: #68758a;
  font: 8px var(--mono);
  letter-spacing: .14em;
  text-transform: uppercase;
}

.scroll-cue span {
  width: 30px;
  height: 30px;
  border: 1px solid var(--line);
  border-radius: 50%;
  position: relative;
}

.scroll-cue span::after {
  content: "";
  position: absolute;
  width: 1px;
  height: 8px;
  background: #9aa8bd;
  left: 50%;
  top: 9px;
  animation: scroll 1.8s infinite;
}

@keyframes scroll {
  50% {
    transform: translateY(4px);
    opacity: .4;
  }
}

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

.manifesto-layout {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 9vw;
  margin-top: 62px;
}

.manifesto h2,
.section-heading h2,
.vision blockquote,
.contact h2 {
  margin: 0;
  font-size: clamp(43px, 5.4vw, 74px);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -.055em;
}

.manifesto h2 span {
  color: transparent;
  -webkit-text-stroke: 1px rgba(244, 247, 251, .65);
}

.about-copy {
  color: #8e9bb0;
}

.about-copy p {
  margin: 0 0 22px;
}

.about-copy .lead {
  color: #d7deea;
  font-size: 19px;
  line-height: 1.65;
}

.principles {
  margin-top: 42px;
  border-top: 1px solid var(--line);
}

.principles div {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.principles span {
  color: var(--cyan);
  font: 9px var(--mono);
}

.principles strong {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.work,
.expertise,
.github-section,
.contact {
  max-width: none;
  padding-left: max(28px, calc((100vw - var(--max)) / 2));
  padding-right: max(28px, calc((100vw - var(--max)) / 2));
  background: #0a101d;
  border-top: 1px solid var(--line);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 60px;
  margin-bottom: 62px;
}

.section-heading h2 {
  margin-top: 24px;
}

.section-heading>p {
  width: 390px;
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 14px;
}

.project {
  position: relative;
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(17, 27, 46, .9), rgba(10, 17, 30, .9));
  overflow: hidden;
  transition: border-color .3s, transform .3s;
}

.project:hover {
  border-color: rgba(103, 135, 190, .36);
  transform: translateY(-3px);
}

.project-featured {
  min-height: 650px;
  display: grid;
  grid-template-columns: .82fr 1.18fr;
}

.project-featured+.project-featured {
  margin-top: 20px;
}

.project-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 40px;
}

.project-number {
  color: #617089;
  font: 8px var(--mono);
  letter-spacing: .15em;
}

.project-kicker {
  margin-bottom: 14px;
  color: var(--cyan);
  font: 9px var(--mono);
  letter-spacing: .16em;
  text-transform: uppercase;
}

.project h3 {
  margin: 0;
  font-size: clamp(40px, 5vw, 68px);
  line-height: .95;
  letter-spacing: -.055em;
  font-weight: 500;
}

.project-content p {
  max-width: 430px;
  margin: 24px 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.75;
}

.project-content .project-role {
  margin: 0 0 16px;
  color: #6f7f97;
  font: 8px/1.7 var(--mono);
  letter-spacing: .06em;
}

.project-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 20px;
  padding: 0;
  list-style: none;
  color: #bbc4d2;
  font: 9px var(--mono);
  text-transform: uppercase;
}

.project-features li::before {
  content: "+";
  margin-right: 8px;
  color: var(--cyan);
}

.tech-row {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.tech-row span {
  padding: 6px 9px;
  color: #9eacc1;
  border: 1px solid var(--line);
  font: 8px var(--mono);
  text-transform: uppercase;
  letter-spacing: .05em;
}

.project-art {
  position: relative;
  min-height: 370px;
  overflow: hidden;
  background: #0d1525;
}

.rider-art {
  min-height: 650px;
  display: grid;
  place-items: center;
  background: radial-gradient(circle at 50% 45%, rgba(30, 69, 130, .45), transparent 45%), linear-gradient(135deg, #121c30, #080d17);
}

.map-lines {
  position: absolute;
  inset: 0;
  opacity: .3;
  background-image: linear-gradient(27deg, transparent 44%, rgba(120, 148, 190, .2) 45%, transparent 46%), linear-gradient(142deg, transparent 52%, rgba(120, 148, 190, .18) 53%, transparent 54%);
  background-size: 180px 130px, 240px 190px;
}

.phone {
  width: 238px;
  height: 480px;
  padding: 8px;
  border-radius: 39px;
  background: linear-gradient(145deg, #536078, #121722 14%, #080a0e 83%, #4e5a6a);
  box-shadow: 0 35px 80px rgba(0, 0, 0, .55), -12px 15px 40px rgba(34, 84, 190, .15);
  transform: rotate(3deg);
}

.phone-screen {
  height: 100%;
  position: relative;
  overflow: hidden;
  border-radius: 32px;
  background: #e9edf0;
}

.phone-island {
  position: absolute;
  z-index: 4;
  left: 50%;
  top: 9px;
  width: 76px;
  height: 21px;
  transform: translateX(-50%);
  border-radius: 15px;
  background: #050608;
}

.map-screen {
  position: absolute;
  inset: 0;
  background-color: #dce3e5;
  background-image: linear-gradient(31deg, transparent 47%, rgba(255, 255, 255, .95) 48%, rgba(255, 255, 255, .95) 51%, transparent 52%), linear-gradient(150deg, transparent 45%, rgba(255, 255, 255, .85) 46%, rgba(255, 255, 255, .85) 50%, transparent 51%);
  background-size: 105px 95px, 120px 130px;
}

.location-pin,
.car-pin {
  position: absolute;
  z-index: 2;
  left: 46%;
  top: 39%;
}

.location-pin {
  width: 16px;
  height: 16px;
  border: 5px solid white;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 3px 12px rgba(0, 0, 0, .3);
}

.car-pin {
  left: 65%;
  top: 27%;
  display: grid;
  place-items: center;
  width: 29px;
  height: 29px;
  color: white;
  border-radius: 9px;
  background: #111827;
  font-size: 9px;
}

.ride-panel {
  position: absolute;
  z-index: 3;
  left: 9px;
  right: 9px;
  bottom: 10px;
  padding: 18px;
  color: #111827;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 -10px 30px rgba(22, 36, 56, .1);
}

.ride-panel small,
.ride-panel strong {
  display: block;
}

.ride-panel small {
  color: #86909d;
  font: 7px var(--mono);
  letter-spacing: .1em;
}

.ride-panel strong {
  margin-top: 4px;
  font-size: 16px;
}

.ride-panel div {
  display: flex;
  gap: 5px;
  margin-top: 16px;
}

.ride-panel div span {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: #111827;
}

.ride-panel div i {
  flex: 1;
  height: 35px;
  border-radius: 18px;
  background: var(--blue);
}

.route-line {
  position: absolute;
  width: 310px;
  height: 250px;
  border: 2px dashed rgba(25, 203, 230, .35);
  border-radius: 50%;
  transform: rotate(-30deg);
}

.route-line i,
.route-line b {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 12px var(--cyan);
}

.route-line i {
  left: 6%;
  top: 23%;
}

.route-line b {
  right: 4%;
  bottom: 29%;
}

.metric-card {
  position: absolute;
  top: 16%;
  right: 8%;
  width: 110px;
  padding: 14px;
  border: 1px solid var(--line-bright);
  background: rgba(9, 17, 31, .85);
  backdrop-filter: blur(10px);
}

.metric-card small,
.metric-card strong,
.metric-card span {
  display: block;
}

.metric-card small,
.metric-card span {
  color: var(--muted);
  font: 7px var(--mono);
  text-transform: uppercase;
}

.metric-card strong {
  margin: 4px 0;
  font: 500 20px var(--mono);
}

.art-label {
  position: absolute;
  left: 24px;
  bottom: 20px;
  color: #63738d;
  font: 7px var(--mono);
  letter-spacing: .18em;
  writing-mode: vertical-rl;
}

.beta-dot {
  width: 6px;
  height: 6px;
  display: inline-block;
  margin-right: 6px;
  border-radius: 50%;
  background: #ff9f43;
  box-shadow: 0 0 10px rgba(255, 159, 67, .7);
}

.swiftlyweb-art {
  min-height: 650px;
  display: grid;
  place-items: center;
  background: radial-gradient(circle at 55% 45%, rgba(85, 63, 190, .28), transparent 42%), linear-gradient(145deg, #11182a, #090e19);
}

.swiftlyweb-art::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .12;
  background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(circle, black, transparent 78%);
}

.framework-label {
  position: absolute;
  z-index: 3;
  top: 28px;
  left: 28px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.framework-label>span {
  width: 35px;
  height: 35px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  background: linear-gradient(145deg, #ff9e42, #ec3d4b);
  box-shadow: 0 10px 24px rgba(236, 61, 75, .18);
  font: 600 9px var(--mono);
}

.framework-label strong,
.framework-label small {
  display: block;
}

.framework-label strong {
  font-size: 10px;
}

.framework-label small {
  color: #64738a;
  font: 6px var(--mono);
  letter-spacing: .12em;
}

.framework-label b {
  margin-left: 8px;
  padding: 5px 7px;
  color: #ffb269;
  border: 1px solid rgba(255, 159, 67, .3);
  font: 500 6px var(--mono);
  letter-spacing: .12em;
}

.web-browser {
  z-index: 2;
  width: 78%;
  border: 1px solid rgba(142, 164, 206, .28);
  border-radius: 9px;
  overflow: hidden;
  background: rgba(9, 14, 25, .94);
  box-shadow: 0 35px 80px rgba(0, 0, 0, .48), 0 0 60px rgba(77, 78, 210, .12);
  transform: perspective(1000px) rotateY(-3deg) rotateX(2deg);
}

.web-browser-bar {
  height: 38px;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 13px;
  border-bottom: 1px solid var(--line);
  background: rgba(19, 28, 45, .9);
}

.web-browser-bar i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #536077;
}

.web-browser-bar i:first-child {
  background: #ff675f;
}

.web-browser-bar i:nth-child(2) {
  background: #f2b64d;
}

.web-browser-bar i:nth-child(3) {
  background: #4bc77a;
}

.web-browser-bar span {
  flex: 1;
  max-width: 230px;
  margin: 0 auto;
  padding: 5px 12px;
  color: #59677c;
  border-radius: 4px;
  background: #0d1421;
  font: 6px var(--mono);
  text-align: center;
}

.web-browser-bar b {
  color: #68768c;
  font: 400 9px var(--mono);
}

.web-browser-body {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  min-height: 335px;
}

.web-preview {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 30px;
  background: radial-gradient(circle at 15% 15%, rgba(51, 119, 255, .2), transparent 32%), linear-gradient(160deg, #111a2b, #0b1220);
}

.web-preview small {
  color: var(--cyan);
  font: 6px var(--mono);
  letter-spacing: .16em;
}

.web-preview strong {
  margin: 14px 0 22px;
  font-size: clamp(19px, 2.1vw, 31px);
  line-height: 1.12;
  letter-spacing: -.05em;
}

.web-preview strong em {
  color: transparent;
  -webkit-text-stroke: 1px #8591a6;
  font-style: normal;
}

.web-preview>span {
  width: max-content;
  padding: 8px 11px;
  color: white;
  background: var(--blue);
  font: 6px var(--mono);
  text-transform: uppercase;
}

.web-code {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 7px;
  padding: 28px 20px;
  border-left: 1px solid var(--line);
  color: #8799b7;
  background: #090e18;
  font: 7px/1.5 var(--mono);
}

.web-code b {
  color: #b875ff;
  font-weight: 400;
}

.web-code em {
  color: #63d4a1;
  font-style: normal;
}

.framework-stat {
  position: absolute;
  z-index: 3;
  right: 5%;
  bottom: 12%;
  padding: 12px 15px;
  border: 1px solid var(--line-bright);
  background: rgba(10, 17, 30, .84);
  backdrop-filter: blur(12px);
}

.framework-stat small,
.framework-stat strong {
  display: block;
}

.framework-stat small {
  color: #69778d;
  font: 6px var(--mono);
  letter-spacing: .13em;
}

.framework-stat strong {
  margin-top: 2px;
  font: 500 12px var(--mono);
}

.web-orbit {
  position: absolute;
  border: 1px solid rgba(111, 132, 181, .12);
  border-radius: 50%;
}

.web-orbit-one {
  width: 470px;
  height: 470px;
}

.web-orbit-two {
  width: 560px;
  height: 280px;
  transform: rotate(32deg);
}

.project-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 20px;
}

.project-small {
  display: flex;
  flex-direction: column;
}

.small-project-copy {
  padding: 30px;
}

.small-project-copy h3 {
  margin: 16px 0;
  font-size: 32px;
}

.small-project-copy p {
  min-height: 70px;
  color: var(--muted);
  font-size: 12px;
}

.attendance-art {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at 50% 52%, rgba(39, 106, 221, .23), transparent 35%), #0b1322;
}

.attendance-top {
  position: absolute;
  top: 20px;
  left: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.attendance-top span {
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  color: white;
  border-radius: 7px;
  background: var(--blue);
  font: 7px var(--mono);
}

.attendance-top small {
  font: 500 9px var(--mono);
}

.qr {
  width: 155px;
  height: 155px;
  position: relative;
  padding: 12px;
  border: 1px solid rgba(77, 133, 255, .5);
  background-color: rgba(255, 255, 255, .94);
  background-image: repeating-linear-gradient(0deg, transparent, transparent 8px, #0b1830 9px, #0b1830 13px), repeating-linear-gradient(90deg, transparent, transparent 7px, rgba(11, 24, 48, .9) 8px, rgba(11, 24, 48, .9) 12px);
  background-blend-mode: multiply;
  box-shadow: 0 0 40px rgba(37, 99, 235, .2);
}

.qr::before,
.qr::after {
  content: "";
  position: absolute;
  width: 36px;
  height: 36px;
  border: 7px solid #0b1830;
  background: white;
}

.qr::before {
  top: 10px;
  left: 10px;
}

.qr::after {
  right: 10px;
  bottom: 10px;
}

.scan-line {
  position: absolute;
  width: 195px;
  height: 1px;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-77px); /* Start at top of QR */
  background: var(--cyan);
  box-shadow: 0 0 12px var(--cyan);
  animation: scan 3s ease-in-out infinite;
}

@keyframes scan {
  0% {
    transform: translateX(-50%) translateY(-77px); /* Top of QR */
  }
  50% {
    transform: translateX(-50%) translateY(77px); /* Bottom of QR */
  }
  100% {
    transform: translateX(-50%) translateY(-77px); /* Back to top */
  }
}

.attendance-caption {
  position: absolute;
  bottom: 22px;
  text-align: center;
}

.attendance-caption strong,
.attendance-caption small {
  display: block;
}

.attendance-caption strong {
  color: var(--green);
  font-size: 10px;
}

.attendance-caption small {
  color: var(--muted);
  font: 7px var(--mono);
}

.swiftly-art {
  display: grid;
  place-items: center;
  background: radial-gradient(circle at 80% 20%, rgba(124, 58, 237, .2), transparent 35%), #0b1220;
}

.code-window {
  width: 78%;
  border: 1px solid var(--line-bright);
  background: rgba(7, 12, 22, .92);
  box-shadow: 0 28px 60px rgba(0, 0, 0, .35);
  transform: perspective(800px) rotateY(-5deg) rotateX(3deg);
}

.window-bar {
  height: 35px;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 12px;
  border-bottom: 1px solid var(--line);
}

.window-bar i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #45536a;
}

.window-bar i:first-child {
  background: #ff6b62;
}

.window-bar span {
  margin-left: auto;
  color: #647289;
  font: 7px var(--mono);
}

.code-window pre {
  margin: 0;
  padding: 30px 22px;
  overflow: hidden;
  color: #b4c4dd;
  font: 10px/2 var(--mono);
}

.code-window b {
  color: #b26cff;
}

.code-window em {
  color: #71d6a2;
  font-style: normal;
}

.swift-badge {
  position: absolute;
  right: 8%;
  bottom: 12%;
  width: 55px;
  height: 55px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  /* background: linear-gradient(145deg, #ff9d3d, #ef3d44); */
  background: white;
  box-shadow: 0 14px 30px rgba(239, 61, 68, .25);
  font: 600 26px var(--sans);
}

.more-work {
  display: grid;
  grid-template-columns: 1fr 1.1fr 1.1fr;
  margin-top: 20px;
  border: 1px solid var(--line);
}

.more-work-title,
.compact-project {
  min-height: 120px;
  padding: 25px;
}

.more-work-title span {
  color: var(--cyan);
  font: 8px var(--mono);
}

.more-work-title h3 {
  margin: 8px 0;
  font-size: 16px;
}

.compact-project {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-left: 1px solid var(--line);
  transition: background .2s;
}

.compact-project:hover {
  background: rgba(51, 119, 255, .07);
}

.compact-project span {
  font-size: 18px;
  font-weight: 600;
}

.compact-project small {
  color: var(--muted);
  font: 8px var(--mono);
}

.compact-project b {
  position: absolute;
  right: 24px;
  top: 24px;
  color: var(--cyan);
  font-weight: 400;
}

.expertise-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.expertise-card {
  min-height: 430px;
  position: relative;
  padding: 38px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(16, 24, 39, .33);
}

.expertise-card:hover {
  background: rgba(20, 31, 50, .58);
}

.primary-expertise {
  background: linear-gradient(145deg, rgba(29, 63, 130, .28), rgba(16, 24, 39, .28));
}

.expertise-icon {
  width: 43px;
  height: 43px;
  display: grid;
  place-items: center;
  color: var(--cyan);
  border: 1px solid var(--line-bright);
  font: 20px var(--mono);
}

.card-count {
  position: absolute;
  right: 38px;
  top: 38px;
  color: #56657c;
  font: 9px var(--mono);
}

.expertise-card h3 {
  margin: 28px 0 12px;
  font-size: 25px;
  letter-spacing: -.03em;
}

.expertise-card p {
  width: 80%;
  color: var(--muted);
  font-size: 12px;
}

.skill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 24px;
}

.skill-list span {
  padding: 6px 8px;
  border: 1px solid var(--line);
  color: #aeb9ca;
  font: 8px var(--mono);
  text-transform: uppercase;
}

.skill-meter {
  position: absolute;
  left: 38px;
  right: 38px;
  bottom: 30px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  color: #596880;
  font: 7px var(--mono);
}

.skill-meter i {
  height: 2px;
  background: #1f2a3b;
  overflow: hidden;
}

.skill-meter b {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  transition: width 1.4s cubic-bezier(.2, .8, .2, 1);
}

.skill-meter strong {
  color: #93a0b4;
  font-weight: 400;
}

.toolbelt {
  display: grid;
  grid-template-columns: 180px 1fr;
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
}

.toolbelt>span {
  color: #5f6e84;
  font: 8px var(--mono);
  letter-spacing: .15em;
}

.toolbelt div {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 28px;
}

.toolbelt b {
  color: #a4b0c2;
  font: 400 10px var(--mono);
}

.toolbelt b::before {
  content: "·";
  margin-right: 8px;
  color: var(--cyan);
}

.experience {
  overflow: hidden;
}

.timeline {
  margin-top: 70px;
  border-top: 1px solid var(--line);
}

.timeline-item {
  display: grid;
  grid-template-columns: 180px 1fr 80px;
  gap: 40px;
  padding: 40px 0;
  border-bottom: 1px solid var(--line);
}

.timeline-date {
  color: var(--cyan);
  font: 8px var(--mono);
  letter-spacing: .15em;
}

.timeline-date span {
  width: 7px;
  height: 7px;
  display: block;
  margin-top: 20px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 5px rgba(51, 119, 255, .1);
}

.timeline-item small {
  color: #65738a;
  font: 8px var(--mono);
  letter-spacing: .12em;
}

.timeline-item h3 {
  margin: 7px 0;
  font-size: 25px;
  letter-spacing: -.03em;
}

.timeline-item p {
  max-width: 650px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.timeline-index {
  align-self: center;
  color: #253147;
  font: 30px var(--mono);
}

.github-panel {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  min-height: 420px;
  border: 1px solid var(--line);
  background: linear-gradient(135deg, rgba(17, 28, 49, .85), rgba(10, 17, 30, .85));
}

.github-copy {
  padding: 50px;
  border-right: 1px solid var(--line);
}

.github-copy h2 {
  margin: 30px 0 20px;
  font-size: clamp(35px, 4vw, 54px);
  line-height: 1.05;
  letter-spacing: -.05em;
  font-weight: 500;
}

.github-copy h2 em {
  font-style: normal;
  color: transparent;
  -webkit-text-stroke: 1px #8f9aad;
}

.github-copy p {
  color: var(--muted);
  font-size: 12px;
}

.text-link {
  display: inline-flex;
  gap: 24px;
  margin-top: 20px;
  padding-bottom: 7px;
  border-bottom: 1px solid #53617a;
  font: 500 9px var(--mono);
  letter-spacing: .07em;
  text-transform: uppercase;
}

.text-link span {
  color: var(--cyan);
}

.contribution-wrap {
  padding: 50px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

.contribution-head {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
  color: #6e7d94;
  font: 8px var(--mono);
  letter-spacing: .1em;
}

.contribution-graph {
  display: grid;
  grid-auto-flow: column;
  grid-template-rows: repeat(7, 10px);
  grid-auto-columns: 10px;
  gap: 4px;
  width: max-content;
}

.contribution-graph i {
  display: block;
  background: #172337;
}

.contribution-graph i[data-level="1"] {
  background: #193d58;
}

.contribution-graph i[data-level="2"] {
  background: #176878;
}

.contribution-graph i[data-level="3"] {
  background: #14a5b4;
}

.contribution-graph i[data-level="4"] {
  background: #25d4df;
  box-shadow: 0 0 7px rgba(37, 212, 223, .18);
}

.contribution-foot {
  display: flex;
  justify-content: space-between;
  margin-top: 12px;
  color: #5d6b80;
  font: 7px var(--mono);
}

.contribution-foot small {
  display: flex;
  align-items: center;
  gap: 4px;
}

.contribution-foot i {
  width: 8px;
  height: 8px;
  display: inline-block;
  background: #193d58;
}

.contribution-foot i:nth-of-type(2) {
  background: #176878;
}

.contribution-foot i:nth-of-type(3) {
  background: #14a5b4;
}

.contribution-foot i:nth-of-type(4) {
  background: #25d4df;
}

.vision {
  min-height: 700px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

.vision::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 100px 100px;
  opacity: .1;
}

.vision-orb {
  position: absolute;
  z-index: -1;
  width: 680px;
  height: 680px;
  right: -150px;
  top: 20px;
  border-radius: 50%;
  border: 1px solid rgba(92, 119, 168, .16);
  background: radial-gradient(circle at 36% 38%, rgba(85, 68, 255, .27), rgba(20, 34, 64, .23) 36%, transparent 68%);
  box-shadow: inset 30px 20px 80px rgba(37, 99, 235, .05);
}

.vision-orb::before,
.vision-orb::after {
  content: "";
  position: absolute;
  inset: 13%;
  border: 1px solid rgba(112, 139, 188, .12);
  border-radius: 50%;
}

.vision-orb::after {
  inset: 34%;
  background: radial-gradient(circle, rgba(37, 99, 235, .28), transparent 65%);
}

.vision-copy {
  max-width: 900px;
}

.vision blockquote {
  margin: 46px 0 28px;
  font-size: clamp(50px, 6.2vw, 82px);
}

.vision-copy>p {
  max-width: 610px;
  color: var(--muted);
}

.interests {
  display: grid;
  grid-template-columns: 220px 1fr;
  margin-top: 70px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}

.interests>span {
  color: #5a687e;
  font: 8px var(--mono);
  letter-spacing: .1em;
}

.interests div {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 28px;
}

.interests b {
  color: #a8b3c4;
  font: 400 9px var(--mono);
}

.interests b::before {
  content: "+";
  margin-right: 7px;
  color: var(--violet);
}

.contact-layout {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 8vw;
}

.contact h2 {
  margin: 30px 0 24px;
}

.contact-copy>p {
  max-width: 520px;
  color: var(--muted);
}

.email-link {
  display: flex;
  justify-content: space-between;
  max-width: 460px;
  margin-top: 42px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line-bright);
  font: 500 11px var(--mono);
}

.email-link span {
  color: var(--cyan);
}

.contact-socials {
  display: flex;
  gap: 24px;
  margin-top: 30px;
}

.contact-socials a {
  color: var(--muted);
  font: 8px var(--mono);
  text-transform: uppercase;
  letter-spacing: .1em;
}

.contact-form {
  padding: 38px;
  border: 1px solid var(--line);
  background: rgba(16, 24, 39, .54);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.contact-form label {
  display: block;
  margin-bottom: 25px;
  color: #68778f;
  font: 8px var(--mono);
  letter-spacing: .11em;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  display: block;
  margin-top: 10px;
  padding: 12px 0;
  color: #e6ebf3;
  border: 0;
  border-bottom: 1px solid var(--line-bright);
  border-radius: 0;
  outline: 0;
  background: transparent;
  font: 400 12px var(--sans);
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--blue);
}

.contact-form select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, #66758d 50%), linear-gradient(135deg, #66758d 50%, transparent 50%);
  background-position: calc(100% - 10px) 18px, calc(100% - 6px) 18px;
  background-size: 4px 4px;
  background-repeat: no-repeat;
}

.contact-form option {
  background: var(--surface);
}

.contact-form .button {
  width: 100%;
}

.form-status {
  min-height: 18px;
  margin: 12px 0 0;
  color: var(--green);
  font: 8px var(--mono);
  text-align: center;
}

.footer {
  max-width: var(--max);
  min-height: 190px;
  margin: 0 auto;
  padding: 45px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--line);
}

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

.footer-brand p {
  color: #7e8ca2;
  font-size: 10px;
  line-height: 1.6;
}

.footer-note {
  color: #8e9cb1;
  font: 8px/1.8 var(--mono);
  text-align: center;
}

.footer-note small {
  color: #4c5a70;
}

.back-top {
  display: flex;
  align-items: center;
  gap: 15px;
  color: #8492a7;
  font: 8px var(--mono);
  text-transform: uppercase;
}

.back-top span {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  color: #fff;
  border: 1px solid var(--line-bright);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s ease, transform .8s ease;
  transition-delay: var(--delay, 0ms);
}

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


.contribution-graph i {
  cursor: pointer;
  transition: transform .15s, filter .15s;
}

.contribution-graph i:hover {
  transform: scale(1.5);
  filter: brightness(1.4);
}

.contribution-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.month-labels {
  display: flex;
  justify-content: space-between;
  width: 310px;
}

@media (max-width: 1000px) {
  .nav-links {
    gap: 20px;
  }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 150px;
  }

  .hero-copy {
    z-index: 2;
  }

  .hero-visual {
    min-height: 530px;
  }

  .core-sphere {
    width: 300px;
    height: 300px;
  }

  .card-ios {
    left: 15%;
  }

  .card-ai {
    right: 12%;
  }

  .project-featured {
    grid-template-columns: 1fr;
  }

  .rider-art {
    min-height: 570px;
  }

  .project-content {
    min-height: 480px;
  }

  .github-panel {
    grid-template-columns: 1fr;
  }

  .github-copy {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .contact-layout {
    gap: 40px;
  }
}

@media (max-width: 760px) {
  .section {
    padding: 95px 20px;
  }

  .site-header {
    height: 70px;
    padding: 0 20px;
  }

  .brand-copy {
    display: none;
  }

  .header-cta {
    display: none;
  }

  .menu-button {
    display: block;
    z-index: 2;
  }

  .nav-links {
    position: fixed;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
    visibility: hidden;
    opacity: 0;
    background: rgba(8, 13, 24, .97);
    transition: opacity .25s, visibility .25s;
  }

  .nav-links a {
    font-size: 16px;
  }

  .menu-open .nav-links {
    visibility: visible;
    opacity: 1;
  }

  .menu-open .menu-button span:first-child {
    transform: translateY(3px) rotate(45deg);
  }

  .menu-open .menu-button span:last-child {
    transform: translateY(-3px) rotate(-45deg);
  }

  .hero {
    padding: 125px 20px 80px;
    min-height: auto;
  }

  .hero h1 {
    font-size: clamp(47px, 13.6vw, 68px);
  }

  .hero-lede {
    font-size: 15px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    max-width: 350px;
  }

  .hero-meta {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 42px;
  }

  .hero-meta div:last-child {
    grid-column: 1 / -1;
  }

  .hero-visual {
    min-height: 450px;
  }

  .core-sphere {
    min-width: 225px;
    min-height: 225px;
    width: 225px;
    height: 225px;
  }

  .orbit-one {
    width: 310px;
    height: 310px;
  }

  .orbit-two {
    width: 370px;
    height: 240px;
  }

  .floating-card {
    min-width: 164px;
  }

  .card-ios {
    left: 0;
    top: 20%;
  }

  .card-ai {
    right: 0;
    bottom: 17%;
  }

  .visual-index,
  .scroll-cue {
    display: none;
  }

  .manifesto-layout,
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .manifesto h2,
  .section-heading h2,
  .contact h2 {
    font-size: 43px;
  }

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

  .section-heading {
    display: block;
    margin-bottom: 42px;
  }

  .section-heading>p {
    width: auto;
    margin-top: 25px;
  }

  .work,
  .expertise,
  .github-section,
  .contact {
    padding-left: 20px;
    padding-right: 20px;
  }

  .project-content {
    min-height: 540px;
    padding: 28px;
  }

  .project h3 {
    font-size: 50px;
  }

  .rider-art {
    min-height: 500px;
  }

  .phone {
    width: 205px;
    height: 415px;
  }

  .metric-card {
    right: 3%;
  }

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

  .more-work {
    grid-template-columns: 1fr;
  }

  .compact-project {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .swiftlyweb-art {
    min-height: 490px;
  }

  .web-browser {
    width: 88%;
  }

  .web-browser-body {
    grid-template-columns: 1fr;
    min-height: 330px;
  }

  .web-preview {
    min-height: 205px;
  }

  .web-code {
    min-height: 125px;
    gap: 3px;
    padding: 16px 20px;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .framework-stat {
    right: 2%;
    bottom: 4%;
  }

  .web-orbit-one {
    width: 330px;
    height: 330px;
  }

  .web-orbit-two {
    width: 390px;
    height: 200px;
  }

  .expertise-grid {
    grid-template-columns: 1fr;
  }

  .expertise-card {
    min-height: 440px;
    padding: 28px;
  }

  .skill-meter {
    left: 28px;
    right: 28px;
  }

  .toolbelt {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .timeline-item {
    grid-template-columns: 80px 1fr;
    gap: 20px;
  }

  .timeline-index {
    display: none;
  }

  .github-copy,
  .contribution-wrap {
    padding: 30px 24px;
  }

  .contribution-wrap {
    overflow-x: auto;
  }

  .contribution-graph {
    grid-template-rows: repeat(7, 8px);
    grid-auto-columns: 8px;
    gap: 3px;
  }

  .contribution-foot {
    width: 550px;
  }

  .vision {
    min-height: 760px;
  }

  .vision blockquote {
    font-size: 50px;
  }

  .vision-orb {
    width: 480px;
    height: 480px;
    right: -230px;
    top: 100px;
  }

  .interests {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .contact-form {
    padding: 26px 22px;
  }

  .footer {
    padding: 45px 20px;
    flex-wrap: wrap;
    gap: 30px;
  }

  .footer-note {
    order: 3;
    flex-basis: 100%;
    text-align: left;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* =================================
   Engineering Evolution
================================= */


.evolution-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 35px;
  font-family: var(--mono);
}

.evolution-header span {
  color: var(--cyan);
  font-size: 9px;
  letter-spacing: .18em;
}

.evolution-header p {
  margin: 0;
  color: var(--muted);
  font-size: 9px;
}
/* Stack */
.evolution-stack {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.evolution-stack::before {
  content: "";
  position: absolute;
  left: 25px;
  top: 30px;
  bottom: 30px;
  width: 1px;
  background:
    linear-gradient(to bottom,
      var(--cyan),
      rgba(25, 203, 230, .05));
}
/* Card */

.evolution-card {

  position: relative;
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 25px;
  padding: 25px;
  border: 1px solid var(--line);
  background:
    linear-gradient(145deg,
      rgba(17, 28, 49, .85),
      rgba(10, 17, 30, .85));
  transition:
    transform .3s,
    border-color .3s;
}



.evolution-card:hover {
  transform: translateX(8px);
  border-color:
    rgba(25, 203, 230, .35);
}

/* Current highlight */

.evolution-card.current {
  border-color:
    rgba(25, 203, 230, .35);
  box-shadow:
    0 0 40px rgba(25, 203, 230, .08);
}

.evolution-card.current::before {
  content: "";
  position: absolute;
  left: -5px;
  top: 35px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow:
    0 0 20px var(--cyan);
}

/* Year */

.evolution-year {
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-family: var(--mono);

}

.evolution-year span {
  color: var(--cyan);
  font-size: 11px;
  letter-spacing: .15em;
}


.evolution-year small {
  margin-top: 5px;
  color: #617089;
  font-size: 9px;
}

/* Content */
.evolution-content h3 {
  margin: 0 0 15px;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -.03em;
}

.evolution-content p {
  margin: 15px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.7;
}

/* Tags */
.tech-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.tech-tags span {
  padding: 6px 10px;
  border: 1px solid var(--line);
  color: #b8c4d7;
  font: 8px var(--mono);
  text-transform: uppercase;
  letter-spacing: .05em;
}

/* Mobile */
@media(max-width:760px) {
  .evolution-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .evolution-card {
    grid-template-columns: 1fr;
    gap: 15px;
    padding: 22px;
  }

  .evolution-stack::before {
    display: none;
  }
}

/* GitHub Left Content */
.github-copy {
  display: flex;
  flex-direction: column;
  gap: 24px;
}


/* Stats Grid */
.github-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 10px;
}

.stat-card {
  padding: 18px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: all .3s ease;
}

.stat-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.06);
}

.stat-card strong {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -1px;
}

.stat-card span {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: .08em;
}


/* Current Focus Card */
.focus-card {
  margin-top: 10px;
  padding: 24px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.08);
  background:
    linear-gradient(
      145deg,
      rgba(255,255,255,0.08),
      rgba(255,255,255,0.02)
    );
  backdrop-filter: blur(12px);
}


.focus-card > span {
  font-size: 11px;
  letter-spacing: .15em;
  color: rgba(255,255,255,0.45);
}


.focus-card h3 {
  margin: 14px 0 20px;
  font-size: 22px;
  line-height: 1.3;
  font-weight: 600;
}


.focus-card h3 em {
  font-style: normal;
  background: linear-gradient(
    90deg,
    #ffffff,
    #888888
  );
  -webkit-background-clip: text;
  color: transparent;
}


.focus-card ul {
  list-style: none;
  padding: 0;
  margin: 0;

  display: flex;
  flex-direction: column;
  gap: 12px;
}


.focus-card li {
  font-size: 14px;
  color: rgba(255,255,255,0.75);

  padding: 10px 14px;

  background: rgba(255,255,255,0.04);
  border-radius: 10px;
}


/* Responsive */
@media(max-width: 768px) {

  .github-stats {
    grid-template-columns: 1fr;
  }

  .focus-card h3 {
    font-size: 20px;
  }
}

.manifesto-quote {
  margin: 0 0 40px;
  padding-left: 24px;
  border-left: 1px solid rgba(255,255,255,0.2);

  font-size: 1.4rem;
  line-height: 1.5;
  font-style: italic;
  color: rgba(255,255,255,0.65);

  min-height: 70px;
}

.manifesto-quote::after {
  content: "|";
  animation: blink 0.8s infinite;
  color: rgba(255,255,255,0.5);
}

@keyframes blink {
  50% {
    opacity: 0;
  }
}

.attendance-logo {
  width: 50px;
  height: 50px;
  border-radius: 7px;
  object-fit: cover;
}

.swiftly-learn-logo, .swiftly-web-logo {
  width: 50px;
  height: 50px;
  border-radius: 7px;
  object-fit: cover;
}


@media (max-width: 768px) {

  .swiftlyweb-art {
    min-height: auto;
    padding: 80px 20px 30px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }


  /* SwiftlyWeb Header */
  .framework-label {
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;

    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 3;
  }

  .swiftly-web-logo {
    width: 32px;
    height: 32px;
    object-fit: contain;
    border-radius: 8px;
  }

  .framework-label strong {
    font-size: 10px;
  }

  .framework-label small {
    font-size: 5px;
    letter-spacing: .1em;
  }

  .framework-label b {
    margin-left: auto;
    padding: 5px 7px;
    font-size: 6px;
  }


  /* Browser Mockup */
  .web-browser {
    width: 100%;

    transform: none;
    border-radius: 10px;
  }


  .web-browser-body {
    grid-template-columns: 1fr;
    min-height: auto;
  }


  /* Preview Area */
  .web-preview {
    min-height: 220px;
    padding: 25px;
  }

  .web-preview strong {
    font-size: 24px;
  }


  /* Code Area */
  .web-code {
    padding: 20px;
    gap: 6px;

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

    font-size: 6px;
    overflow-x: auto;
  }


  /* 100% Swift Card */
  .framework-stat {
    position: relative;

    right: auto;
    bottom: auto;

    margin: 20px auto 0;
    padding: 10px 14px;

    width: max-content;
  }


  /* Bottom Label */
  .art-label {
    margin-top: 20px;
    text-align: center;
  }


  /* Orbit Background */
  .web-orbit-one {
    width: 320px;
    height: 320px;
  }

  .web-orbit-two {
    width: 380px;
    height: 200px;
  }

}

/* Increase breakpoint to 1024px so tablet viewports also show the toggle menu */
@media (max-width: 1024px) {

  /* 1. Force header above overlay */
  .site-header {
    z-index: 100 !important;
  }

  /* 2. Show and style the toggle button */
  .menu-button {
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 101;
    cursor: pointer;
    width: 40px;
    height: 40px;
  }

  /* Ensure button spans (hamburger lines) are visible */
  .menu-button span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 3px 0;
    background-color: #ffffff !important;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }

  /* 3. Hide desktop CTA inside header on smaller screens */
  .header-cta {
    display: none;
  }

  /* 4. Full-screen overlay menu */
  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    height: 100dvh;
    z-index: 90;
    
    background: rgba(8, 13, 24, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;

    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
  }

  /* 5. Reveal overlay when active */
  body.menu-open .nav-links {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  /* Optional: Animate hamburger lines to 'X' icon when open */
  body.menu-open .menu-button span:nth-child(1) {
    transform: translateY(4px) rotate(45deg);
  }

  body.menu-open .menu-button span:nth-child(2) {
    transform: translateY(-4px) rotate(-45deg);
  }
}

@media (max-width: 767px) {
  /* 1. Center the entire copy container and its text elements */
  .hero-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  /* 2. Center the action buttons container */
  .hero-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    gap: 12px;
    margin: 0 auto; /* Ensures horizontal centering in parent */
  }

  /* 3. Style individual buttons */
  .hero-actions .button {
    width: 100%;
    max-width: 320px;
    text-align: center;
    justify-content: center;
  }
}


@media (max-width: 768px) {

  .hero-visual {
    min-height: 430px;
    overflow: hidden;
  }


  /* Smaller orbit circles */
  .orbit-one {
    width: 300px;
    height: 300px;
    margin-left: -150px;
    margin-top: -150px;
  }


  .orbit-two {
    width: 350px;
    height: 220px;
    margin-left: -175px;
    margin-top: -110px;
  }


  /* Fix orbit dots path */
  .orbit-one::after {
    offset-path: ellipse(150px 150px);
  }


  .orbit-two::after {
    offset-path: ellipse(175px 110px);
  }


  /* Smaller center sphere */
  .core-sphere {
    width: 210px;
    height: 210px;
  }


  /* Move cards inside screen */
  .card-ios {
    left: 5%;
    top: 12%;
  }


  .card-ai {
    right: 5%;
    bottom: 12%;
  }


  /* Hide vertical label on mobile */
  .visual-index {
    display: none;
  }


}


/* Add to your main stylesheet */
body {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Allow text selection specifically for form inputs/textareas if needed */
input, textarea {
  -webkit-user-select: text;
  -moz-user-select: text;
  -ms-user-select: text;
  user-select: text;
}
/* Container Layout */
.kuron-art {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 420px;
  background: radial-gradient(circle at center, rgba(56, 189, 248, 0.06) 0%, rgba(10, 15, 26, 0.4) 100%);
  border-left: 1px solid rgba(255, 255, 255, 0.05);
  overflow: hidden;
  padding: 2rem;
}

/* Background Glow Effect */
.art-glow {
  position: absolute;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.25) 0%, rgba(0, 0, 0, 0) 70%);
  filter: blur(40px);
  pointer-events: none;
}

/* Glassmorphic Card */
.kuron-card {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 380px;
  background: rgba(15, 23, 42, 0.65);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 1.25rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

/* Header */
.kuron-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.card-title {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.lab-badge {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, #ffffff 0%, #a1a1aa 100%);
  color: #090d16;
  font-weight: 800;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
}

.card-title strong {
  display: block;
  font-size: 0.95rem;
  color: #fff;
  line-height: 1.1;
}

.card-title small {
  font-size: 0.65rem;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.4);
}

/* Live Badge */
.live-pill {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: #38bdf8;
  background: rgba(56, 189, 248, 0.1);
  border: 1px solid rgba(56, 189, 248, 0.2);
  padding: 4px 8px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.pulse-dot {
  width: 6px;
  height: 6px;
  background: #38bdf8;
  border-radius: 50%;
  box-shadow: 0 0 8px #38bdf8;
}

/* Code Snippet */
.kuron-card-body {
  padding: 1rem 0;
}

.code-snippet {
  font-family: "SF Mono", "Fira Code", monospace;
  font-size: 0.78rem;
  line-height: 1.6;
  color: #e2e8f0;
  background: rgba(0, 0, 0, 0.3);
  padding: 0.85rem 1rem;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.03);
}

.c-keyword { color: #f472b6; }
.c-type { color: #38bdf8; }
.c-string { color: #34d399; }
.c-comment { color: #64748b; font-style: italic; }

/* Metrics Footer */
.kuron-card-footer {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.metric span {
  display: block;
  font-size: 0.6rem;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 2px;
}

.metric strong {
  font-size: 0.8rem;
  color: #f1f5f9;
  font-weight: 600;
}

/* Lab Tagline Quote Styling */
.lab-quote {
  margin: 0 0 0.85rem 0;
  padding: 0.6rem 0.85rem;
  font-size: 0.78rem;
  font-weight: 500;
  font-style: italic;
  color: #f1f5f9;
  background: rgba(255, 255, 255, 0.03);
  border-left: 2px solid #38bdf8;
  border-radius: 0 8px 8px 0;
  letter-spacing: 0.2px;
  line-height: 1.4;
}

/* Acronym Container */
.acronym-grid {
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: rgba(0, 0, 0, 0.35);
  padding: 0.85rem 1rem;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  font-family: "SF Mono", "Fira Code", monospace;
}

/* Acronym Line Items */
.acronym-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  line-height: 1.2;
}

.acronym-item .letter {
  color: #38bdf8;
  font-weight: 800;
  font-size: 0.85rem;
  background: rgba(56, 189, 248, 0.12);
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  border: 1px solid rgba(56, 189, 248, 0.25);
}

.acronym-item .word {
  color: #e2e8f0;
  font-weight: 500;
  letter-spacing: 0.3px;
}

/* Badge Container */
.lab-badge {
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px; /* Adjust padding if logo is too big/small */
  overflow: hidden;
}

/* Image Control */
.lab-badge img {
  width: 100%;
  height: 100%;
  object-fit: contain; /* Prevents image distortion */
  display: block;
}