/* ==========================================================================
   Solutiona — Stylesheet v2 (luxury redesign)
   - Fraunces (display) + DM Sans (body)
   - Light + Dark themes via CSS variables
   - Glassmorphism, aurora gradient mesh, grain texture
   - Bento grid for Services + Market
   - Animation primitives: reveal, magnetic, marquee, parallax
   ========================================================================== */

/* ----- DESIGN TOKENS ----- */
:root {
  /* Pink scale */
  --pink-50:  #FFF5F5;
  --pink-100: #FFE5E5;
  --pink-200: #FDC9C9;
  --pink-300: #FDACAC;
  --pink-400: #F58A8A;
  --pink-500: #E66A6A;
  --pink-600: #C24F4F;

  /* Gold accent (sectional borders) */
  --gold:       #E8C97A;
  --gold-soft:  rgba(232, 201, 122, 0.35);

  /* Surfaces — light */
  --bg:           #FCFAFA;
  --bg-alt:       #F7F3F3;
  --surface-1:    #FFFFFF;
  --surface-2:    #FAF6F6;
  --border:       rgba(0, 0, 0, 0.07);
  --border-strong:rgba(0, 0, 0, 0.14);

  /* Foreground */
  --fg:        #0A0A0A;
  --fg-muted:  #5e5e5e;
  --fg-soft:   #969696;

  /* Glass */
  --glass-bg:     rgba(255, 255, 255, 0.78);
  --glass-border: rgba(255, 255, 255, 0.6);
  --glass-blur:   12px;

  /* Aurora */
  --aurora-1: #FDACAC;
  --aurora-2: #FFD8D8;
  --aurora-3: #FFE9D6;

  /* Shadow */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 12px 32px rgba(245, 138, 138, 0.16);
  --shadow-lg: 0 24px 60px rgba(245, 138, 138, 0.22);

  /* Type scale (fluid) */
  --fs-xxl: clamp(3rem, 7vw, 6rem);
  --fs-xl:  clamp(2.2rem, 4.2vw, 3.6rem);
  --fs-lg:  clamp(1.6rem, 2.6vw, 2.2rem);
  --fs-md:  clamp(1.05rem, 1.4vw, 1.18rem);
  --fs-sm:  0.92rem;
  --fs-xs:  0.78rem;

  /* Layout */
  --container: 1200px;
  --radius-sm: 10px;
  --radius:    16px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  /* Motion */
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

[data-theme="dark"] {
  --bg:           #0E0E10;
  --bg-alt:       #131316;
  --surface-1:    #16161A;
  --surface-2:    #1C1C21;
  --border:       rgba(255, 255, 255, 0.07);
  --border-strong:rgba(255, 255, 255, 0.14);

  --fg:        #FAF7F7;
  --fg-muted:  rgba(255, 255, 255, 0.62);
  --fg-soft:   rgba(255, 255, 255, 0.4);

  --glass-bg:     rgba(22, 22, 26, 0.5);
  --glass-border: rgba(255, 255, 255, 0.08);

  --aurora-1: #C24F4F;
  --aurora-2: #5E3A4A;
  --aurora-3: #3D2A38;

  --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.4);
  --shadow-md: 0 12px 36px rgba(0, 0, 0, 0.55);
  --shadow-lg: 0 24px 60px rgba(0, 0, 0, 0.7);
}

/* ----- RESET ----- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--fg);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transition: background-color 0.4s var(--ease-out), color 0.4s var(--ease-out);
}
img, svg { max-width: 100%; display: block; }
button { font-family: inherit; }
a { color: inherit; }

/* Selection */
::selection { background: var(--pink-300); color: #000; }

/* Hide cursor on interactive elements where we use custom orb? No — keep native cursor. */

/* ----- GRAIN TEXTURE OVERLAY ----- */
.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9000;
  opacity: 0.06;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='0.55'/></svg>");
  background-size: 200px 200px;
}
[data-theme="dark"] .grain { mix-blend-mode: screen; opacity: 0.04; }

/* ----- CURSOR ORB (desktop only) ----- */
.cursor-orb {
  position: fixed;
  top: 0;
  left: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  background: radial-gradient(circle, var(--pink-300) 0%, rgba(253, 172, 172, 0) 70%);
  transform: translate(-50%, -50%);
  transition: width 0.25s var(--ease-out), height 0.25s var(--ease-out), background 0.25s;
  mix-blend-mode: multiply;
  display: none;
}
[data-theme="dark"] .cursor-orb { mix-blend-mode: screen; }
.cursor-orb.is-active {
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(253, 172, 172, 0.22) 0%, rgba(253, 172, 172, 0) 70%);
}
.cursor-orb.is-hover {
  width: 70px;
  height: 70px;
  background: radial-gradient(circle, rgba(245, 138, 138, 0.4) 0%, rgba(253, 172, 172, 0) 70%);
}
@media (hover: hover) and (pointer: fine) {
  .cursor-orb { display: block; }
}

/* ----- TYPOGRAPHY ----- */
.display, h1, h2, .price-amount, .logo span, .flogo span, .stat-n {
  font-family: 'Fraunces', 'Playfair Display', Georgia, serif;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.05;
  font-variation-settings: "opsz" 144, "SOFT" 50;
}
h1 {
  font-size: var(--fs-xxl);
  margin-bottom: 1.4rem;
}
h1 .pk {
  color: var(--pink-400);
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 100;
}
h2 {
  font-size: var(--fs-xl);
  margin-bottom: 0.9rem;
  line-height: 1.1;
}
h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 700;
  font-size: 1.18rem;
  letter-spacing: -0.01em;
  margin-bottom: 0.5rem;
}
h4 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 700;
  font-size: 1rem;
}

/* ----- LAYOUT ----- */
.sw  { padding: 8rem 5vw; position: relative; }
.ctr { max-width: var(--container); margin: 0 auto; position: relative; }

/* Sectional border (pink/gold thin line) */
.sw + .sw { border-top: 1px solid var(--border); }
.sw::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 80px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-soft), transparent);
}

/* ----- CHIP / BADGE ----- */
.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: rgba(253, 172, 172, 0.1);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 0.36rem 0.95rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--pink-500);
  margin-bottom: 1.2rem;
  backdrop-filter: blur(10px);
}
.chip::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--pink-400);
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.5; transform: scale(1.3); }
}

.sdesc {
  color: var(--fg-muted);
  max-width: 540px;
  font-size: var(--fs-md);
  line-height: 1.7;
}
.sh { margin-bottom: 4rem; }


/* ----- REVEAL ANIMATION ----- */
.rv {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}
.rv.on { opacity: 1; transform: translateY(0); }

[data-reveal-text] .word {
  display: inline-block;
  opacity: 0;
  filter: blur(6px);
  transform: translateY(20px);
  transition:
    opacity 0.7s var(--ease-out),
    filter 0.7s var(--ease-out),
    transform 0.8s var(--ease-out);
}
[data-reveal-text].on .word {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
}


/* ==========================================================================
   NAV
   ========================================================================== */
nav {
  position: fixed;
  top: 1rem; left: 1rem; right: 1rem;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 1.4rem;
  background: var(--glass-bg);
  -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(180%);
          backdrop-filter: blur(var(--glass-blur)) saturate(180%);
  border: 1px solid var(--glass-border);
  border-radius: 100px;
  box-shadow: var(--shadow-sm);
  transition: background 0.4s, border-color 0.4s;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: var(--fg);
}
.logo img { width: 32px; height: 32px; border-radius: 8px; }
.logo span {
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.logo em { color: var(--pink-400); font-style: italic; }

.nav-right { display: flex; align-items: center; gap: 1.2rem; }
.nav-links { display: flex; gap: 1.4rem; }
.nav-links a {
  position: relative;
  color: var(--fg-muted);
  text-decoration: none;
  font-size: 0.86rem;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--pink-400);
  transition: width 0.3s var(--ease-out);
}
.nav-links a:hover { color: var(--fg); }
.nav-links a:hover::after { width: 100%; }

.lang-toggle {
  display: flex;
  background: var(--surface-2);
  border-radius: 100px;
  padding: 3px;
  border: 1px solid var(--border);
}
.lang-btn {
  border: none;
  background: none;
  cursor: pointer;
  padding: 0.25rem 0.7rem;
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--fg-muted);
  transition: all 0.25s;
}
.lang-btn.active { background: var(--fg); color: var(--bg); }

.theme-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--surface-2);
  cursor: pointer;
  color: var(--fg-muted);
  transition: all 0.25s;
}
.theme-btn:hover { color: var(--pink-400); border-color: var(--pink-300); transform: rotate(20deg); }
.theme-btn svg { width: 16px; height: 16px; }
.theme-btn .icon-moon { display: none; }
[data-theme="dark"] .theme-btn .icon-sun  { display: none; }
[data-theme="dark"] .theme-btn .icon-moon { display: inline; }

.nav-cta {
  background: var(--fg);
  color: var(--bg);
  border: none;
  padding: 0.6rem 1.3rem;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.84rem;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s var(--ease-out);
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.nav-cta:hover {
  background: var(--pink-400);
  color: #000;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(245, 138, 138, 0.4);
}

.m-toggle {
  display: none;
  border: none;
  background: none;
  font-size: 1.3rem;
  color: var(--fg);
  cursor: pointer;
}


/* ==========================================================================
   TRANSLATE OVERLAY
   ========================================================================== */
#t-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9998;
  background: var(--glass-bg);
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1.2rem;
}
#t-overlay.show { display: flex; }
.spinner {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 2px solid transparent;
  border-top-color: var(--pink-400);
  border-right-color: var(--pink-400);
  animation: spin 0.7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
#t-msg { font-size: 0.88rem; color: var(--fg-muted); font-weight: 500; letter-spacing: 0.04em; }


/* ==========================================================================
   HERO — aurora + particle burst + parallax
   ========================================================================== */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 11rem 5vw 6rem;
  position: relative;
  overflow: hidden;
}
.aurora {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.aurora span {
  position: absolute;
  border-radius: 50%;
  filter: blur(50px);
  opacity: 0.5;
  will-change: transform;
  transform: translateZ(0);
}
.aurora span:nth-child(1) {
  width: 50vw; height: 50vw;
  top: -20%; left: -10%;
  background: radial-gradient(circle, var(--aurora-1) 0%, transparent 70%);
  animation: aurora-drift 22s ease-in-out infinite;
}
.aurora span:nth-child(2) {
  width: 40vw; height: 40vw;
  bottom: -15%; right: -10%;
  background: radial-gradient(circle, var(--aurora-2) 0%, transparent 70%);
  animation: aurora-drift 28s ease-in-out -10s infinite;
}
.aurora span:nth-child(3) {
  width: 34vw; height: 34vw;
  top: 35%; left: 35%;
  background: radial-gradient(circle, var(--aurora-3) 0%, transparent 70%);
  animation: aurora-drift 32s ease-in-out -16s infinite;
  opacity: 0.35;
}
@keyframes aurora-drift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%      { transform: translate(8vw, -6vw) scale(1.1); }
  66%      { transform: translate(-7vw, 8vw) scale(0.95); }
}

#particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.hero-inner {
  max-width: 760px;
  position: relative;
  z-index: 2;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--glass-bg);
  -webkit-backdrop-filter: blur(14px);
          backdrop-filter: blur(14px);
  border: 1px solid var(--glass-border);
  border-radius: 100px;
  padding: 0.4rem 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--pink-500);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.8rem;
  animation: up 0.9s var(--ease-out) both;
}
.badge svg { width: 14px; height: 14px; }
@keyframes up {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.h-sub {
  font-size: var(--fs-md);
  color: var(--fg-muted);
  max-width: 540px;
  line-height: 1.85;
  margin-bottom: 2.4rem;
  animation: up 0.9s var(--ease-out) 0.2s both;
}

.h-actions {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
  animation: up 0.9s var(--ease-out) 0.3s both;
}

/* Buttons */
.btn-fill, .btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.95rem 1.9rem;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.92rem;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.35s var(--ease-out);
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
}
.btn-fill {
  background: var(--fg);
  color: var(--bg);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}
.btn-fill:hover {
  background: var(--pink-400);
  color: #000;
  transform: translateY(-3px);
  box-shadow: 0 14px 34px rgba(245, 138, 138, 0.45);
}
.btn-ghost {
  background: var(--glass-bg);
  color: var(--fg);
  border-color: var(--border-strong);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}
.btn-ghost:hover {
  border-color: var(--pink-400);
  color: var(--pink-500);
  transform: translateY(-3px);
}

.h-stats {
  display: flex;
  gap: 3rem;
  margin-top: 4.5rem;
  flex-wrap: wrap;
  animation: up 0.9s var(--ease-out) 0.4s both;
  padding-top: 2.4rem;
  border-top: 1px solid var(--border);
}
.stat-n {
  font-size: 2.4rem;
  color: var(--pink-400);
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 100;
}
.stat-l {
  font-size: 0.72rem;
  color: var(--fg-soft);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-top: 0.2rem;
}

/* Scroll hint */
.scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fg-soft);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0;
  animation: up 1s var(--ease-out) 1s forwards;
}
.scroll-hint::after {
  content: '';
  width: 1px;
  height: 32px;
  background: linear-gradient(to bottom, var(--fg-soft), transparent);
  animation: scroll-line 2s ease-in-out infinite;
}
@keyframes scroll-line {
  0%, 100% { transform: scaleY(1); transform-origin: top; }
  50%      { transform: scaleY(0.4); transform-origin: top; }
}


/* ==========================================================================
   MARQUEE — tech stack
   ========================================================================== */
.marquee-wrap {
  padding: 3rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-alt);
  position: relative;
  overflow: hidden;
}
.marquee-label {
  text-align: center;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fg-soft);
  margin-bottom: 1.4rem;
}
.marquee {
  display: flex;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}
.marquee-track {
  display: flex;
  align-items: center;
  gap: 5rem;
  animation: marquee 42s linear infinite;
  flex-shrink: 0;
  padding-right: 5rem;
}
.marquee-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 180px;
  height: 90px;
  flex-shrink: 0;
  opacity: 0.85;
  transition: opacity 0.4s var(--ease-out), transform 0.4s var(--ease-out);
}
.marquee-item img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  /* Light mode: push grey logos darker */
  filter: brightness(0.45) contrast(1.1);
  transition: filter 0.4s var(--ease-out);
}
[data-theme="dark"] .marquee-item img {
  /* Dark mode: push grey logos lighter */
  filter: brightness(2.2) contrast(1.05);
}
.marquee-item:hover {
  opacity: 1;
  transform: scale(1.04);
}

@media (max-width: 680px) {
  .marquee-item { width: 130px; height: 70px; }
  .marquee-track { gap: 1.5rem; padding-right: 1.5rem; }
}
@keyframes marquee {
  to { transform: translateX(-100%); }
}


/* ==========================================================================
   SERVICES — bento grid
   ========================================================================== */
#services { background: var(--bg-alt); }

.bento {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: minmax(180px, auto);
  gap: 1.2rem;
}
.bento-card {
  background: var(--surface-1);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.5s var(--ease-out), box-shadow 0.5s var(--ease-out), border-color 0.4s;
  display: flex;
  flex-direction: column;
}
.bento-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 0%), rgba(253, 172, 172, 0.18), transparent 60%);
  opacity: 0;
  transition: opacity 0.5s;
  pointer-events: none;
}
.bento-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--pink-300);
}
.bento-card:hover::before { opacity: 1; }

/* Bento spans (Services: 6 cards, asymmetric) */
.bento-card[data-size="lg"]   { grid-column: span 4; grid-row: span 2; }
.bento-card[data-size="md"]   { grid-column: span 2; grid-row: span 1; }
.bento-card[data-size="wide"] { grid-column: span 4; grid-row: span 1; }
.bento-card[data-size="sm"]   { grid-column: span 2; grid-row: span 1; }

.bento-icon {
  width: 56px; height: 56px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--pink-100), var(--pink-200));
  border: 1px solid var(--pink-300);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pink-500);
  margin-bottom: 1.2rem;
  flex-shrink: 0;
}
[data-theme="dark"] .bento-icon {
  background: linear-gradient(135deg, rgba(253, 172, 172, 0.1), rgba(253, 172, 172, 0.18));
  color: var(--pink-300);
}
.bento-icon svg { width: 24px; height: 24px; }

.bento-num {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 0.78rem;
  color: var(--fg-soft);
  letter-spacing: 0.1em;
  margin-bottom: 0.4rem;
}
.bento-card h3 { color: var(--fg); }
.bento-card p {
  color: var(--fg-muted);
  font-size: 0.92rem;
  line-height: 1.7;
  margin-top: 0.5rem;
  flex: 1;
}
.bento-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 1.2rem;
}
.bento-tag {
  font-size: 0.7rem;
  padding: 0.25rem 0.7rem;
  border-radius: 100px;
  background: var(--surface-2);
  color: var(--fg-muted);
  border: 1px solid var(--border);
  font-weight: 500;
}

/* Decorative burst on large card */
.bento-card[data-size="lg"]::after {
  content: '';
  position: absolute;
  bottom: -120px;
  right: -80px;
  width: 280px;
  height: 280px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'><g fill='none' stroke='%23FDACAC' stroke-width='1.5' stroke-linecap='round'><path d='M100 20v60M100 120v60M20 100h60M120 100h60M40 40l40 40M120 120l40 40M40 160l40-40M120 80l40-40'/></g></svg>") center/contain no-repeat;
  opacity: 0.18;
  transition: transform 0.6s var(--ease-out), opacity 0.4s;
  pointer-events: none;
}
.bento-card[data-size="lg"]:hover::after {
  transform: rotate(45deg) scale(1.15);
  opacity: 0.3;
}


/* ==========================================================================
   ABOUT — flow with custom burst illustration
   ========================================================================== */
#about { background: var(--bg); }
.ag {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-visual {
  position: relative;
  aspect-ratio: 1;
}
.about-card {
  position: relative;
  width: 100%;
  height: 100%;
  background: linear-gradient(145deg, var(--pink-300), var(--pink-400));
  border-radius: var(--radius-xl);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 50% 30%, rgba(255, 255, 255, 0.25), transparent),
    radial-gradient(circle at 80% 80%, rgba(232, 201, 122, 0.18), transparent 50%);
}
.about-card .burst-svg {
  position: relative;
  width: 70%;
  height: auto;
  z-index: 1;
  filter: drop-shadow(0 8px 32px rgba(0, 0, 0, 0.12));
}

.about-float {
  position: absolute;
  background: var(--glass-bg);
  -webkit-backdrop-filter: blur(14px);
          backdrop-filter: blur(14px);
  border: 1px solid var(--glass-border);
  border-radius: 100px;
  padding: 0.7rem 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--fg);
  box-shadow: var(--shadow-sm);
  animation: float 6s ease-in-out infinite;
}
.about-float .fdot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--pink-400);
  box-shadow: 0 0 12px var(--pink-400);
}
.af1 { top: -1rem; right: -1.5rem; animation-delay: 0s; }
.af2 { bottom: 1rem; left: -2rem; animation-delay: -3s; }
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}

.pline {
  display: block;
  width: 38px; height: 3px;
  background: linear-gradient(90deg, var(--pink-400), var(--gold));
  border-radius: 2px;
  margin: 1.4rem 0;
}
.ap {
  color: var(--fg-muted);
  font-size: var(--fs-md);
  line-height: 1.85;
}
.pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.7rem;
}
.pill {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 0.4rem 1rem;
  font-size: 0.82rem;
  color: var(--fg-muted);
  font-weight: 500;
  transition: all 0.3s;
}
.pill:hover {
  background: var(--pink-100);
  border-color: var(--pink-300);
  color: var(--pink-500);
  transform: translateY(-2px);
}
[data-theme="dark"] .pill:hover {
  background: rgba(253, 172, 172, 0.1);
  color: var(--pink-300);
}


/* ==========================================================================
   MARKET — bento grid (dark section)
   ========================================================================== */
#market {
  background: linear-gradient(180deg, #0E0E10 0%, #16161A 100%);
  color: #FAF7F7;
}
[data-theme="dark"] #market { background: linear-gradient(180deg, var(--bg-alt) 0%, var(--surface-1) 100%); }
#market .chip {
  background: rgba(253, 172, 172, 0.12);
  border-color: rgba(253, 172, 172, 0.3);
  color: var(--pink-300);
}
#market h2 { color: #FAF7F7; }
#market .sdesc { color: rgba(255, 255, 255, 0.55); }

#market .bento { grid-template-columns: repeat(6, 1fr); }
#market .bento-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #FAF7F7;
}
#market .bento-card:hover {
  background: rgba(253, 172, 172, 0.06);
  border-color: rgba(253, 172, 172, 0.3);
}
#market .bento-card h4 { color: #FAF7F7; font-family: 'Fraunces', serif; font-size: 1.05rem; margin-bottom: 0.4rem; }
#market .bento-card p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.6;
}
#market .bento-icon {
  background: rgba(253, 172, 172, 0.12);
  border-color: rgba(253, 172, 172, 0.3);
  color: var(--pink-300);
}
#market .bento-tag {
  background: rgba(253, 172, 172, 0.1);
  color: var(--pink-300);
  border-color: rgba(253, 172, 172, 0.2);
}

/* Market 5-card layout */
#market .bento-card[data-size="m1"] { grid-column: span 4; grid-row: span 2; }
#market .bento-card[data-size="m2"] { grid-column: span 2; }
#market .bento-card[data-size="m3"] { grid-column: span 2; }
#market .bento-card[data-size="m4"] { grid-column: span 3; }
#market .bento-card[data-size="m5"] { grid-column: span 3; }


/* ==========================================================================
   PRICING
   ========================================================================== */
#pricing { background: var(--bg-alt); }
.pg {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.4rem;
}
.pc {
  background: var(--surface-1);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.7rem;
  display: flex;
  flex-direction: column;
  transition: all 0.4s var(--ease-out);
  position: relative;
}
.pc:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--pink-300);
}
.pc.feat {
  border: 1.5px solid var(--pink-400);
  background: linear-gradient(180deg, var(--surface-1), var(--pink-50));
}
[data-theme="dark"] .pc.feat {
  background: linear-gradient(180deg, var(--surface-1), rgba(253, 172, 172, 0.05));
}
.fb {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--fg);
  color: var(--bg);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.36rem 0.95rem;
  border-radius: 100px;
  white-space: nowrap;
}
.pn {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 0.3rem;
  color: var(--fg);
}
.pd { font-size: 0.82rem; color: var(--fg-muted); margin-bottom: 1.4rem; }
.pa {
  font-family: 'Fraunces', serif;
  font-size: 2.2rem;
  font-weight: 800;
  font-variation-settings: "opsz" 144, "SOFT" 100;
  line-height: 1;
  margin-bottom: 0.2rem;
  color: var(--fg);
}
.pa .currency { font-size: 0.9rem; color: var(--fg-muted); font-weight: 500; vertical-align: top; }
.pu { font-size: 0.74rem; color: var(--fg-soft); margin-bottom: 1.4rem; text-transform: uppercase; letter-spacing: 0.1em; }
.pf { list-style: none; flex: 1; margin-bottom: 1.5rem; }
.pf li {
  font-size: 0.86rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
  color: var(--fg-muted);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.pf li svg {
  width: 16px; height: 16px;
  color: var(--pink-400);
  flex-shrink: 0;
}
.pb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  text-align: center;
  text-decoration: none;
  padding: 0.78rem;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.85rem;
  transition: all 0.3s;
}
.pb.go {
  border: 1.5px solid var(--border-strong);
  color: var(--fg);
  background: transparent;
}
.pb.go:hover { border-color: var(--pink-400); color: var(--pink-500); }
.pb.gf { background: var(--fg); color: var(--bg); }
.pb.gf:hover { background: var(--pink-400); color: #000; }


/* ==========================================================================
   PROCESS — timeline-ish
   ========================================================================== */
#process { background: var(--bg); }
.prcg {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 1rem;
}
.prcc {
  background: var(--surface-1);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.7rem 1.3rem;
  text-align: left;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.prcc:hover {
  transform: translateY(-3px);
  border-color: var(--pink-300);
  box-shadow: var(--shadow-sm);
}
.prcn {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--pink-300);
  line-height: 1;
  margin-bottom: 1rem;
  font-variation-settings: "opsz" 144, "SOFT" 100;
}
.prci {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: var(--pink-100);
  border: 1px solid var(--pink-300);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pink-500);
  margin-bottom: 0.8rem;
}
[data-theme="dark"] .prci {
  background: rgba(253, 172, 172, 0.08);
  color: var(--pink-300);
}
.prci svg { width: 18px; height: 18px; }
.prcc h4 {
  font-size: 0.95rem;
  margin-bottom: 0.35rem;
  color: var(--fg);
}
.prcc p {
  font-size: 0.78rem;
  color: var(--fg-muted);
  line-height: 1.55;
}


/* ==========================================================================
   CONTACT
   ========================================================================== */
#contact {
  background: linear-gradient(180deg, #0E0E10 0%, #050507 100%);
  color: #FAF7F7;
  padding: 8rem 5vw;
  position: relative;
  overflow: hidden;
}
[data-theme="dark"] #contact { background: linear-gradient(180deg, var(--bg) 0%, #050507 100%); }
#contact::before {
  content: '';
  position: absolute;
  top: -30%; left: 50%;
  transform: translateX(-50%);
  width: 80vw; height: 80vw;
  background: radial-gradient(circle, rgba(253, 172, 172, 0.08), transparent 60%);
  pointer-events: none;
}
#contact .ctr { position: relative; z-index: 1; }
#contact .chip {
  background: rgba(253, 172, 172, 0.12);
  border-color: rgba(253, 172, 172, 0.3);
  color: var(--pink-300);
}
#contact h2 { color: #FAF7F7; }
.cnt-sub {
  color: rgba(255, 255, 255, 0.55);
  font-size: var(--fs-md);
  margin-top: 0.6rem;
}

.cbox {
  max-width: 580px;
  margin: 2.5rem auto 0;
  background: rgba(255, 255, 255, 0.04);
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  padding: 2.6rem 2.4rem;
  position: relative;
  overflow: hidden;
}
.cbox::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 60%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--pink-300), transparent);
}
.fg {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.ff { grid-column: 1 / -1; }
.fg2 { display: flex; flex-direction: column; gap: 0.4rem; }
label {
  font-size: 0.74rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.04em;
}
input, textarea, select {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 0.85rem 1rem;
  color: #FAF7F7;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  outline: none;
  transition: all 0.25s;
  width: 100%;
}
input::placeholder, textarea::placeholder { color: rgba(255, 255, 255, 0.25); }
input:focus, textarea:focus, select:focus {
  border-color: var(--pink-300);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 4px rgba(253, 172, 172, 0.1);
}
select option { background: #111; color: #FAF7F7; }
textarea { resize: vertical; min-height: 96px; }

.hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }

.sbtn {
  width: 100%;
  margin-top: 1.3rem;
  background: linear-gradient(135deg, var(--pink-300), var(--pink-400));
  color: #000;
  border: none;
  border-radius: 100px;
  padding: 1rem;
  font-weight: 700;
  font-size: 0.92rem;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  transition: all 0.35s var(--ease-out);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.sbtn:hover { transform: translateY(-3px); box-shadow: 0 14px 38px rgba(253, 172, 172, 0.4); }
.sbtn:disabled { opacity: 0.6; cursor: not-allowed; }

.alt-channels { margin-top: 1.8rem; text-align: center; }
.alt-channels-label {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 0.9rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.alt-btns {
  display: flex;
  justify-content: center;
  gap: 0.7rem;
  flex-wrap: wrap;
}
.alt-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #FAF7F7;
  text-decoration: none;
  padding: 0.62rem 1.2rem;
  border-radius: 100px;
  font-size: 0.84rem;
  font-weight: 500;
  transition: all 0.3s;
}
.alt-btn:hover {
  background: rgba(253, 172, 172, 0.1);
  border-color: var(--pink-300);
  color: var(--pink-300);
  transform: translateY(-2px);
}
.alt-btn svg { width: 16px; height: 16px; }

.cmeta {
  display: flex;
  justify-content: center;
  gap: 2.4rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}
.cm {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.45);
}
.cm svg { width: 14px; height: 14px; color: var(--pink-300); }


/* ==========================================================================
   FLOATING WHATSAPP
   ========================================================================== */
.wa-float {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.45);
  z-index: 90;
  text-decoration: none;
  transition: transform 0.3s var(--ease-out);
}
.wa-float::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, 0.4);
  animation: ping 2.5s ease-out infinite;
}
@keyframes ping {
  0%   { transform: scale(0.95); opacity: 1; }
  100% { transform: scale(1.5); opacity: 0; }
}
.wa-float:hover { transform: scale(1.1) rotate(-5deg); }
.wa-float svg { width: 28px; height: 28px; fill: #fff; }


/* ==========================================================================
   FOOTER
   ========================================================================== */
footer {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  padding: 2.4rem 5vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.2rem;
}
.flogo {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--fg);
}
.flogo img { width: 28px; height: 28px; border-radius: 6px; }
.flogo span {
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.flogo em { color: var(--pink-400); font-style: italic; }

.flinks { display: flex; gap: 1.8rem; flex-wrap: wrap; }
.flinks a {
  color: var(--fg-muted);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.2s;
}
.flinks a:hover { color: var(--pink-400); }
.fcopy {
  font-size: 0.76rem;
  color: var(--fg-soft);
}


/* ==========================================================================
   PORTFOLIO — horizontal slider + modal
   ========================================================================== */
#portfolio { background: var(--bg); }

.port-shell {
  position: relative;
  margin: 0 -5vw;
  padding: 0 5vw;
}
.port-slider {
  display: flex;
  gap: 1.4rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-padding-left: 5vw;
  scrollbar-width: none;
  padding: 1rem 0 2rem;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
}
.port-slider::-webkit-scrollbar { display: none; }

.port-card {
  flex: 0 0 380px;
  scroll-snap-align: start;
  background: var(--surface-1);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out), border-color 0.4s;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}
.port-card:hover,
.port-card:focus-visible {
  transform: translateY(-4px);
  border-color: var(--pink-300);
  box-shadow: var(--shadow-md);
  outline: none;
}
.port-card:hover .port-thumb img { transform: scale(1.04); }
.port-card:hover .port-thumb-overlay { opacity: 1; transform: translateX(0); }

.port-thumb {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: linear-gradient(135deg, var(--pink-100), var(--pink-200));
}
.port-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--ease-out);
}
.port-thumb-fallback::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'><g fill='none' stroke='%23F58A8A' stroke-width='1.5' stroke-linecap='round' opacity='0.45'><path d='M100 30v50M100 120v50M30 100h50M120 100h50M50 50l35 35M115 115l35 35M50 150l35-35M115 85l35-35'/></g></svg>") center/55% no-repeat;
}
.port-thumb-overlay {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--fg);
  color: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateX(8px);
  transition: opacity 0.3s, transform 0.3s var(--ease-out);
}
.port-thumb-overlay svg { width: 16px; height: 16px; }

.port-meta {
  padding: 1.5rem 1.6rem 1.7rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.port-cat {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--pink-500);
  font-weight: 600;
  margin-bottom: 0.5rem;
}
[data-theme="dark"] .port-cat { color: var(--pink-300); }
.port-title {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 1.18rem;
  margin-bottom: 0.5rem;
  color: var(--fg);
  line-height: 1.25;
}
.port-summary {
  color: var(--fg-muted);
  font-size: 0.9rem;
  line-height: 1.6;
  flex: 1;
  margin-bottom: 1rem;
}
.port-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.port-tag {
  font-size: 0.7rem;
  padding: 0.25rem 0.7rem;
  border-radius: 100px;
  background: var(--surface-2);
  color: var(--fg-muted);
  border: 1px solid var(--border);
  font-weight: 500;
}

/* Slider arrows */
.port-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--glass-bg);
  -webkit-backdrop-filter: blur(12px);
          backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  color: var(--fg);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  transition: all 0.3s var(--ease-out);
  box-shadow: var(--shadow-sm);
}
.port-nav:hover {
  background: var(--fg);
  color: var(--bg);
  border-color: var(--fg);
}
.port-nav:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}
.port-nav svg { width: 18px; height: 18px; }
.port-nav-prev { left: 1rem; }
.port-nav-prev svg { transform: rotate(180deg); }
.port-nav-next { right: 1rem; }


/* ===== PORTFOLIO MODAL ===== */
.port-modal {
  position: fixed;
  inset: 0;
  z-index: 9997;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem;
}
.port-modal.is-open { display: flex; }
.port-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  animation: modal-fade 0.3s ease;
}
.port-modal-card {
  position: relative;
  background: var(--surface-1);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  max-width: 980px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
  animation: modal-pop 0.4s var(--ease-out);
  scrollbar-width: thin;
}
@keyframes modal-fade { from { opacity: 0; } to { opacity: 1; } }
@keyframes modal-pop {
  from { opacity: 0; transform: translateY(20px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.port-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 2;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--surface-1);
  color: var(--fg);
  cursor: pointer;
  font-size: 1.4rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}
.port-modal-close:hover {
  background: var(--fg);
  color: var(--bg);
  transform: rotate(90deg);
}
.port-modal-gallery {
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: var(--bg-alt);
}
.port-modal-gallery img {
  width: 100%;
  height: auto;
  display: block;
  max-height: 70vh;
  object-fit: cover;
}
.port-modal-gallery:empty {
  aspect-ratio: 16 / 9;
  background: linear-gradient(135deg, var(--pink-100), var(--pink-200));
  position: relative;
}
.port-modal-gallery:empty::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'><g fill='none' stroke='%23FFFFFF' stroke-width='1.5' stroke-linecap='round' opacity='0.6'><path d='M100 30v50M100 120v50M30 100h50M120 100h50M50 50l35 35M115 115l35 35M50 150l35-35M115 85l35-35'/></g></svg>") center/35% no-repeat;
}
.port-modal-body {
  padding: 2rem 2.4rem 2.4rem;
}
.port-modal-cat {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--pink-500);
  font-weight: 600;
  margin-bottom: 0.5rem;
}
[data-theme="dark"] .port-modal-cat { color: var(--pink-300); }
.port-modal-title {
  font-family: 'Fraunces', serif;
  font-weight: 800;
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: var(--fg);
  line-height: 1.15;
}
.port-modal-desc {
  color: var(--fg-muted);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 1.6rem;
}
.port-modal-section { margin-top: 1.6rem; }
.port-modal-section-label {
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fg-soft);
  font-weight: 600;
  margin-bottom: 0.7rem;
}
.port-modal-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.port-modal-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.92rem;
  color: var(--fg-muted);
  padding: 0.42rem 0;
}
.port-modal-list li svg {
  width: 16px;
  height: 16px;
  color: var(--pink-400);
  flex-shrink: 0;
  margin-top: 0.18rem;
}

body.modal-open { overflow: hidden; }


/* ==========================================================================
   PORTFOLIO DETAIL PAGE  (/portfolio/<slug>)
   ========================================================================== */
.pdetail { padding-top: 6rem; }

.pdetail-hero {
  padding: 4rem 5vw 3rem;
  position: relative;
  overflow: hidden;
}
.pdetail-hero::before {
  content: '';
  position: absolute;
  top: -10%; right: -10%;
  width: 50vw; height: 50vw;
  border-radius: 50%;
  background: radial-gradient(circle, var(--pink-200) 0%, transparent 70%);
  filter: blur(60px);
  opacity: 0.3;
  pointer-events: none;
}
.pdetail-hero .ctr { position: relative; z-index: 1; max-width: 980px; }

.pdetail-back {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--fg-muted);
  text-decoration: none;
  margin-bottom: 2rem;
  transition: color 0.2s, transform 0.3s var(--ease-out);
}
.pdetail-back:hover { color: var(--pink-500); transform: translateX(-3px); }
.pdetail-back svg { width: 16px; height: 16px; }

.pdetail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1.4rem;
  margin-bottom: 1.4rem;
}
.pdetail-cat {
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--pink-500);
  font-weight: 600;
}
[data-theme="dark"] .pdetail-cat { color: var(--pink-300); }
.pdetail-client {
  font-size: 0.85rem;
  color: var(--fg-muted);
}

.pdetail-title {
  font-family: 'Fraunces', serif;
  font-weight: 800;
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: 1.4rem;
  color: var(--fg);
}
.pdetail-summary {
  font-size: var(--fs-md);
  color: var(--fg-muted);
  line-height: 1.75;
  max-width: 720px;
  margin-bottom: 1.6rem;
}
.pdetail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

/* Cover image — full bleed */
.pdetail-cover {
  margin: 0 auto;
  max-width: 1400px;
  padding: 0 5vw;
}
.pdetail-cover img {
  width: 100%;
  height: auto;
  max-height: 70vh;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  display: block;
}

/* Body grid: content + sidebar */
.pdetail-body { padding: 5rem 5vw 4rem; }
.pdetail-ctr {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 4rem;
  max-width: 1160px;
}
.pdetail-content { min-width: 0; }
.pdetail-section-h {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 1.4rem;
  margin: 2.5rem 0 1.2rem;
  color: var(--fg);
  letter-spacing: -0.01em;
}
.pdetail-section-h:first-child { margin-top: 0; }
.pdetail-prose p {
  font-size: 1.02rem;
  color: var(--fg-muted);
  line-height: 1.85;
  margin-bottom: 1.2rem;
}
.pdetail-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.pdetail-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  font-size: 0.96rem;
  color: var(--fg-muted);
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
}
.pdetail-list li:last-child { border-bottom: none; }
.pdetail-list li svg {
  width: 18px; height: 18px;
  color: var(--pink-400);
  flex-shrink: 0;
  margin-top: 0.18rem;
}

.pdetail-gallery {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  margin-top: 1.5rem;
}
.pdetail-shot {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface-2);
  border: 1px solid var(--border);
}
.pdetail-shot img {
  width: 100%;
  height: auto;
  display: block;
}

/* Sidebar */
.pdetail-side {
  background: var(--surface-1);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.7rem 1.6rem;
  position: sticky;
  top: 6rem;
  align-self: start;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}
.pdetail-side-row {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  padding-bottom: 0.9rem;
  border-bottom: 1px solid var(--border);
}
.pdetail-side-row:last-of-type { border-bottom: none; padding-bottom: 0; }
.pdetail-side-label {
  font-size: 0.66rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fg-soft);
  font-weight: 600;
}
.pdetail-side-value {
  font-size: 0.95rem;
  color: var(--fg);
  font-weight: 500;
}
.pdetail-side-value.port-tags {
  font-weight: normal;
  margin-top: 0.2rem;
}
.pdetail-cta {
  margin-top: 0.5rem;
  width: 100%;
  justify-content: center;
}
.pdetail-cta svg { width: 16px; height: 16px; }

/* More work section */
.pdetail-more {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
}

@media (max-width: 900px) {
  .pdetail-ctr { grid-template-columns: 1fr; gap: 2rem; }
  .pdetail-side { position: static; }
  .pdetail-body { padding: 3rem 5vw; }
  .pdetail-hero { padding: 3rem 5vw 2rem; }
}
@media (max-width: 680px) {
  .pdetail { padding-top: 5rem; }
  .pdetail-hero { padding: 2rem 5vw 1.5rem; }
  .pdetail-cover { padding: 0; }
  .pdetail-cover img { border-radius: 0; max-height: 50vh; }
  .pdetail-back { margin-bottom: 1.4rem; }
  .pdetail-body { padding: 2.5rem 5vw 3rem; }
  .pdetail-side { padding: 1.4rem 1.3rem; }
}


/* ==========================================================================
   BLOG / ARTICLES — list page + detail typography
   ========================================================================== */

/* Blog hero (list page) */
.blog-hero {
  padding: 9rem 5vw 3rem;
  position: relative;
  overflow: hidden;
}
.blog-hero::before {
  content: '';
  position: absolute;
  top: -10%; left: -10%;
  width: 60vw; height: 60vw;
  background: radial-gradient(circle, var(--pink-200), transparent 70%);
  filter: blur(70px);
  opacity: 0.35;
  pointer-events: none;
}
.blog-hero .ctr { position: relative; z-index: 1; max-width: 980px; }
.blog-h {
  font-family: 'Fraunces', serif;
  font-weight: 800;
  font-size: clamp(2.4rem, 6vw, 4.4rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}
.blog-sub {
  font-size: var(--fs-md);
  color: var(--fg-muted);
  max-width: 640px;
  line-height: 1.75;
}

/* Featured article */
.blog-featured-wrap {
  padding: 1.4rem 5vw 4rem;
}
.blog-featured {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 2.5rem;
  align-items: center;
  background: var(--surface-1);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out), border-color 0.4s;
}
.blog-featured:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--pink-300);
}
.blog-featured-media {
  aspect-ratio: 16 / 11;
  background: linear-gradient(135deg, var(--pink-100), var(--pink-200));
  overflow: hidden;
}
.blog-featured-media img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.6s var(--ease-out);
}
.blog-featured:hover .blog-featured-media img { transform: scale(1.04); }
.blog-featured-meta {
  padding: 2rem 2.4rem 2rem 0;
}
@media (max-width: 900px) {
  .blog-featured { grid-template-columns: 1fr; gap: 0; }
  .blog-featured-meta { padding: 1.6rem 1.6rem 2rem; }
}
.blog-featured-title {
  font-family: 'Fraunces', serif;
  font-weight: 800;
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  line-height: 1.15;
  margin: 0.5rem 0 0.8rem;
  letter-spacing: -0.02em;
  color: var(--fg);
}
.blog-featured-excerpt {
  color: var(--fg-muted);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 1rem;
}

/* Blog tag (small chip) */
.blog-tag {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--pink-500);
  font-weight: 600;
  margin-bottom: 0.4rem;
}
[data-theme="dark"] .blog-tag { color: var(--pink-300); }

/* Byline */
.blog-byline {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  font-size: 0.85rem;
  color: var(--fg-muted);
}
.blog-byline--small { font-size: 0.78rem; }
.blog-byline .dot { color: var(--fg-soft); }

/* Grid */
.blog-grid-section { background: var(--bg-alt); }
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.6rem;
}
.blog-grid--3 { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }

.blog-card {
  background: var(--surface-1);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out), border-color 0.4s;
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--pink-300);
}
.blog-card-media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: linear-gradient(135deg, var(--pink-100), var(--pink-200));
}
.blog-card-media img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.6s var(--ease-out);
}
.blog-card:hover .blog-card-media img { transform: scale(1.05); }
.blog-card-media-placeholder {
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'><g fill='none' stroke='%23F58A8A' stroke-width='1.5' stroke-linecap='round' opacity='0.45'><path d='M100 30v50M100 120v50M30 100h50M120 100h50M50 50l35 35M115 115l35 35M50 150l35-35M115 85l35-35'/></g></svg>");
  background-size: 50%;
  background-position: center;
  background-repeat: no-repeat;
}

.blog-card-body { padding: 1.4rem 1.6rem 1.6rem; flex: 1; display: flex; flex-direction: column; }
.blog-card-title {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 1.18rem;
  line-height: 1.25;
  letter-spacing: -0.01em;
  margin-bottom: 0.5rem;
  color: var(--fg);
}
.blog-card-excerpt {
  color: var(--fg-muted);
  font-size: 0.9rem;
  line-height: 1.65;
  flex: 1;
  margin-bottom: 0.9rem;
}

/* Pagination */
.blog-pagination {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}


/* ==========================================================================
   ARTICLE DETAIL — typography for long-form prose
   ========================================================================== */
.article-detail { padding-top: 6rem; }

.article-hero {
  padding: 4rem 5vw 2.5rem;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.article-back {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.85rem;
  color: var(--fg-muted);
  text-decoration: none;
  margin-bottom: 1.8rem;
  transition: color 0.2s, transform 0.3s var(--ease-out);
}
.article-back:hover { color: var(--pink-500); transform: translateX(-3px); }
.article-back svg { width: 16px; height: 16px; }

.article-title {
  font-family: 'Fraunces', serif;
  font-weight: 800;
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0.6rem 0 1rem;
  color: var(--fg);
}
.article-excerpt {
  color: var(--fg-muted);
  font-size: var(--fs-md);
  line-height: 1.75;
  margin-bottom: 1.4rem;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}
.article-byline {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  justify-content: center;
  font-size: 0.86rem;
  color: var(--fg-muted);
}
.article-author { font-weight: 600; color: var(--fg); }
.dot { color: var(--fg-soft); }

.article-cover {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5vw;
}
.article-cover img {
  width: 100%;
  max-height: 60vh;
  object-fit: cover;
  border-radius: var(--radius-xl);
  display: block;
  box-shadow: var(--shadow-md);
}

.article-body {
  padding: 4rem 5vw 4rem;
}
.article-body .ctr { max-width: 720px; }

/* Long-form prose styles (rendered Quill HTML) */
.article-prose {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.08rem;
  line-height: 1.85;
  color: var(--fg);
}
.article-prose > * + * { margin-top: 1.2rem; }
.article-prose p { color: var(--fg); }
.article-prose h1,
.article-prose h2,
.article-prose h3,
.article-prose h4 {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--fg);
  margin-top: 2.4rem;
  margin-bottom: 0.8rem;
  line-height: 1.25;
}
.article-prose h1 { font-size: 2rem; }
.article-prose h2 { font-size: 1.6rem; }
.article-prose h3 { font-size: 1.3rem; }
.article-prose h4 { font-size: 1.12rem; }
.article-prose a {
  color: var(--pink-500);
  text-decoration: underline;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 3px;
}
[data-theme="dark"] .article-prose a { color: var(--pink-300); }
.article-prose a:hover { text-decoration-thickness: 2.5px; }
.article-prose strong { color: var(--fg); font-weight: 700; }
.article-prose em { font-style: italic; }
.article-prose u { text-decoration: underline; }
.article-prose ul, .article-prose ol {
  padding-left: 1.4rem;
  margin: 1rem 0;
}
.article-prose ul { list-style: disc; }
.article-prose ol { list-style: decimal; }
.article-prose li { margin: 0.45rem 0; }
.article-prose blockquote {
  border-left: 3px solid var(--pink-300);
  padding-left: 1.4rem;
  margin: 1.6rem 0;
  font-style: italic;
  color: var(--fg-muted);
  font-size: 1.1rem;
}
.article-prose code {
  background: var(--surface-2);
  padding: 0.12em 0.45em;
  border-radius: 5px;
  font-family: 'SF Mono', 'Monaco', monospace;
  font-size: 0.92em;
  color: var(--pink-500);
  border: 1px solid var(--border);
}
[data-theme="dark"] .article-prose code { color: var(--pink-300); }
.article-prose pre {
  background: var(--surface-2);
  padding: 1.2rem 1.4rem;
  border-radius: 10px;
  overflow-x: auto;
  margin: 1.4rem 0;
  border: 1px solid var(--border);
  font-family: 'SF Mono', 'Monaco', monospace;
  font-size: 0.92em;
  line-height: 1.65;
}
.article-prose pre code { background: none; border: none; padding: 0; color: inherit; }
.article-prose img,
.article-prose figure img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  margin: 1.6rem 0;
  box-shadow: var(--shadow-sm);
}
.article-prose figure { margin: 1.8rem 0; }
.article-prose figcaption {
  font-size: 0.85rem;
  color: var(--fg-soft);
  text-align: center;
  margin-top: 0.6rem;
}
.article-prose hr {
  border: none;
  border-top: 1px solid var(--border);
  margin: 2.4rem 0;
}

.article-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 2.5rem;
}
.article-rule {
  border: none;
  border-top: 1px solid var(--border);
  margin: 3rem 0 2rem;
}
.article-cta {
  text-align: center;
  padding: 1rem 0;
}
.article-cta p {
  color: var(--fg-muted);
  margin-bottom: 1rem;
  font-size: 1.05rem;
}

.article-related {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
}

@media (max-width: 680px) {
  .article-detail { padding-top: 5rem; }
  .article-hero { padding: 2rem 5vw 1.5rem; }
  .article-cover img { max-height: 40vh; border-radius: 0; }
  .article-cover { padding: 0; }
  .article-body { padding: 2.5rem 5vw 2.5rem; }
  .article-prose { font-size: 1rem; }
  .blog-hero { padding: 7rem 5vw 2rem; }
  .blog-featured-wrap { padding: 1rem 5vw 3rem; }
}


/* ==========================================================================
   MAGNETIC HOVER (JS adjusts inline transform)
   ========================================================================== */
[data-magnetic] { transition: transform 0.5s var(--ease-out); will-change: transform; }


/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
/* ----- TABLET (≤1024px): auto-fit bento, no empty cells ----- */
@media (max-width: 1024px) {
  .bento, #market .bento {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    grid-auto-rows: auto;
  }
  .bento-card,
  .bento-card[data-size="lg"],
  .bento-card[data-size="md"],
  .bento-card[data-size="wide"],
  .bento-card[data-size="sm"],
  #market .bento-card[data-size="m1"],
  #market .bento-card[data-size="m2"],
  #market .bento-card[data-size="m3"],
  #market .bento-card[data-size="m4"],
  #market .bento-card[data-size="m5"] {
    grid-column: auto;
    grid-row: auto;
  }
  /* Keep one feature card prominent on tablet */
  .bento-card[data-size="lg"] { grid-column: 1 / -1; }
  .bento-card[data-size="lg"]::after { right: -40px; bottom: -80px; width: 220px; height: 220px; }
  #market .bento-card[data-size="m1"] { grid-column: 1 / -1; }
  .sw { padding: 7rem 5vw; }
}

/* ----- TABLET PORTRAIT (≤900px) ----- */
@media (max-width: 900px) {
  .ag { grid-template-columns: 1fr; gap: 3rem; }
  .about-visual { max-width: 480px; margin: 0 auto; width: 100%; }
  .af1 { top: 0.4rem; right: 0.4rem; }
  .af2 { bottom: 0.4rem; left: 0.4rem; }
  .h-stats { gap: 2rem; }
  h1 { line-height: 1.1; }
}

/* ----- MOBILE (≤680px) ----- */
@media (max-width: 680px) {
  nav {
    padding: 0.7rem 0.95rem;
    top: 0.7rem;
    left: 0.7rem;
    right: 0.7rem;
    border-radius: 24px;
  }
  .nav-links { display: none; }
  .m-toggle  { display: block; }
  .nav-cta   { display: none; }
  .nav-right { gap: 0.55rem; }
  .lang-toggle { padding: 2px; }
  .lang-btn { padding: 0.22rem 0.55rem; font-size: 0.7rem; }
  .logo span { font-size: 1.05rem; }
  .logo img  { width: 28px; height: 28px; }

  .sw { padding: 5rem 5vw; }
  .sh { margin-bottom: 2.5rem; }

  .bento, #market .bento {
    grid-template-columns: 1fr;
    gap: 0.9rem;
  }
  .bento-card,
  .bento-card[data-size="lg"],
  #market .bento-card[data-size="m1"] {
    grid-column: 1;
    padding: 1.5rem 1.4rem;
  }
  .bento-card[data-size="lg"]::after { display: none; }

  .fg { grid-template-columns: 1fr; }
  .cbox { padding: 2rem 1.3rem; border-radius: 22px; }
  .pc   { padding: 1.7rem 1.4rem; }

  footer { flex-direction: column; text-align: center; gap: 1rem; }

  .h-stats { gap: 1.4rem 2rem; }
  .stat-n { font-size: 1.8rem; }
  .h-actions .btn-fill, .h-actions .btn-ghost { padding: 0.85rem 1.5rem; font-size: 0.86rem; }

  .wa-float { right: 0.9rem; bottom: 0.9rem; width: 50px; height: 50px; }
  .wa-float svg { width: 22px; height: 22px; }

  #hero { padding: 8.5rem 5vw 5rem; min-height: auto; }
  #contact { padding: 6rem 5vw; }

  .marquee-wrap { padding: 2rem 0; }
  .marquee-track { gap: 2.5rem; padding-right: 2.5rem; }
  .marquee-item { font-size: 1rem; }

  .port-card { flex: 0 0 280px; }
  .port-nav { display: none; }
  .port-modal { padding: 1rem 0; }
  .port-modal-card { max-height: 100vh; border-radius: 0; }
  .port-modal-body { padding: 1.5rem 1.4rem 2rem; }
  .port-modal-title { font-size: 1.4rem; }

  .cmeta { gap: 1.2rem 2rem; margin-top: 1.6rem; }
  .alt-btn { padding: 0.55rem 0.95rem; font-size: 0.78rem; }

  .scroll-hint { display: none; }
}

/* ----- SMALL PHONE (≤420px) — iPhone SE, Android compact ----- */
@media (max-width: 420px) {
  nav { padding: 0.6rem 0.8rem; }
  .logo span { display: none; }      /* icon-only on tiny screens */
  .theme-btn { width: 32px; height: 32px; }
  .theme-btn svg { width: 14px; height: 14px; }
  .lang-btn { padding: 0.2rem 0.45rem; font-size: 0.66rem; }
  .nav-right { gap: 0.45rem; }

  h1 { font-size: clamp(2.2rem, 9vw, 3rem); }
  .h-sub { font-size: 0.95rem; }
  .h-actions { gap: 0.6rem; }
  .h-actions .btn-fill, .h-actions .btn-ghost {
    padding: 0.78rem 1.3rem;
    font-size: 0.82rem;
    width: 100%;
    justify-content: center;
  }

  .badge { font-size: 0.7rem; padding: 0.32rem 0.85rem; }
  .chip { font-size: 0.66rem; padding: 0.26rem 0.75rem; }
  h2 { font-size: clamp(1.7rem, 6.5vw, 2.2rem); }
  .pa { font-size: 1.9rem; }
  .stat-n { font-size: 1.6rem; }
}

/* ----- REDUCED MOTION ----- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .marquee-track { animation: none; }
  .aurora span  { animation: none; }
  .cursor-orb   { display: none; }
}
