/*
 * =============================================================================
 * SUMTYING STUDIO — Core Stylesheet
 * Handcrafted & Engineered by Sanjarshan Shankar // Lead Engineer
 * Architecture: Zero-Bloat Pure CSS, Hardware-Accelerated Transforms
 * Website: https://sumtying.com/ | Contact: hello@sumtying.com
 * =============================================================================
 */

:root {
  --bg: #ebe5da;
  --surface: #ffffff;
  --text: #1c1b18;
  --border: #121212;
  --amber: #ffb800;
  --red: #ff3355;
  --orange: #ff7700;
  --yellow: #ffd000;
  --yellow-light: #ffdf00;
  --green: #00e5a3;
  --lime: #bfff00;
  --cyan: #00f0ff;
  --blue: #3b82f6;
  --purple: #8b5cf6;
  --pink: #ff2a85;
  --peach: #ff9f43;
  --teal: #00d2d3;
  --realm-bg: #ffd000;
  --shadow: 5px 5px 0px #121212;
  --shadow-lg: 7px 7px 0px #121212;
  --shadow-hover: 9px 9px 0px #121212;
  --font-main: 'Plus Jakarta Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-mono: 'Plus Jakarta Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

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

html {
  scroll-behavior: auto;
  width: 100%;
}

html.no-scroll, body.no-scroll {
  overflow: hidden !important;
  height: 100vh !important;
  touch-action: none;
}

body {
  width: 100%;
  min-height: 100vh;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-main);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  line-height: 1.5;
  overflow-x: clip;
}

::-webkit-scrollbar {
  display: none !important;
  width: 0 !important;
}

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

button, input, textarea, select {
  font-family: var(--font-main);
}

/* ==========================================================================
   STICKER BADGES / PALETTES
   ========================================================================== */
.sticker {
  font-family: var(--font-main);
  font-weight: 800;
  font-size: 11px;
  text-transform: uppercase;
  border: 2px solid var(--border);
  box-shadow: 2.5px 2.5px 0px #121212;
  padding: 4px 10px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.st-green-1  { background: var(--green);  color: var(--text); }
.st-yellow-1 { background: var(--yellow); color: var(--text); }
.st-cyan-1   { background: var(--cyan);   color: var(--text); }
.st-purple-1 { background: var(--purple); color: #ffffff; }
.st-red-1    { background: var(--red);    color: #ffffff; }
.st-orange-1 { background: var(--orange); color: #ffffff; }

/* ==========================================================================
   INITIAL INTRO PEEL-AWAY ANIMATION (-27deg -> 0deg FALL -> ZOOM OUT ON BLACK BG)
   ========================================================================== */
#intro-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: #000000;
  z-index: 9999999;
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: all;
  animation: introOverlayFade 1.85s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.intro-badge {
  font-family: var(--font-main);
  font-weight: 900;
  font-size: clamp(28px, 4.5vw, 48px);
  background: #ffffff;
  color: #121212;
  border: 4.5px solid #121212;
  box-shadow: 8px 8px 0px #121212;
  padding: 18px 52px;
  border-radius: 22px;
  display: inline-flex;
  align-items: center;
  letter-spacing: -0.03em;
  will-change: transform, opacity;
  animation: introBadgeFallZoom 1.75s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

@keyframes introBadgeFallZoom {
  0% {
    transform: rotate(-27deg) scale(0.96) translateY(-15px);
    opacity: 0;
  }
  12% {
    transform: rotate(-27deg) scale(1) translateY(0);
    opacity: 1;
  }
  38% {
    transform: rotate(1deg) scale(1.05) translateY(0);
    opacity: 1;
  }
  48% {
    transform: rotate(0deg) scale(1) translateY(0);
    opacity: 1;
  }
  72% {
    transform: rotate(0deg) scale(1) translateY(0);
    opacity: 1;
  }
  100% {
    transform: rotate(0deg) scale(0.08) translateY(0);
    opacity: 0;
  }
}

@keyframes introOverlayFade {
  0%, 72% {
    opacity: 1;
    pointer-events: all;
  }
  100% {
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
  }
}

/* ==========================================================================
   SMART AUTO-HIDING HEADER
   ========================================================================== */
.header-bar-wrap {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000000;
  width: 100%;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s ease, transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, opacity;
}

.header-bar-wrap.header-ready {
  opacity: 1;
}

.header-bar {
  width: 100%;
  max-width: 1040px;
  margin: 0 auto;
  padding: 20px 4vw 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  background: transparent;
  pointer-events: auto;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.header-bar.header-hidden {
  transform: translateY(-140%);
}

.brand-badge {
  font-family: var(--font-main);
  font-weight: 800;
  font-size: clamp(13px, 2vw, 15px);
  background: #ffffff;
  color: var(--text);
  border: 2.5px solid var(--border);
  box-shadow: 3.5px 3.5px 0px #121212;
  padding: 7px 16px;
  border-radius: 10px;
  transform: rotate(-2deg);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  animation: floatSticker 4s ease-in-out infinite;
  --rot: -2deg;
}
.brand-badge:hover {
  transform: scale(1.1) rotate(0deg) !important;
  box-shadow: 5px 5px 0px #121212;
}

.contact-nav-btn {
  font-family: var(--font-main);
  font-weight: 800;
  font-size: clamp(11px, 1.5vw, 12px);
  text-transform: uppercase;
  background: #121212;
  color: #ffffff;
  border: 2.5px solid var(--border);
  box-shadow: 3.5px 3.5px 0px #121212;
  padding: 7px 16px;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  animation: floatSticker 4s ease-in-out infinite;
  --rot: 1.5deg;
  animation-delay: 0.8s;
}
.contact-nav-btn:hover {
  transform: scale(1.1) rotate(-1deg) !important;
  box-shadow: 5px 5px 0px #121212;
}

/* ==========================================================================
   SECTION 01: HERO CANVAS
   ========================================================================== */
.hero-sticker-board-frame {
  min-height: 100vh;
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 40px 0;
  overflow: hidden;
  background: var(--bg);
}

.hero-center-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  position: relative;
  z-index: 35;
  max-width: 760px;
  margin: auto;
}

.hero-h1 {
  font-family: var(--font-main);
  font-weight: 800;
  font-size: clamp(34px, 5.8vw, 76px);
  line-height: 1.02;
  letter-spacing: -0.04em;
  color: var(--text);
  text-transform: uppercase;
}

.hero-h1 .highlight {
  background: var(--yellow);
  color: #121212 !important;
  border: 3px solid var(--border);
  box-shadow: 5px 5px 0px #121212;
  padding: 0 12px;
  display: inline-block;
  transform: rotate(-1.5deg);
  transition: transform 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.25s ease, background-color 0.25s ease;
  cursor: pointer;
  position: relative;
  z-index: 2;
}
.hero-h1 .highlight:hover {
  transform: scale(1.22) rotate(0deg);
  box-shadow: 8px 8px 0px #121212;
}

.hero-h1 .highlight.word-pop {
  animation: highlightPop 0.28s cubic-bezier(0.175, 0.885, 0.32, 1.3) forwards;
}

@keyframes highlightPop {
  0% { transform: scale(0.92) rotate(-3deg); }
  50% { transform: scale(1.16) rotate(1.5deg); }
  100% { transform: scale(1) rotate(-1.5deg); }
}

/* TACTILE RETRO CALCULATOR BUTTON */
.retro-calc-btn {
  font-family: var(--font-main);
  font-weight: 800;
  font-size: clamp(13px, 2vw, 15px);
  text-transform: uppercase;
  background: var(--yellow);
  color: var(--text);
  border: 3px solid var(--border);
  box-shadow: 5px 5px 0px #121212;
  padding: 14px 34px;
  border-radius: 14px;
  cursor: pointer;
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  letter-spacing: 0.02em;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease, color 0.15s ease;
  transform: rotate(-1deg);
  position: relative;
  user-select: none;
}
.retro-calc-btn:hover {
  transform: translate(2px, 2px) rotate(0deg);
  box-shadow: 3px 3px 0px #121212;
  background: #121212;
  color: #ffffff;
}
.retro-calc-btn:active, .retro-calc-btn.btn-pressed {
  transform: translate(5px, 5px) rotate(0deg) scale(0.97) !important;
  box-shadow: 0px 0px 0px #121212 !important;
  background: #121212 !important;
  color: #ffffff !important;
}

/* 3D OBJECT PROPS */
.hero-obj-sticker {
  position: absolute;
  pointer-events: auto;
  user-select: none;
  z-index: 20;
  filter: drop-shadow(7px 14px 0px rgba(0,0,0,0.24));
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.hero-obj-sticker:hover {
  transform: scale(1.25) rotate(4deg) !important;
  z-index: 60 !important;
}

.obj-calculator { top: 90px; left: 6vw; width: clamp(140px, 14vw, 195px); animation: floatProp 5s ease-in-out infinite; }
.obj-ruler      { top: 85px; right: 5vw; width: clamp(150px, 15vw, 210px); animation: floatProp 6s ease-in-out infinite 0.4s; }
.obj-pen        { top: 85px; left: 42%; width: clamp(130px, 13vw, 175px); animation: floatProp 5.2s ease-in-out infinite 0.8s; }
.obj-caliper    { top: 645px; left: 42.5%; width: clamp(140px, 14vw, 190px); animation: floatProp 5.4s ease-in-out infinite 1.1s; }
.obj-mouse      { top: 210px; right: 4vw; width: clamp(115px, 11.5vw, 160px); animation: floatProp 5.1s ease-in-out infinite 1.3s; }
.obj-screwdriver{ top: 318px; left: 22.5vw; width: clamp(110px, 11vw, 155px); animation: floatProp 5.1s ease-in-out infinite 0.5s; transform: rotate(-15deg); }
.obj-keyboard   { top: 520px; left: 24vw; width: clamp(125px, 12vw, 170px); animation: floatProp 5.2s ease-in-out infinite 0.9s; }
.obj-book       { top: 515px; right: 24vw; width: clamp(130px, 12.5vw, 175px); animation: floatProp 4.9s ease-in-out infinite 1.4s; }
.obj-ic         { top: 450px; right: 3vw; width: clamp(125px, 12vw, 170px); animation: floatProp 4.8s ease-in-out infinite 1.6s; }
.obj-breadboard { bottom: 20px; left: 3vw; width: clamp(155px, 15.5vw, 215px); animation: floatProp 5.5s ease-in-out infinite 1.2s; }
.obj-multimeter { bottom: 20px; right: 3vw; width: clamp(140px, 14vw, 190px); animation: floatProp 4.5s ease-in-out infinite 0.7s; }

/* SKILL STICKER PILLS */
.scattered-pill {
  position: absolute;
  font-family: var(--font-main);
  font-weight: 800;
  font-size: clamp(13.5px, 1.5vw, 16.5px);
  text-transform: uppercase;
  border: 3.5px solid var(--border);
  box-shadow: 6px 6px 0px #121212;
  padding: 11px 24px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  z-index: 25;
  user-select: none;
  transition: transform 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.2s ease;
  animation: floatSticker 4.5s ease-in-out infinite;
  white-space: nowrap;
}
.scattered-pill:hover {
  transform: scale(1.28) rotate(3deg) !important;
  box-shadow: 8.5px 8.5px 0px #121212 !important;
  z-index: 60 !important;
}

.pill-1  { top: 125px; left: 21vw; background: var(--yellow); color: var(--text); --rot: -8deg; }
.pill-4  { top: 95px; left: 35vw; background: var(--cyan); color: var(--text); --rot: 5deg; animation-delay: 0.9s; }
.pill-3  { top: 95px; right: 33vw; background: var(--purple); color: #ffffff; --rot: -7deg; animation-delay: 0.6s; }
.pill-2  { top: 130px; right: 19vw; background: var(--orange); color: #ffffff; --rot: 8deg; animation-delay: 0.3s; }
.pill-5  { top: 265px; left: 15vw; background: var(--pink); color: #ffffff; --rot: -12deg; animation-delay: 1.2s; }
.pill-6  { top: 255px; right: 15vw; background: var(--green); color: var(--text); --rot: 14deg; animation-delay: 1.5s; }
.pill-11 { top: 360px; left: 1.5vw; background: var(--teal); color: var(--text); --rot: 9deg; animation-delay: 3s; }
.pill-12 { top: 365px; right: 5vw; background: var(--amber); color: var(--text); --rot: -10deg; animation-delay: 3.3s; }
.pill-7  { top: 490px; left: 4vw; background: var(--red); color: #ffffff; --rot: -10deg; animation-delay: 1.8s; }
.pill-8  { top: 450px; right: 16vw; background: var(--lime); color: var(--text); --rot: 10deg; animation-delay: 2.1s; }
.pill-9  { bottom: 40px; left: 25vw; background: var(--blue); color: #ffffff; --rot: 6deg; animation-delay: 2.4s; }
.pill-10 { bottom: 40px; right: 25vw; background: var(--peach); color: var(--text); --rot: -7deg; animation-delay: 2.7s; }

@keyframes floatSticker {
  0%, 100% { transform: translateY(0px) rotate(var(--rot, -1.5deg)); }
  50% { transform: translateY(-7px) rotate(calc(var(--rot, -1.5deg) + 2deg)); }
}

@keyframes floatProp {
  0%, 100% { transform: translateY(0px) rotate(-4deg); }
  50% { transform: translateY(-8px) rotate(-1deg); }
}



/* ==========================================================================
   PURE ORGANIC WAVE DIVIDER
   ========================================================================== */
.hero-wave-divider-wrap {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  line-height: 0;
  z-index: 10;
  background: var(--bg);
}

.hero-wave-divider-wrap svg {
  display: block;
  width: 100%;
  height: clamp(75px, 9vw, 130px);
}

/* ==========================================================================
   COLOR DROP CURTAIN (SIGNATURE RETRO YELLOW #ffd000)
   ========================================================================== */
#color-drop-curtain {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #ffd000;
  z-index: 9999999;
  transform: translateY(calc(-100% - 75px));
  pointer-events: none;
  border: none;
  box-sizing: border-box;
  will-change: transform, opacity;
}

.curtain-dripping-edge {
  position: absolute;
  top: 100%;
  margin-top: -2px;
  left: 0;
  width: 100vw;
  height: clamp(65px, 8.5vw, 110px);
  display: block;
}

.curtain-pull-edge {
  position: absolute;
  bottom: 100%;
  margin-bottom: -2px;
  left: 0;
  width: 100vw;
  height: clamp(65px, 8.5vw, 110px);
  display: block;
}

.section-fade-in-reveal {
  animation: contentFadeReveal 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes contentFadeReveal {
  0% {
    opacity: 0;
    transform: translateY(30px) scale(0.97);
  }
  100% {
    opacity: 1;
    transform: translateY(0px) scale(1);
  }
}

/* ==========================================================================
   LOWER STUDIO REALM
   ========================================================================== */
.studio-realm {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: #ffd000;
  z-index: 15;
  padding: 0;
}

.studio-container {
  width: 100%;
  margin: 0 auto;
  padding: 0;
  display: flex;
  flex-direction: column;
}

/* ==========================================================================
   SCROLL-DRIVEN MASSIVE KINETIC REEL BILLBOARD
   ========================================================================== */
.reel-scroll-stage {
  position: relative;
  width: 100vw;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  height: 480vh;
  background: #ffd000;
  margin-bottom: 0;
  padding-bottom: 0;
  overflow: visible;
}

.reel-sticky-wrap {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  height: 100vh;
  height: 100dvh;
  width: 100vw;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #ffd000;
  z-index: 20;
}

.reel-billboard-card {
  width: clamp(340px, 86vw, 1060px);
  height: clamp(380px, 58vh, 520px);
  background: #ffffff;
  border: 4px solid var(--border);
  box-shadow: 10px 10px 0px #121212;
  border-radius: 32px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

.blue-splash-overlay {
  position: absolute;
  inset: 0;
  width: 100vw;
  height: 100vh;
  background-color: #ffffff;
  background-image: radial-gradient(#00d2ea 2.2px, transparent 2.2px);
  background-size: 24px 24px;
  pointer-events: none;
  z-index: 100;
  clip-path: circle(0% at 50% 50%);
  will-change: clip-path, background-color;
  transition: background-color 0.35s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 40px 20px;
}

.blue-splash-overlay.interactive {
  pointer-events: auto;
}

/* TRUE BLACK SCREEN ON BLACK MODE */
.blue-splash-overlay.black-mode {
  background-color: #000000 !important;
  background-image: none !important;
}

/* ==========================================================================
   PLAYFUL MULTI-COLORED KIDDISH DOODLES REALM (ALL BRAND COLORS)
   ========================================================================== */
.multi-doodles-realm {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 5;
  overflow: hidden;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.black-mode .multi-doodles-realm {
  opacity: 1;
}

.kiddish-doodle {
  position: absolute;
  pointer-events: auto;
  user-select: none;
  z-index: 8;
  opacity: 0.92;
  transition: transform 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275), filter 0.2s ease;
  animation: floatDoodle 5.5s ease-in-out infinite;
  animation-delay: var(--d-delay, 0s);
  will-change: transform;
}

.kiddish-doodle:hover {
  transform: scale(1.25) rotate(calc(var(--d-rot, 0deg) + 6deg)) !important;
  z-index: 40 !important;
  opacity: 1;
}

/* Specific Brand Color Glows */
.d-yellow { filter: drop-shadow(0 0 8px rgba(255, 208, 0, 0.6)); }
.d-cyan   { filter: drop-shadow(0 0 8px rgba(0, 240, 255, 0.6)); }
.d-pink   { filter: drop-shadow(0 0 8px rgba(255, 42, 133, 0.6)); }
.d-lime   { filter: drop-shadow(0 0 8px rgba(191, 255, 0, 0.6)); }
.d-purple { filter: drop-shadow(0 0 8px rgba(139, 92, 246, 0.6)); }
.d-orange { filter: drop-shadow(0 0 8px rgba(255, 119, 0, 0.6)); }
.d-green  { filter: drop-shadow(0 0 8px rgba(0, 229, 163, 0.6)); }
.d-white  { filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.6)); }

@keyframes floatDoodle {
  0%, 100% { transform: translateY(0px) rotate(var(--d-rot, 0deg)); }
  50% { transform: translateY(-7px) rotate(calc(var(--d-rot, 0deg) + 3deg)); }
}

.splash-inner-realm {
  width: 100%;
  max-width: 1040px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin: auto;
  z-index: 10;
  transition: opacity 0.35s ease, transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.reel-viewport {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.reel-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: stretch;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transform: translateY(60px) scale(0.94);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.35s ease;
}

.reel-slide.active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0px) scale(1);
  z-index: 10;
}

.reel-slide.slide-past {
  opacity: 0;
  pointer-events: none;
  transform: translateY(-60px) scale(0.94);
  z-index: 2;
}

.reel-slide-inner {
  width: 100%;
  height: 100%;
  padding: clamp(24px, 4vw, 48px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-sizing: border-box;
}

/* 5 DISTINCT NON-YELLOW HALFTONE DOT PATTERNS */
.bg-dots-green {
  background-color: #f0fdf8;
  background-image: radial-gradient(#00e5a3 22%, transparent 22%);
  background-size: 16px 16px;
}
.bg-dots-cyan {
  background-color: #f0fcff;
  background-image: radial-gradient(#00f0ff 22%, transparent 22%);
  background-size: 16px 16px;
}
.bg-dots-pink {
  background-color: #fff2f7;
  background-image: radial-gradient(#ff2a85 22%, transparent 22%);
  background-size: 16px 16px;
}
.bg-dots-purple {
  background-color: #f6f2ff;
  background-image: radial-gradient(#8b5cf6 22%, transparent 22%);
  background-size: 16px 16px;
}
.bg-dots-orange {
  background-color: #fff6ee;
  background-image: radial-gradient(#ff7700 22%, transparent 22%);
  background-size: 16px 16px;
}

.reel-h2 {
  font-family: var(--font-main);
  font-weight: 800;
  font-size: clamp(26px, 4.4vw, 56px);
  line-height: 1.1;
  letter-spacing: -0.035em;
  text-transform: uppercase;
  color: #121212;
  margin: 0;
}

.reel-hilite {
  display: inline-block;
  padding: 2px 14px 4px;
  border: 3.5px solid #121212;
  border-radius: 12px;
  box-shadow: 4px 4px 0px #121212;
  margin-top: 8px;
}

.hilite-green  { background: #00e5a3; color: #121212; transform: rotate(-1.5deg); }
.hilite-cyan   { background: #00f0ff; color: #121212; transform: rotate(1.8deg); }
.hilite-pink   { background: #ff2a85; color: #ffffff; transform: rotate(-1.8deg); }
.hilite-purple { background: #8b5cf6; color: #ffffff; transform: rotate(1.5deg); }
.hilite-orange { background: #ff7700; color: #ffffff; transform: rotate(-1.5deg); }

/* ==========================================================================
   5 ROUND CYAN NUMBERED COINS & EXPANSION SHOWCASE
   ========================================================================== */
.cyan-coins-dock {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(14px, 3vw, 26px);
  width: 100%;
  position: relative;
  padding: 10px 0;
  opacity: 0;
  transform: translateY(-24px) scale(0.95);
  pointer-events: none;
  transition: opacity 0.35s ease, transform 0.38s cubic-bezier(0.175, 0.885, 0.32, 1.25);
}

.cyan-coins-dock.coins-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0px) scale(1);
}

.cyan-coins-dock.coins-exit {
  opacity: 0 !important;
  transform: translateY(-40px) scale(0.7) !important;
  pointer-events: none !important;
  transition: opacity 0.3s ease, transform 0.35s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.cyan-coin {
  width: clamp(70px, 9vw, 92px);
  height: clamp(70px, 9vw, 92px);
  border-radius: 50%;
  background: #00f0ff;
  border: 4px solid #121212;
  box-shadow: 5px 5px 0px #121212;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
  user-select: none;
  opacity: 0;
  transform: translateY(-50vh) rotate(-180deg) scale(0.6);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.25), 
              box-shadow 0.25s ease, 
              background 0.2s ease,
              outline 0.2s ease;
}

.coins-visible .cyan-coin {
  animation: coinDropFromTop 0.65s cubic-bezier(0.175, 0.885, 0.32, 1.2) forwards;
  animation-delay: var(--fall-delay, 0s);
}

.cyan-coin .coin-number {
  font-family: var(--font-main);
  font-weight: 900;
  font-size: clamp(32px, 4vw, 42px);
  color: #121212;
  line-height: 1;
  letter-spacing: -0.04em;
  transition: transform 0.2s ease;
}

.cyan-coin:not(.active):hover {
  transform: translateY(-8px) scale(1.15) rotate(0deg) !important;
  background: #66f7ff;
  box-shadow: 7px 9px 0px #121212;
  z-index: 30;
}

.cyan-coin.active {
  transform: translateY(-10px) scale(1.22) rotate(0deg) !important;
  background: #00f0ff;
  outline: 4.5px solid #121212;
  outline-offset: 3.5px;
  box-shadow: 6px 9px 0px #121212;
  z-index: 40;
}

/* DOCKED CYAN EXPANSION CARD */
.cyan-card-shell {
  width: 100%;
  max-width: 820px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(24px) scale(0.94);
  transition: opacity 0.35s ease, transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.28);
}

.expanded-open .cyan-card-shell {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0px) scale(1);
}

.cyan-card-shell.card-exit {
  opacity: 0 !important;
  transform: translateY(40px) scale(0.8) !important;
  pointer-events: none !important;
  transition: opacity 0.3s ease, transform 0.35s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.cyan-card {
  background: #00f0ff;
  border: 4px solid #121212;
  box-shadow: 8px 8px 0px #121212;
  border-radius: 26px;
  padding: clamp(22px, 3vw, 32px);
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  transition: all 0.25s ease;
}

.cyan-card-top {
  display: flex;
  align-items: center;
  gap: 14px;
}

.coin-num-badge {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #121212;
  color: #00f0ff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-main);
  font-weight: 900;
  font-size: 22px;
  flex-shrink: 0;
  box-shadow: 2.5px 2.5px 0px rgba(0,0,0,0.25);
}

.cyan-card .exp-title {
  font-family: var(--font-main);
  font-weight: 900;
  font-size: clamp(20px, 2.5vw, 26px);
  color: #121212;
  margin: 0;
  letter-spacing: -0.03em;
}

.cyan-card .exp-bullets {
  list-style: none;
  padding: 0;
  margin: 2px 0 6px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cyan-card .exp-bullets li {
  font-family: var(--font-main);
  font-size: clamp(14px, 1.45vw, 16px);
  font-weight: 700;
  color: #121212;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.4;
}

.cyan-card .exp-bullets li::before {
  content: "•";
  color: #121212;
  font-size: 22px;
  line-height: 1;
  font-weight: 900;
}

.cyan-card .expansion-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  padding-top: 4px;
}

.cyan-card .exp-link-btn {
  font-family: var(--font-main);
  font-weight: 900;
  font-size: 14px;
  text-decoration: none;
  padding: 10px 22px;
  border-radius: 12px;
  border: 3px solid #121212;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #121212;
  color: #00f0ff;
  box-shadow: 4px 4px 0px rgba(0,0,0,0.3);
  transition: all 0.18s ease;
}

.cyan-card .exp-link-btn:hover {
  background: #ffffff;
  color: #121212;
  transform: translateY(-2px);
  box-shadow: 6px 6px 0px #121212;
}

@keyframes coinDropFromTop {
  0% {
    transform: translateY(-50vh) rotate(-180deg) scale(0.6);
    opacity: 0;
  }
  60% {
    transform: translateY(10px) rotate(8deg) scale(1.06);
    opacity: 1;
  }
  80% {
    transform: translateY(-5px) rotate(-3deg) scale(0.98);
    opacity: 1;
  }
  100% {
    transform: translateY(0px) rotate(0deg) scale(1);
    opacity: 1;
  }
}

/* ==========================================================================
   CONTACT STICKY NOTE CARD
   ========================================================================== */
.contact-sticky-shell {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(20px, 4vw, 40px);
  pointer-events: none;
  opacity: 0;
  transform: scale(0.92) translateY(24px);
  transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1), 
              transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.25);
  z-index: 50;
}

.contact-active .contact-sticky-shell {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1) translateY(0);
}

.contact-active .splash-inner-realm {
  opacity: 0;
  pointer-events: none;
  transform: scale(0.9) translateY(-30px);
}

/* TRUE BLACK CONTACT CARD FLOATING ABOVE DOODLE WALL */
.contact-sticky-note {
  background: rgba(0, 0, 0, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1.5px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 28px 65px rgba(0, 0, 0, 0.95), 0 0 40px rgba(0, 0, 0, 0.8);
  border-radius: 24px;
  padding: clamp(28px, 4.5vw, 44px);
  max-width: 920px;
  width: 100%;
  position: relative;
  z-index: 10;
}

.sticky-inner-container {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: clamp(28px, 4.5vw, 56px);
  flex-wrap: wrap;
}

.sticky-left-col {
  flex: 1;
  min-width: min(100%, 320px);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.sticky-brand-title {
  font-family: var(--font-main);
  font-weight: 900;
  font-size: clamp(24px, 3.5vw, 36px);
  color: #ffffff;
  margin: 0;
  letter-spacing: -0.03em;
  line-height: 1.08;
}

.sticky-email-box {
  background: #08090c;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 12px;
  padding: 10px 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  max-width: 460px;
  transition: border-color 0.18s ease;
}
.sticky-email-box:hover {
  border-color: rgba(255, 255, 255, 0.4);
}

.sticky-email-txt {
  font-family: var(--font-main);
  font-weight: 700;
  font-size: clamp(14px, 1.6vw, 17px);
  color: #ffffff;
  letter-spacing: -0.01em;
  word-break: break-all;
}

.sticky-copy-btn {
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  background: #00f0ff;
  color: #121212;
  border: none;
  border-radius: 8px;
  padding: 8px 16px;
  cursor: pointer;
  transition: background 0.18s ease, transform 0.15s ease;
  white-space: nowrap;
}
.sticky-copy-btn:hover {
  background: #ffffff;
  transform: translateY(-1px);
}

/* DIRECT REDIRECT PURE ICON BUTTONS (NO WORDING) */
.contact-icons-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 2px;
}

.contact-icon-btn {
  width: 44px;
  height: 44px;
  border-radius: 11px;
  background: #0a0c10;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease, color 0.18s ease, box-shadow 0.18s ease;
}

.email-icon-btn:hover {
  border-color: #00f0ff;
  color: #00f0ff;
  background: rgba(0, 240, 255, 0.12);
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(0, 240, 255, 0.3);
}

.reddit-icon-btn:hover {
  border-color: #ff4500;
  color: #ff4500;
  background: rgba(255, 69, 0, 0.12);
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(255, 69, 0, 0.3);
}

.android-icon-btn:hover {
  border-color: var(--green);
  color: var(--green);
  background: rgba(0, 229, 163, 0.14);
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(0, 229, 163, 0.35);
}

/* RIGHT COLUMN */
.sticky-right-col {
  display: flex;
  flex-direction: column;
  gap: 22px;
  min-width: 180px;
}

.sticky-links-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sticky-group-title {
  font-family: var(--font-main);
  font-weight: 800;
  font-size: 11px;
  color: #00f0ff;
  letter-spacing: 0.08em;
}

.sticky-modal-trigger {
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 15px;
  color: #e2e8f0;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  text-align: left;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.15s, transform 0.15s;
}
.sticky-modal-trigger:hover {
  color: #00f0ff;
  transform: translateX(4px);
}

.sticky-bottom-meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.sticky-copyright-txt {
  font-family: var(--font-main);
  font-weight: 600;
  font-size: 11px;
  color: #8892b0;
  letter-spacing: 0.02em;
}

/* ==========================================================================
   IN-PLACE STICKY NOTE MODAL POPUP (NO REDIRECTS)
   ========================================================================== */
.sticky-modal-backdrop {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 10000000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.sticky-modal-backdrop.modal-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.sticky-modal-card {
  width: 100%;
  max-width: 640px;
  border-radius: 24px;
  padding: clamp(28px, 4.5vw, 44px);
  border: 4px solid #121212;
  box-shadow: 10px 10px 0px #121212;
  transform: rotate(-1.5deg) scale(0.92);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.28);
  position: relative;
  color: #121212;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.modal-open .sticky-modal-card {
  transform: rotate(-1deg) scale(1);
}

.modal-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.modal-badge-tag {
  font-family: var(--font-main);
  font-weight: 900;
  font-size: 11px;
  text-transform: uppercase;
  background: #121212;
  color: #ffffff;
  padding: 5px 12px;
  border-radius: 6px;
  letter-spacing: 0.05em;
}

.modal-close-btn {
  font-family: var(--font-main);
  font-weight: 900;
  font-size: 12px;
  text-transform: uppercase;
  background: #121212;
  color: #ffffff;
  border: 2px solid #121212;
  padding: 6px 14px;
  border-radius: 8px;
  cursor: pointer;
  box-shadow: 2px 2px 0px rgba(0,0,0,0.3);
  transition: transform 0.15s ease, background 0.15s ease;
}
.modal-close-btn:hover {
  transform: scale(1.06);
  background: #ffffff;
  color: #121212;
}

.modal-huge-title {
  font-family: var(--font-main);
  font-weight: 900;
  font-size: clamp(26px, 4vw, 36px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  margin: 0;
}

.modal-body-content {
  font-family: var(--font-main);
  font-size: clamp(16px, 1.8vw, 19px);
  font-weight: 700;
  line-height: 1.5;
}

.modal-body-content p {
  margin-bottom: 12px;
}

/* Unique Sticky Note Vibrant Colors & Distinct Tilts (+ / 0 / -) */
.sticky-modal-card.theme-privacy {
  background: #ffd000;
  color: #121212;
}
.modal-open .sticky-modal-card.theme-privacy {
  transform: rotate(2.5deg) scale(1);
}

.sticky-modal-card.theme-legal {
  background: #00f0ff;
  color: #121212;
}
.modal-open .sticky-modal-card.theme-legal {
  transform: rotate(0deg) scale(1);
}

.sticky-modal-card.theme-about {
  background: #ff2a85;
  color: #ffffff;
}
.modal-open .sticky-modal-card.theme-about {
  transform: rotate(-2.5deg) scale(1);
}

.sticky-modal-card.theme-about .modal-badge-tag {
  background: #ffffff;
  color: #121212;
}

.sticky-modal-card.theme-about .modal-close-btn {
  background: #ffffff;
  color: #121212;
}
.sticky-modal-card.theme-about .modal-close-btn:hover {
  background: #121212;
  color: #ffffff;
}

/* ==========================================================================
   RESPONSIVE TABLET & INTERMEDIATE SCREENS (601px - 1050px)
   ========================================================================== */
@media (min-width: 601px) and (max-width: 1050px) {
  .hero-sticker-board-frame .hero-obj-sticker {
    display: none !important;
  }
  .hero-sticker-board-frame .scattered-pill {
    display: none !important;
  }

  .hero-h1 {
    font-size: clamp(32px, 5.2vw, 54px);
  }

  .reel-billboard-card {
    width: clamp(320px, 88vw, 840px);
    height: clamp(340px, 50vh, 460px);
  }
  .cyan-coins-dock {
    gap: clamp(8px, 2vw, 16px);
  }
  .cyan-coin {
    width: clamp(54px, 9vw, 72px);
    height: clamp(54px, 9vw, 72px);
  }
  .cyan-card {
    padding: 22px;
  }
}

/* ==========================================================================
   SEAMLESS PIXEL-PERFECT MOBILE LAYOUT (<= 600px)
   ========================================================================== */
@media (max-width: 600px) {
  html, body {
    overflow-x: clip;
    width: 100%;
  }

  /* 50% MORE COMPACT INTRO LOADING BADGE */
  .intro-badge {
    font-size: 20px;
    padding: 10px 24px;
    border-radius: 12px;
    border: 3px solid #121212;
    box-shadow: 4px 4px 0px #121212;
    letter-spacing: -0.02em;
  }

  .header-bar {
    padding: max(14px, env(safe-area-inset-top, 14px)) 4vw 0;
  }

  .brand-badge {
    font-size: 12.5px;
    padding: 5px 12px;
    border-width: 2px;
    border-radius: 8px;
    box-shadow: 2.5px 2.5px 0px #121212;
  }

  .contact-nav-btn {
    font-size: 11px;
    padding: 5px 12px;
    border-width: 2px;
    border-radius: 8px;
    box-shadow: 2.5px 2.5px 0px #121212;
  }

  .studio-container {
    padding: 0;
  }

  /* SECTION 01: MOBILE HERO CANVAS (TOP & BOTTOM ORGANIC DESK CLUSTERS) */
  .hero-sticker-board-frame {
    min-height: 100vh;
    min-height: 100dvh;
    width: 100vw;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
  }

  .hero-center-box {
    width: 100%;
    max-width: 290px;
    margin: auto;
    z-index: 45;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    padding: 0 10px;
  }

  .hero-h1 {
    font-size: clamp(21px, 6vw, 27px);
    line-height: 1.15;
    letter-spacing: -0.035em;
    text-align: center;
    color: var(--text);
  }

  .hero-h1 .highlight {
    padding: 0 6px;
    border-width: 2px;
    box-shadow: 3px 3px 0px #121212;
    margin: 2px 0;
  }

  .retro-calc-btn {
    font-size: 11.5px;
    padding: 10px 20px;
    border-radius: 10px;
    border-width: 2px;
    box-shadow: 3px 3px 0px #121212;
    gap: 6px;
    letter-spacing: 0.02em;
    white-space: nowrap;
  }

  /* SECTION 01: MOBILE HERO CANVAS (CLEAN HERO WITHOUT FLOATING STICKERS/DOODLES) */
  .hero-sticker-board-frame .hero-obj-sticker {
    display: none !important;
  }

  .hero-sticker-board-frame .scattered-pill {
    display: none !important;
  }

  /* FULL-WIDTH PURE ORGANIC WAVE DIVIDER */
  .hero-wave-divider-wrap {
    width: 100%;
    position: relative;
    left: 0;
    right: 0;
    margin-left: 0;
    margin-right: 0;
    line-height: 0;
    z-index: 10;
    background: var(--bg);
  }
  .hero-wave-divider-wrap svg {
    display: block;
    width: 100%;
    height: 50px;
  }

  /* SECTION 02: MOBILE REEL BILLBOARD CARD (SLIGHTLY SMALLER & SNUGGER) */
  .reel-sticky-wrap {
    height: 100vh;
    height: 100dvh;
    width: 100vw;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 16px;
    box-sizing: border-box;
  }

  .reel-billboard-card {
    width: min(calc(100vw - 44px), 325px);
    height: clamp(235px, 38vh, 275px);
    border-radius: 18px;
    border: 3px solid #121212;
    box-shadow: 5px 5px 0px #121212;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff !important;
  }

  .reel-viewport {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
  }

  .reel-slide {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .reel-slide-inner {
    width: 100%;
    height: 100%;
    padding: 16px 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-sizing: border-box;
  }

  .reel-h2 {
    font-size: clamp(16px, 4.4vw, 20.5px);
    line-height: 1.2;
    letter-spacing: -0.03em;
    text-align: center;
    margin: 0;
    width: 100%;
  }

  .reel-hilite {
    display: inline-block;
    font-size: 0.88em;
    padding: 2px 8px 3px;
    border: 2px solid #121212;
    border-radius: 7px;
    box-shadow: 2.5px 2.5px 0px #121212;
    margin-top: 6px;
  }

  /* SECTION 03: MOBILE COINS DOCK & PROJECT EXPANSION CARD (SLIGHTLY SMALLER) */
  .blue-splash-overlay {
    height: 100vh;
    height: 100dvh;
    padding: 16px 12px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .splash-inner-realm {
    gap: 10px;
    width: 100%;
    max-width: 325px;
    margin: auto;
  }

  .cyan-coins-dock {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: clamp(5px, 1.8vw, 8px);
    width: 100%;
    padding: 2px 0;
  }

  .cyan-coin {
    width: clamp(42px, 11vw, 48px);
    height: clamp(42px, 11vw, 48px);
    border-radius: 50%;
    border: 2.5px solid #121212;
    box-shadow: 3px 3px 0px #121212;
    flex-shrink: 0;
  }

  .cyan-coin .coin-number {
    font-size: clamp(19px, 5vw, 22px);
    font-weight: 900;
  }

  .cyan-coin.active {
    transform: translateY(-4px) scale(1.12) !important;
    outline: 2.5px solid #121212;
    outline-offset: 2px;
    box-shadow: 3.5px 5px 0px #121212;
  }

  .cyan-card-shell {
    width: 100%;
  }

  .cyan-card {
    padding: 15px 14px;
    border-radius: 16px;
    border: 3px solid #121212;
    box-shadow: 4.5px 4.5px 0px #121212;
    gap: 9px;
  }

  .cyan-card-top {
    gap: 9px;
  }

  .coin-num-badge {
    width: 30px;
    height: 30px;
    font-size: 14px;
  }

  .cyan-card .exp-title {
    font-size: clamp(14px, 4vw, 17.5px);
    font-weight: 900;
    line-height: 1.15;
  }

  .cyan-card .exp-bullets {
    gap: 4px;
    margin: 2px 0 3px;
  }

  .cyan-card .exp-bullets li {
    font-size: clamp(11.5px, 3.2vw, 12.8px);
    line-height: 1.32;
    font-weight: 700;
    gap: 6px;
  }

  .cyan-card .exp-bullets li::before {
    font-size: 15px;
  }

  .cyan-card .exp-link-btn {
    font-size: 11px;
    font-weight: 900;
    padding: 7px 13px;
    border-radius: 8px;
    border: 2px solid #121212;
  }

  /* SECTION 04: MOBILE CONTACT TERMINAL (SLIGHTLY SMALLER & CLEANER) */
  .contact-sticky-shell {
    padding: 14px 10px;
    width: 100%;
    box-sizing: border-box;
  }

  .contact-sticky-note {
    padding: 18px 15px;
    border-radius: 16px;
    width: 100%;
    max-width: 325px;
    max-height: 86dvh;
    overflow-y: auto;
  }

  .sticky-inner-container {
    flex-direction: column;
    gap: 14px;
  }

  .sticky-left-col {
    gap: 10px;
    min-width: 100%;
  }

  .sticky-brand-title {
    font-size: clamp(19px, 5.2vw, 23px);
    font-weight: 900;
  }

  .sticky-email-box {
    max-width: 100%;
    padding: 7px 10px;
    gap: 6px;
    flex-wrap: nowrap;
    border-radius: 8px;
  }

  .sticky-email-txt {
    font-size: clamp(11.5px, 3.2vw, 13.5px);
    font-weight: 700;
  }

  .sticky-copy-btn {
    font-size: 10px;
    font-weight: 800;
    padding: 5px 9px;
    border-radius: 6px;
  }

  .contact-icons-row {
    gap: 8px;
    margin-top: 0;
  }

  .contact-icon-btn {
    width: 36px;
    height: 36px;
    border-radius: 8px;
  }

  .sticky-right-col {
    gap: 10px;
    min-width: 100%;
  }

  .sticky-links-group {
    gap: 4px;
  }

  .sticky-group-title {
    font-size: 9.5px;
  }

  .sticky-modal-trigger {
    font-size: 12.5px;
  }

  .sticky-bottom-meta {
    padding-top: 6px;
  }

  .sticky-copyright-txt {
    font-size: 9px;
  }

  /* MOBILE DOODLE WALL SCALING */
  .multi-doodles-realm .kiddish-doodle {
    width: clamp(22px, 5.8vw, 30px) !important;
    height: auto !important;
    opacity: 0.85;
  }

  /* MOBILE IN-PLACE MODALS (SLIGHTLY SMALLER) */
  .sticky-modal-backdrop {
    padding: 12px;
  }

  .sticky-modal-card {
    padding: 16px 14px;
    border-radius: 16px;
    border-width: 2.5px;
    box-shadow: 4.5px 4.5px 0px #121212;
    max-height: 82dvh;
    max-width: 325px;
    overflow-y: auto;
    gap: 10px;
  }

  .modal-huge-title {
    font-size: clamp(17px, 4.6vw, 21px);
  }

  .modal-body-content {
    font-size: clamp(12px, 3.3vw, 13.5px);
    line-height: 1.4;
  }

  .modal-close-btn {
    padding: 4px 8px;
    font-size: 10.5px;
  }
}
