/* =========================================================================
   DESIGN TOKENS
   ========================================================================= */
:root{
  /* colour */
  --bg:        #090D16;
  --bg-alt:    #0D1220;
  --surface:   #121a2c;
  --surface-2: #16203570;
  --border:    rgba(151, 168, 209, 0.14);
  --border-strong: rgba(151, 168, 209, 0.26);
  --text:      #E9EDF6;
  --text-muted:#8B95B3;
  --text-dim:  #5C6584;
  --signal:    #45D9C0;
  --signal-2:  #7CE9D6;
  --signal-soft: rgba(69, 217, 192, 0.12);
  --amber:     #F2A93B;
  --amber-soft: rgba(242, 169, 59, 0.14);

  /* type */
  --font-display: 'Space Grotesk', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, monospace;

  /* layout */
  --container: 1160px;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;

  /* motion */
  --ease: cubic-bezier(.22,.61,.36,1);
  --dur-fast: .3s;
  --dur-med: .6s;
  --dur-slow: 1.1s;
}

*, *::before, *::after{ box-sizing: border-box; }

html{
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

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

::selection{ background: var(--signal-soft); color: var(--signal-2); }

a{ color: inherit; text-decoration: none; }
button{ font-family: inherit; cursor: pointer; }
img{ max-width: 100%; display:block; }
code{
  font-family: var(--font-mono);
  font-size: .85em;
  background: var(--surface);
  border: 1px solid var(--border);
  padding: .12em .45em;
  border-radius: 5px;
  color: var(--signal-2);
}

.container{
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

/* background canvas + grain */
#bg-canvas{
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}
.grain{
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background-image: radial-gradient(circle at 20% 20%, rgba(69,217,192,.05), transparent 45%),
                     radial-gradient(circle at 80% 70%, rgba(242,169,59,.04), transparent 40%);
}

main, .footer, .nav{ position: relative; z-index: 2; }

/* =========================================================================
   TYPE SCALE
   ========================================================================= */
.eyebrow{
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .14em;
  color: var(--signal-2);
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 18px;
  text-transform: uppercase;
}
.eyebrow .dot{
  width: 6px; height:6px; border-radius: 50%;
  background: var(--signal);
  box-shadow: 0 0 0 3px var(--signal-soft);
  animation: pulse-dot 2.4s ease-in-out infinite;
}

.section-title{
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(28px, 3.4vw, 42px);
  line-height: 1.15;
  margin: 0 0 18px;
  letter-spacing: -0.01em;
}
.section-sub{
  color: var(--text-muted);
  max-width: 560px;
  margin: 0;
}
.section-head{ margin-bottom: 56px; }

/* =========================================================================
   NAV
   ========================================================================= */
.nav{
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  backdrop-filter: blur(14px) saturate(140%);
  background: rgba(9, 13, 22, 0.62);
  border-bottom: 1px solid transparent;
  transition: border-color var(--dur-fast) var(--ease), background var(--dur-fast) var(--ease);
}
.nav.scrolled{
  border-bottom-color: var(--border);
}
.nav-inner{
  max-width: var(--container);
  margin: 0 auto;
  padding: 16px 32px;
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-logo{
  display: flex; align-items: center; gap: 8px;
  font-family: var(--font-mono);
  font-weight: 600;
  margin-right: auto;
  position: relative;
}
.logo-mark{
  width: 36px; height: 36px;
  display: grid; place-items: center;
  border: 1px solid var(--border-strong);
  border-radius: 9px;
  font-size: 13px;
  letter-spacing: .02em;
  color: var(--text);
  background: linear-gradient(150deg, var(--surface), transparent);
}
.logo-pulse{
  position: absolute;
  top: -2px; right: -2px;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--signal);
  box-shadow: 0 0 0 0 rgba(69,217,192,.6);
  animation: pulse-dot 2.4s ease-in-out infinite;
}
.nav-links{
  display: flex;
  gap: 30px;
}
.nav-link{
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--text-muted);
  position: relative;
  padding: 6px 0;
  transition: color var(--dur-fast) var(--ease);
}
.nav-link::after{
  content:"";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1px;
  background: var(--signal);
  transition: width var(--dur-fast) var(--ease);
}
.nav-link:hover{ color: var(--text); }
.nav-link.active{ color: var(--signal-2); }
.nav-link.active::after{ width: 100%; }

.nav-cta{ font-size: 13px; padding: 9px 18px; }

.nav-toggle{
  display:none;
  background:none; border:none;
  width: 34px; height: 34px;
  flex-direction: column;
  align-items: center; justify-content: center;
  gap: 5px;
}
.nav-toggle span{
  width: 20px; height: 1.5px; background: var(--text);
  transition: transform var(--dur-fast) var(--ease), opacity var(--dur-fast) var(--ease);
}

/* =========================================================================
   BUTTONS
   ========================================================================= */
.btn{
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 13px 24px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14.5px;
  border: 1px solid transparent;
  transition: transform var(--dur-fast) var(--ease), box-shadow var(--dur-fast) var(--ease), background var(--dur-fast) var(--ease), border-color var(--dur-fast) var(--ease), color var(--dur-fast) var(--ease);
  white-space: nowrap;
}
.btn svg{ transition: transform var(--dur-fast) var(--ease); }
.btn:hover svg{ transform: translateX(3px); }

.btn-primary{
  background: var(--signal);
  color: #06110F;
}
.btn-primary:hover{
  transform: translateY(-2px);
  box-shadow: 0 12px 28px -10px rgba(69,217,192,.55);
}

.btn-outline{
  border-color: var(--border-strong);
  color: var(--text);
  background: rgba(255,255,255,0.02);
}
.btn-outline:hover{
  transform: translateY(-2px);
  border-color: var(--signal);
  color: var(--signal-2);
}

.btn-ghost{
  border-color: var(--border);
  color: var(--text-muted);
  font-family: var(--font-mono);
  font-size: 12.5px;
  padding: 9px 18px;
}
.btn-ghost:hover{ color: var(--text); border-color: var(--border-strong); }

/* =========================================================================
   HERO
   ========================================================================= */
.hero{
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 0 80px;
  position: relative;
}
.hero-grid{
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
}
.hero-title{
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(42px, 6.4vw, 76px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin: 0 0 10px;
}
.hero-role{
  font-family: var(--font-mono);
  font-size: 16px;
  color: var(--amber);
  margin: 0 0 24px;
}
.hero-intro{
  color: var(--text-muted);
  max-width: 480px;
  font-size: 16.5px;
  margin: 0 0 36px;
}
.hero-actions{ display: flex; gap: 14px; flex-wrap: wrap; }

.hero-visual{
  position: relative;
  height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.orbit-ring{
  position: absolute;
  width: 420px; height: 420px;
  color: var(--signal);
  animation: spin-slow 60s linear infinite;
  pointer-events: none;
}

.photo-card{
  position: relative;
  width: 250px;
  animation: float-y 7s ease-in-out infinite;
  z-index: 3;
}
.photo-frame{
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-strong);
  background: linear-gradient(160deg, var(--surface), var(--bg-alt));
  box-shadow: 0 30px 60px -25px rgba(0,0,0,.65), 0 0 0 1px rgba(69,217,192,.06);
}
.photo-frame img{
  width: 100%; height: 100%; object-fit: cover;
}
.photo-tag{
  position: absolute;
  left: 50%;
  bottom: -20px;
  transform: translateX(-50%);
  display: flex; align-items: center; gap: 8px;
  background: var(--surface);
  border: 1px solid var(--border-strong);
  padding: 9px 16px;
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: var(--text-muted);
  white-space: nowrap;
  backdrop-filter: blur(8px);
}
.tag-dot{
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--signal);
  box-shadow: 0 0 0 3px var(--signal-soft);
}

.float-chip{
  position: absolute;
  display: flex; align-items: center; gap: 8px;
  padding: 10px 14px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  font-size: 13px;
  color: var(--text);
  box-shadow: 0 20px 40px -20px rgba(0,0,0,.6);
  animation: float-y 6s ease-in-out infinite;
  animation-delay: var(--delay, 0s);
  backdrop-filter: blur(6px);
  z-index: 2;

  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.float-chip:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.25);
}

.chip-sql {
  top: 6%;
  left: -4%;
}

.chip-powerbi {
  top: 12%;
  right: -8%;
  color: var(--amber);
}

.chip-excel {
  bottom: 18%;
  left: -6%;
  color: #21a35b;
}

.chip-python {
  bottom: 4%;
  right: -2%;
  color: #3d94db;
}

.scroll-cue{
  position: absolute;
  bottom: 34px; left: 50%;
  transform: translateX(-50%);
  width: 26px; height: 42px;
  border: 1px solid var(--border-strong);
  border-radius: 20px;
  background: none;
  display: grid; place-items: start center;
  padding-top: 8px;
}
.scroll-cue span{
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--signal);
  animation: scroll-cue 1.8s ease-in-out infinite;
}2

/* =========================================================================
   SECTION SPACING
   ========================================================================= */
.section{ padding: 130px 0; }

/* =========================================================================
   ABOUT
   ========================================================================= */
.about-grid{
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 60px;
  align-items: start;
}
.about-card{
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  animation: float-y 8s ease-in-out infinite;
}
.stat-row{
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}
.stat-row:first-of-type{ padding-top: 6px; }
.stat-label{
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.stat-value{ font-size: 15px; color: var(--text); }
.mini-chart{ margin-top: 20px; color: var(--signal); }

.about-copy p{ color: var(--text-muted); margin: 0 0 18px; max-width: 560px; }

/* =========================================================================
   SKILLS
   ========================================================================= */
.skills-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.skill-card{
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 26px 22px;
  transition: transform var(--dur-fast) var(--ease), border-color var(--dur-fast) var(--ease), box-shadow var(--dur-fast) var(--ease);
  animation: float-y 7s ease-in-out infinite;
  animation-delay: var(--delay, 0s);
}
.skill-card:hover{
  transform: translateY(-8px);
  border-color: var(--signal);
  box-shadow: 0 22px 40px -24px rgba(69,217,192,.35);
}
.skill-icon{
  width: 44px; height: 44px;
  display: grid; place-items: center;
  border-radius: 12px;
  background: var(--signal-soft);
  color: var(--signal-2);
  margin-bottom: 18px;
}
.skill-name{
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 18px;
  margin: 0 0 8px;
}
.skill-blurb{
  font-size: 13.5px;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.55;
}

/* =========================================================================
   PROJECTS
   ========================================================================= */
.projects-grid{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}
.project-card{
  grid-column: span 1;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--dur-fast) var(--ease), border-color var(--dur-fast) var(--ease), box-shadow var(--dur-fast) var(--ease);
}
.project-card:hover{
  transform: translateY(-6px);
  border-color: var(--border-strong);
  box-shadow: 0 30px 60px -30px rgba(0,0,0,.6);
}
.project-card.featured{ grid-column: span 2; }
.project-card.featured .project-media{ aspect-ratio: 21/8; }

.project-media{
  aspect-ratio: 16/9;
  background: linear-gradient(150deg, var(--bg-alt), var(--surface));
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.project-media img{ width:100%; height:100%; object-fit: cover; transition: transform .8s var(--ease); }
.project-card:hover .project-media img{ transform: scale(1.04); }
.media-placeholder{
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-dim);
}
.media-placeholder svg{ opacity: .5; }

.pbi-badge{
  position: absolute;
  top: 14px; left: 14px;
  display: flex; align-items: center; gap: 6px;
  background: rgba(9,13,22,.7);
  border: 1px solid var(--amber);
  color: var(--amber);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .05em;
  padding: 6px 11px;
  border-radius: 999px;
  backdrop-filter: blur(6px);
}

.project-body{
  padding: 26px 26px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
}
.project-title{
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 20px;
  margin: 0;
}
.project-desc{
  color: var(--text-muted);
  font-size: 14.5px;
  margin: 0;
}
.tool-tags{ display: flex; gap: 8px; flex-wrap: wrap; }
.tool-tag{
  font-family: var(--font-mono);
  font-size: 11px;
  padding: 5px 10px;
  border-radius: 999px;
  border: 1px solid var(--border-strong);
  color: var(--text-muted);
}
.insights{
  list-style: none;
  margin: 4px 0 0;
  padding: 14px 0 0;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.insights li{
  font-size: 13.5px;
  color: var(--text-muted);
  padding-left: 18px;
  position: relative;
}
.insights li::before{
  content:"";
  position: absolute;
  left: 0; top: 7px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--signal);
}
.project-links{
  display: flex;
  gap: 10px;
  margin-top: auto;
  padding-top: 6px;
}
.project-links a{
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text);
  padding: 8px 14px;
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  transition: border-color var(--dur-fast) var(--ease), color var(--dur-fast) var(--ease);
}
.project-links a:hover{ border-color: var(--signal); color: var(--signal-2); }

.template-flag{
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--text-dim);
}

/* =========================================================================
   RESUME
   ========================================================================= */
.resume-grid{
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 60px;
  align-items: center;
}
.resume-doc{
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  max-width: 320px;
  margin: 0 auto;
  animation: float-y 8s ease-in-out infinite;
  box-shadow: 0 30px 70px -30px rgba(0,0,0,.6);
}
.doc-bar{
  display: flex; gap: 6px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--border);
}
.doc-bar span{
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--border-strong);
}
.doc-body{ padding: 26px 22px; display: flex; flex-direction: column; gap: 10px; }
.doc-line{ height: 8px; border-radius: 4px; background: var(--border); width: var(--w, 100%); }
.doc-line.accent{ background: var(--signal-soft); }
.doc-gap{ height: 10px; }
.w-40{ width: 40%; } .w-50{ width: 50%; } .w-60{ width: 60%; }
.w-70{ width: 70%; } .w-80{ width: 80%; } .w-85{ width: 85%; } .w-90{ width: 90%; }

.resume-copy p{ color: var(--text-muted); max-width: 460px; margin: 0 0 26px; }
.resume-note{ font-size: 12.5px !important; margin-top: 18px !important; color: var(--text-dim) !important; }

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


   .contact-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 40px;
}

.contact-info{
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  justify-self: center;
  text-align: center;
}

.contact-info p{
  color: var(--text-muted);
  max-width: 420px;
}

.contact-links{
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 30px;
}

.contact-link{
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: border-color var(--dur-fast) var(--ease),
              transform var(--dur-fast) var(--ease);
}

.contact-link:hover{
  border-color: var(--signal);
  transform: translateX(4px);
}

.contact-link .ic{
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: var(--signal-soft);
  color: var(--signal-2);
  flex-shrink: 0;
}

.contact-link .cl-label{
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: .06em;
}

.contact-link .cl-value{
  font-size: 14.5px;
}

.contact-form{
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.field{
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.field label{
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: .06em;
}

.field input,
.field textarea{
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 14px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 14.5px;
  resize: vertical;
  transition: border-color var(--dur-fast) var(--ease),
              box-shadow var(--dur-fast) var(--ease);
}

.field input:focus,
.field textarea:focus{
  outline: none;
  border-color: var(--signal);
  box-shadow: 0 0 0 3px var(--signal-soft);
}

.form-submit{
  align-self: flex-start;
  margin-top: 4px;
}

.form-note{
  font-size: 12px;
  color: var(--text-dim);
  margin: 0;
}

/* =========================================================================
   FOOTER
   ========================================================================= */
.footer{ border-top: 1px solid var(--border); padding: 28px 0; }
.footer-inner{
  display: flex; align-items: center; justify-content: space-between;
  font-size: 13px; color: var(--text-dim);
}
.back-to-top{ font-family: var(--font-mono); font-size: 12px; color: var(--text-muted); }
.back-to-top:hover{ color: var(--signal-2); }

/* =========================================================================
   SCROLL REVEAL
   ========================================================================= */
.reveal{
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}
.reveal.in-view{ opacity: 1; transform: translateY(0); }

/* =========================================================================
   KEYFRAMES
   ========================================================================= */
@keyframes float-y{
  0%, 100%{ transform: translateY(0); }
  50%{ transform: translateY(-14px); }
}
@keyframes spin-slow{
  to{ transform: rotate(360deg); }
}
@keyframes pulse-dot{
  0%, 100%{ box-shadow: 0 0 0 0 rgba(69,217,192,.5); }
  50%{ box-shadow: 0 0 0 6px rgba(69,217,192,0); }
}
@keyframes scroll-cue{
  0%{ transform: translateY(0); opacity: 1; }
  100%{ transform: translateY(16px); opacity: 0; }
}

/* =========================================================================
   RESPONSIVE
   ========================================================================= */
@media (max-width: 980px){
  .hero-grid{ grid-template-columns: 1fr; }
  .hero-visual{ height: 380px; order: -1; }
  .about-grid, .resume-grid, .contact-grid{ grid-template-columns: 1fr; gap: 40px; }
  .skills-grid{ grid-template-columns: repeat(2, 1fr); }
  .projects-grid{ grid-template-columns: 1fr; }
  .project-card.featured{ grid-column: span 1; }
  .nav-links{
    position: fixed;
    top: 68px; left: 0; right: 0;
    flex-direction: column;
    background: var(--bg-alt);
    border-bottom: 1px solid var(--border);
    padding: 20px 32px;
    gap: 18px;
    transform: translateY(-130%);
    opacity: 0;
    transition: transform var(--dur-fast) var(--ease), opacity var(--dur-fast) var(--ease);
  }
  .nav-links.open{ transform: translateY(0); opacity: 1; }
  .nav-toggle{ display: flex; }
  .nav-cta{ display: none; }
}

@media (max-width: 640px){
  .container{ padding: 0 20px; }
  .section{ padding: 90px 0; }
  .skills-grid{ grid-template-columns: 1fr; }
  .float-chip{ display: none; }
  .hero{ padding-top: 120px; }
}

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



@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-intro {
    margin: 0 auto 36px;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-visual {
    margin-top: 50px;
    height: 420px;
  }

  .chip-sql {
    left: 5%;
    top: 5%;
  }

  .chip-powerbi {
    right: 5%;
    top: 8%;
  }

  .chip-excel {
    left: 5%;
    bottom: 18%;
  }

  .chip-python {
    right: 5%;
    bottom: 10%;
  }
}

@media (max-width: 576px) {
  .photo-card {
    width: 210px;
  }

  .hero-visual {
    height: 360px;
  }

  .float-chip {
    padding: 8px 10px;
    font-size: 12px;
  }

  .chip-sql {
    left: 0;
  }

  .chip-powerbi {
    right: 0;
  }

  .chip-excel {
    left: 0;
  }

  .chip-python {
    right: 0;
  }
}