/* ============================================
   SAMANDAR — NV-inspired premium style
   Reference: https://thenv.org/
   ============================================ */

:root {
  --bg: #000000;
  --bg-elevated: #0a0a0e;
  --bg-card: rgba(20, 20, 22, 0.9);
  --text: #ffffff;
  --text-muted: rgba(255, 255, 255, 0.6);
  --text-subtle: rgba(255, 255, 255, 0.45);
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.12);
  --blue: #0a84ff;
  --blue-light: #5fafff;
  --blue-glow: rgba(10, 132, 255, 0.25);
  --font: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Inter', system-ui, sans-serif;
  --nav-height: 68px;
  --container: 1200px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font);
  background:
    radial-gradient(ellipse 80% 50% at 50% -10%, rgba(10, 132, 255, 0.18) 0%, transparent 55%),
    radial-gradient(ellipse 60% 40% at 90% 30%, rgba(95, 175, 255, 0.1) 0%, transparent 50%),
    radial-gradient(ellipse 50% 35% at 10% 70%, rgba(10, 132, 255, 0.08) 0%, transparent 50%),
    linear-gradient(180deg, #000000 0%, #050508 40%, #000000 100%);
  color: var(--text);
  overflow-x: clip;
  line-height: 1.5;
}

::selection {
  background: rgba(10, 132, 255, 0.25);
  color: var(--text);
}

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

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

button {
  font-family: inherit;
  border: none;
  background: none;
  cursor: pointer;
  color: inherit;
}

ul { list-style: none; }

.skip-link {
  position: fixed;
  top: -100%;
  left: 16px;
  z-index: 100000;
  padding: 12px 20px;
  background: #fff;
  color: #000;
  font-size: 13px;
  font-weight: 600;
  border-radius: 8px;
  transition: top 0.2s;
}

.skip-link:focus { top: 16px; }

.page {
  position: relative;
  overflow-x: clip;
}

.section-container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
}

.section-y {
  padding: clamp(80px, 12vh, 136px) 0;
  position: relative;
}

/* ---- NV Effects ---- */
.hero-glow {
  pointer-events: none;
  position: absolute;
  inset-inline: 0;
  top: 0;
  height: 900px;
  z-index: 0;
  background:
    radial-gradient(55% 45% at 50% 20%, rgba(10, 132, 255, 0.2) 0, rgba(10, 132, 255, 0) 70%),
    radial-gradient(45% 40% at 82% 10%, rgba(95, 175, 255, 0.12) 0, rgba(95, 175, 255, 0) 70%);
}

.section-glow {
  pointer-events: none;
  position: absolute;
  inset-inline: 0;
  height: 500px;
  z-index: 0;
  background: radial-gradient(50% 60% at 50% 50%, rgba(10, 132, 255, 0.14) 0, rgba(10, 132, 255, 0) 70%);
}

.section-glow--top { top: 0; }
.section-glow--center { top: 50%; transform: translateY(-50%); }

.noise::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.04;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.5 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

.text-gradient {
  background: linear-gradient(180deg, #fff, #fff 40%, #b1b1b6);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-gradient-blue {
  background: linear-gradient(135deg, #5fafff, #0a84ff 55%, #007aff);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.h-display {
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.08;
}

.eyebrow {
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--text-subtle);
  font-weight: 500;
}

.glass {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
}

.gradient-border {
  position: relative;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(20, 20, 22, 0.9), rgba(10, 10, 12, 0.9));
}

.gradient-border::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 24px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.02) 40%, rgba(10, 132, 255, 0.25));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  transition: background 0.6s ease;
}

.gradient-border:hover::before {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.04) 40%, rgba(10, 132, 255, 0.4));
}

/* ---- Buttons ---- */
.btn-primary,
.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 52px;
  min-width: 180px;
  padding: 12px 24px;
  border-radius: 14px;
  font-size: 14px;
  font-weight: 500;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary {
  background: #fff;
  color: #000;
  box-shadow: 0 6px 24px -8px rgba(255, 255, 255, 0.25);
}

.btn-primary:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.92);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #fff;
}

.btn-ghost:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.08);
}

/* ---- Reveal ---- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}

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

/* ---- Navigation ---- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9000;
  transition: background 0.3s, backdrop-filter 0.3s;
}

.nav.is-scrolled {
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}

.nav__inner {
  height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.nav__logo-mark {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 15px;
  font-weight: 600;
  background: linear-gradient(135deg, rgba(10, 132, 255, 0.35), rgba(95, 175, 255, 0.15));
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: transform 0.3s var(--ease);
}

.nav__logo:hover .nav__logo-mark {
  transform: scale(1.05);
}

.nav__logo-text {
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav__link {
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  transition: background 0.2s, color 0.2s;
}

.nav__link:hover {
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
}

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

.nav__cta {
  display: none;
  padding: 6px 16px;
  border-radius: 999px;
  background: #fff;
  color: #000;
  font-size: 13px;
  font-weight: 500;
  transition: background 0.2s;
}

.nav__cta:hover { background: rgba(255, 255, 255, 0.9); }

.nav__menu-btn {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
}

.nav__menu-line {
  display: block;
  width: 22px;
  height: 1px;
  background: #fff;
  transition: transform 0.4s var(--ease);
}

.nav__menu-btn.is-open .nav__menu-line:nth-child(1) {
  transform: translateY(3.5px) rotate(45deg);
}

.nav__menu-btn.is-open .nav__menu-line:nth-child(2) {
  transform: translateY(-3.5px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 8500;
  background: rgba(0, 0, 0, 0.96);
  backdrop-filter: blur(24px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s var(--ease), visibility 0.4s;
}

.mobile-menu.is-open {
  opacity: 1;
  visibility: visible;
}

.mobile-menu__link {
  font-size: clamp(28px, 7vw, 40px);
  font-weight: 600;
  letter-spacing: -0.02em;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.4s, transform 0.4s, color 0.2s;
}

.mobile-menu.is-open .mobile-menu__link {
  opacity: 1;
  transform: translateY(0);
}

.mobile-menu__link:hover { color: var(--blue-light); }

/* ---- Hero ---- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-height);
  overflow: hidden;
}

.hero__inner {
  position: relative;
  z-index: 1;
  text-align: center;
  padding-top: clamp(40px, 8vh, 80px);
  padding-bottom: clamp(40px, 8vh, 80px);
}

.hero__title {
  font-size: clamp(38px, 8vw, 84px);
  line-height: 1.12;
}

.hero__title span {
  display: block;
}

.hero__title-sub {
  margin-top: clamp(12px, 2vh, 20px);
  font-size: clamp(26px, 4.5vw, 54px);
  opacity: 0.9;
  line-height: 1.2;
}

.hero__desc {
  margin: clamp(28px, 4vh, 36px) auto 0;
  max-width: 640px;
  font-size: clamp(15px, 1.8vw, 17px);
  color: var(--text-muted);
  line-height: 1.55;
}

.hero__actions {
  margin-top: clamp(32px, 5vh, 44px);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.hero__status {
  margin-top: clamp(32px, 5vh, 44px);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
}

.hero__status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #34d399;
  animation: pulse 2.5s ease-in-out infinite;
}

/* ---- Phone Showcase ---- */
.hero__phones {
  margin-top: clamp(48px, 8vh, 72px);
}

.phone-showcase {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.phone-showcase__glow {
  position: absolute;
  inset: -40px -60px;
  z-index: 0;
  background:
    radial-gradient(55% 50% at 50% 45%, rgba(10, 132, 255, 0.35) 0%, transparent 70%),
    radial-gradient(40% 35% at 70% 60%, rgba(95, 175, 255, 0.2) 0%, transparent 70%);
  filter: blur(48px);
  pointer-events: none;
}

.phone-showcase__glow--blue {
  background: radial-gradient(60% 55% at 50% 40%, rgba(10, 132, 255, 0.4), transparent 70%);
}

.phone-showcase__device {
  position: relative;
  z-index: 1;
  width: clamp(200px, 42vw, 280px);
  filter: drop-shadow(0 32px 64px rgba(0, 0, 0, 0.65));
}

.phone-showcase__device img {
  width: 100%;
  height: auto;
  border-radius: 32px;
}

.phone-showcase--hero .phone-showcase__device {
  width: clamp(220px, 48vw, 300px);
}

.phone-showcase--statement .phone-showcase__device {
  width: clamp(200px, 38vw, 260px);
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* ---- Statement ---- */
.statement {
  background: linear-gradient(180deg, var(--bg) 0%, rgba(10, 132, 255, 0.04) 50%, var(--bg) 100%);
}

.statement__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(48px, 6vw, 80px);
  align-items: center;
}

.statement__title {
  margin-top: 20px;
  font-size: clamp(34px, 5.5vw, 60px);
  white-space: pre-line;
}

.statement__desc {
  margin-top: 24px;
  max-width: 520px;
  font-size: clamp(15px, 1.8vw, 17px);
  color: var(--text-muted);
  line-height: 1.55;
}

.statement__visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.statement__glow {
  position: absolute;
  inset: -64px;
  z-index: 0;
  background: radial-gradient(60% 50% at 50% 40%, rgba(10, 132, 255, 0.28), transparent 70%);
  filter: blur(40px);
}

.statement__card {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 320px;
  padding: clamp(40px, 6vw, 56px);
  text-align: center;
}

.statement__card-line {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.3;
  color: rgba(255, 255, 255, 0.5);
}

.statement__card-line.text-gradient-blue {
  color: transparent;
}

/* ---- About ---- */
.about { background: var(--bg); }

.about__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 6vw, 64px);
  align-items: center;
}

.about__title {
  margin-top: 20px;
  font-size: clamp(34px, 5.5vw, 64px);
}

.about__desc {
  margin-top: 24px;
  max-width: 520px;
  font-size: clamp(15px, 1.8vw, 17px);
  color: var(--text-muted);
  line-height: 1.55;
}

.about__badge {
  margin-top: 28px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
}

.about__badge-icon {
  width: 16px;
  height: 16px;
  color: #34d399;
  flex-shrink: 0;
}

.about__visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.about__photos {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 360px;
  margin: 0 auto;
}

.about-carousel__frame {
  width: 100%;
}

.about-carousel__frame .showcase-card__frame {
  position: relative;
  aspect-ratio: 4 / 5;
}

.about-carousel__slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  aspect-ratio: unset;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.about-carousel__slide.is-active {
  opacity: 1;
}

.about-carousel__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}

.about-carousel__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  transition: background 0.3s ease, transform 0.3s ease;
}

.about-carousel__dot.is-active {
  background: var(--blue-light);
  transform: scale(1.2);
}

.about__glow {
  position: absolute;
  inset: -40px;
  z-index: 0;
  background: radial-gradient(60% 50% at 55% 40%, rgba(10, 132, 255, 0.28), transparent 70%);
  filter: blur(32px);
}

.about__image {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

/* ---- Showcase Card ---- */
.showcase-card {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 360px;
}

.showcase-card__frame {
  overflow: hidden;
  border-radius: 28px;
  background: #000;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 30px 70px -25px rgba(0, 0, 0, 0.7);
}

.showcase-card__glow {
  position: absolute;
  inset: -16px;
  z-index: -1;
  border-radius: 36px;
  background: radial-gradient(60% 50% at 50% 35%, rgba(10, 132, 255, 0.35), transparent 70%);
  opacity: 0.7;
  filter: blur(24px);
}

/* ---- Section Head ---- */
.section-head {
  position: relative;
  z-index: 1;
  margin-bottom: clamp(48px, 8vh, 80px);
}

.section-head--center {
  text-align: center;
}

.section-head--center .section-head__desc {
  margin-left: auto;
  margin-right: auto;
}

.section-head__title {
  margin-top: 20px;
  font-size: clamp(34px, 5.5vw, 64px);
  max-width: 16ch;
}

.section-head--center .section-head__title {
  max-width: none;
}

.section-head__desc {
  margin-top: 20px;
  max-width: 560px;
  font-size: clamp(15px, 1.8vw, 17px);
  color: var(--text-muted);
  line-height: 1.55;
}

/* ---- Work / Projects ---- */
.work {
  background: var(--bg);
}

.work__container {
  position: relative;
  z-index: 2;
}

.work__list {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.project-row {
  padding: clamp(24px, 4vw, 32px);
  transition: transform 0.3s var(--ease);
}

.project-row:hover {
  transform: translateY(-2px);
}

.project-row__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: clamp(20px, 4vw, 32px);
}

.project-row__info {
  flex: 1;
  min-width: 0;
}

.project-row__tag {
  font-size: 11px;
  letter-spacing: 0.2em;
}

.project-row__title {
  margin-top: 12px;
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.project-row__summary {
  margin-top: 12px;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.55;
  max-width: 52ch;
}

.project-row__more {
  flex-shrink: 0;
  min-height: 44px;
  min-width: 120px;
  padding: 10px 20px;
  border-radius: 14px;
  font-size: 13px;
}

/* ---- Building ---- */
.building { background: var(--bg); }

.building__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.building-card {
  padding: clamp(24px, 4vw, 36px);
  text-align: center;
}

.building-card__name {
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 600;
  letter-spacing: -0.02em;
}

.building-card__status {
  margin-top: 8px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue-light);
}

/* ---- CTA ---- */
.cta {
  position: relative;
  text-align: center;
}

.cta__inner {
  position: relative;
  z-index: 1;
  max-width: 960px;
}

.cta__title {
  font-size: clamp(40px, 7vw, 88px);
  white-space: pre-line;
}

.cta__desc {
  margin: clamp(24px, 4vh, 32px) auto 0;
  max-width: 560px;
  font-size: clamp(15px, 1.8vw, 17px);
  color: var(--text-muted);
  line-height: 1.55;
}

.cta__actions {
  margin-top: clamp(32px, 5vh, 44px);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

/* ---- Footer ---- */
.footer {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: #000;
  padding: clamp(56px, 8vh, 64px) 0 clamp(32px, 4vh, 40px);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: clamp(32px, 5vw, 48px);
}

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

.footer__tagline {
  margin-top: 16px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  max-width: 280px;
}

.footer__col-title {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 500;
}

.footer__links {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__links a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.2s;
}

.footer__links a:hover { color: #fff; }

.footer__bottom {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer__bottom p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
}

/* ---- Scroll Top ---- */
.scroll-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 8000;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(20, 20, 22, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(30px);
  box-shadow: 0 12px 30px -8px rgba(0, 0, 0, 0.6);
  color: #fff;
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity 0.3s, transform 0.3s, background 0.2s;
}

.scroll-top.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.scroll-top:hover { background: rgba(255, 255, 255, 0.14); }

/* ---- Project Modal ---- */
.project-modal {
  position: fixed;
  inset: 0;
  z-index: 9500;
  width: 100%;
  max-width: none;
  height: 100%;
  margin: 0;
  padding: 0;
  border: none;
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(24px);
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}

.project-modal[open] { opacity: 1; }
.project-modal::backdrop { background: transparent; }

.project-modal__inner {
  height: 100%;
  overflow-y: auto;
  padding: clamp(80px, 10vh, 120px) clamp(20px, 4vw, 48px) 48px;
}

.project-modal__close {
  position: fixed;
  top: 24px;
  right: clamp(20px, 4vw, 48px);
  width: 44px;
  height: 44px;
  font-size: 28px;
  color: rgba(255, 255, 255, 0.5);
  z-index: 10;
  transition: color 0.2s;
}

.project-modal__close:hover { color: #fff; }

.project-modal__content {
  max-width: 680px;
  margin: 0 auto;
}

.project-modal__tag {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue-light);
  font-weight: 500;
}

.project-modal__title {
  margin-top: 10px;
  font-size: clamp(28px, 5vw, 40px);
  font-weight: 600;
  letter-spacing: -0.02em;
}

.project-modal__about {
  margin-top: 20px;
  font-size: clamp(15px, 1.8vw, 17px);
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 52ch;
}

.project-modal__list {
  margin-top: 24px;
  padding-left: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.project-modal__list li {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.55;
  list-style: disc;
}

.project-modal__external {
  display: inline-flex;
  margin-top: 36px;
  font-size: 14px;
  font-weight: 500;
  color: var(--blue-light);
  min-height: 44px;
  align-items: center;
}

/* ---- Float animation ---- */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.animate-float {
  animation: float 8s ease-in-out infinite;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }

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

  .hero__status-dot { animation: none; }
}
