:root {
  --bg: #030714;
  --bg-soft: #080b18;
  --panel: #171031;
  --panel-2: #1f1739;
  --text: #ffffff;
  --muted: #aaa6c4;
  --purple: #965bff;
  --blue: #18a8ff;
  --pink: #e649ad;
  --line: rgba(151, 91, 255, .38);
  --border: rgba(203, 195, 255, .18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
  font-family: "Inter", system-ui, sans-serif;
  overflow-x: hidden;
}

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

button,
input,
textarea {
  font: inherit;
}

.cursor-glow {
  position: fixed;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 20;
  opacity: .15;
  background: radial-gradient(circle, var(--purple), transparent 62%);
  transform: translate(-50%, -50%);
  mix-blend-mode: screen;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  min-height: 86px;
  padding: 18px clamp(24px, 5vw, 96px);
  background: linear-gradient(180deg, rgba(3, 7, 20, .95), rgba(3, 7, 20, .55), transparent);
  backdrop-filter: blur(12px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  white-space: nowrap;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 52px;
  aspect-ratio: 1;
  border-radius: 50%;
  color: white;
  font-size: 14px;
  font-weight: 900;
  border: 1px solid rgba(255, 255, 255, .38);
  background:
    radial-gradient(circle at 65% 34%, rgba(255, 255, 255, .35), transparent 12%),
    linear-gradient(135deg, #5d1eba, #160725 70%);
  box-shadow: 0 0 24px rgba(143, 80, 255, .62);
}

.brand-name {
  font-family: "Bricolage Grotesque", "Inter", sans-serif;
  font-size: clamp(24px, 2.2vw, 36px);
  color: var(--blue);
  text-shadow: 0 0 16px rgba(24, 168, 255, .35);
}

.brand-name::first-letter {
  color: var(--purple);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(20px, 3vw, 58px);
  color: var(--muted);
  font-size: clamp(18px, 1.5vw, 27px);
  font-weight: 700;
}

.site-nav a {
  position: relative;
  transition: color .2s ease, transform .2s ease;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 3px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--purple), var(--blue));
  transition: width .2s ease;
}

.site-nav a:hover,
.site-nav a.active {
  color: white;
  transform: translateY(-2px);
}

.site-nav a:hover::after,
.site-nav a.active::after {
  width: 100%;
}

.menu-button {
  display: none;
  color: white;
  border: 0;
  background: transparent;
  font-size: 30px;
}

.panel {
  position: relative;
  min-height: 100vh;
  padding: 108px clamp(24px, 8vw, 170px) 72px;
  background: var(--bg);
}

.hero {
  display: grid;
  align-content: center;
  overflow: hidden;
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 1460px;
  padding-left: 64px;
}

.hero h1 {
  margin: 0;
  font-size: clamp(74px, 8.8vw, 164px);
  line-height: .93;
  font-weight: 900;
  letter-spacing: 0;
}

.hero h1 span,
.type-line span {
  color: var(--purple);
}

.wave {
  display: inline-block;
  font-size: .45em;
  transform-origin: 70% 70%;
  animation: wave 1.8s ease-in-out infinite;
}

.type-line {
  margin: 26px 0 0;
  font-size: clamp(36px, 3.2vw, 62px);
  font-weight: 600;
}

.mobile-note {
  max-width: 1400px;
  margin: 10px 0 0;
  font-size: clamp(28px, 2.8vw, 48px);
  line-height: 1.22;
  font-weight: 800;
}

.hero-line {
  position: absolute;
  left: clamp(48px, 6vw, 108px);
  top: 25%;
  bottom: 18%;
  z-index: 2;
  width: 5px;
  border-radius: 99px;
  background: linear-gradient(var(--purple), transparent);
}

.hero-line span {
  position: absolute;
  top: -14px;
  left: 50%;
  width: 30px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--purple);
  transform: translateX(-50%);
}

.contour {
  position: absolute;
  width: 760px;
  height: 760px;
  opacity: .5;
  border-radius: 39% 61% 46% 54% / 48% 33% 67% 52%;
  background: repeating-radial-gradient(ellipse at center, transparent 0 14px, rgba(134, 92, 255, .38) 15px 17px, transparent 18px 28px);
  filter: drop-shadow(0 0 20px rgba(137, 87, 255, .2));
  animation: float 13s ease-in-out infinite;
}

.contour-left {
  left: -200px;
  top: -10px;
  transform: rotate(-18deg);
}

.contour-right {
  right: -70px;
  top: -20px;
  width: 900px;
  height: 900px;
  transform: rotate(20deg);
  animation-delay: -6s;
}

.desk-scene {
  position: absolute;
  left: 35%;
  bottom: -28px;
  width: min(620px, 42vw);
  height: 340px;
  transform: perspective(900px) rotateX(58deg) rotateZ(-4deg);
  opacity: .92;
}

.desk {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 94px;
  background: linear-gradient(110deg, #050507, #4c4c54, #08080b);
  clip-path: polygon(8% 12%, 100% 34%, 84% 100%, 0 72%);
}

.monitor,
.tower,
.keyboard,
.mouse {
  position: absolute;
  border-radius: 8px;
  box-shadow: 0 32px 34px rgba(0, 0, 0, .55);
}

.monitor {
  left: 220px;
  bottom: 90px;
  width: 270px;
  height: 190px;
  background: linear-gradient(130deg, #010102, #101018);
}

.monitor::after {
  content: "";
  position: absolute;
  inset: 44px 96px 20px 52px;
  background: #17171d;
  clip-path: polygon(0 0, 100% 18%, 100% 88%, 0 100%);
}

.tower {
  left: 112px;
  bottom: 78px;
  width: 110px;
  height: 230px;
  background: linear-gradient(90deg, #040406, #111218 42%, #010102);
}

.tower span {
  position: absolute;
  left: 18px;
  width: 62px;
  height: 18px;
  border-radius: 4px;
  background: linear-gradient(90deg, #ff3b3b, #36f2ff, #ffe65a);
  filter: blur(.3px);
}

.tower span:nth-child(1) { top: 58px; }
.tower span:nth-child(2) { top: 90px; }
.tower span:nth-child(3) { top: 126px; }

.keyboard {
  right: 26px;
  bottom: 44px;
  width: 230px;
  height: 30px;
  background: repeating-linear-gradient(90deg, #ff345e 0 9px, #16c5ff 10px 18px, #1d1d26 19px 25px);
}

.mouse {
  right: 180px;
  bottom: 78px;
  width: 44px;
  height: 68px;
  border: 7px solid #cac5ee;
  background: rgba(0, 0, 0, .24);
  border-radius: 28px;
}

.scroll-indicator {
  position: absolute;
  left: 50%;
  bottom: 34px;
  width: 48px;
  height: 92px;
  border: 7px solid #cbc5eb;
  border-radius: 30px;
  opacity: .9;
}

.scroll-indicator::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 18px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #cbc5eb;
  transform: translateX(-50%);
  animation: wheel 1.4s ease-in-out infinite;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--muted);
  text-align: center;
  text-transform: uppercase;
  font-size: clamp(12px, 1vw, 18px);
  font-weight: 600;
  letter-spacing: 2px;
}

.section-title {
  margin: 0 0 clamp(54px, 8vh, 98px);
  text-align: center;
  font-size: clamp(44px, 5vw, 80px);
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(280px, 430px) minmax(360px, 850px);
  justify-content: center;
  align-items: center;
  gap: clamp(64px, 8vw, 140px);
}

.profile-card {
  display: grid;
  justify-items: center;
  gap: 44px;
}

.portrait {
  display: grid;
  place-items: end center;
  width: min(330px, 72vw);
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 50%;
  background: #e8e8e3;
  box-shadow: 0 0 18px 7px #6e13e8, 0 0 42px 12px rgba(150, 91, 255, .8);
}

.face {
  position: relative;
  width: 210px;
  height: 280px;
}

.hair,
.head,
.shirt {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.hair {
  top: 18px;
  width: 160px;
  height: 84px;
  border-radius: 52% 48% 36% 64%;
  background: #21130f;
}

.head {
  top: 62px;
  width: 128px;
  height: 150px;
  border-radius: 44% 44% 48% 48%;
  background: #c69070;
}

.head::before,
.head::after {
  content: "";
  position: absolute;
  top: 54px;
  width: 10px;
  height: 6px;
  border-radius: 50%;
  background: #171016;
}

.head::before { left: 34px; }
.head::after { right: 34px; }

.shirt {
  bottom: -32px;
  width: 230px;
  height: 96px;
  border-radius: 60px 60px 0 0;
  background: linear-gradient(90deg, #9fa1a3, #c0c0bf);
}

.social-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  max-width: 360px;
}

.button,
.contact-card button,
.project-card a,
.cert-card a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 30px;
  border-radius: 7px;
  color: white;
  font-weight: 800;
  border: 0;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}

.button:hover,
.contact-card button:hover,
.project-card a:hover,
.cert-card a:hover {
  transform: translateY(-4px);
  filter: brightness(1.08);
}

.primary {
  background: linear-gradient(135deg, #2d8cff, #a84cff);
}

.blue {
  background: #2d7df0;
}

.dark {
  background: #3a4554;
}

.intro-list {
  display: grid;
  gap: 28px;
  color: var(--muted);
  font-size: clamp(20px, 1.5vw, 29px);
  line-height: 1.35;
  font-weight: 500;
}

.intro-list p {
  display: grid;
  grid-template-columns: 48px 1fr;
  margin: 0;
}

.timeline {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 92px 1fr;
  max-width: 910px;
  min-height: 460px;
  margin: 0 auto;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 4px;
  background: white;
  transform: translateX(-50%);
}

.timeline-card {
  align-self: start;
  max-width: 410px;
  padding: 24px 26px;
  border-radius: 4px;
  background: var(--panel-2);
  border-bottom: 3px solid white;
  box-shadow: 0 26px 60px rgba(0, 0, 0, .22);
}

.timeline-card.left {
  grid-column: 1;
  margin-top: 32px;
}

.timeline-card.right {
  grid-column: 3;
  margin-top: 250px;
}

.timeline-card h3,
.job-detail h3,
.cert-card h3,
.project-card h3 {
  margin: 0 0 8px;
  font-size: clamp(20px, 1.6vw, 28px);
  line-height: 1.35;
  font-weight: 900;
}

.timeline-card p,
.job-detail p,
.cert-card p {
  margin: 0 0 16px;
  color: var(--muted);
  font-weight: 600;
}

.timeline-card li,
.job-detail li,
.cert-card li {
  margin: 10px 0;
  color: white;
  font-weight: 600;
}

.timeline-badge {
  position: absolute;
  left: 50%;
  display: grid;
  place-items: center;
  width: 58px;
  aspect-ratio: 1;
  border-radius: 50%;
  color: #2474c6;
  font-weight: 900;
  background: white;
  transform: translateX(-50%);
  box-shadow: 0 0 0 4px rgba(255, 255, 255, .18);
}

.timeline-badge.top { top: 28px; }
.timeline-badge.bottom { top: 252px; color: #2e805f; }

.timeline-date {
  position: absolute;
  color: var(--muted);
  font-weight: 800;
}

.date-top {
  left: calc(50% + 44px);
  top: 46px;
}

.date-bottom {
  right: calc(50% + 44px);
  top: 272px;
}

.work-layout {
  display: grid;
  grid-template-columns: 360px minmax(480px, 700px);
  justify-content: center;
  gap: 36px;
}

.job-tabs {
  display: grid;
  gap: 26px;
  align-content: start;
}

.job-tab {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 18px;
  align-items: center;
  padding: 14px 18px;
  color: white;
  text-align: left;
  border: 0;
  border-radius: 7px;
  background: transparent;
  cursor: pointer;
  transition: background .2s ease, transform .2s ease;
}

.job-tab.active,
.job-tab:hover {
  background: var(--panel-2);
  transform: translateX(6px);
}

.job-tab span {
  grid-row: span 2;
  display: grid;
  place-items: center;
  width: 58px;
  aspect-ratio: 1;
  border-radius: 50%;
  color: #2b62b4;
  font-weight: 900;
  background: white;
}

.job-tab b {
  align-self: end;
  font-size: 18px;
}

.job-tab small {
  color: var(--muted);
  font-size: 15px;
}

.job-detail {
  min-height: 510px;
  padding: 34px;
  border-radius: 7px;
  background: #160f31;
}

.job-detail strong {
  display: block;
  margin-bottom: 18px;
  color: white;
}

.job-detail ul {
  padding-left: 20px;
}

.certifications {
  overflow: hidden;
}

.cert-stage {
  position: relative;
  height: 390px;
  max-width: 980px;
  margin: 0 auto;
  perspective: 1200px;
}

.cert-card {
  position: absolute;
  top: 40px;
  left: 50%;
  display: flex;
  flex-direction: column;
  width: 390px;
  min-height: 360px;
  padding: 26px;
  border: 1px solid rgba(169, 167, 226, .35);
  border-radius: 14px;
  background: #191932;
  box-shadow: 0 35px 80px rgba(0, 0, 0, .38);
  transition: transform .35s ease, z-index .35s ease, box-shadow .35s ease, filter .35s ease;
  transform-style: preserve-3d;
}

.cert-card:hover,
.cert-card:focus {
  z-index: 10;
  filter: brightness(1.08);
  box-shadow: 0 36px 110px rgba(122, 81, 255, .35);
  outline: none;
  transform: translateX(-50%) translateZ(120px) rotateY(0) scale(1.08);
}

.cert-left {
  z-index: 1;
  transform: translateX(-125%) rotateY(18deg) rotateZ(7deg) scale(.82);
}

.cert-left:hover,
.cert-left:focus {
  transform: translateX(-83%) translateZ(120px) rotateY(0) rotateZ(0) scale(1.02);
}

.cert-front {
  z-index: 3;
  width: 430px;
  transform: translateX(-50%) translateZ(40px) scale(1);
}

.cert-right {
  z-index: 1;
  transform: translateX(22%) rotateY(-18deg) rotateZ(-7deg) scale(.82);
}

.cert-right:hover,
.cert-right:focus {
  transform: translateX(-18%) translateZ(120px) rotateY(0) rotateZ(0) scale(1.02);
}

.cert-icon {
  margin: 4px auto 16px;
  color: white;
  font-size: 44px;
  line-height: 1;
}

.cert-icon.green {
  color: #8bd14b;
  font-size: 58px;
}

.cert-icon.google {
  color: #4b8df8;
  font-weight: 900;
  font-size: 46px;
}

.cert-card small {
  color: var(--muted);
}

.cert-card ul {
  padding-left: 22px;
  font-size: 14px;
}

.cert-card a {
  align-self: flex-end;
  min-height: 42px;
  margin-top: auto;
  padding: 0 18px;
  color: #c8c5d8;
  font-size: 12px;
  background: linear-gradient(135deg, #5b5b58, #020204);
  box-shadow: 0 7px 16px rgba(0, 0, 0, .5);
}

.cert-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.cert-dots span,
.cert-dots b {
  width: 8px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #2f245f;
}

.cert-dots b {
  background: var(--purple);
}

.skills {
  padding-left: clamp(28px, 13vw, 250px);
  padding-right: clamp(28px, 13vw, 250px);
}

.skill-block {
  max-width: 760px;
  margin: 0 auto 64px;
}

.skill-block.small {
  max-width: 520px;
}

.skill-block code {
  color: #aa74ff;
  font-size: 18px;
  text-shadow: 0 0 14px #7b49ff;
}

.skill-block .closing {
  display: block;
  color: var(--blue);
  text-align: right;
  text-shadow: 0 0 14px var(--blue);
}

.hex-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px 10px;
  max-width: 620px;
  margin: 14px auto 10px;
}

.hex-grid span {
  display: grid;
  place-items: center;
  width: 82px;
  height: 72px;
  color: white;
  font-weight: 900;
  background: #2a1d56;
  clip-path: polygon(25% 0, 75% 0, 100% 50%, 75% 100%, 25% 100%, 0 50%);
  transition: transform .22s ease, background .22s ease, filter .22s ease;
}

.hex-grid span:hover {
  transform: translateY(-10px) scale(1.08) rotate(3deg);
  background: linear-gradient(135deg, #351d6c, #6936d6);
  filter: drop-shadow(0 0 18px rgba(143, 80, 255, .6));
}

.hex-grid.tools {
  max-width: 700px;
}

.hex-grid.mini {
  max-width: 260px;
}

.hex-grid.mini span {
  font-size: 26px;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(240px, 1fr));
  gap: 34px;
  max-width: 920px;
  margin: 0 auto;
}

.project-card {
  min-height: 430px;
  padding: 14px;
  border-radius: 8px;
  background: #150f31;
  transition: transform .24s ease, box-shadow .24s ease;
}

.project-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 24px 70px rgba(96, 62, 186, .28);
}

.project-card img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 16px;
}

.project-card h3 {
  font-size: 18px;
}

.project-card p {
  min-height: 126px;
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.project-card small {
  display: block;
  min-height: 34px;
  color: #00d5a2;
  font-size: 12px;
}

.project-card a {
  min-height: 36px;
  padding: 0 16px;
  font-size: 12px;
  background: #050610;
}

.contact {
  display: grid;
  grid-template-columns: minmax(320px, 440px) minmax(360px, 560px);
  justify-content: center;
  align-items: center;
  gap: 34px;
  overflow: hidden;
}

.stars {
  position: absolute;
  inset: 0;
  opacity: .75;
  background-image:
    radial-gradient(circle at 8% 18%, white 0 1px, transparent 2px),
    radial-gradient(circle at 25% 4%, white 0 1px, transparent 2px),
    radial-gradient(circle at 42% 12%, white 0 1px, transparent 2px),
    radial-gradient(circle at 64% 4%, white 0 1px, transparent 2px),
    radial-gradient(circle at 82% 18%, white 0 1px, transparent 2px),
    radial-gradient(circle at 13% 70%, white 0 2px, transparent 3px),
    radial-gradient(circle at 92% 38%, white 0 2px, transparent 3px);
}

.contact-card {
  position: relative;
  z-index: 2;
  padding: 34px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: rgba(20, 14, 43, .94);
}

.contact-top {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-top a {
  color: #c28dff;
}

.contact-card h2 {
  margin: 20px 0 28px;
  text-align: center;
  font-size: 44px;
  line-height: 1;
}

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

.contact-card label {
  display: grid;
  gap: 8px;
  margin-bottom: 20px;
  color: white;
  font-size: 13px;
  font-weight: 800;
}

.contact-card input,
.contact-card textarea {
  width: 100%;
  border: 1px solid rgba(218, 210, 255, .28);
  border-radius: 7px;
  color: white;
  background: transparent;
  padding: 16px;
  outline: none;
}

.contact-card input:focus,
.contact-card textarea:focus {
  border-color: var(--purple);
  box-shadow: 0 0 0 3px rgba(150, 91, 255, .18);
}

.contact-card textarea {
  min-height: 126px;
  resize: vertical;
}

.captcha {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 202px;
  height: 54px;
  margin: 0 auto 26px;
  padding: 10px;
  color: #f1f1f1;
  font-size: 11px;
  font-weight: 800;
  background: #201f1e;
  box-shadow: inset 0 0 0 1px #6b6a66;
}

.captcha span {
  width: 18px;
  aspect-ratio: 1;
  background: white;
}

.captcha b {
  margin-left: auto;
  color: #c7c7c7;
  font-size: 8px;
}

.contact-card button {
  width: 100%;
  min-height: 52px;
  background: linear-gradient(135deg, #a64fff, #f2439d);
}

.planet {
  position: relative;
  z-index: 1;
  width: min(460px, 75vw);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 42% 42%, #152f2d 0 20%, #0b101d 21% 36%, transparent 37%),
    radial-gradient(circle at 50% 50%, #f7b35c 0 4%, #0b1023 24%, #111827 58%, transparent 60%);
  box-shadow: inset -30px -20px 40px rgba(0, 0, 0, .8);
  animation: planetFloat 5s ease-in-out infinite;
}

.planet span {
  position: absolute;
  left: 0;
  right: 0;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(90deg, transparent, #2e72bd 16%, #7ca7e8 42%, #ecc0cd 70%, transparent);
  transform: rotate(-12deg);
  box-shadow: 0 8px 18px rgba(0, 0, 0, .45);
}

.planet span:nth-child(1) { top: 72px; }
.planet span:nth-child(2) { top: 132px; height: 44px; }
.planet span:nth-child(3) { top: 194px; height: 52px; }
.planet span:nth-child(4) { top: 260px; height: 42px; }
.planet span:nth-child(5) { top: 318px; }

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

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

.delay-1 { transition-delay: .12s; }
.delay-2 { transition-delay: .22s; }

@keyframes wave {
  0%, 100% { transform: rotate(0); }
  25% { transform: rotate(16deg); }
  55% { transform: rotate(-8deg); }
  75% { transform: rotate(10deg); }
}

@keyframes float {
  0%, 100% { border-radius: 39% 61% 46% 54% / 48% 33% 67% 52%; }
  50% { border-radius: 58% 42% 64% 36% / 36% 55% 45% 64%; }
}

@keyframes wheel {
  0% { opacity: 0; transform: translate(-50%, 0); }
  35% { opacity: 1; }
  100% { opacity: 0; transform: translate(-50%, 34px); }
}

@keyframes planetFloat {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-18px) rotate(2deg); }
}

@media (max-width: 1180px) {
  .site-nav {
    gap: 20px;
    font-size: 18px;
  }

  .project-grid {
    grid-template-columns: repeat(2, minmax(240px, 1fr));
  }

  .work-layout,
  .about-grid,
  .contact {
    grid-template-columns: 1fr;
  }

  .work-layout {
    max-width: 760px;
    margin: 0 auto;
  }
}

@media (max-width: 820px) {
  .site-header {
    min-height: 74px;
    padding: 14px 22px;
  }

  .menu-button {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 74px;
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: rgba(8, 8, 22, .98);
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav a {
    padding: 12px;
    font-size: 18px;
  }

  .panel {
    padding: 96px 22px 56px;
  }

  .hero-copy {
    padding-left: 32px;
  }

  .hero h1 {
    font-size: clamp(52px, 17vw, 82px);
  }

  .type-line,
  .mobile-note {
    font-size: clamp(25px, 7vw, 42px);
  }

  .hero-line {
    left: 22px;
  }

  .desk-scene,
  .scroll-indicator {
    display: none;
  }

  .timeline {
    display: block;
    min-height: auto;
    padding-left: 34px;
  }

  .timeline::before {
    left: 0;
  }

  .timeline-card,
  .timeline-card.left,
  .timeline-card.right {
    max-width: none;
    margin: 0 0 30px;
  }

  .timeline-badge,
  .timeline-date {
    display: none;
  }

  .job-tabs {
    gap: 10px;
  }

  .job-detail {
    min-height: auto;
  }

  .cert-stage {
    height: auto;
    display: grid;
    gap: 18px;
  }

  .cert-card,
  .cert-front,
  .cert-left,
  .cert-right,
  .cert-card:hover,
  .cert-card:focus {
    position: static;
    width: 100%;
    min-height: auto;
    transform: none;
  }

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

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

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
}

/* Mint editorial theme */
:root {
  --bg: #1d342a;
  --bg-soft: #2c4426;
  --panel: #20392f;
  --panel-2: #2d4631;
  --text: #effbf5;
  --muted: #c9ddd3;
  --purple: #8ee2c8;
  --blue: #b9f2df;
  --pink: #f8f7ef;
  --line: rgba(142, 226, 200, .34);
  --border: rgba(224, 250, 240, .18);
  --mint: #8ee2c8;
  --cream: #f7f4e7;
  --forest: #1d342a;
  --olive: #4d6029;
  --charcoal: #2b3633;
}

body {
  color: var(--text);
  background:
    radial-gradient(circle at 20% 0%, rgba(78, 97, 42, .96), transparent 36%),
    linear-gradient(135deg, var(--olive) 0%, var(--forest) 52%, var(--charcoal) 100%);
  font-family: "Inter", system-ui, sans-serif;
}

.panel {
  background:
    radial-gradient(circle at 12% 10%, rgba(83, 101, 46, .42), transparent 32%),
    linear-gradient(135deg, #253f2f 0%, #1d342a 56%, #2e3935 100%);
}

.cursor-glow {
  background: radial-gradient(circle, rgba(142, 226, 200, .72), transparent 64%);
  opacity: .22;
}

.site-header {
  background: linear-gradient(180deg, rgba(29, 52, 42, .96), rgba(29, 52, 42, .62), transparent);
}

.brand-mark {
  color: #1d342a;
  background: var(--mint);
  border-color: rgba(247, 244, 231, .65);
  box-shadow: 0 0 28px rgba(142, 226, 200, .42);
}

.brand-name {
  color: var(--mint);
  font-family: "Bricolage Grotesque", "Inter", sans-serif;
  font-weight: 800;
  text-shadow: none;
}

.brand-name::first-letter {
  color: var(--cream);
}

.site-nav {
  color: rgba(239, 251, 245, .72);
  font-family: "Bricolage Grotesque", "Inter", sans-serif;
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--mint);
}

.site-nav a::after {
  background: var(--mint);
}

.hero {
  min-height: 100vh;
  align-content: center;
  background:
    radial-gradient(circle at 8% 8%, rgba(76, 96, 41, .92), transparent 36%),
    linear-gradient(135deg, #4b5f2c 0%, #1e382e 52%, #303a37 100%);
}

.hero-copy {
  max-width: 1180px;
  margin: 0 auto;
  padding-left: 0;
  text-align: center;
}

.hero h1 {
  color: var(--mint);
  font-family: "Bricolage Grotesque", "Inter", sans-serif;
  font-size: clamp(82px, 12vw, 176px);
  line-height: .96;
  font-weight: 800;
  letter-spacing: 0;
}

.hero h1 span,
.type-line span {
  color: var(--mint);
}

.mobile-note {
  max-width: 1060px;
  margin: clamp(56px, 9vh, 92px) auto 0;
  color: rgba(239, 251, 245, .86);
  font-size: clamp(22px, 2.35vw, 34px);
  line-height: 1.45;
  font-weight: 800;
}

.hero-line,
.contour,
.desk-scene,
.stars,
.planet,
.wave {
  display: none;
}

.sparkle {
  position: absolute;
  width: clamp(68px, 8vw, 108px);
  aspect-ratio: 1;
  background: var(--cream);
  clip-path: polygon(50% 0, 62% 34%, 100% 50%, 62% 66%, 50% 100%, 38% 66%, 0 50%, 38% 34%);
  filter: drop-shadow(0 12px 24px rgba(0, 0, 0, .18));
  animation: sparklePulse 3.8s ease-in-out infinite;
}

.sparkle-left {
  left: clamp(30px, 6vw, 90px);
  top: 54%;
}

.sparkle-right {
  right: clamp(48px, 8vw, 120px);
  top: 18%;
  width: clamp(62px, 7vw, 98px);
  animation-delay: -1.4s;
}

.scroll-indicator {
  border-color: rgba(247, 244, 231, .74);
}

.scroll-indicator::after {
  background: var(--cream);
}

.eyebrow,
.timeline-date,
.timeline-card p,
.job-detail p,
.cert-card p,
.cert-card small,
.job-tab small,
.intro-list,
.project-card p {
  color: var(--muted);
}

.section-title,
.contact-card h2 {
  color: var(--cream);
  font-family: "Bricolage Grotesque", "Inter", sans-serif;
  font-weight: 800;
}

.portrait {
  box-shadow: 0 0 0 10px rgba(142, 226, 200, .18), 0 0 44px rgba(142, 226, 200, .34);
}

.primary,
.blue,
.dark,
.contact-card button {
  color: #173329;
  background: var(--mint);
}

.button:hover,
.contact-card button:hover,
.project-card a:hover,
.cert-card a:hover {
  box-shadow: 0 18px 42px rgba(142, 226, 200, .24);
}

.timeline-card,
.job-tab.active,
.job-tab:hover,
.job-detail,
.cert-card,
.project-card,
.contact-card {
  background: rgba(22, 48, 38, .88);
  border: 1px solid rgba(228, 248, 238, .16);
  box-shadow: 0 28px 70px rgba(13, 25, 21, .24);
}

.timeline-card {
  border-bottom-color: var(--mint);
}

.timeline::before {
  background: var(--mint);
}

.timeline-badge,
.job-tab span {
  color: #1d342a;
  background: var(--mint);
}

.cert-card:hover,
.cert-card:focus {
  box-shadow: 0 36px 110px rgba(142, 226, 200, .24);
}

.cert-icon.green,
.cert-icon.google {
  color: var(--mint);
  background: transparent;
}

.cert-dots b {
  background: var(--mint);
}

.cert-card a,
.project-card a {
  color: #173329;
  background: var(--cream);
  box-shadow: 0 10px 22px rgba(0, 0, 0, .22);
}

.cert-dots span {
  background: rgba(142, 226, 200, .24);
}

.skill-block code,
.skill-block .closing {
  color: var(--mint);
  text-shadow: 0 0 14px rgba(142, 226, 200, .4);
}

.hex-grid span {
  color: #173329;
  background: var(--mint);
}

.hex-grid span:hover {
  color: #173329;
  background: var(--cream);
  filter: drop-shadow(0 0 20px rgba(142, 226, 200, .52));
}

.project-card small,
.contact-top a {
  color: var(--mint);
}

.contact-card input,
.contact-card textarea {
  border-color: rgba(228, 248, 238, .28);
  color: var(--text);
}

.contact-card input:focus,
.contact-card textarea:focus {
  border-color: var(--mint);
  box-shadow: 0 0 0 3px rgba(142, 226, 200, .14);
}

.captcha {
  color: #20392f;
  background: var(--cream);
  box-shadow: inset 0 0 0 1px rgba(29, 52, 42, .2);
}

@keyframes sparklePulse {
  0%, 100% {
    transform: scale(1) rotate(0);
  }
  50% {
    transform: scale(1.12) rotate(10deg);
  }
}

@media (max-width: 820px) {
  .site-nav {
    background: rgba(29, 52, 42, .98);
  }

  .hero h1 {
    font-size: clamp(58px, 16vw, 92px);
  }

  .mobile-note {
    margin-top: 42px;
    font-size: clamp(18px, 5vw, 26px);
  }
}

/* Certification carousel matching the reference window */
.certifications {
  min-height: 760px;
  padding-top: 72px;
  overflow: hidden;
  background: #050816;
}

.certifications .eyebrow {
  color: #aaa6c4;
}

.certifications .section-title {
  margin-bottom: 88px;
  color: #fff;
  font-family: "Bricolage Grotesque", "Inter", sans-serif;
  font-size: clamp(48px, 4.8vw, 72px);
  text-shadow: none;
}

.cert-stage {
  position: relative;
  height: 392px;
  max-width: 1040px;
  margin: 0 auto;
  perspective: 1300px;
}

.cert-card {
  position: absolute;
  top: 0;
  left: 50%;
  display: flex;
  flex-direction: column;
  width: 392px;
  min-height: 360px;
  padding: 28px;
  color: #fff;
  border: 1px solid rgba(140, 135, 198, .42);
  border-radius: 14px;
  background: #191a34;
  box-shadow: 0 34px 80px rgba(0, 0, 0, .42);
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) scale(.6);
  transform-style: preserve-3d;
  transition:
    transform .42s cubic-bezier(.2, .8, .2, 1),
    opacity .28s ease,
    filter .28s ease,
    box-shadow .28s ease,
    width .28s ease;
}

.cert-card.is-center,
.cert-card.is-left,
.cert-card.is-right {
  opacity: 1;
  pointer-events: auto;
}

.cert-card.is-center {
  z-index: 5;
  width: 430px;
  transform: translateX(-50%) translateZ(84px) scale(1);
}

.cert-card.is-left {
  z-index: 3;
  transform: translateX(-128%) rotateY(18deg) rotateZ(7deg) scale(.82);
}

.cert-card.is-right {
  z-index: 3;
  transform: translateX(26%) rotateY(-18deg) rotateZ(-7deg) scale(.82);
}

.cert-card.is-hidden-left {
  transform: translateX(-165%) rotateY(22deg) scale(.68);
}

.cert-card.is-hidden-right {
  transform: translateX(68%) rotateY(-22deg) scale(.68);
}

.cert-card:hover,
.cert-card:focus {
  outline: none;
  filter: brightness(1.07);
  box-shadow: 0 34px 96px rgba(75, 65, 155, .34);
}

.cert-card h3 {
  margin: 0 0 10px;
  color: #fff;
  font-size: clamp(18px, 1.45vw, 25px);
  line-height: 1.25;
  font-weight: 900;
}

.cert-card p {
  margin: 0 0 6px;
  color: #aaa6c4;
  font-size: 14px;
  font-weight: 600;
}

.cert-card small {
  color: #aaa6c4;
  font-size: 12px;
}

.cert-card ul {
  margin: 20px 0 0;
  padding-left: 20px;
  color: #fff;
  font-size: 13px;
  line-height: 1.45;
  font-weight: 800;
}

.cert-card li {
  color: #fff;
}

.cert-icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin: -2px auto 18px;
  color: #fff;
  font-size: 38px;
  font-weight: 900;
  line-height: 1;
}

.cert-icon.green {
  color: #8bd14b;
  font-size: 58px;
}

.cert-icon.google {
  color: #4285f4;
  font-size: 46px;
}

.cert-icon.azure {
  color: #2f9bff;
  font-size: 48px;
}

.cert-icon.aws {
  color: #ffb84d;
  font-size: 28px;
  text-transform: uppercase;
}

.cert-card a {
  align-self: flex-end;
  min-height: 42px;
  margin-top: auto;
  padding: 0 18px;
  color: #d7d4e9;
  font-size: 12px;
  font-weight: 900;
  border-radius: 8px;
  background: linear-gradient(135deg, #565650, #030304);
  box-shadow: 0 8px 18px rgba(0, 0, 0, .55);
}

.cert-card a:hover {
  box-shadow: 0 12px 22px rgba(0, 0, 0, .58);
}

.cert-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 8px;
}

.cert-dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #31285e;
  cursor: pointer;
  transition: transform .18s ease, background .18s ease;
}

.cert-dots button.is-active {
  background: #965bff;
  transform: scale(1.18);
}

.cert-dots button:hover {
  background: #8d7aff;
}

@media (max-width: 820px) {
  .certifications {
    min-height: auto;
  }

  .cert-stage {
    height: auto;
    display: grid;
    gap: 18px;
    perspective: none;
  }

  .cert-card,
  .cert-card.is-center,
  .cert-card.is-left,
  .cert-card.is-right,
  .cert-card.is-hidden-left,
  .cert-card.is-hidden-right,
  .cert-card:hover,
  .cert-card:focus {
    position: static;
    width: 100%;
    min-height: auto;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }
}

/* Unified light sage palette */
:root {
  --bg: #e9e5db;
  --bg-soft: #dce9cf;
  --panel: rgba(250, 247, 238, .74);
  --panel-2: rgba(244, 241, 232, .82);
  --text: #005a4f;
  --muted: #496b67;
  --purple: #005a4f;
  --blue: #005a4f;
  --pink: #e5d0cc;
  --line: rgba(0, 90, 79, .22);
  --border: rgba(0, 90, 79, .16);
  --mint: #005a4f;
  --cream: #f6f1e8;
  --forest: #005a4f;
  --olive: #cfe6bc;
  --charcoal: #496b67;
}

body {
  color: var(--text);
  background:
    radial-gradient(circle at 6% 0%, #cfe6bc 0 24%, transparent 42%),
    radial-gradient(circle at 96% 4%, #e5d0cc 0 18%, transparent 38%),
    linear-gradient(135deg, #d4ebc0 0%, #f2eadf 54%, #dfccc8 100%);
  font-family: "Inter", system-ui, sans-serif;
}

.panel,
.hero,
.certifications {
  background:
    radial-gradient(circle at 8% 0%, rgba(207, 230, 188, .95) 0 22%, transparent 44%),
    radial-gradient(circle at 95% 2%, rgba(229, 208, 204, .88) 0 18%, transparent 40%),
    linear-gradient(135deg, #d4ebc0 0%, #eee8dc 55%, #dfccc8 100%);
}

.site-header {
  background: linear-gradient(180deg, rgba(235, 232, 222, .92), rgba(235, 232, 222, .58), transparent);
}

.brand-mark {
  color: var(--cream);
  background: var(--forest);
  border-color: rgba(0, 90, 79, .2);
  box-shadow: 0 12px 34px rgba(0, 90, 79, .18);
}

.brand-name,
.brand-name::first-letter,
.site-nav a:hover,
.site-nav a.active,
.project-card small,
.contact-top a,
.skill-block code,
.skill-block .closing {
  color: var(--forest);
}

.brand-name,
.site-nav,
.section-title,
.contact-card h2,
.hero h1,
.certifications .section-title {
  font-family: "Bricolage Grotesque", "Inter", sans-serif;
}

.site-nav {
  color: rgba(0, 90, 79, .58);
}

.site-nav a::after {
  background: var(--forest);
}

.cursor-glow {
  background: radial-gradient(circle, rgba(0, 90, 79, .18), transparent 64%);
  opacity: .35;
}

.hero h1 {
  color: var(--forest);
  font-size: clamp(82px, 12vw, 176px);
  line-height: .96;
  font-weight: 800;
}

.hero h1 span {
  color: var(--forest);
}

.mobile-note {
  color: var(--muted);
}

.sparkle {
  background: #fffdfa;
  filter: drop-shadow(0 12px 24px rgba(0, 90, 79, .1));
}

.scroll-indicator {
  border-color: rgba(0, 90, 79, .42);
}

.scroll-indicator::after {
  background: var(--forest);
}

.eyebrow,
.certifications .eyebrow,
.timeline-date,
.timeline-card p,
.job-detail p,
.cert-card p,
.cert-card small,
.job-tab small,
.intro-list,
.project-card p,
.contact-top {
  color: var(--muted);
}

.section-title,
.contact-card h2,
.certifications .section-title {
  color: var(--forest);
}

.portrait {
  background: #f7f3ea;
  box-shadow: 0 0 0 10px rgba(0, 90, 79, .08), 0 24px 70px rgba(0, 90, 79, .15);
}

.timeline-card,
.job-tab.active,
.job-tab:hover,
.job-detail,
.cert-card,
.project-card,
.contact-card {
  color: var(--forest);
  background: rgba(246, 241, 232, .72);
  border: 1px solid var(--border);
  box-shadow: 0 24px 70px rgba(0, 90, 79, .12);
  backdrop-filter: blur(14px);
}

.timeline-card h3,
.job-detail h3,
.cert-card h3,
.project-card h3,
.timeline-card li,
.job-detail li,
.cert-card li {
  color: var(--forest);
}

.timeline-card {
  border-bottom-color: var(--forest);
}

.timeline::before,
.timeline-badge,
.job-tab span {
  background: var(--forest);
}

.timeline-badge,
.job-tab span {
  color: var(--cream);
}

.button,
.contact-card button,
.project-card a,
.cert-card a {
  color: var(--cream);
  background: var(--forest);
  box-shadow: 0 12px 24px rgba(0, 90, 79, .18);
}

.button:hover,
.contact-card button:hover,
.project-card a:hover,
.cert-card a:hover,
.cert-card:hover,
.cert-card:focus,
.project-card:hover {
  box-shadow: 0 28px 70px rgba(0, 90, 79, .2);
}

.cert-card {
  background: rgba(246, 241, 232, .84);
  border-color: rgba(0, 90, 79, .18);
}

.cert-card.is-center {
  box-shadow: 0 34px 90px rgba(0, 90, 79, .18);
}

.cert-icon,
.cert-icon.green,
.cert-icon.google,
.cert-icon.azure,
.cert-icon.aws {
  color: var(--forest);
}

.cert-dots button {
  background: rgba(0, 90, 79, .22);
}

.cert-dots button.is-active,
.cert-dots button:hover {
  background: var(--forest);
}

.hex-grid span {
  color: var(--cream);
  background: var(--forest);
}

.hex-grid span:hover {
  color: var(--forest);
  background: #fffdfa;
  filter: drop-shadow(0 16px 24px rgba(0, 90, 79, .16));
}

.contact-card input,
.contact-card textarea {
  color: var(--forest);
  border-color: rgba(0, 90, 79, .22);
  background: rgba(255, 253, 250, .44);
}

.contact-card input::placeholder {
  color: rgba(0, 90, 79, .5);
}

.contact-card input:focus,
.contact-card textarea:focus {
  border-color: var(--forest);
  box-shadow: 0 0 0 3px rgba(0, 90, 79, .1);
}

.captcha {
  color: var(--forest);
  background: #fffdfa;
  box-shadow: inset 0 0 0 1px rgba(0, 90, 79, .16);
}

@media (max-width: 820px) {
  .site-nav {
    background: rgba(246, 241, 232, .98);
  }
}

/* Comfortable default scale */
.panel {
  min-height: auto;
  padding: 92px clamp(24px, 6vw, 112px) 68px;
}

.hero {
  min-height: 100vh;
  padding-top: 104px;
}

.hero-copy {
  max-width: 1040px;
}

.hero h1 {
  font-size: clamp(58px, 8.2vw, 118px);
  line-height: 1;
}

#role-text {
  display: inline-block;
  min-width: 7.5em;
  max-width: 100%;
  font-size: .92em;
  transition: opacity .36s ease, transform .36s ease, filter .36s ease;
  will-change: opacity, transform, filter;
  white-space: nowrap;
}

#role-text.is-changing {
  opacity: 0;
  filter: blur(5px);
  transform: translateY(12px);
}

.mobile-note {
  max-width: 880px;
  margin-top: clamp(34px, 6vh, 58px);
  font-size: clamp(18px, 1.75vw, 27px);
  line-height: 1.55;
}

.section-title,
.certifications .section-title {
  margin-bottom: clamp(42px, 6vh, 72px);
  font-size: clamp(36px, 4vw, 58px);
}

.eyebrow {
  font-size: clamp(11px, .9vw, 14px);
}

.about-grid {
  gap: clamp(42px, 6vw, 92px);
}

.intro-list {
  font-size: clamp(17px, 1.2vw, 22px);
}

.work-layout {
  grid-template-columns: minmax(280px, 340px) minmax(440px, 680px);
}

.project-grid {
  max-width: 1040px;
}

.certifications {
  min-height: 680px;
  padding-top: 82px;
}

.cert-stage {
  transform: scale(.92);
  transform-origin: top center;
}

.sparkle-left {
  left: clamp(24px, 5vw, 70px);
}

.sparkle-right {
  right: clamp(32px, 6vw, 92px);
}

@media (max-width: 820px) {
  .panel {
    padding: 84px 20px 52px;
  }

  .hero h1 {
    font-size: clamp(44px, 13vw, 72px);
  }

  .mobile-note {
    margin-top: 30px;
    font-size: clamp(16px, 4.5vw, 22px);
  }

  .section-title,
  .certifications .section-title {
    font-size: clamp(32px, 9vw, 46px);
  }

  .cert-stage {
    transform: none;
  }
}

.logo-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  max-width: 760px;
  margin: 18px auto 12px;
}

.logo-skill {
  display: grid;
  place-items: center;
  gap: 10px;
  width: 126px;
  min-height: 116px;
  padding: 18px 12px;
  color: var(--forest);
  text-align: center;
  font-size: 14px;
  font-weight: 800;
  border: 1px solid rgba(0, 90, 79, .16);
  border-radius: 18px;
  background: rgba(255, 253, 250, .58);
  box-shadow: 0 18px 42px rgba(0, 90, 79, .1);
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease;
}

.logo-skill:hover {
  transform: translateY(-8px);
  background: rgba(255, 253, 250, .86);
  box-shadow: 0 28px 62px rgba(0, 90, 79, .16);
}

.logo-skill img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.logo-mark {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border-radius: 14px;
  color: var(--cream);
  font-family: "Bricolage Grotesque", "Inter", sans-serif;
  font-size: 18px;
  font-weight: 800;
  background: var(--forest);
}

.project-visual {
  display: grid;
  place-items: center;
  width: 100%;
  aspect-ratio: 16 / 9;
  margin-bottom: 16px;
  color: var(--cream);
  font-family: "Bricolage Grotesque", "Inter", sans-serif;
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 800;
  border-radius: 10px;
  background:
    radial-gradient(circle at 12% 12%, rgba(255, 253, 250, .22), transparent 28%),
    linear-gradient(135deg, var(--forest), #2e7a70);
}

.project-card p {
  min-height: 104px;
}

@media (max-width: 820px) {
  .logo-skill {
    width: 112px;
    min-height: 104px;
  }
}

.contact {
  display: grid;
  grid-template-columns: minmax(320px, 560px);
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

.contact-card {
  width: min(560px, 100%);
  margin: 0 auto;
}
