/* ============================================================
   poppyOS — styles.css
   GIRLY POP KAWAII v4
   Palette: Faded Orangey-Red + Turquoise + Light Blue
   ============================================================ */

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

:root {
  --coral: #C84B31;
  --coral-soft: #D9634A;
  --coral-faded: #E8937F;
  --coral-light: #F5CFC5;
  --coral-bg: #FFF3EF;
  --teal: #3ABCB1;
  --teal-soft: #5AD4C9;
  --teal-light: #B5EDE7;
  --teal-bg: #EEFBF9;
  --blue: #7FC8E8;
  --blue-soft: #A5DBF0;
  --blue-light: #D2EEFC;
  --blue-bg: #F0F8FF;
  --bg: #ffffff;
  --bg-alt: #FAFCFE;
  --text: #2A3444;
  --text-muted: #6B7B8D;
  --text-light: #A0B0C0;
  --border: #E4EDF5;
  --border-light: #F0F5FA;
  --card-bg: #ffffff;
  --shadow-sm: 0 2px 12px rgba(58,188,177,.06), 0 1px 4px rgba(217,119,86,.04);
  --shadow: 0 8px 30px rgba(58,188,177,.08), 0 2px 8px rgba(217,119,86,.05);
  --shadow-lg: 0 20px 60px rgba(58,188,177,.1), 0 8px 24px rgba(217,119,86,.06);
  --shadow-coral: 0 8px 28px rgba(217,119,86,.2);
  --shadow-teal: 0 8px 28px rgba(58,188,177,.2);
  --shadow-blue: 0 8px 28px rgba(127,200,232,.2);
  --radius: 20px;
  --radius-sm: 14px;
  --radius-lg: 28px;
  --radius-pill: 100px;
  --font-display: 'Quicksand', system-ui, sans-serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --nav-h: 68px;
}

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

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection { background: var(--teal-light); color: var(--text); }

::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--blue-bg); }
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--coral-soft), var(--teal));
  border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, var(--coral), var(--teal));
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

.gradient-text {
  background: linear-gradient(135deg, var(--coral), var(--teal), var(--blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== FLOATING DOODLES ===== */
.floating-doodles {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.doodle {
  position: absolute;
  opacity: 0.07;
  animation: doodleFloat 25s ease-in-out infinite;
}
.d-1 { top: 6%; left: 3%; color: var(--coral); font-size: 2.6rem; animation-delay: 0s; }
.d-2 { top: 18%; right: 5%; color: var(--teal); font-size: 1.8rem; animation-delay: -3s; }
.d-3 { top: 38%; left: 6%; color: var(--blue); font-size: 2rem; animation-delay: -7s; }
.d-4 { top: 55%; right: 8%; color: var(--coral-soft); font-size: 2.2rem; animation-delay: -11s; }
.d-5 { top: 72%; left: 12%; color: var(--teal); font-size: 1.6rem; animation-delay: -5s; }
.d-6 { top: 30%; left: 88%; color: var(--blue); font-size: 1.4rem; animation-delay: -14s; }
.d-7 { top: 10%; left: 55%; color: var(--coral-faded); font-size: 1.5rem; animation-delay: -9s; }
.d-8 { top: 48%; left: 72%; color: var(--teal-soft); font-size: 1.9rem; animation-delay: -17s; }
.d-9 { top: 85%; right: 20%; color: var(--coral); font-size: 1.7rem; animation-delay: -2s; }
.d-10 { top: 62%; left: 35%; color: var(--blue); font-size: 1.3rem; animation-delay: -20s; }

@keyframes doodleFloat {
  0%, 100% { transform: translateY(0) rotate(0deg) scale(1); }
  25% { transform: translateY(-28px) rotate(18deg) scale(1.1); }
  50% { transform: translateY(-12px) rotate(-10deg) scale(0.95); }
  75% { transform: translateY(-38px) rotate(12deg) scale(1.05); }
}

/* ===== MARQUEE ===== */
.marquee-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  overflow: hidden;
  background: linear-gradient(90deg, var(--coral), var(--teal), var(--blue), var(--coral));
  background-size: 200% 100%;
  animation: marqueeGradient 8s linear infinite;
  padding: 10px 0;
  z-index: 5;
}
@keyframes marqueeGradient {
  0% { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}
.marquee-track {
  display: flex;
  animation: marqueeScroll 30s linear infinite;
  white-space: nowrap;
}
.marquee-track span {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.08em;
  text-transform: lowercase;
  padding-right: 40px;
}
@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-33.33%); }
}

/* ===== WAVY DIVIDERS ===== */
.wave-divider {
  line-height: 0;
  margin-top: -2px;
  position: relative;
  z-index: 2;
}
.wave-divider svg {
  width: 100%;
  height: 60px;
  display: block;
}
.wave-1    { color: var(--bg); }
.wave-2    { color: var(--teal-bg); }
.wave-3    { color: var(--bg); }
.wave-ws-in { color: var(--coral-bg); }
.wave-4    { color: var(--blue-bg); }
.wave-5    { color: var(--bg); }

/* ===== NAV ===== */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 2px solid var(--teal-light);
  transition: box-shadow 0.3s;
}
#navbar.scrolled {
  box-shadow: 0 4px 30px rgba(58,188,177,.08), 0 2px 10px rgba(127,200,232,.06);
}

.nav-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: transform 0.2s;
  text-transform: lowercase;
}
.nav-logo:hover { transform: scale(1.04) rotate(-1deg); }
.nav-logo, .footer-logo { text-transform: none !important; }
.logo-icon {
  font-size: 1.6rem;
  color: var(--coral);
  line-height: 1;
  animation: logoBounce 3s ease-in-out infinite;
}
@keyframes logoBounce {
  0%, 100% { transform: rotate(0deg); }
  25% { transform: rotate(12deg) scale(1.1); }
  75% { transform: rotate(-12deg) scale(1.1); }
}

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-links a {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: color 0.2s, transform 0.2s;
  text-transform: lowercase;
  position: relative;
}
.nav-links a:hover { color: var(--teal); transform: translateY(-2px); }
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0%;
  height: 2.5px;
  background: linear-gradient(90deg, var(--coral), var(--teal));
  border-radius: 2px;
  transition: width 0.3s;
}
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  background: linear-gradient(135deg, var(--coral), var(--coral-soft));
  color: #fff !important;
  padding: 9px 22px;
  border-radius: var(--radius-pill);
  font-weight: 700 !important;
  font-size: 0.875rem !important;
  box-shadow: var(--shadow-coral);
  transition: all 0.25s !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { transform: translateY(-2px) scale(1.05) !important; box-shadow: 0 12px 35px rgba(217,119,86,.28); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--coral);
  border-radius: 4px;
  transition: all 0.3s;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  padding: 16px 24px 20px;
  border-top: 2px solid var(--teal-light);
  background: rgba(255,255,255,0.98);
}
.mobile-menu.open { display: flex; }
.mobile-link {
  padding: 14px 0;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
  border-bottom: 1px dashed var(--border-light);
  text-transform: lowercase;
  transition: color 0.2s, padding-left 0.2s;
}
.mobile-link:last-child { border-bottom: none; }
.mobile-link:hover { color: var(--teal); padding-left: 10px; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 14px 30px;
  border-radius: var(--radius-pill);
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: all 0.3s cubic-bezier(.23,1,.32,1);
  text-decoration: none;
  text-transform: lowercase;
  position: relative;
  overflow: hidden;
}
.btn-primary {
  background: linear-gradient(135deg, var(--coral), var(--coral-soft));
  color: #fff;
  box-shadow: var(--shadow-coral);
}
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--teal), var(--blue));
  opacity: 0;
  transition: opacity 0.4s;
}
.btn-primary:hover::before { opacity: 1; }
.btn-primary { position: relative; z-index: 1; }
.btn-primary:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 14px 40px rgba(58,188,177,.25);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 2.5px solid var(--teal-light);
}
.btn-ghost:hover {
  border-color: var(--teal);
  color: var(--teal);
  background: var(--teal-bg);
  transform: translateY(-3px) scale(1.04);
}

/* ===== SECTION COMMON ===== */
.section {
  padding: 80px 0;
  position: relative;
  z-index: 1;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-label {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--coral);
  margin-bottom: 12px;
  text-transform: lowercase;
  background: var(--coral-bg);
  padding: 6px 18px;
  border-radius: var(--radius-pill);
  border: 2px solid var(--coral-light);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 16px;
  color: var(--text);
  text-transform: lowercase;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 540px;
  margin: 0 auto;
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, var(--coral-bg) 0%, var(--teal-bg) 35%, var(--blue-bg) 70%, #fff 100%);
  padding-top: var(--nav-h);
  padding-bottom: 48px;
  text-align: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  animation: blobPulse 8s ease-in-out infinite;
}
.hero-blob-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, var(--coral-faded), transparent 70%);
  top: -100px; right: -80px;
  opacity: 0.2;
}
.hero-blob-2 {
  width: 450px; height: 450px;
  background: radial-gradient(circle, var(--teal-light), transparent 70%);
  bottom: -80px; left: -80px;
  opacity: 0.22;
  animation-delay: -3s;
}
.hero-blob-3 {
  width: 350px; height: 350px;
  background: radial-gradient(circle, var(--blue-soft), transparent 70%);
  top: 40%; left: 50%;
  transform: translateX(-50%);
  opacity: 0.12;
  animation-delay: -5s;
}
@keyframes blobPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.15); }
}
.hero-blob-3 { animation-name: blobPulse3; }
@keyframes blobPulse3 {
  0%, 100% { transform: translateX(-50%) scale(1); }
  50% { transform: translateX(-50%) scale(1.12); }
}

.hero-center {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 24px 80px;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(8px);
  border: 2px solid var(--teal-light);
  color: var(--teal);
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 8px 20px;
  border-radius: var(--radius-pill);
  margin-bottom: 28px;
  text-transform: lowercase;
  animation: badgeBounce 4s ease-in-out infinite;
}
@keyframes badgeBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 6vw, 4.2rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 20px;
  color: var(--text);
  text-transform: lowercase;
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

/* Scattered polaroid photos */
.hero-photos {
  display: flex;
  justify-content: center;
  gap: 20px;
}
.hero-photo {
  position: relative;
  width: 210px;
  height: 160px;
  border-radius: var(--radius);
  overflow: visible;
  transition: transform 0.4s cubic-bezier(.23,1,.32,1);
}
.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
  border: 4px solid #fff;
  box-shadow: var(--shadow-lg);
}
.hero-photo:hover { transform: translateY(-10px) rotate(0deg) scale(1.06) !important; z-index: 5; }

.hp-1 { transform: rotate(-5deg) translateY(10px); }
.hp-2 { transform: rotate(2deg) translateY(-6px); z-index: 2; }
.hp-3 { transform: rotate(6deg) translateY(14px); }

.photo-sticker {
  position: absolute;
  background: #fff;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-sm);
  white-space: nowrap;
  z-index: 3;
  text-transform: lowercase;
  border: 2px solid var(--border);
  transition: transform 0.3s;
}
.photo-sticker:hover { transform: scale(1.1) !important; }
.ps-1 { bottom: -10px; left: 8px; color: var(--coral); border-color: var(--coral-light); }
.ps-2 { top: -10px; right: 8px; color: var(--teal); border-color: var(--teal-light); }
.ps-3 { bottom: -12px; right: 4px; color: var(--blue); border-color: var(--blue-light); }

/* ===== ABOUT ===== */
.about-section { background: var(--bg); }

.about-grid {
  display: grid;
  grid-template-columns: 337px 1fr;
  gap: 72px;
  align-items: center;
}

.about-image-col { position: relative; }

.about-image-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid #fff;
  outline: 3px solid var(--teal-light);
  transition: transform 0.4s;
}
.about-image-wrap:hover { transform: rotate(-2deg) scale(1.02); }
.about-image-wrap img {
  width: 100%;
  height: 373px;
  object-fit: cover;
}

.about-sticker {
  position: absolute;
  background: #fff;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow);
  z-index: 3;
  white-space: nowrap;
  text-transform: lowercase;
  animation: stickerWiggle 4s ease-in-out infinite;
}
.st-1 {
  bottom: -14px; right: -14px;
  color: var(--coral);
  border: 2px solid var(--coral-light);
  --r: 4deg;
}
.st-2 {
  top: -14px; left: -14px;
  color: var(--teal);
  border: 2px solid var(--teal-light);
  --r: -6deg;
  animation-delay: -1.5s;
}
.st-3 {
  top: 50%; right: -24px;
  color: var(--blue);
  border: 2px solid var(--blue-light);
  --r: 3deg;
  animation-delay: -3s;
}
@keyframes stickerWiggle {
  0%, 100% { transform: rotate(var(--r, 4deg)); }
  50% { transform: rotate(calc(var(--r, 4deg) + 5deg)) scale(1.06); }
}

.about-para {
  font-size: 0.975rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 18px;
}
.about-para strong { color: var(--coral); font-weight: 700; }
.about-para:last-of-type { margin-bottom: 28px; }

.about-skills { display: flex; flex-wrap: wrap; gap: 8px; }
.skill-chip {
  background: linear-gradient(135deg, var(--coral-bg), var(--teal-bg));
  border: 2px solid var(--border);
  border-radius: var(--radius-pill);
  padding: 7px 16px;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text);
  text-transform: lowercase;
  transition: all 0.3s cubic-bezier(.23,1,.32,1);
  cursor: default;
}
.skill-chip:hover {
  border-color: var(--teal);
  color: var(--teal);
  transform: translateY(-3px) scale(1.07) rotate(-2deg);
  box-shadow: var(--shadow-teal);
  background: #fff;
}

/* ===== SERVICES ===== */
.services-section { background: var(--teal-bg); }

.services-duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.service-block {
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s, box-shadow 0.3s;
  border: 3px solid transparent;
}
.service-block:hover { transform: translateY(-6px); }
.service-block-coral { border-color: var(--coral-light); }
.service-block-coral:hover { border-color: var(--coral); box-shadow: var(--shadow-coral), var(--shadow-lg); }
.service-block-teal { border-color: var(--teal-light); }
.service-block-teal:hover { border-color: var(--teal); box-shadow: var(--shadow-teal), var(--shadow-lg); }

.service-block-header {
  padding: 36px 32px 28px;
  border-bottom: 2px dashed var(--border);
}
.service-block-coral .service-block-header {
  background: linear-gradient(180deg, var(--coral-bg) 0%, transparent 100%);
}
.service-block-teal .service-block-header {
  background: linear-gradient(180deg, var(--teal-bg) 0%, transparent 100%);
}

.service-block-emoji {
  font-size: 2.8rem;
  margin-bottom: 14px;
  line-height: 1;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,.06));
}

.service-block-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text);
  text-transform: lowercase;
}
.service-block-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.service-list {
  list-style: none;
  padding: 4px 0;
}
.service-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 32px;
  border-bottom: 1px dashed var(--border-light);
  transition: all 0.25s;
}
.service-list li:last-child { border-bottom: none; }
.service-list li:hover {
  background: rgba(58,188,177,.03);
  padding-left: 38px;
}

.service-bullet {
  flex-shrink: 0;
  font-size: 1rem;
  margin-top: 3px;
  line-height: 1;
  transition: transform 0.3s;
}
.service-list li:hover .service-bullet { transform: scale(1.4) rotate(20deg); }
.service-bullet.coral { color: var(--coral); }
.service-bullet.teal { color: var(--teal); }

.service-list li strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 2px;
  text-transform: lowercase;
}
.service-list li div span {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.45;
}

/* ===== PROJECTS ===== */
.projects-section { background: var(--bg); }

.projects-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.project-card {
  background: var(--card-bg);
  border: 3px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.35s cubic-bezier(.23,1,.32,1);
}
.project-card:nth-child(odd):hover { border-color: var(--coral-light); }
.project-card:nth-child(even):hover { border-color: var(--teal-light); }
.project-card:hover {
  transform: translateY(-8px) rotate(-0.5deg) scale(1.01);
  box-shadow: var(--shadow-lg);
}

.project-card-img {
  height: 190px;
  overflow: hidden;
  position: relative;
}
.project-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.project-card:hover .project-card-img img { transform: scale(1.1); }

.card-corner-deco {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(4px);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: var(--coral);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s;
  border: 2px solid rgba(255,255,255,0.5);
}
.project-card:hover .card-corner-deco { transform: rotate(180deg) scale(1.2); }

.project-card-body { padding: 22px 24px 24px; }

.project-tags-sm { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 10px; }
.project-tag {
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  text-transform: lowercase;
}
.tag-ai    { background: var(--coral-bg); color: var(--coral); border: 1.5px solid var(--coral-light); }
.tag-ops   { background: var(--teal-bg); color: var(--teal); border: 1.5px solid var(--teal-light); }
.tag-tool  { background: var(--teal-bg); color: var(--teal); border: 1.5px solid var(--teal-light); }
.tag-hr    { background: var(--coral-bg); color: var(--coral); border: 1.5px solid var(--coral-light); }
.tag-app   { background: var(--blue-bg); color: var(--blue); border: 1.5px solid var(--blue-light); }
.tag-analytics { background: var(--coral-bg); color: var(--coral-soft); border: 1.5px solid var(--coral-light); }
.tag-automation { background: var(--teal-bg); color: var(--teal); border: 1.5px solid var(--teal-light); }

.project-card-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text);
  text-transform: lowercase;
}
.project-card-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 14px;
}

.project-card-tech { display: flex; gap: 6px; flex-wrap: wrap; }
.tech-badge-sm {
  background: linear-gradient(135deg, var(--coral-bg), var(--teal-bg));
  border: 1.5px solid var(--border);
  color: var(--text-muted);
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  text-transform: lowercase;
}

/* ===== WEBSITES ===== */
.websites-section { background: var(--coral-bg); }

.web-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.web-card-featured {
  grid-column: span 2;
}

.web-card {
  background: var(--card-bg);
  border: 2.5px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.35s cubic-bezier(.23,1,.32,1), box-shadow 0.35s, border-color 0.3s;
  display: flex;
  flex-direction: column;
}
.web-card:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: var(--shadow-lg);
  border-color: var(--coral-light);
}
.web-card-self:hover { border-color: var(--teal-light); }

/* Browser chrome */
.web-browser { flex: 1; display: flex; flex-direction: column; }
.browser-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 14px;
  background: var(--border-light);
  border-bottom: 1.5px solid var(--border);
  flex-shrink: 0;
}
.browser-dots {
  display: flex;
  gap: 5px;
  flex-shrink: 0;
}
.browser-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: block;
}
.browser-dots span:nth-child(1) { background: #FF6058; }
.browser-dots span:nth-child(2) { background: #FFBD2E; }
.browser-dots span:nth-child(3) { background: #28CA40; }

.browser-url {
  flex: 1;
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-pill);
  padding: 3px 12px;
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 240px;
}

/* Screenshot area */
.web-img-wrap {
  position: relative;
  overflow: hidden;
  background: var(--border-light);
  aspect-ratio: 16 / 9;
}
.web-card-featured .web-img-wrap { aspect-ratio: 16 / 8; }
.web-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
  transition: transform 0.5s cubic-bezier(.23,1,.32,1);
}
.web-card:hover .web-img-wrap img { transform: scale(1.04); }

/* Hover overlay */
.web-overlay {
  position: absolute;
  inset: 0;
  background: rgba(200,75,49,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
  text-decoration: none;
}
.web-overlay-self { background: rgba(58,188,177,0.7); pointer-events: none; }
.web-card:hover .web-overlay { opacity: 1; }

.web-overlay-btn {
  background: #fff;
  color: var(--coral);
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 10px 22px;
  border-radius: var(--radius-pill);
  text-transform: lowercase;
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
  transform: translateY(6px);
  transition: transform 0.3s;
}
.web-card-self .web-overlay-btn { color: var(--teal); }
.web-card:hover .web-overlay-btn { transform: translateY(0); }

/* Card body */
.web-card-body {
  padding: 16px 18px 18px;
  border-top: 1.5px solid var(--border-light);
}
.web-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 8px;
}
.web-tag {
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  background: var(--coral-bg);
  color: var(--coral);
  border: 1.5px solid var(--coral-light);
  text-transform: lowercase;
}
.web-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  text-transform: lowercase;
  margin-bottom: 5px;
}
.web-desc {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Responsive */
@media (max-width: 1024px) {
  .web-grid { grid-template-columns: repeat(2, 1fr); }
  .web-card-featured { grid-column: span 2; }
}
@media (max-width: 640px) {
  .web-grid { grid-template-columns: 1fr; }
  .web-card-featured { grid-column: span 1; }
  .browser-url { max-width: 160px; }
}

/* ===== NEWSLETTER ===== */
.newsletter-section {
  background: var(--blue-bg);
  text-align: center;
}

.newsletter-card {
  background: linear-gradient(135deg, rgba(255,255,255,0.85), rgba(255,255,255,0.65));
  backdrop-filter: blur(16px);
  border: 3px solid var(--blue-light);
  border-radius: var(--radius-lg);
  padding: 56px 48px;
  max-width: 640px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: border-color 0.3s;
}
.newsletter-card:hover { border-color: var(--teal); }

.newsletter-deco-tl,
.newsletter-deco-br,
.newsletter-deco-ml {
  position: absolute;
  font-size: 4rem;
  opacity: 0.06;
  pointer-events: none;
  animation: doodleFloat 20s ease-in-out infinite;
}
.newsletter-deco-tl { top: 8px; left: 14px; color: var(--coral); transform: rotate(-15deg); }
.newsletter-deco-br { bottom: 8px; right: 14px; color: var(--teal); transform: rotate(20deg); animation-delay: -6s; }
.newsletter-deco-ml { top: 45%; left: -10px; color: var(--blue); transform: rotate(-8deg); font-size: 3rem; animation-delay: -12s; }

.newsletter-desc {
  font-size: 0.975rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 440px;
  margin-left: auto;
  margin-right: auto;
}

.newsletter-form { max-width: 420px; margin: 0 auto; }
.newsletter-input-wrap { display: flex; gap: 10px; }
.newsletter-input-wrap input {
  flex: 1;
  padding: 14px 20px;
  background: #fff;
  border: 2.5px solid var(--border);
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s;
}
.newsletter-input-wrap input:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(58,188,177,.12);
}
.newsletter-input-wrap input::placeholder { color: var(--text-light); }

/* ===== CONTACT ===== */
.contact-section { background: var(--bg); }

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 72px;
  align-items: start;
}

.contact-desc {
  font-size: 0.975rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 420px;
}

.contact-channels { display: flex; flex-direction: column; gap: 12px; }
.contact-channel {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: linear-gradient(135deg, var(--coral-bg), var(--teal-bg));
  border: 2px solid var(--border);
  border-radius: var(--radius);
  transition: all 0.3s cubic-bezier(.23,1,.32,1);
}
.contact-channel:hover {
  border-color: var(--teal);
  box-shadow: var(--shadow-teal);
  transform: translateX(8px) scale(1.02);
}
.channel-icon { font-size: 1.4rem; min-width: 28px; display: flex; align-items: center; }
.channel-label {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text-light);
  text-transform: lowercase;
  letter-spacing: 0.05em;
  margin-bottom: 2px;
}
.channel-value { font-size: 0.88rem; font-weight: 600; color: var(--text); }

.contact-form {
  background: linear-gradient(135deg, var(--coral-bg), var(--blue-bg));
  border: 3px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow);
  transition: border-color 0.3s;
}
.contact-form:focus-within { border-color: var(--teal-light); }

.form-header {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--coral);
  margin-bottom: 24px;
  text-align: center;
  text-transform: lowercase;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}
.form-group label {
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text);
  text-transform: lowercase;
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  background: #fff;
  border: 2.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  resize: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(58,188,177,.1);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-light); }

.btn-form { width: 100%; margin-top: 6px; }

.form-status {
  margin-top: 12px;
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 600;
  text-align: center;
  min-height: 1.4em;
}
.form-status.success { color: var(--teal); }
.form-status.error { color: var(--coral); }

/* ===== FOOTER ===== */
.footer {
  background: var(--text);
  color: rgba(255,255,255,0.7);
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 40px;
  padding-bottom: 32px;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-logo {
  color: #fff !important;
  font-size: 1.15rem !important;
}
.footer-logo .logo-icon { color: var(--coral-soft); }
.footer-left { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.footer-tagline { font-size: 0.82rem; opacity: 0.5; }
.footer-right { display: flex; gap: 24px; }
.footer-right a {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  opacity: 0.5;
  text-transform: lowercase;
  transition: opacity 0.2s;
}
.footer-right a:hover { opacity: 1; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 16px 0;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  opacity: 0.4;
  text-align: center;
  text-transform: lowercase;
}

/* ===== ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(.23,1,.32,1), transform 0.8s cubic-bezier(.23,1,.32,1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-photos { gap: 14px; }
  .hero-photo { width: 175px; height: 130px; }

  .services-duo { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-image-wrap img { height: 267px; }
  .about-content-col .section-title { text-align: center !important; }
  .about-content-col .section-label { display: flex; justify-content: center; }

  .contact-inner { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 768px) {
  :root { --nav-h: 60px; }
  .section { padding: 64px 0; }

  .nav-links { display: none; }
  .hamburger { display: flex; }

  .hero-title { font-size: 2.4rem; }
  .hero-photos { flex-wrap: wrap; }
  .hero-photo { width: 155px; height: 115px; }
  .hp-1, .hp-2, .hp-3 { transform: rotate(0deg) translateY(0); }

  .projects-grid { grid-template-columns: 1fr; }

  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 28px 20px; }
  .newsletter-card { padding: 40px 24px; }

  .footer-inner { flex-direction: column; align-items: flex-start; }

  .service-list li { padding: 12px 20px; }
  .service-block-header { padding: 28px 20px 24px; }

  .marquee-wrap { padding: 8px 0; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero-title { font-size: 2rem; }
  .hero-sub { font-size: 0.95rem; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; text-align: center; }
  .hero-photos { gap: 8px; }
  .hero-photo { width: 130px; height: 100px; }
  .photo-sticker { font-size: 0.6rem; padding: 3px 8px; }
  .section-title { font-size: 1.8rem; }

  .newsletter-input-wrap { flex-direction: column; }
  .newsletter-input-wrap .btn { width: 100%; }

  .doodle { display: none; }
  .about-sticker.st-3 { display: none; }
}

/* ===================================================
   HAND-DRAWN SVG DECORATIONS
   =================================================== */

/* Shared animation keyframes */
@keyframes decoFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  40%       { transform: translateY(-14px) rotate(4deg); }
  70%       { transform: translateY(-8px) rotate(-3deg); }
}
@keyframes decoSway {
  0%, 100% { transform: rotate(-5deg); }
  50%       { transform: rotate(5deg); }
}
@keyframes decoTwinkle {
  0%, 100% { opacity: 0.55; transform: scale(1) rotate(0deg); }
  50%       { opacity: 1; transform: scale(1.18) rotate(22deg); }
}
@keyframes decoBob {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}

/* ── Hero decorations ── */
.hero-deco {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.hd-poppy-1 {
  position: absolute;
  top: 6%;
  right: 4%;
  width: 130px;
  opacity: 0.52;
  animation: decoFloat 8s ease-in-out infinite;
}
.hd-poppy-2 {
  position: absolute;
  bottom: 18%;
  left: 2%;
  width: 80px;
  opacity: 0.42;
  animation: decoFloat 10s ease-in-out infinite;
  animation-delay: -4s;
}
.hd-poppy-3 {
  position: absolute;
  top: 52%;
  right: 1.5%;
  width: 60px;
  opacity: 0.36;
  animation: decoFloat 7s ease-in-out infinite;
  animation-delay: -2s;
}

.hd-branch {
  position: absolute;
  bottom: 14%;
  right: 7%;
  width: 96px;
  opacity: 0.38;
  animation: decoSway 14s ease-in-out infinite;
  transform-origin: bottom center;
}

.hd-sparkle {
  position: absolute;
  animation: decoTwinkle 3.2s ease-in-out infinite;
}
.hd-sp-1 { top: 14%; left: 8%;   width: 22px; opacity: 0.5;  animation-delay: 0s;     color: var(--coral); }
.hd-sp-2 { top: 36%; right: 11%; width: 18px; opacity: 0.44; animation-delay: -1s;    color: var(--teal); }
.hd-sp-3 { bottom: 32%; left: 14%; width: 16px; opacity: 0.4; animation-delay: -2s;   color: var(--blue); }
.hd-sp-4 { top: 24%; left: 46%;  width: 14px; opacity: 0.34; animation-delay: -0.5s; color: var(--coral-faded); }
.hd-sp-5 { bottom: 38%; right: 17%; width: 20px; opacity: 0.4; animation-delay: -1.6s; color: var(--teal); }

/* ── About decorations ── */
.about-deco-corner {
  position: absolute;
  top: -22px;
  right: -22px;
  width: 80px;
  opacity: 0.46;
  animation: decoFloat 9s ease-in-out infinite;
  animation-delay: -3s;
  pointer-events: none;
  z-index: 4;
}
.about-deco-dots {
  position: absolute;
  bottom: 18px;
  left: -32px;
  width: 58px;
  opacity: 0.36;
  animation: decoSway 12s ease-in-out infinite;
  pointer-events: none;
  z-index: 4;
}

/* ── Service icon SVGs (replace emoji) ── */
.service-icon-svg {
  width: 68px;
  height: 68px;
  margin-bottom: 14px;
  display: block;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,.06));
}

/* ── Project card corner SVGs ── */
.card-corner-deco svg {
  display: block;
}

/* ── Newsletter ghost mascot ── */
.ghost-mascot {
  display: block;
  width: 90px;
  height: auto;
  margin: 0 auto 22px;
  animation: decoBob 3.2s ease-in-out infinite;
  filter: drop-shadow(0 6px 16px rgba(127,200,232,.18));
}

/* ── Contact deco accents ── */
.contact-deco {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}
.contact-deco-1 {
  top: 8%;
  right: 3%;
  width: 52px;
  opacity: 0.38;
  animation: decoTwinkle 4s ease-in-out infinite;
}
.contact-deco-2 {
  bottom: 12%;
  left: 2%;
  width: 58px;
  opacity: 0.32;
  animation: decoFloat 9s ease-in-out infinite;
  animation-delay: -2s;
}

/* ── Footer vine border ── */
.footer-vine {
  width: 100%;
  height: 44px;
  display: block;
}

/* ── Responsive: scale/hide on smaller screens ── */
@media (max-width: 768px) {
  .hd-poppy-1 { width: 90px; opacity: 0.36; }
  .hd-poppy-2 { display: none; }
  .hd-poppy-3 { display: none; }
  .hd-branch  { display: none; }
  .hd-sp-3, .hd-sp-4, .hd-sp-5 { display: none; }
  .about-deco-corner { width: 60px; opacity: 0.36; }
  .about-deco-dots   { display: none; }
  .contact-deco      { display: none; }
  .ghost-mascot      { width: 76px; }
}

@media (max-width: 480px) {
  .hd-sparkle        { display: none; }
  .hd-poppy-1        { display: none; }
  .ghost-mascot      { width: 64px; }
  .about-deco-corner { display: none; }
}

/* ===================================================
   FLOATING GHOST MASCOT
   =================================================== */

.poppy-ghost-wrap {
  position: fixed;
  right: 80px;
  bottom: 110px;
  z-index: 200;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

/* "click me" bubble that fades after first interaction */
.poppy-ghost-bubble {
  background: #fff;
  border: 2px solid var(--coral-light);
  color: var(--coral);
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow);
  white-space: nowrap;
  animation: bubbleBounce 2.5s ease-in-out infinite, bubbleFadeIn 0.6s ease forwards;
  pointer-events: none;
}
@keyframes bubbleBounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-5px); }
}
@keyframes bubbleFadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.poppy-ghost-bubble.hidden {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

/* Ghost image */
.poppy-ghost {
  width: 173px;
  cursor: pointer;
  filter: drop-shadow(0 6px 20px rgba(200,75,49,0.22));
  animation: ghostFloat 5s ease-in-out infinite;
  transition: transform 0.3s, filter 0.3s;
  user-select: none;
}
.poppy-ghost:hover {
  transform: scale(1.1) rotate(-4deg);
  filter: drop-shadow(0 8px 28px rgba(58,188,177,0.3));
}
@keyframes ghostFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  25%       { transform: translateY(-12px) rotate(2deg); }
  75%       { transform: translateY(5px) rotate(-1.5deg); }
}

/* Panel */
.poppy-ghost-panel {
  position: absolute;
  bottom: calc(100% + 16px);
  right: 0;
  width: 300px;
  background: #fff;
  border: 2.5px solid var(--coral-light);
  border-radius: var(--radius-lg);
  padding: 22px 22px 18px;
  box-shadow: var(--shadow-lg), 0 0 0 6px rgba(200,75,49,0.04);
  opacity: 0;
  transform: translateY(12px) scale(0.96);
  pointer-events: none;
  transition: opacity 0.25s cubic-bezier(.23,1,.32,1), transform 0.25s cubic-bezier(.23,1,.32,1);
}
.poppy-ghost-panel.open {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: all;
}

.poppy-ghost-close {
  position: absolute;
  top: 12px;
  right: 14px;
  background: var(--coral-bg);
  border: 1.5px solid var(--coral-light);
  color: var(--coral);
  border-radius: 50%;
  width: 26px;
  height: 26px;
  font-size: 0.7rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.2s;
  line-height: 1;
}
.poppy-ghost-close:hover { background: var(--coral-light); transform: scale(1.1) rotate(90deg); }

/* Panel header */
.pgs-header { margin-bottom: 16px; padding-right: 20px; }
.pgs-title {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--coral);
  margin-bottom: 3px;
  text-transform: lowercase;
}
.pgs-sub {
  font-size: 0.75rem;
  color: var(--text-light);
  font-family: var(--font-display);
}

/* Stack items */
.pgs-stack { display: flex; flex-direction: column; gap: 10px; margin-bottom: 18px; }
.pgs-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 9px 12px;
  background: linear-gradient(135deg, var(--coral-bg), var(--teal-bg));
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--border-light);
  transition: border-color 0.2s, transform 0.2s;
}
.pgs-item:hover { border-color: var(--teal-light); transform: translateX(3px); }
.pgs-icon {
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 1px;
  line-height: 1;
}
.pgs-name {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text);
  text-transform: lowercase;
  margin-bottom: 2px;
}
.pgs-desc {
  font-size: 0.72rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* CTA link */
.pgs-cta {
  display: block;
  text-align: center;
  padding: 10px;
  background: linear-gradient(135deg, var(--coral), var(--coral-soft));
  color: #fff;
  border-radius: var(--radius-pill);
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: lowercase;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: var(--shadow-coral);
}
.pgs-cta:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(200,75,49,0.25); }

/* Hide on small screens */
@media (max-width: 640px) {
  .poppy-ghost-wrap { right: 16px; bottom: 70px; }
  .poppy-ghost { width: 90px; }
  .poppy-ghost-panel { width: 260px; }
  .poppy-ghost-bubble { display: none; }
}
