/* ═══════════════════════════════════════════════════════════
   FASTIT GROUP OF SOLUTIONS — DESIGN SYSTEM
   Fonts: Syne (display) + Plus Jakarta Sans (body) + Cormorant Garamond (italic accent)
   Palette: Pink #E8156D · Yellow #FFD93D · White #FAF9F7 · Blue #A8D8EA
═══════════════════════════════════════════════════════════ */

/* ─── RESET & BASE ─────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --pink:        #E8156D;
  --pink-light:  #FF4D8D;
  --pink-pale:   #fce4ef;
  --yellow:      #FFD93D;
  --yellow-warm: #FFC107;
  --white:       #FAF9F7;
  --white-pure:  #FFFFFF;
  --blue:        #A8D8EA;
  --blue-light:  #B8E4F9;
  --dark:        #0E0E0E;
  --dark-2:      #1A1A1A;
  --dark-3:      #2A2A2A;
  --mid:         #6B6B6B;
  --border:      rgba(255,255,255,0.1);

  --font-display: 'Syne', sans-serif;
  --font-body:    'Plus Jakarta Sans', sans-serif;
  --font-italic:  'Cormorant Garamond', serif;

  --radius-sm:   6px;
  --radius-md:   12px;
  --radius-lg:   24px;
  --radius-full: 999px;

  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--dark);
  overflow-x: hidden;
  cursor: none;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
button { cursor: none; border: none; background: none; font-family: inherit; }

/* ─── CUSTOM CURSOR ─────────────────────────────────────── */
.cursor-dot {
  width: 8px; height: 8px;
  background: var(--pink);
  border-radius: 50%;
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s var(--ease-out), background 0.2s;
}

.cursor-ring {
  width: 36px; height: 36px;
  border: 1.5px solid var(--pink);
  border-radius: 50%;
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform 0.15s var(--ease-out), width 0.3s var(--ease-spring), height 0.3s var(--ease-spring), opacity 0.2s;
  opacity: 0.6;
}

body.cursor-hover .cursor-ring {
  width: 56px; height: 56px;
  opacity: 1;
  border-color: var(--yellow);
}

body.cursor-hover .cursor-dot {
  background: var(--yellow);
  transform: translate(-50%, -50%) scale(1.5);
}

/* ─── NAVIGATION ─────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 40px;
  height: 72px;
  display: flex;
  align-items: center;
  transition: background 0.4s, backdrop-filter 0.4s, box-shadow 0.4s;
}

.nav.scrolled {
  background: rgba(250, 249, 247, 0.92);
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(0,0,0,0.06);
}

.nav-inner {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 2px;
  letter-spacing: -0.5px;
}

.logo-fast { color: var(--dark); }
.logo-it   { color: var(--pink); }
.logo-dot  {
  width: 7px; height: 7px;
  background: var(--yellow);
  border-radius: 50%;
  margin-left: 2px;
  margin-bottom: 10px;
  display: inline-block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-link {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--dark);
  letter-spacing: 0.02em;
  position: relative;
  transition: color 0.2s;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1.5px;
  background: var(--pink);
  transition: width 0.3s var(--ease-out);
}

.nav-link:hover { color: var(--pink); }
.nav-link:hover::after { width: 100%; }

.nav-admin {
  background: var(--dark);
  color: var(--white) !important;
  padding: 8px 18px;
  border-radius: var(--radius-full);
  font-size: 13px;
  transition: background 0.2s, transform 0.2s !important;
}

.nav-admin::after { display: none !important; }
.nav-admin:hover { background: var(--pink) !important; transform: translateY(-1px); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

/* ─── MOBILE MENU ─────────────────────────────────────────── */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--dark);
  z-index: 999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 40px;
  transform: translateX(100%);
  transition: transform 0.5s var(--ease-out);
}

.mobile-menu.open { transform: translateX(0); }

.mobile-menu-inner {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mobile-link {
  font-family: var(--font-display);
  font-size: clamp(36px, 8vw, 64px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  transition: color 0.2s, transform 0.2s;
  display: block;
}

.mobile-link:hover { color: var(--pink); transform: translateX(8px); }

.mobile-menu-footer {
  position: absolute;
  bottom: 40px; left: 40px;
  font-size: 13px;
  color: rgba(255,255,255,0.3);
}

/* ─── SECTION UTILITIES ──────────────────────────────────── */
.section-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 60px;
}

.section-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.25em;
  color: var(--mid);
  margin-bottom: 20px;
  display: block;
}

.section-label.light { color: rgba(255,255,255,0.4); }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--dark);
}

.italic-accent {
  font-family: var(--font-italic);
  font-style: italic;
  font-weight: 500;
  color: var(--pink);
}

/* ─── BUTTONS ─────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--pink);
  color: var(--white-pure);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  padding: 16px 32px;
  border-radius: var(--radius-full);
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  position: relative;
  overflow: hidden;
}

.btn-primary:hover {
  background: var(--dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(232, 21, 109, 0.3);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  color: var(--dark);
  padding: 16px 0;
  border-bottom: 1.5px solid var(--dark);
  transition: color 0.2s, border-color 0.2s;
}

.btn-ghost:hover { color: var(--pink); border-color: var(--pink); }

.btn-ghost-dark {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--mid);
  padding: 12px 0;
  border-bottom: 1px solid var(--mid);
  transition: color 0.2s, border-color 0.2s;
  align-self: flex-end;
}

.btn-ghost-dark:hover { color: var(--pink); border-color: var(--pink); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
  padding: 14px 28px;
  border: 1.5px solid var(--dark);
  border-radius: var(--radius-full);
  transition: background 0.2s, color 0.2s, transform 0.2s;
}

.btn-outline:hover {
  background: var(--dark);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--white-pure);
  color: var(--dark);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
  padding: 18px 40px;
  border-radius: var(--radius-full);
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}

.btn-cta:hover {
  background: var(--yellow);
  transform: translateY(-3px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

/* ─── HERO ────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  background: var(--dark);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 120px 60px 160px;
}

.hero-grain {
  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.5;
  pointer-events: none;
  z-index: 1;
}

.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.hero-blob-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(232,21,109,0.25) 0%, transparent 70%);
  top: -100px; right: -100px;
  animation: blobFloat 8s ease-in-out infinite;
}

.hero-blob-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(168,216,234,0.15) 0%, transparent 70%);
  bottom: 0; left: 20%;
  animation: blobFloat 10s ease-in-out infinite reverse;
}

@keyframes blobFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%       { transform: translate(30px, -20px) scale(1.05); }
  66%       { transform: translate(-20px, 15px) scale(0.97); }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.5);
  margin-bottom: 32px;
  text-transform: uppercase;
}

.eyebrow-dot {
  width: 6px; height: 6px;
  background: var(--pink);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.8); }
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(56px, 8vw, 120px);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -0.04em;
  color: var(--white);
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 32px;
}

.hero-line-1 { opacity: 0; transform: translateY(40px); }
.hero-line-2 { opacity: 0; transform: translateY(40px); }
.hero-line-3 { opacity: 0; transform: translateY(40px); }

.hero-italic {
  font-family: var(--font-italic);
  font-style: italic;
  font-weight: 500;
  color: var(--pink-light);
}

.hero-highlight {
  position: relative;
  color: var(--yellow);
}

.hero-highlight::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 0; right: 0;
  height: 3px;
  background: var(--yellow);
  opacity: 0.4;
  border-radius: 2px;
}

.hero-sub {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.7;
  color: rgba(255,255,255,0.55);
  margin-bottom: 48px;
  max-width: 480px;
  opacity: 0;
  transform: translateY(20px);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
}

.hero-visual {
  position: absolute;
  right: 60px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 420px;
  height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-3d-container {
  width: 100%;
  height: 100%;
  position: relative;
}

#heroCanvas {
  width: 100% !important;
  height: 100% !important;
  border-radius: 50%;
}

.hero-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 120px;
  height: 120px;
}

.badge-ring {
  width: 120px;
  height: 120px;
  position: relative;
  animation: badgeSpin 12s linear infinite;
}

.badge-text-svg {
  width: 120px;
  height: 120px;
  fill: none;
}

.badge-text-svg text {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  fill: rgba(255,255,255,0.6);
  letter-spacing: 2px;
}

.badge-center {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-size: 20px;
  color: var(--yellow);
  animation: badgeSpin 12s linear infinite reverse;
}

@keyframes badgeSpin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

.hero-scroll-hint {
  position: absolute;
  bottom: 80px;
  left: 60px;
  display: flex;
  align-items: center;
  gap: 16px;
  z-index: 2;
}

.scroll-text {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.35);
  text-transform: uppercase;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.3), transparent);
  animation: scrollLineAnim 2s ease-in-out infinite;
}

@keyframes scrollLineAnim {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

.hero-stats-strip {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: rgba(255,255,255,0.04);
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 24px 60px;
  z-index: 2;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 0 48px;
}

.stat-num {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.03em;
}

.stat-label {
  font-size: 11px;
  font-weight: 500;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.05em;
}

.stat-divider {
  color: rgba(255,255,255,0.15);
  font-size: 24px;
}

/* ─── MARQUEE ─────────────────────────────────────────────── */
.marquee-strip {
  background: var(--pink);
  overflow: hidden;
  padding: 16px 0;
  white-space: nowrap;
}

.marquee-track {
  display: inline-flex;
  align-items: center;
  gap: 32px;
  animation: marqueeScroll 30s linear infinite;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: rgba(255,255,255,0.9);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.marquee-dot { color: var(--yellow); font-size: 10px; }

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

/* ─── CRAFT SECTION ──────────────────────────────────────── */
.craft-section {
  padding: 120px 0;
  background: var(--white);
}

.section-header-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: end;
  gap: 40px;
  margin-bottom: 80px;
}

.section-desc {
  font-size: 16px;
  line-height: 1.7;
  color: var(--mid);
  max-width: 320px;
}

.craft-list {
  border-top: 1px solid rgba(0,0,0,0.08);
}

.craft-item {
  display: grid;
  grid-template-columns: 80px 1fr auto 40px;
  align-items: center;
  gap: 32px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  cursor: none;
  position: relative;
  overflow: hidden;
  transition: padding-left 0.3s var(--ease-out);
}

.craft-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--dark);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease-out);
  z-index: 0;
}

.craft-item:hover::before { transform: scaleX(1); }
.craft-item:hover .craft-num,
.craft-item:hover .craft-name,
.craft-item:hover .craft-tagline,
.craft-item:hover .craft-arrow { color: var(--white); }
.craft-item:hover .craft-hover-content { opacity: 1; }
.craft-item:hover .craft-tags span { background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.7); }

.craft-num {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--pink);
  letter-spacing: 0.05em;
  position: relative;
  z-index: 1;
  transition: color 0.3s;
}

.craft-body {
  position: relative;
  z-index: 1;
}

.craft-name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
  transition: color 0.3s;
}

.craft-tagline {
  font-size: 14px;
  color: var(--mid);
  transition: color 0.3s;
}

.craft-hover-content {
  position: relative;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.3s;
  max-width: 360px;
}

.craft-hover-content p {
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255,255,255,0.7);
  margin-bottom: 12px;
}

.craft-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.craft-tags span {
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  background: rgba(0,0,0,0.06);
  border-radius: var(--radius-full);
  color: var(--mid);
  transition: background 0.3s, color 0.3s;
}

.craft-arrow {
  font-size: 20px;
  color: var(--mid);
  position: relative;
  z-index: 1;
  transition: color 0.3s, transform 0.3s;
}

.craft-item:hover .craft-arrow { transform: translateX(4px); }

.craft-cta-row {
  margin-top: 48px;
  display: flex;
  justify-content: center;
}

/* ─── MANIFESTO ──────────────────────────────────────────── */
.manifesto-section {
  padding: 140px 0;
  background: var(--dark);
  position: relative;
  overflow: hidden;
}

.manifesto-bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-size: clamp(120px, 20vw, 280px);
  font-weight: 900;
  color: rgba(255,255,255,0.02);
  white-space: nowrap;
  pointer-events: none;
  letter-spacing: -0.05em;
  user-select: none;
}

.manifesto-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.manifesto-left .section-label { margin-bottom: 40px; }

.proof-point {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
}

.proof-icon {
  color: var(--pink);
  font-size: 12px;
  margin-top: 4px;
  flex-shrink: 0;
}

.proof-point p {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,255,255,0.55);
}

.manifesto-quote {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 800;
  line-height: 1.1;
  color: var(--white);
  letter-spacing: -0.03em;
  text-align: center;
  border: none;
}

.quote-yellow { color: var(--yellow); }

.manifesto-attribution {
  text-align: center;
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  margin-top: 20px;
  letter-spacing: 0.05em;
}

.manifesto-underline-deco {
  width: 60px;
  height: 2px;
  background: var(--pink);
  margin: 20px auto 0;
  border-radius: 2px;
}

.manifesto-numbers {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: flex-end;
}

.big-number-item {
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.big-num {
  font-family: var(--font-display);
  font-size: clamp(48px, 6vw, 80px);
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.04em;
  line-height: 1;
}

.big-num-suffix {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  color: var(--pink);
}

.big-num-label {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-left: 12px;
  align-self: center;
}

/* ─── PORTFOLIO PREVIEW ──────────────────────────────────── */
.portfolio-preview {
  padding: 120px 0 80px;
  background: var(--white);
  overflow: hidden;
}

.portfolio-header {
  margin-bottom: 60px;
}

.portfolio-header-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-top: 16px;
}

.portfolio-scroll-container {
  overflow-x: auto;
  overflow-y: visible;
  padding: 20px 60px 40px;
  scrollbar-width: none;
  -ms-overflow-style: none;
  cursor: grab;
}

.portfolio-scroll-container:active { cursor: grabbing; }
.portfolio-scroll-container::-webkit-scrollbar { display: none; }

.portfolio-scroll-track {
  display: flex;
  gap: 24px;
  width: max-content;
}

.portfolio-card {
  width: 360px;
  flex-shrink: 0;
  background: var(--white-pure);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.06);
  transition: transform 0.4s var(--ease-spring), box-shadow 0.4s;
}

.portfolio-card:hover {
  transform: translateY(-12px) rotate(-1deg);
  box-shadow: 0 30px 80px rgba(0,0,0,0.12);
}

.portfolio-card-rotated {
  transform: rotate(1.5deg);
  margin-top: 20px;
}

.portfolio-card-rotated:hover {
  transform: translateY(-12px) rotate(0deg);
}

.portfolio-card-img {
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.portfolio-card-info {
  padding: 24px;
}

.portfolio-card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.portfolio-cat {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--pink);
}

.portfolio-year {
  font-size: 12px;
  color: var(--mid);
}

.portfolio-card-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.portfolio-card-desc {
  font-size: 13px;
  line-height: 1.6;
  color: var(--mid);
}

.portfolio-scroll-hint {
  text-align: center;
  font-size: 12px;
  color: var(--mid);
  letter-spacing: 0.1em;
  padding-bottom: 20px;
}

/* Mockup styles */
.mockup-browser {
  width: 200px;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}

.mockup-bar {
  background: #f0f0f0;
  padding: 8px 12px;
  display: flex;
  gap: 5px;
  align-items: center;
}

.mockup-bar span {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #ddd;
}

.mockup-bar span:nth-child(1) { background: #ff5f57; }
.mockup-bar span:nth-child(2) { background: #febc2e; }
.mockup-bar span:nth-child(3) { background: #28c840; }

.mockup-screen {
  padding: 16px;
  min-height: 80px;
}

.mockup-phone {
  width: 100px;
  background: #1a1a1a;
  border-radius: 16px;
  padding: 12px 8px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

.mockup-phone-screen {
  border-radius: 8px;
  padding: 12px;
  min-height: 80px;
}

/* ─── TESTIMONIALS ───────────────────────────────────────── */
.testimonials-section {
  padding: 140px 0;
  background: var(--pink-pale);
  position: relative;
  overflow: hidden;
}

.testimonials-grain {
  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.03'/%3E%3C/svg%3E");
  pointer-events: none;
}

.testimonials-carousel {
  max-width: 800px;
  margin: 60px auto 0;
  position: relative;
  min-height: 280px;
}

.testimonial-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out);
  pointer-events: none;
}

.testimonial-slide.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.testimonial-quote-mark {
  font-family: var(--font-italic);
  font-size: 120px;
  line-height: 0.6;
  color: var(--pink);
  opacity: 0.3;
  margin-bottom: 24px;
  display: block;
}

.testimonial-text {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 600;
  line-height: 1.4;
  color: var(--dark);
  letter-spacing: -0.02em;
  border: none;
  margin-bottom: 40px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.author-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  color: var(--white-pure);
  flex-shrink: 0;
}

.author-info strong {
  display: block;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--dark);
}

.author-info span {
  font-size: 13px;
  color: var(--mid);
}

.testimonial-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 80px;
}

.testimonial-prev,
.testimonial-next {
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 1.5px solid rgba(0,0,0,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--dark);
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
  cursor: none;
}

.testimonial-prev:hover,
.testimonial-next:hover {
  background: var(--pink);
  border-color: var(--pink);
  color: var(--white-pure);
  transform: scale(1.1);
}

.testimonial-dots {
  display: flex;
  gap: 8px;
  align-items: center;
}

.t-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(0,0,0,0.2);
  transition: background 0.2s, transform 0.2s;
  cursor: none;
}

.t-dot.active {
  background: var(--pink);
  transform: scale(1.4);
}

/* ─── PROCESS ─────────────────────────────────────────────── */
.process-section {
  padding: 140px 0;
  background: var(--white);
}

.process-section .section-title {
  margin-bottom: 80px;
  margin-top: 16px;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.process-step {
  padding: 40px 40px 40px 0;
  position: relative;
  border-top: 2px solid rgba(0,0,0,0.08);
  transition: border-color 0.3s;
}

.process-step:hover { border-color: var(--pink); }

.process-step-num {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--pink);
  letter-spacing: 0.1em;
  margin-bottom: 24px;
}

.process-step h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.process-step p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--mid);
}

.process-step-connector {
  position: absolute;
  top: -2px;
  right: -1px;
  width: 12px; height: 12px;
  background: var(--pink);
  border-radius: 50%;
  transform: translateY(-50%);
  opacity: 0;
  transition: opacity 0.3s;
}

.process-step:hover .process-step-connector { opacity: 1; }

/* ─── BELIEFS ─────────────────────────────────────────────── */
.beliefs-section {
  padding: 140px 0;
  background: var(--yellow);
}

.beliefs-inner {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 100px;
  align-items: start;
}

.beliefs-section .section-label { color: rgba(0,0,0,0.4); }
.beliefs-section .section-title { color: var(--dark); }

.beliefs-sub {
  font-size: 15px;
  color: rgba(0,0,0,0.5);
  margin-top: 20px;
}

.belief-item {
  display: flex;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(0,0,0,0.1);
  transition: transform 0.2s;
}

.belief-item:first-child { border-top: 1px solid rgba(0,0,0,0.1); }
.belief-item:hover { transform: translateX(8px); }

.belief-num {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: rgba(0,0,0,0.3);
  flex-shrink: 0;
  margin-top: 2px;
}

.belief-item p {
  font-size: 17px;
  line-height: 1.6;
  color: var(--dark);
  font-weight: 500;
}

/* ─── CTA BANNER ─────────────────────────────────────────── */
.cta-banner {
  padding: 140px 60px;
  background: var(--pink);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.cta-grain {
  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.05'/%3E%3C/svg%3E");
  pointer-events: none;
}

.cta-inner {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.cta-badge-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
}

.cta-spinning-badge {
  width: 120px;
  height: 120px;
  position: relative;
  animation: badgeSpin 12s linear infinite;
}

.spinning-badge-svg {
  width: 120px;
  height: 120px;
  fill: none;
}

.spinning-badge-svg text {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  fill: rgba(255,255,255,0.7);
  letter-spacing: 2px;
}

.spinning-badge-center {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-size: 24px;
  color: var(--yellow);
  animation: badgeSpin 12s linear infinite reverse;
}

.cta-headline {
  font-family: var(--font-display);
  font-size: clamp(48px, 7vw, 96px);
  font-weight: 900;
  line-height: 1.0;
  color: var(--white-pure);
  letter-spacing: -0.04em;
  margin-bottom: 24px;
}

.cta-yellow { color: var(--yellow); }

.cta-sub {
  font-size: 17px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 48px;
}

/* ─── FOOTER ─────────────────────────────────────────────── */
.site-footer {
  background: var(--dark);
  padding: 100px 0 0;
}

.footer-top {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 60px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.footer-big-text {
  font-family: var(--font-display);
  font-size: clamp(48px, 6vw, 80px);
  font-weight: 900;
  line-height: 1.05;
  color: var(--white);
  letter-spacing: -0.04em;
}

.footer-big-text em {
  font-family: var(--font-italic);
  font-style: italic;
  font-weight: 500;
  color: var(--pink);
}

.footer-links-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 20px;
}

.footer-col a {
  display: block;
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  margin-bottom: 12px;
  transition: color 0.2s, transform 0.2s;
}

.footer-col a:hover {
  color: var(--white);
  transform: translateX(4px);
}

.footer-divider {
  max-width: 1400px;
  margin: 0 auto;
  height: 1px;
  background: rgba(255,255,255,0.08);
  margin-left: 60px;
  margin-right: 60px;
}

.footer-bottom {
  max-width: 1400px;
  margin: 0 auto;
  padding: 32px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 2px;
}

.footer-copy {
  font-size: 13px;
  color: rgba(255,255,255,0.3);
}

.footer-legal {
  display: flex;
  gap: 20px;
}

.footer-legal a {
  font-size: 13px;
  color: rgba(255,255,255,0.3);
  transition: color 0.2s;
}

.footer-legal a:hover { color: var(--white); }

/* ─── REVEAL ANIMATIONS ──────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.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; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ─── MAGNETIC BUTTON ────────────────────────────────────── */
.magnetic-btn {
  transition: transform 0.3s var(--ease-spring), background 0.2s, box-shadow 0.2s;
}

/* ─── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 1200px) {
  .hero-visual { width: 320px; height: 320px; right: 40px; }
  .manifesto-grid { grid-template-columns: 1fr 1fr; gap: 60px; }
  .manifesto-right { display: none; }
  .section-header-row { grid-template-columns: 1fr 1fr; }
  .section-header-row .section-label { grid-column: 1 / -1; }
}

@media (max-width: 1024px) {
  .hero { padding: 120px 40px 160px; }
  .hero-visual { display: none; }
  .hero-headline { font-size: clamp(48px, 8vw, 80px); }
  .section-container { padding: 0 40px; }
  .process-steps { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .beliefs-inner { grid-template-columns: 1fr; gap: 60px; }
  .footer-top { grid-template-columns: 1fr; gap: 60px; }
  .craft-item { grid-template-columns: 60px 1fr 40px; }
  .craft-hover-content { display: none; }
}

@media (max-width: 768px) {
  .nav { padding: 0 24px; }
  .nav-links { display: none; }
  .nav-toggle { display: flex; }

  .hero { padding: 100px 24px 140px; }
  .hero-headline { font-size: clamp(40px, 10vw, 64px); }
  .hero-stats-strip { flex-wrap: wrap; gap: 16px; padding: 20px 24px; }
  .stat-item { padding: 0 16px; }
  .stat-divider { display: none; }

  .section-container { padding: 0 24px; }
  .section-header-row { grid-template-columns: 1fr; }

  .craft-section { padding: 80px 0; }
  .craft-item { grid-template-columns: 50px 1fr 30px; gap: 16px; padding: 20px 0; }
  .craft-name { font-size: 18px; }

  .manifesto-section { padding: 80px 0; }
  .manifesto-grid { grid-template-columns: 1fr; gap: 60px; }
  .manifesto-quote { font-size: clamp(32px, 7vw, 48px); }

  .portfolio-scroll-container { padding: 20px 24px 40px; }
  .portfolio-card { width: 300px; }

  .testimonials-section { padding: 80px 0; }
  .testimonial-text { font-size: clamp(18px, 4vw, 24px); }

  .process-section { padding: 80px 0; }
  .process-steps { grid-template-columns: 1fr; }

  .beliefs-section { padding: 80px 0; }

  .cta-banner { padding: 80px 24px; }
  .cta-headline { font-size: clamp(36px, 8vw, 64px); }

  .footer-top { padding: 0 24px 60px; }
  .footer-links-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-bottom { flex-direction: column; text-align: center; padding: 24px; }
  .footer-divider { margin: 0 24px; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: flex-start; gap: 16px; }
  .hero-scroll-hint { display: none; }
  .footer-links-grid { grid-template-columns: 1fr; }
}