/* ═══════════════════════════════════════════════════════════
   SHINDY DESIGNS — Brand Identity Kit
   Palette: Acid Neon · Fonts: Syne + Outfit
═══════════════════════════════════════════════════════════ */

:root {
  --lime:      #CCFF00;
  --pink:      #FF3CAC;
  --purple:    #7B2FBE;
  --purple-lt: #9B4FDE;
  --void:      #0A0A0F;
  --deep:      #141420;
  --surface:   #1A1A2E;
  --surface2:  #22223A;
  --white:     #FAFAFA;
  --muted:     rgba(250,250,250,0.5);
  --muted2:    rgba(250,250,250,0.15);

  --grad-neon:    linear-gradient(135deg, #CCFF00, #FF3CAC);
  --grad-violet:  linear-gradient(135deg, #7B2FBE, #FF3CAC);
  --grad-full:    linear-gradient(135deg, #CCFF00 0%, #7B2FBE 50%, #FF3CAC 100%);
  --grad-dark:    linear-gradient(135deg, #0A0A0F, #141420, #1E1E35);

  --ease-snap: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out:  cubic-bezier(0.0, 0, 0.2, 1);

  --font-display: 'Syne', sans-serif;
  --font-body:    'Outfit', sans-serif;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--void);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  cursor: none;
}
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── Custom Cursor ── */
.cursor {
  position: fixed;
  width: 12px; height: 12px;
  background: var(--lime);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s var(--ease-snap), background 0.2s;
  mix-blend-mode: difference;
}
.cursor-trail {
  position: fixed;
  width: 36px; height: 36px;
  border: 1.5px solid rgba(204,255,0,0.4);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform 0.18s var(--ease-snap), opacity 0.2s;
}

/* ── Navigation ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 48px;
  background: rgba(10,10,15,0.7);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--muted2);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
  letter-spacing: 0.12em;
}
.nav-logo-dot {
  width: 8px; height: 8px;
  background: var(--grad-neon);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.7; }
}
.nav-links {
  display: flex;
  gap: 36px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
.nav-links a {
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 1px;
  background: var(--lime);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease-snap);
}
.nav-links a:hover { color: var(--lime); }
.nav-links a:hover::after { transform: scaleX(1); }

/* ══════════════════════════════════════════
   HERO
══════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 120px 48px 80px;
}
.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(204,255,0,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(204,255,0,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: grid-drift 20s linear infinite;
}
@keyframes grid-drift {
  0% { transform: translateY(0); }
  100% { transform: translateY(60px); }
}
.hero-noise {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.4;
  pointer-events: none;
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.hero-orb-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(123,47,190,0.35) 0%, transparent 70%);
  top: -200px; left: -100px;
  animation: orb-float 8s ease-in-out infinite;
}
.hero-orb-2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(255,60,172,0.25) 0%, transparent 70%);
  bottom: -100px; right: -100px;
  animation: orb-float 10s ease-in-out infinite reverse;
}
.hero-orb-3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(204,255,0,0.2) 0%, transparent 70%);
  top: 50%; left: 60%;
  animation: orb-float 6s ease-in-out infinite 2s;
}
@keyframes orb-float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -20px) scale(1.05); }
  66% { transform: translate(-20px, 30px) scale(0.95); }
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  animation: hero-reveal 1s var(--ease-snap) both;
}
@keyframes hero-reveal {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  border: 1px solid var(--muted2);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(10px);
}
.hero-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(80px, 14vw, 180px);
  line-height: 0.9;
  letter-spacing: -0.03em;
}
.hero-title-line {
  display: block;
}
/* Glitch effect */
.glitch {
  position: relative;
  background: var(--grad-neon);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.glitch::before,
.glitch::after {
  content: attr(data-text);
  position: absolute;
  top: 0; left: 0;
  background: var(--grad-neon);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.glitch::before {
  animation: glitch-1 4s infinite;
  clip-path: polygon(0 0, 100% 0, 100% 35%, 0 35%);
}
.glitch::after {
  animation: glitch-2 4s infinite;
  clip-path: polygon(0 65%, 100% 65%, 100% 100%, 0 100%);
}
@keyframes glitch-1 {
  0%, 90%, 100% { transform: translate(0); filter: none; }
  92% { transform: translate(-4px, 2px); filter: hue-rotate(90deg); }
  94% { transform: translate(4px, -2px); filter: hue-rotate(-90deg); }
  96% { transform: translate(-2px, 0); }
}
@keyframes glitch-2 {
  0%, 90%, 100% { transform: translate(0); filter: none; }
  93% { transform: translate(4px, -2px); filter: hue-rotate(180deg); }
  95% { transform: translate(-4px, 2px); filter: hue-rotate(-180deg); }
  97% { transform: translate(2px, 0); }
}
.hero-title-outline {
  -webkit-text-stroke: 2px rgba(250,250,250,0.2);
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.hero-sub {
  font-size: 20px;
  font-weight: 400;
  color: var(--muted);
  letter-spacing: 0.02em;
}
.hero-sub-accent {
  color: var(--lime);
  font-weight: 600;
}
.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.tag {
  padding: 7px 18px;
  border: 1px solid var(--muted2);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  transition: all 0.2s;
}
.tag:hover { border-color: var(--lime); color: var(--lime); }
.tag-neon { border-color: rgba(204,255,0,0.3); color: var(--lime); background: rgba(204,255,0,0.06); }
.tag-pink { border-color: rgba(255,60,172,0.3); color: var(--pink); background: rgba(255,60,172,0.06); }
.hero-scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  animation: fade-in 2s 1s both;
}
@keyframes fade-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--lime), transparent);
  animation: scroll-pulse 2s ease-in-out infinite;
}
@keyframes scroll-pulse {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50% { transform: scaleY(0.5); opacity: 0.4; }
}

/* ══════════════════════════════════════════
   SECTIONS
══════════════════════════════════════════ */
.section {
  padding: 120px 48px;
  max-width: 1400px;
  margin: 0 auto;
}
.section-dark {
  max-width: 100%;
  background: var(--deep);
  padding: 120px max(48px, calc((100vw - 1400px)/2 + 48px));
}
.section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 16px;
}
.section-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.section-desc {
  font-size: 17px;
  color: var(--muted);
  max-width: 600px;
  line-height: 1.7;
  margin-bottom: 64px;
}

/* ══════════════════════════════════════════
   LOGO SECTION
══════════════════════════════════════════ */
.logo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 2px;
  margin-bottom: 48px;
  border-radius: 20px;
  overflow: hidden;
}
.logo-card {
  padding: 48px 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  transition: transform 0.3s var(--ease-snap);
}
.logo-card:hover { transform: scale(1.02); z-index: 2; }
.logo-card-dark { background: var(--void); }
.logo-card-light { background: #F0F0F0; }
.logo-card-neon { background: linear-gradient(135deg, #0A0A0F 0%, #1A0A2E 100%); }
.logo-card-outline { background: var(--surface); }
.logo-card-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
.logo-card-label-dark { color: rgba(10,10,15,0.5); }
.logo-display {
  flex: 1;
  display: flex;
  align-items: center;
}
.logo-display-center { justify-content: center; }
.logo-mark {
  display: flex;
  align-items: center;
  gap: 14px;
}
.logo-mark-dark .logo-word-shindy { color: #0A0A0F; }
.logo-mark-dark .logo-word-designs { color: rgba(10,10,15,0.5); }
.logo-icon { width: 52px; height: 52px; }
.logo-icon-large { width: 80px; height: 80px; filter: drop-shadow(0 0 20px rgba(204,255,0,0.4)); }
.logo-wordmark {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.logo-word-shindy {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  letter-spacing: 0.1em;
  color: var(--white);
  line-height: 1;
}
.logo-word-designs {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--muted);
  line-height: 1;
}
.logo-wordmark-dark .logo-word-shindy { color: #0A0A0F; }
.logo-wordmark-dark .logo-word-designs { color: rgba(10,10,15,0.5); }
.logo-outline-text {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 36px;
  letter-spacing: 0.08em;
  -webkit-text-stroke: 1.5px rgba(204,255,0,0.6);
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.logo-card-meta {
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.06em;
}
.logo-card-meta-dark { color: rgba(10,10,15,0.4); }

/* Logo Construction */
.logo-construction {
  background: var(--surface);
  border-radius: 20px;
  padding: 48px;
  border: 1px solid var(--muted2);
}
.construction-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 36px;
  color: var(--muted);
  letter-spacing: 0.04em;
}
.construction-demo {
  display: flex;
  align-items: center;
  gap: 64px;
}
.construction-box {
  position: relative;
  padding: 32px;
  border: 1px dashed rgba(204,255,0,0.25);
  border-radius: 12px;
  flex-shrink: 0;
}
.construction-inner {
  display: flex;
  align-items: center;
  gap: 14px;
}
.construction-icon { width: 48px; height: 48px; }
.construction-word {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 20px;
  letter-spacing: 0.1em;
  background: var(--grad-neon);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.construction-rules {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.rule-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--muted);
}
.rule-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.rule-dot-neon   { background: var(--lime); }
.rule-dot-pink   { background: var(--pink); }
.rule-dot-purple { background: var(--purple); }
.rule-dot-white  { background: var(--white); }

/* ══════════════════════════════════════════
   COLOR SECTION
══════════════════════════════════════════ */
.color-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 2px;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 48px;
}
.color-swatch {
  padding: 36px 24px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 220px;
  transition: transform 0.3s var(--ease-snap);
  cursor: default;
}
.color-swatch:hover { transform: translateY(-8px); z-index: 2; }
.swatch-lime     { background: #CCFF00; }
.swatch-pink     { background: #FF3CAC; }
.swatch-purple   { background: #7B2FBE; }
.swatch-dark     { background: #0A0A0F; border: 1px solid var(--muted2); }
.swatch-charcoal { background: #141420; border: 1px solid var(--muted2); }
.swatch-white    { background: #FAFAFA; }
.swatch-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  color: rgba(10,10,15,0.85);
}
.swatch-lime .swatch-name,
.swatch-pink .swatch-name { color: rgba(10,10,15,0.85); }
.swatch-purple .swatch-name,
.swatch-dark .swatch-name,
.swatch-charcoal .swatch-name { color: var(--white); }
.swatch-white .swatch-name { color: rgba(10,10,15,0.85); }
.swatch-role {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 4px;
  color: rgba(10,10,15,0.5);
}
.swatch-purple .swatch-role,
.swatch-dark .swatch-role,
.swatch-charcoal .swatch-role { color: rgba(250,250,250,0.5); }
.swatch-values {
  display: flex;
  flex-direction: column;
  gap: 3px;
  font-size: 11px;
  font-family: 'Courier New', monospace;
  color: rgba(10,10,15,0.6);
}
.swatch-purple .swatch-values,
.swatch-dark .swatch-values,
.swatch-charcoal .swatch-values { color: rgba(250,250,250,0.5); }
.swatch-values-dark { color: rgba(10,10,15,0.6) !important; }

/* Gradient Section */
.gradient-section { margin-bottom: 48px; }
.gradient-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 24px;
  color: var(--muted);
  letter-spacing: 0.04em;
}
.gradient-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.gradient-card {
  height: 120px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  transition: transform 0.3s var(--ease-snap), box-shadow 0.3s;
  cursor: default;
}
.gradient-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
.grad-1 { background: linear-gradient(135deg, #CCFF00, #FF3CAC); }
.grad-2 { background: linear-gradient(135deg, #7B2FBE, #FF3CAC); }
.grad-3 { background: linear-gradient(135deg, #CCFF00 0%, #7B2FBE 50%, #FF3CAC 100%); }
.grad-4 { background: linear-gradient(135deg, #0A0A0F, #141420, #1E1E35); border: 1px solid var(--muted2); }
.grad-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  color: rgba(10,10,15,0.9);
}
.grad-4 .grad-name { color: var(--white); }
.grad-code {
  font-size: 11px;
  font-family: 'Courier New', monospace;
  color: rgba(10,10,15,0.6);
  margin-top: 4px;
}
.grad-4 .grad-code { color: var(--muted); }

/* Combos */
.combos-section { }
.combos-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.combo {
  padding: 28px 24px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: transform 0.3s var(--ease-snap);
}
.combo:hover { transform: scale(1.03); }
.combo-1 { background: #0A0A0F; border: 1px solid rgba(204,255,0,0.2); }
.combo-2 { background: #7B2FBE; }
.combo-3 { background: #CCFF00; }
.combo-4 { background: #7B2FBE; }
.combo-label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
}
.combo-1 .combo-label { color: #CCFF00; }
.combo-2 .combo-label { color: #FAFAFA; }
.combo-3 .combo-label { color: #0A0A0F; }
.combo-4 .combo-label { color: #CCFF00; }
.combo-ratio {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
}
.combo-1 .combo-ratio { color: rgba(204,255,0,0.6); }
.combo-2 .combo-ratio { color: rgba(250,250,250,0.6); }
.combo-3 .combo-ratio { color: rgba(10,10,15,0.5); }
.combo-4 .combo-ratio { color: rgba(204,255,0,0.7); }

/* ══════════════════════════════════════════
   TYPOGRAPHY SECTION
══════════════════════════════════════════ */
.type-showcase {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 64px;
  border: 1px solid var(--muted2);
  border-radius: 20px;
  overflow: hidden;
}
.type-row {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 32px;
  align-items: center;
  padding: 32px 40px;
  border-bottom: 1px solid var(--muted2);
  transition: background 0.2s;
}
.type-row:last-child { border-bottom: none; }
.type-row:hover { background: rgba(255,255,255,0.02); }
.type-row-display { padding: 48px 40px; background: var(--surface); }
.type-meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.type-role {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--lime);
}
.type-spec {
  font-size: 11px;
  color: var(--muted);
  font-family: 'Courier New', monospace;
  line-height: 1.5;
}
.type-display {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(48px, 7vw, 96px);
  line-height: 0.9;
  letter-spacing: -0.03em;
  background: var(--grad-full);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.type-h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1;
  letter-spacing: -0.02em;
}
.type-h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(24px, 3vw, 40px);
  letter-spacing: -0.01em;
}
.type-h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(20px, 2.5vw, 28px);
}
.type-body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  color: var(--muted);
  max-width: 600px;
}
.type-caption {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.04em;
}
.type-label {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--lime);
}

/* Font Pairing Card */
.font-pairing {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0;
  border: 1px solid var(--muted2);
  border-radius: 20px;
  overflow: hidden;
}
.pairing-col {
  padding: 48px;
  background: var(--surface);
  font-family: var(--font-display);
}
.pairing-col-outfit { background: var(--surface2); }
.pairing-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 32px;
  background: var(--grad-neon);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-color: var(--surface);
}
.pairing-font-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 28px;
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}
.pairing-font-role {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 24px;
}
.pairing-sample-large {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 96px;
  line-height: 1;
  background: var(--grad-neon);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 24px;
}
.pairing-weights {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-family: var(--font-display);
  font-size: 14px;
  color: var(--muted);
}

/* ══════════════════════════════════════════
   SOCIAL MEDIA TEMPLATES
══════════════════════════════════════════ */
.social-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 24px;
  align-items: start;
}
.social-item { display: flex; flex-direction: column; gap: 12px; }
.social-item-wide { grid-column: span 2; }
.social-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
.social-template {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  transition: transform 0.3s var(--ease-snap), box-shadow 0.3s;
}
.social-template:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
}

/* Instagram Post */
.ig-post {
  aspect-ratio: 1;
  background: var(--void);
  border: 1px solid var(--muted2);
}
.ig-bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  pointer-events: none;
}
.ig-orb-1 {
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(123,47,190,0.5) 0%, transparent 70%);
  top: -50px; left: -50px;
}
.ig-orb-2 {
  width: 180px; height: 180px;
  background: radial-gradient(circle, rgba(255,60,172,0.4) 0%, transparent 70%);
  bottom: -30px; right: -30px;
}
.ig-noise {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.05'/%3E%3C/svg%3E");
  opacity: 0.5;
}
.ig-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
}
.ig-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.ig-logo-small {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.1em;
}
.ig-tag {
  font-size: 10px;
  color: var(--muted);
  letter-spacing: 0.06em;
}
.ig-main { flex: 1; display: flex; flex-direction: column; justify-content: center; }
.ig-eyebrow {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 10px;
}
.ig-headline {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(22px, 4vw, 32px);
  line-height: 1.05;
  letter-spacing: -0.02em;
}
.ig-headline-accent {
  background: var(--grad-neon);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.ig-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.ig-cta {
  font-size: 12px;
  font-weight: 600;
  color: var(--lime);
  letter-spacing: 0.04em;
}
.ig-dots { display: flex; gap: 5px; }
.ig-dots span {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--muted2);
}
.ig-dots span.active { background: var(--lime); width: 16px; border-radius: 3px; }

/* Instagram Story */
.ig-story {
  aspect-ratio: 9/16;
  background: var(--void);
  border: 1px solid var(--muted2);
}
.story-bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(50px);
  pointer-events: none;
}
.story-orb-1 {
  width: 250px; height: 250px;
  background: radial-gradient(circle, rgba(123,47,190,0.6) 0%, transparent 70%);
  top: -80px; right: -80px;
}
.story-orb-2 {
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(204,255,0,0.25) 0%, transparent 70%);
  bottom: 100px; left: -60px;
}
.story-orb-3 {
  width: 180px; height: 180px;
  background: radial-gradient(circle, rgba(255,60,172,0.35) 0%, transparent 70%);
  bottom: -60px; right: 20px;
}
.story-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 16px;
}
.story-top { margin-bottom: 16px; }
.story-progress {
  display: flex;
  gap: 4px;
  margin-bottom: 12px;
}
.story-progress span {
  flex: 1;
  height: 2px;
  background: var(--muted2);
  border-radius: 2px;
}
.story-progress span.active { background: var(--white); }
.story-user {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
}
.story-avatar {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--grad-neon);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 13px;
  color: #0A0A0F;
}
.story-main { flex: 1; display: flex; flex-direction: column; justify-content: center; }
.story-label-tag {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 12px;
}
.story-big-text {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(28px, 5vw, 40px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.story-accent {
  background: var(--grad-neon);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.story-sub {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.5;
}
.story-bottom { margin-top: auto; }
.story-swipe {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.06em;
}
.story-arrow {
  font-size: 18px;
  color: var(--lime);
  animation: bounce-up 1.5s ease-in-out infinite;
}
@keyframes bounce-up {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* LinkedIn Banner */
.linkedin-banner {
  aspect-ratio: 4/1;
  background: var(--void);
  border: 1px solid var(--muted2);
}
.li-bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
}
.li-orb-1 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(123,47,190,0.4) 0%, transparent 70%);
  top: -100px; left: -50px;
}
.li-orb-2 {
  width: 250px; height: 250px;
  background: radial-gradient(circle, rgba(204,255,0,0.2) 0%, transparent 70%);
  bottom: -80px; right: 100px;
}
.li-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 36px;
}
.li-left { display: flex; flex-direction: column; gap: 12px; }
.li-logo { display: flex; align-items: center; gap: 12px; }
.li-logo-text { display: flex; flex-direction: column; gap: 2px; }
.li-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.1em;
}
.li-tagline {
  font-size: 10px;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.li-headline {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(14px, 2vw, 20px);
  line-height: 1.2;
  letter-spacing: -0.01em;
}
.li-right { display: flex; flex-direction: column; align-items: flex-end; gap: 12px; }
.li-services {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: flex-end;
  max-width: 280px;
}
.li-service {
  padding: 4px 10px;
  border: 1px solid var(--muted2);
  border-radius: 100px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--muted);
}
.li-cta-btn {
  padding: 8px 20px;
  background: var(--grad-neon);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  color: #0A0A0F;
  letter-spacing: 0.04em;
}

/* Twitter Post */
.twitter-post {
  aspect-ratio: 16/9;
  background: var(--void);
  border: 1px solid var(--muted2);
}
.tw-bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
}
.tw-orb-1 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(123,47,190,0.4) 0%, transparent 70%);
  top: -80px; right: -80px;
}
.tw-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px 28px;
}
.tw-top { }
.tw-logo-sm {
  display: flex;
  align-items: center;
  gap: 8px;
}
.tw-handle {
  font-size: 11px;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.04em;
}
.tw-quote {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(13px, 2vw, 17px);
  line-height: 1.4;
  letter-spacing: -0.01em;
  color: var(--white);
  flex: 1;
  display: flex;
  align-items: center;
  padding: 12px 0;
}
.tw-bottom {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.tw-tag {
  font-size: 11px;
  font-weight: 600;
  color: var(--lime);
  letter-spacing: 0.02em;
}

/* ══════════════════════════════════════════
   GUIDELINES SECTION
══════════════════════════════════════════ */
.guidelines-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.guideline-block {
  background: var(--surface);
  border-radius: 20px;
  padding: 40px;
  border: 1px solid var(--muted2);
  transition: border-color 0.3s, transform 0.3s var(--ease-snap);
}
.guideline-block:hover {
  border-color: rgba(204,255,0,0.2);
  transform: translateY(-4px);
}
.guideline-block-voice { grid-column: span 1; }
.guideline-block-motion { grid-column: span 1; }
.guideline-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
}
.guideline-icon-green  { background: rgba(204,255,0,0.12); color: var(--lime); }
.guideline-icon-red    { background: rgba(255,60,172,0.12); color: var(--pink); }
.guideline-icon-purple { background: rgba(123,47,190,0.2); color: var(--purple-lt); }
.guideline-icon-lime   { background: rgba(204,255,0,0.12); color: var(--lime); }
.guideline-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}
.guideline-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.guideline-list li {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
  padding-left: 20px;
  position: relative;
}
.guideline-list-do li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--lime);
  font-weight: 700;
}
.guideline-list-dont li::before {
  content: '×';
  position: absolute;
  left: 0;
  color: var(--pink);
  font-weight: 700;
}

/* Voice Grid */
.voice-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.voice-item {
  background: var(--surface2);
  border-radius: 12px;
  padding: 20px;
  border: 1px solid var(--muted2);
}
.voice-word {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
  background: var(--grad-neon);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 6px;
}
.voice-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}

/* Motion List */
.motion-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.motion-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--muted2);
}
.motion-item:last-child { border-bottom: none; padding-bottom: 0; }
.motion-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--lime);
}
.motion-value {
  font-size: 13px;
  color: var(--muted);
  font-family: 'Courier New', monospace;
  line-height: 1.5;
}

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
.footer {
  position: relative;
  background: var(--void);
  border-top: 1px solid var(--muted2);
  overflow: hidden;
  padding: 64px 48px;
}
.footer-bg-orb {
  position: absolute;
  width: 600px; height: 300px;
  background: radial-gradient(ellipse, rgba(123,47,190,0.15) 0%, transparent 70%);
  bottom: -100px;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}
.footer-content {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
}
.footer-icon { width: 40px; height: 40px; }
.footer-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 20px;
  letter-spacing: 0.1em;
}
.footer-tagline {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.08em;
  margin-top: 2px;
}
.footer-divider {
  height: 1px;
  background: var(--muted2);
  margin-bottom: 24px;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--muted);
}
.footer-credit {
  font-family: var(--font-display);
  font-weight: 700;
  background: var(--grad-neon);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ══════════════════════════════════════════
   SCROLL ANIMATIONS
══════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--ease-snap), transform 0.7s var(--ease-snap);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */
@media (max-width: 1200px) {
  .logo-grid { grid-template-columns: 1fr 1fr; }
  .color-grid { grid-template-columns: repeat(3, 1fr); }
  .social-grid { grid-template-columns: 1fr 1fr; }
  .social-item-wide { grid-column: span 2; }
}
@media (max-width: 900px) {
  .nav { padding: 16px 24px; }
  .nav-links { display: none; }
  .section { padding: 80px 24px; }
  .section-dark { padding: 80px 24px; }
  .hero { padding: 100px 24px 60px; }
  .logo-grid { grid-template-columns: 1fr 1fr; }
  .color-grid { grid-template-columns: repeat(2, 1fr); }
  .gradient-grid { grid-template-columns: 1fr 1fr; }
  .combos-grid { grid-template-columns: 1fr 1fr; }
  .type-row { grid-template-columns: 1fr; gap: 12px; }
  .font-pairing { grid-template-columns: 1fr; }
  .pairing-divider { padding: 16px; }
  .social-grid { grid-template-columns: 1fr; }
  .social-item-wide { grid-column: span 1; }
  .guidelines-grid { grid-template-columns: 1fr; }
  .construction-demo { flex-direction: column; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
}