/* ==========================================================================
   CR TECH — Portfolio Stylesheet
   Design tokens: light, off-white SaaS aesthetic with a single indigo accent
   ========================================================================== */

:root{
  /* -------- Color -------- */
  --white:        #FFFFFF;
  --off-white:    #FAFAFA;
  --gray-50:      #F5F6F8;
  --gray-100:     #EDEFF3;
  --border:       #E3E6EC;
  --border-soft:  #ECEEF2;
  --charcoal:     #16181D;
  --gray-text:    #5B6270;
  --gray-text-2:  #868D99;
  --indigo:       #4338CA;
  --indigo-600:   #3730A3;
  --indigo-light: #EEF0FF;
  --indigo-soft:  #6D5FF4;

  /* -------- Type -------- */
  --font-display: 'Instrument Sans', 'Inter', sans-serif;
  --font-body:    'Inter', sans-serif;
  --font-mono:    'JetBrains Mono', monospace;

  /* -------- Shape / motion -------- */
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --shadow-sm: 0 1px 2px rgba(22,24,29,0.04);
  --shadow-md: 0 8px 24px rgba(22,24,29,0.06);
  --shadow-lg: 0 24px 48px rgba(22,24,29,0.10);
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ==========================================================================
   Base
   ========================================================================== */

*{ box-sizing: border-box; }

html{
  scroll-behavior: smooth;
}

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

/* Fixed layer behind all content; its background-color is eased by JS
   as the person scrolls, so the page's base tone shifts gently between
   sections instead of cutting hard from one flat color to the next. */
.bg-transition-layer{
  position: fixed;
  inset: 0;
  z-index: -2;
  background-color: #FFFFFF;
  transition: background-color 0.6s linear;
}

h1, h2, h3, h4{
  font-family: var(--font-display);
  color: var(--charcoal);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0;
}

p{ margin: 0; }

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

ul{ margin: 0; padding: 0; list-style: none; }

img{ max-width: 100%; display: block; }

.container{
  max-width: 1200px;
}

section{ position: relative; }

::selection{
  background: var(--indigo-light);
  color: var(--indigo-600);
}

/* Skip link */
.skip-link{
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--charcoal);
  color: var(--white);
  padding: 10px 16px;
  border-radius: 0 0 8px 0;
  z-index: 2000;
}
.skip-link:focus{
  left: 0;
}

/* Visible focus states for accessibility */
a:focus-visible,
button:focus-visible,
.btn:focus-visible{
  outline: 2px solid var(--indigo);
  outline-offset: 3px;
  border-radius: 6px;
}

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

/* ==========================================================================
   Scroll reveal
   ========================================================================== */

.reveal{
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.is-visible{
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1.is-visible{ transition-delay: 0.08s; }
.reveal-delay-2.is-visible{ transition-delay: 0.16s; }
.reveal-delay-3.is-visible{ transition-delay: 0.24s; }

/* ==========================================================================
   Eyebrows / section heads
   ========================================================================== */

.eyebrow{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--gray-text);
  background: var(--gray-50);
  border: 1px solid var(--border);
  padding: 6px 14px 6px 10px;
  border-radius: 999px;
  margin-bottom: 24px;
}
.eyebrow-dot{
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--indigo);
  box-shadow: 0 0 0 3px var(--indigo-light);
}

.section-eyebrow{
  font-family: var(--font-mono);
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--indigo);
  margin-bottom: 14px;
  text-transform: uppercase;
}

.section-title{
  font-size: clamp(1.65rem, 1.2rem + 1.8vw, 2.5rem);
  line-height: 1.2;
  max-width: 720px;
}

.section-head{
  margin-bottom: 56px;
}

/* ==========================================================================
   Buttons
   ========================================================================== */

.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease);
  white-space: nowrap;
}

.btn-primary-cta{
  background: var(--charcoal);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}
.btn-primary-cta svg{ transition: transform 0.25s var(--ease); }
.btn-primary-cta:hover{
  background: var(--indigo);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-primary-cta:hover svg{ transform: translateX(3px); }

.btn-ghost-cta{
  background: transparent;
  color: var(--charcoal);
  border-color: var(--border);
  position: relative;
}
.btn-ghost-cta:hover{
  border-color: var(--charcoal);
  transform: translateY(-2px);
}

.btn-cta-lg{
  padding: 15px 30px;
  font-size: 16px;
}

.btn-nav-cta{
  background: var(--charcoal);
  color: var(--white);
  font-size: 14px;
  padding: 9px 20px;
  border-radius: 999px;
  font-weight: 600;
  transition: background 0.25s var(--ease), transform 0.25s var(--ease);
}
.btn-nav-cta:hover{
  background: var(--indigo);
  color: var(--white);
  transform: translateY(-1px);
}

/* Animated underline link used for project/nav links */
.project-link{
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  font-size: 14.5px;
  color: var(--charcoal);
  background-image: linear-gradient(var(--indigo), var(--indigo));
  background-size: 0% 1.5px;
  background-position: 0 100%;
  background-repeat: no-repeat;
  padding-bottom: 2px;
  transition: background-size 0.3s var(--ease), color 0.3s var(--ease);
}
.project-card:hover .project-link{
  background-size: 100% 1.5px;
  color: var(--indigo);
}
.project-link span{ transition: transform 0.25s var(--ease); }
.project-card:hover .project-link span{ transform: translateX(3px); }

/* ==========================================================================
   Header / Nav
   ========================================================================== */

.site-header{
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding-top: 18px;
  transition: padding 0.3s var(--ease);
}

.nav-inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255,255,255,0.72);
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  border: 1px solid var(--border-soft);
  border-radius: 999px;
  padding: 10px 12px 10px 20px;
  box-shadow: 0 1px 0 rgba(22,24,29,0.02);
  transition: box-shadow 0.3s var(--ease), padding 0.3s var(--ease);
}

.site-header.is-scrolled .nav-inner{
  box-shadow: var(--shadow-md);
  border-color: var(--border);
}

.brand{
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.brand-mark{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 9px;
  background: var(--charcoal);
  color: var(--white);
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 500;
}
.brand-name{
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  color: var(--charcoal);
}
.brand-dot{ color: var(--indigo); }

.nav-links{
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-link{
  font-size: 14.5px;
  font-weight: 500;
  color: var(--gray-text);
  padding: 8px 14px;
  border-radius: 999px;
  transition: color 0.2s var(--ease), background 0.2s var(--ease);
}
.nav-link:hover{
  color: var(--charcoal);
  background: var(--gray-50);
}

.navbar-toggler{
  border: none;
  background: transparent;
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.navbar-toggler:focus{ box-shadow: none; }
.toggler-bar{
  width: 20px;
  height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
}

@media (max-width: 991.98px){
  .navbar-collapse{
    background: var(--white);
    margin-top: 12px;
    padding: 16px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-md);
  }
  .nav-links{ flex-direction: column; align-items: flex-start; width: 100%; margin-bottom: 12px; }
  .nav-link{ width: 100%; padding: 10px 12px; }
  .btn-nav-cta{ width: 100%; }
}

/* ==========================================================================
   Hero
   ========================================================================== */

.hero{
  padding: 168px 0 120px;
  background:
    radial-gradient(560px 320px at 85% 8%, rgba(67,56,202,0.07), transparent 70%),
    var(--white);
}

.hero-title{
  font-size: clamp(2.3rem, 1.7rem + 2.6vw, 3.6rem);
  line-height: 1.08;
  margin-bottom: 22px;
  max-width: 620px;
}

.hero-sub{
  font-size: 17.5px;
  color: var(--gray-text);
  max-width: 480px;
  margin-bottom: 36px;
}

.hero-ctas{
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 56px;
}

.hero-proof{
  display: flex;
  align-items: flex-start;
  gap: 22px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  max-width: 560px;
}
.proof-item{ display: flex; flex-direction: column; gap: 4px; }
.proof-num{
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  color: var(--charcoal);
}
.proof-label{
  font-size: 12.5px;
  color: var(--gray-text-2);
  line-height: 1.4;
}
.proof-divider{
  width: 1px;
  align-self: stretch;
  background: var(--border);
  margin-top: 4px;
}

/* Hero visual: browser mockup + floating cards */
.hero-visual{
  position: relative;
  padding: 30px 10px 50px 30px;
}

.mock-browser{
  background: var(--charcoal);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  transform: rotate(-1.2deg);
  animation: floatSlow 7s ease-in-out infinite;
}

.mock-browser-bar{
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 18px;
  background: #1E2028;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.mock-dot{
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #3A3D48;
}
.mock-url{
  margin-left: 10px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: #7B8092;
  background: rgba(255,255,255,0.04);
  padding: 4px 10px;
  border-radius: 999px;
}

.mock-code{
  font-family: var(--font-mono);
  font-size: 13px;
  line-height: 1.85;
  color: #B7BCC9;
  padding: 26px 24px 34px;
  white-space: pre;
  overflow-x: auto;
}
.tok-comment{ color: #6B7080; }
.tok-key{ color: #A5A0FF; }
.tok-fn{ color: #7FD1D9; }
.tok-var{ color: #E2E4EA; }
.tok-str{ color: #9EE6A8; }

.mock-float{
  position: absolute;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 14px 18px;
}

.mock-pipeline{
  top: -6px;
  left: -6px;
  display: flex;
  align-items: center;
  gap: 8px;
  animation: floatSlow 6s ease-in-out infinite 0.4s;
}
.pipeline-node{
  font-family: var(--font-mono);
  font-size: 11.5px;
  font-weight: 500;
  background: var(--gray-50);
  border: 1px solid var(--border);
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--gray-text);
}
.pipeline-node--accent{
  background: var(--indigo-light);
  border-color: transparent;
  color: var(--indigo);
}
.pipeline-arrow{
  color: var(--gray-text-2);
  font-size: 13px;
}

.mock-status{
  bottom: 6px;
  right: -10px;
  display: flex;
  align-items: center;
  gap: 12px;
  animation: floatSlow 6.5s ease-in-out infinite 0.8s;
}
.status-dot{
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #22C55E;
  box-shadow: 0 0 0 4px rgba(34,197,94,0.14);
  flex-shrink: 0;
}
.status-title{
  font-size: 11.5px;
  color: var(--gray-text-2);
  margin-bottom: 2px;
}
.status-value{
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  color: var(--charcoal);
}

@keyframes floatSlow{
  0%, 100%{ transform: translateY(0) rotate(var(--r, 0deg)); }
  50%{ transform: translateY(-8px) rotate(var(--r, 0deg)); }
}
.mock-browser{ --r: -1.2deg; }

@media (max-width: 991.98px){
  .hero{ padding: 140px 0 90px; }
  .hero-visual{ padding: 40px 20px 60px; }
  .mock-pipeline{ position: static; margin-bottom: 14px; width: fit-content; }
  .mock-status{ position: static; margin-top: 14px; width: fit-content; }
}

/* ==========================================================================
   About
   ========================================================================== */

.about-section{
  padding: 100px 0;
  background: transparent;
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
}

.about-photo{
  margin: 28px 0 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}
.about-photo img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 3;
}

.about-lede{
  font-size: 19px;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 20px;
  line-height: 1.5;
}

.about-body{
  font-size: 15.5px;
  color: var(--gray-text);
  margin-bottom: 18px;
  max-width: 620px;
}

.about-tags{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.tag-pill{
  font-size: 13px;
  font-weight: 500;
  color: var(--indigo-600);
  background: var(--indigo-light);
  padding: 8px 14px;
  border-radius: 999px;
}

/* ==========================================================================
   Skills
   ========================================================================== */

.skills-section{
  padding: 110px 0;
}

.skill-card{
  height: 100%;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px 26px;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}
.skill-card:hover{
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: #D9DCE3;
}

.skill-card-label{
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--indigo);
  margin-bottom: 18px;
}

.skill-list li{
  font-size: 15px;
  color: var(--charcoal);
  padding: 9px 0;
  border-top: 1px solid var(--border-soft);
}
.skill-list li:first-child{ border-top: none; padding-top: 0; }

/* ==========================================================================
   Projects
   ========================================================================== */

.work-section{
  padding: 110px 0;
  background: transparent;
  border-bottom: 1px solid var(--border-soft);
}

.project-card-photo{
  margin: -28px -28px 22px;
  border-radius: var(--radius-md) var(--radius-md) 0 0;
  overflow: hidden;
}
.project-card-photo img{
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
  transition: transform 0.5s var(--ease);
}
.project-card--featured:hover .project-card-photo img{
  transform: scale(1.04);
}

.project-card{
  display: flex;
  flex-direction: column;
  height: 100%;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s var(--ease);
}
.project-card:hover{
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.project-card-top{
  margin-bottom: 18px;
}

.project-badge{
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--indigo);
  background: var(--indigo-light);
  padding: 5px 10px;
  border-radius: 999px;
}

.project-title{
  font-size: 19px;
  margin-bottom: 10px;
}

.project-desc{
  font-size: 14.5px;
  color: var(--gray-text);
  margin-bottom: 20px;
  flex-grow: 1;
}

.project-tech{
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.tech-badge{
  font-size: 12px;
  font-weight: 500;
  color: var(--gray-text);
  background: var(--gray-50);
  border: 1px solid var(--border-soft);
  padding: 5px 10px;
  border-radius: 999px;
}

/* ==========================================================================
   Experience / Timeline
   ========================================================================== */

.experience-section{
  padding: 110px 0;
}

.timeline{
  position: relative;
  max-width: 760px;
  padding-left: 32px;
  border-left: 1px solid var(--border);
}

.timeline-item{
  position: relative;
  padding-bottom: 56px;
}
.timeline-item:last-child{ padding-bottom: 0; }

.timeline-marker{
  position: absolute;
  left: -37.5px;
  top: 4px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--indigo);
  box-shadow: 0 0 0 4px var(--white);
}

.timeline-date{
  font-family: var(--font-mono);
  font-size: 12.5px;
  color: var(--gray-text-2);
  margin-bottom: 8px;
}

.timeline-role{
  font-size: 19px;
  margin-bottom: 16px;
}
.timeline-co{
  font-family: var(--font-body);
  font-weight: 500;
  color: var(--gray-text);
}

.timeline-list li{
  position: relative;
  font-size: 15px;
  color: var(--gray-text);
  padding-left: 18px;
  margin-bottom: 10px;
  line-height: 1.55;
}
.timeline-list li::before{
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--indigo-soft);
}

/* ==========================================================================
   Why work with me
   ========================================================================== */

.why-section{
  padding: 110px 0;
  background: transparent;
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
}

.why-card{
  height: 100%;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 26px;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.why-card:hover{
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.why-icon{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 11px;
  background: var(--indigo-light);
  color: var(--indigo);
  margin-bottom: 18px;
}

.why-title{
  font-size: 16.5px;
  margin-bottom: 8px;
}

.why-desc{
  font-size: 14px;
  color: var(--gray-text);
  line-height: 1.5;
}

/* ==========================================================================
   Contact / lead collection
   ========================================================================== */

.contact-section{
  padding: 40px 0 130px;
  background: transparent;
}

.contact-lede{
  font-size: 16.5px;
  color: var(--gray-text);
  max-width: 460px;
  margin: 22px 0 32px;
}

.contact-steps{
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}
.contact-steps li{
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 14.5px;
  color: var(--charcoal);
}
.contact-step-num{
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--indigo-light);
  color: var(--indigo-600);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
}

.contact-photo{
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  max-width: 340px;
}
.contact-photo img{
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

.lead-form{
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-md);
}

.form-label{
  display: block;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 8px;
}

.lead-form .form-control,
.lead-form .form-select{
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--charcoal);
  background-color: var(--gray-50);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease), background-color 0.2s var(--ease);
}
.lead-form .form-control::placeholder{
  color: var(--gray-text-2);
}
.lead-form .form-control:focus,
.lead-form .form-select:focus{
  background-color: var(--white);
  border-color: var(--indigo);
  box-shadow: 0 0 0 4px var(--indigo-light);
  outline: none;
}

.lead-form-submit{
  margin-top: 28px;
  width: 100%;
}

.lead-form-note{
  margin-top: 14px;
  font-size: 12.5px;
  color: var(--gray-text-2);
  text-align: center;
}
.lead-form-note.is-success{
  color: var(--indigo-600);
  font-weight: 500;
}

@media (max-width: 575.98px){
  .lead-form{ padding: 24px; }
}

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer{
  padding: 40px 0;
  border-top: 1px solid var(--border-soft);
}

.footer-inner{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

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

.footer-links{
  display: flex;
  gap: 24px;
}
.footer-links a{
  font-size: 14px;
  color: var(--gray-text);
  transition: color 0.2s var(--ease);
}
.footer-links a:hover{ color: var(--indigo); }

.footer-copy{
  font-size: 13px;
  color: var(--gray-text-2);
}

@media (max-width: 767.98px){
  .footer-inner{ flex-direction: column; align-items: flex-start; }
}

/* ==========================================================================
   Marquee — infinite scrolling tag band between Skills and Projects
   ========================================================================== */

.marquee-section{
  overflow: hidden;
  background: var(--charcoal);
  padding: 22px 0;
  transform: rotate(-1.5deg) scale(1.03);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.marquee-track{
  display: flex;
  width: max-content;
  animation: marqueeScroll 22s linear infinite;
}

.marquee-section:hover .marquee-track{
  animation-play-state: paused;
}

.marquee-group{
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.marquee-item{
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.4rem, 1rem + 2vw, 2.2rem);
  color: var(--white);
  white-space: nowrap;
  padding: 0 22px;
  transition: color 0.25s var(--ease);
}
.marquee-item:hover{
  color: var(--indigo-soft);
}

.marquee-star{
  color: var(--indigo-soft);
  font-size: 16px;
  flex-shrink: 0;
}

@keyframes marqueeScroll{
  from{ transform: translateX(0); }
  to{ transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce){
  .marquee-track{ animation: none; }
}