/* ==========================================================================
   AMIT BISHT — FULLSTACK DEVELOPER & UI DESIGNER
   Editorial Clean Agency Theme (#ff4728, #000000, #ffffff)
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. ROOT DESIGN SYSTEM & CSS VARIABLES
   -------------------------------------------------------------------------- */
:root {
  /* Editorial Palette */
  --c-vermillion: #ff4728;
  --c-black: #000000;
  --c-white: #ffffff;
  --c-surface: #f8f8fa;
  --c-surface-hover: #f1f1f4;
  --c-text-primary: #000000;
  --c-text-secondary: #555555;
  --c-text-muted: #888888;
  --c-border: rgba(0, 0, 0, 0.08);
  --c-border-hover: rgba(0, 0, 0, 0.16);

  /* Typography */
  --font-editorial: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Radii & Transitions */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-pill: 9999px;
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

/* --------------------------------------------------------------------------
   2. GLOBAL RESETS & BASE STYLES
   -------------------------------------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: #ffffff;
  color: #000000;
  color-scheme: light;
}

/* Prevent text selection */
body {
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

/* Keep form fields usable */
input,
textarea,
select {
  user-select: text;
  -webkit-user-select: text;
}

/* Prevent image dragging */
img {
  -webkit-user-drag: none;
}

body {
  font-family: var(--font-editorial);
  font-weight: 500;
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  background: #ffffff;
  color: #000000;
  min-height: 100vh;
}

/* Standby Dim Mode */
body.standby-mode {
  filter: brightness(0.2) contrast(1.2) grayscale(0.8);
  pointer-events: none;
  transition: filter 0.8s ease;
}

/* Ambient Canvas Background - Disabled for Editorial Theme */
#ambient-canvas {
  display: none !important;
}

/* CRT Scanlines Overlay */
.hud-scanline-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 999;
  background: linear-gradient(to bottom,
      rgba(255, 255, 255, 0),
      rgba(255, 255, 255, 0) 50%,
      rgba(0, 0, 0, 0.22) 50%,
      rgba(0, 0, 0, 0.22));
  background-size: 100% 4px;
  opacity: 0.6;
  display: none;
}

body.scanlines-active .hud-scanline-overlay {
  display: block;
}

/* Base button and link resets */
button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: transparent;
  color: inherit;
  outline: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

button:focus-visible,
a:focus-visible {
  outline: 2px solid #ff4728;
  outline-offset: 3px;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all var(--transition-fast);
}

/* --------------------------------------------------------------------------
   3. PERSISTENT MINIMALIST EDITORIAL HEADER & NAVIGATION (Matches Reference)
   -------------------------------------------------------------------------- */
.hud-header.editorial-header {
  position: fixed;
  top: 0;
  left: 0;
  transform: none;
  width: 100%;
  max-width: 100%;
  z-index: 1010;
  display: block;
  padding: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 0;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.02);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.hud-header.editorial-header.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.09);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.05);
}

.header-container {
  max-width: 1380px;
  margin: 0 auto;
  padding: 1.25rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

/* Brand Logo (Left) */
.brand-editorial {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  cursor: pointer;
  user-select: none;
  text-decoration: none;
}

.brand-rings-icon {
  display: flex;
  align-items: center;
  line-height: 0;
  transition: transform 0.25s ease;
}

.brand-editorial:hover .brand-rings-icon {
  transform: scale(1.1) rotate(6deg);
}

.brand-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 1.6rem;
  letter-spacing: -0.04em;
  color: #000000;
  line-height: 1;
}

.brand-accent-dot {
  color: #ff4728;
}

/* Navigation Links (Center) */
.editorial-nav {
  display: flex;
  align-items: center;
  gap: 2.2rem;
}

.editorial-nav-btn {
  background: transparent;
  border: none;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  color: #262626;
  cursor: pointer;
  padding: 0.4rem 0.2rem;
  position: relative;
  transition: color 0.2s ease;
}

.editorial-nav-btn:hover {
  color: #ff4728;
}

.editorial-lang-switch {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin-left: 0.8rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.84rem;
  font-weight: 600;
}

.editorial-lang-switch .lang-item {
  color: #999999;
  cursor: pointer;
  transition: color 0.2s ease;
}

.editorial-lang-switch .lang-item.active {
  color: #000000;
  border-bottom: 2px solid #000000;
  padding-bottom: 2px;
}

/* CTA Pill Button & Header Actions (Right) */
.header-cta-group {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.header-email-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.62rem 1.45rem;
  background-color: #000000;
  color: #ffffff !important;
  border: 1.5px solid #000000;
  border-radius: 8px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  text-decoration: none;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}

.header-email-pill:hover {
  background-color: #ff4728;
  border-color: #ff4728;
  color: #ffffff !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(255, 71, 40, 0.32);
}

.header-sub-actions {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.header-sub-actions .hud-icon-btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.08);
  color: #444444;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.header-sub-actions .hud-icon-btn:hover {
  background: #000000;
  border-color: #000000;
  color: #ffffff;
}

/* --------------------------------------------------------------------------
   4. LAYOUT: PAGE CONTAINER & SECTION STRUCTURE
   -------------------------------------------------------------------------- */
.page-container {
  position: relative;
  z-index: 2;
  width: 100%;
}

.screen-section {
  position: relative;
  min-height: 100vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 6.5rem 2rem 5rem;
  background-color: #ffffff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.section-inner {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
}

.section-backdrop-glow {
  display: none !important;
}

/* --------------------------------------------------------------------------
   5. SECTION 1:  HERO SECTION 
   -------------------------------------------------------------------------- */
.hero-editorial-section {
  position: relative;
  background-color: #ffffff !important;
  color: #000000;
  min-height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6rem 2.5rem 3.5rem !important;
  overflow: hidden;
  z-index: 1000;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

@media (max-width: 768px) {
  .hero-editorial-wrapper {
    max-width: 1340px;
    margin: 100px 0 auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative
  }
}

.hero-editorial-wrapper {
  max-width: 1340px;
  margin: 100px 0 auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}

/* Greeting intro */
.hero-greeting-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(1.05rem, 1.4vw, 1.35rem);
  font-weight: 400;
  color: #1a1a1a;
  letter-spacing: -0.015em;
  margin-bottom: 0.4rem;
  text-align: center;
  z-index: 4;
}

.hero-wave-icon {
  font-size: 1.45rem;
  display: inline-block;
  transform-origin: 70% 70%;
  animation: waveHand 2.4s infinite ease-in-out;
}

@keyframes waveHand {

  0%,
  100% {
    transform: rotate(0deg);
  }

  20% {
    transform: rotate(14deg);
  }

  40% {
    transform: rotate(-8deg);
  }

  60% {
    transform: rotate(14deg);
  }

  80% {
    transform: rotate(-4deg);
  }
}

/* Typographic Stage containing huge words, portrait cutout, flanking info, and buttons */
.hero-stage {
  position: relative;
  width: 100%;
  max-width: 1240px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-bottom: 1.5rem;
  margin-top: 0.25rem;
}

/* Giant Headlines */
.hero-headline-line {
  font-family: 'Plus Jakarta Sans', 'Syne', sans-serif;
  font-size: clamp(3.8rem, 10.8vw, 10.2rem);
  font-weight: 900;
  line-height: 0.88;
  letter-spacing: -0.038em;
  text-align: center;
  user-select: none;
  display: flex;
  align-items: baseline;
  justify-content: center;
  width: 100%;
}

/* Line 1: Solid Black */
.hero-headline-line.line-solid {
  color: #000000;
  z-index: 1;
  position: relative;
}

.hero-headline-desktop {
  display: inline-flex;
  align-items: baseline;
  justify-content: center;
}

.hero-headline-mobile {
  display: none;
}

/* Interactive Eyes in 'b' and 'd' of Hero Headline */
.badge-letter-container {
  position: relative;
  display: inline-flex;
  align-items: baseline;
  justify-content: center;
}

.letter-eye-container {
  position: relative;
}

/* Base eye structure */
.hero-eye {
  position: absolute;
  border-radius: 50%;
  background: #ffffff;
  overflow: hidden;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  user-select: none;
  pointer-events: auto;
  transform-origin: center center;
}

/* Eye in 'b': Fits perfectly within the counter hole of 'b' */
.letter-b-container .letter-stem {
  position: relative;
  z-index: 2;
  pointer-events: none;
}

.hero-eye-b {
  top: 64%;
  left: 54%;
  transform: translate(-50%, -46%);
  width: clamp(34px, 3.8vw, 56px);
  height: clamp(34px, 3.8vw, 56px);
  z-index: 1;
  border: none;
  background: #ffffff;
}

/* Eye in 'd': Signature vermillion border ring (#ff4728) */
.hero-arrow-circle-btn.hero-eye-d,
.hero-eye-d {
  position: absolute;
  top: 64%;
  left: 50%;
  transform: translate(-50%, -46%);
  width: clamp(34px, 3.8vw, 56px);
  height: clamp(34px, 3.8vw, 56px);
  border: 2.5px solid #ff4728;
  background: #ffffff;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.12);
  z-index: 5;
  cursor: pointer;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.25s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.25s ease;
}

.hero-arrow-circle-btn.hero-eye-d:hover,
.hero-eye-d:hover {
  transform: translate(-50%, -46%) scale(1.1);
  box-shadow: 0 8px 24px rgba(255, 71, 40, 0.35);
  border-color: #ff3311;
}

/* Pupils */
.hero-eye-pupil {
  position: absolute;
  width: 40%;
  height: 40%;
  border-radius: 50%;
  background: #000000;
  top: 30%;
  left: 30%;
  will-change: transform;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Micro reflection glint in pupil */
.hero-eye-glint {
  position: absolute;
  width: 28%;
  height: 28%;
  border-radius: 50%;
  background: #ffffff;
  top: 18%;
  right: 18%;
  opacity: 0.95;
  pointer-events: none;
}

/* Organic Eye Blink Animation */
.hero-eye.is-blinking {
  animation: heroEyeBlink 0.15s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes heroEyeBlink {
  0% {
    transform: translate(-50%, -46%) scaleY(1);
  }

  50% {
    transform: translate(-50%, -46%) scaleY(0.08);
  }

  100% {
    transform: translate(-50%, -46%) scaleY(1);
  }
}

/* Line 2: Outline Text (& Developer) */
.hero-headline-line.line-outline {
  z-index: 1;
  margin-top: -0.08em;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.18em;
  position: relative;
}

.outline-amp,
.outline-word {
  color: transparent;
  -webkit-text-stroke: clamp(1.4px, 0.22vw, 2.4px) #000000;
  font-weight: 900;
}

/* Layered Portrait of Amit Bisht in the center */
.hero-portrait-container {
  position: absolute;
  top: 36%;
  left: 50%;
  transform: translate(-50%, -10%);
  width: clamp(290px, 33vw, 470px);
  z-index: 2;
  pointer-events: none;
}

.portrait-crop-box {
  width: 100%;
  display: flex;
  justify-content: center;
}

.hero-portrait-image {
  width: 100%;
  height: auto;
  display: block;
  filter: contrast(1.04);
  mask-image: linear-gradient(to bottom, black 70%, transparent 99%);
  -webkit-mask-image: linear-gradient(to bottom, black 70%, transparent 99%);
}

/* Flanking Elements on Left & Right */
.hero-flank {
  top: 110%;
  position: absolute;
  bottom: 8%;
  z-index: 4;
}

.hero-flank-location {
  left: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(0.92rem, 1.1vw, 1.08rem);
  font-weight: 400;
  color: #222222;
}

.flank-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #ff4728;
  display: inline-block;
  box-shadow: 0 0 10px rgba(255, 71, 40, 0.7);
  animation: pulseLocationDot 2s infinite ease-in-out;
}

@keyframes pulseLocationDot {

  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.35);
    opacity: 0.6;
  }
}

.hero-flank-partners {
  right: 0.5rem;
  display: flex;
  align-items: center;
  gap: 1.6rem;
}

.partner-mark {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(0.85rem, 1.05vw, 1rem);
  font-weight: 600;
  color: #8c8c92;
  letter-spacing: -0.015em;
  transition: all 0.25s ease;
  cursor: default;
}

.partner-mark:hover {
  color: #000000;
  transform: translateY(-2px);
}

/* Bottom Centered CTA Buttons Dock */
.hero-cta-action-dock {
  position: relative;
  z-index: 5;
  margin-top: clamp(2.8rem, 6vw, 5rem);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  width: 100%;
}

.hero-pill-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.85rem;
  border-radius: 8px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.98rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-pill-solid {
  background-color: #000000;
  color: #ffffff;
  border: 1.5px solid #000000;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.14);
}

.hero-pill-solid:hover {
  background-color: #ff4728;
  border-color: #ff4728;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(255, 71, 40, 0.38);
}

.hero-pill-outline {
  background-color: #ffffff;
  color: #000000;
  border: 1.5px solid #000000;
}

.hero-pill-outline:hover {
  background-color: #000000;
  border-color: #000000;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.18);
}

/* Responsive Rules for Editorial Hero Layout */
@media (max-width: 1024px) {
  .hero-flank-location {
    position: static;
    margin-top: 1.8rem;
    order: 2;
  }

  .hero-flank-partners {
    position: static;
    margin-top: 0.8rem;
    order: 3;
    gap: 1.2rem;
  }

  .hero-stage {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 768px) {
  .header-container {
    padding: 0.85rem 1.25rem;
  }

  .editorial-nav {
    display: none;
  }

  /* Compact editorial hero layout - eliminates vast empty whitespace on mobile */
  .hero-editorial-section {
    min-height: auto !important;
    height: auto !important;
    padding: 4.5rem 1.25rem 2.5rem !important;
    justify-content: flex-start !important;
    align-items: center !important;
  }

  .hero-greeting-bar {
    font-size: clamp(0.92rem, 3.8vw, 1.05rem);
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
  }

  .hero-stage {
    padding-bottom: 0;
    margin-top: 0.15rem;
    width: 100%;
  }

  /* Bold, punchy headline that fills mobile width with confidence */
  .hero-headline-line {
    font-size: clamp(2.45rem, 10.5vw, 3.5rem);
    line-height: 0.95;
    letter-spacing: -0.035em;
  }

  .hero-headline-line.line-outline {
    margin-top: -0.02em;
  }

  /* Hide desktop headline with eyes on mobile */
  .hero-headline-desktop {
    display: none !important;
  }

  /* Show clean, crisp text on mobile with NO eyes */
  .hero-headline-mobile {
    display: inline-block !important;
  }

  /* Completely remove interactive eyes & circular eye badges on mobile */
  .hero-eye,
  .hero-eye-b,
  .hero-arrow-circle-btn.hero-eye-d,
  .hero-eye-d,
  .hero-eye-pupil,
  .hero-eye-glint {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
  }

  .hero-portrait-container {
    display: none;
  }

  /* Tighten location & tech badges spacing */
  .hero-flank-location {
    position: static;
    margin-top: 1.15rem;
    order: 2;
    font-size: 0.9rem;
    justify-content: center;
  }

  .hero-flank-partners {
    position: static;
    margin-top: 0.65rem;
    order: 3;
    gap: 0.65rem 1rem;
    flex-wrap: wrap;
    justify-content: center;
    padding: 0 0.5rem;
  }

  .partner-mark {
    font-size: 0.86rem;
  }

  /* Clean, compact CTA buttons dock */
  .hero-cta-action-dock {
    flex-direction: column;
    gap: 0.65rem;
    width: 100%;
    margin-top: 1.4rem;
  }

  .hero-pill-btn {
    width: 100%;
    max-width: 290px;
    padding: 0.8rem 1.4rem;
    font-size: 0.95rem;
  }
}

/* --------------------------------------------------------------------------
   6. SECTION EYEBROW & EDITORIAL HEADINGS
   -------------------------------------------------------------------------- */
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: #ff4728;
  text-transform: uppercase;
  margin-bottom: 0.85rem;
}

.eyebrow-num {
  color: #000000;
  font-weight: 800;
}

.eyebrow-dash {
  color: #ff4728;
  font-weight: 800;
}

.editorial-lead-heading {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(2rem, 3.6vw, 3.1rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.035em;
  color: #000000;
  margin-bottom: 1.25rem;
}

.editorial-sub {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #666666;
  max-width: 680px;
}

/* --------------------------------------------------------------------------
   7. SECTION 2: EDITORIAL ABOUT / PROFILE
   -------------------------------------------------------------------------- */
.profile-section {
  padding: 7rem 2.5rem 6rem;
  background-color: #ffffff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.profile-grid {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 4rem;
  align-items: start;
}

/* Profile Left Column: Monogram Card & Stats */
.profile-left-col {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.editorial-profile-card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 20px;
  padding: 2.4rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.25rem;
  box-shadow: 0 10px 36px rgba(0, 0, 0, 0.03);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.editorial-profile-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.06);
}

.card-avatar-wrapper {
  position: relative;
  margin-bottom: 0.25rem;
}

.editorial-monogram {
  width: 96px;
  height: 96px;
  border-radius: 24px;
  background: #000000;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  border: 4px solid #f4f4f6;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.card-online-badge {
  position: absolute;
  bottom: -4px;
  right: -8px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  padding: 0.25rem 0.65rem;
  border-radius: 9999px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  color: #10b981;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.badge-pulse-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 6px #10b981;

}

.profile-card-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}

.profile-card-name {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.65rem;
  font-weight: 800;
  color: #000000;
  letter-spacing: -0.03em;
}

.profile-card-role {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.9rem;
  color: #666666;
  font-weight: 500;
}

.profile-status-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #f7f7f9;
  border: 1px solid rgba(0, 0, 0, 0.06);
  padding: 0.45rem 1rem;
  border-radius: 9999px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  color: #222222;
}

.status-pulse-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ff4728;
  box-shadow: 0 0 8px rgba(255, 71, 40, 0.6);
  animation: pulseMarker 2s infinite ease-in-out;
}

@keyframes pulseMarker {

  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.3);
    opacity: 0.7;
  }
}

.profile-quick-stats {
  display: flex;
  align-items: center;
  justify-content: space-around;
  width: 100%;
  background: #fafafc;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 14px;
  padding: 0.95rem 0.5rem;
}

.quick-stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
}

.stat-num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.45rem;
  font-weight: 800;
  color: #000000;
  letter-spacing: -0.02em;
}

.stat-txt {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  color: #777777;
  text-transform: uppercase;
}

.quick-stat-divider {
  width: 1px;
  height: 28px;
  background: rgba(0, 0, 0, 0.08);
}

.profile-location-tag {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.84rem;
  color: #666666;
}

.profile-location-tag svg {
  color: #ff4728;
}

.profile-card-actions {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  width: 100%;
  margin-top: 0.4rem;
}

.editorial-btn-black {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0.8rem 1.4rem;
  background: #000000;
  color: #ffffff !important;
  border: 1.5px solid #000000;
  border-radius: 8px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
}

.editorial-btn-black:hover {
  background: #ff4728;
  border-color: #ff4728;
  color: #ffffff !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 71, 40, 0.35);
}

.editorial-btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0.8rem 1.4rem;
  background: #ffffff;
  color: #000000;
  border: 1.5px solid #000000;
  border-radius: 8px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.editorial-btn-outline:hover {
  background: #000000;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

/* Profile Right Column: Narrative, Skills, Meta */
.profile-right-col {
  display: flex;
  flex-direction: column;
  gap: 2.25rem;
}

.info-block {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.bio-paragraph {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.1rem;
  line-height: 1.75;
  color: #333333;
  font-weight: 400;
}

.bio-paragraph strong {
  font-weight: 700;
  color: #000000;
}

.block-header-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}

.block-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: #000000;
  text-transform: uppercase;
}

.block-hint {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.8rem;
  color: #888888;
  font-weight: 500;
}

/* Skills Tiles */
.skills-badge-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 0.25rem;
}

.skill-badge-app {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
  cursor: pointer;
  outline: none;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.skill-badge-app:hover,
.skill-badge-app:focus-visible {
  transform: translateY(-5px) scale(1.05);
}

.app-icon-squircle {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: all 0.25s ease;
}

.skill-badge-app:hover .app-icon-squircle {
  box-shadow: 0 8px 24px rgba(255, 71, 40, 0.25);
  border-color: #ff4728;
}

.icon-react {
  background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%);
  color: #ffffff;
}

.icon-js {
  background: linear-gradient(135deg, #facc15 0%, #eab308 100%);
  color: #000000;
}

.icon-mongodb {
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
  color: #ffffff;
}

.icon-express {
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
  color: #ffffff;
}

.icon-node {
  background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
  color: #ffffff;
}

.icon-php {
  background: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%);
  color: #ffffff;
}

.icon-mysql {
  background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%);
  color: #ffffff;
}

.icon-wp {
  background: linear-gradient(135deg, #0073aa 0%, #005177 100%);
  color: #ffffff;
}

.app-initials {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.app-label {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  color: #444444;
  transition: color 0.2s ease;
}

.skill-badge-app:hover .app-label {
  color: #ff4728;
}

/* Skill Status Ticker */
.skill-status-ticker {
  background: #f7f7f9;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 10px;
  padding: 0.75rem 1.15rem;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-top: 0.4rem;
}

.ticker-prefix {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 800;
  color: #ff4728;
  letter-spacing: 0.08em;
}

.ticker-content {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.88rem;
  color: #333333;
  font-weight: 500;
}

/* Profile Bottom Meta Grid */
.profile-meta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-top: 0.5rem;
}

.meta-card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
  transition: all 0.25s ease;
}

.meta-card:hover {
  border-color: rgba(0, 0, 0, 0.16);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
}

.meta-card-full {
  grid-column: span 2;
}

.meta-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.meta-icon {
  font-size: 1.15rem;
}

.meta-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #000000;
  text-transform: uppercase;
}

.meta-period {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  color: #ff4728;
  letter-spacing: 0.05em;
  margin-bottom: 0.2rem;
  display: block;
}

.meta-institution {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 800;
  color: #000000;
  margin-bottom: 0.35rem;
}

.meta-sub {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.88rem;
  color: #555555;
  line-height: 1.5;
}

.meta-sub-highlight {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  color: #000000;
  margin-bottom: 0.5rem;
}

.proficiency-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.proficiency-item {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.item-label {
  display: flex;
  justify-content: space-between;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  color: #444444;
  letter-spacing: 0.02em;
}

.item-val {
  color: #ff4728;
  font-weight: 800;
}

.progress-bar-track {
  width: 100%;
  height: 6px;
  background: #f0f0f4;
  border-radius: 9999px;
  overflow: hidden;
}

.progress-bar-fill {
  height: 100%;
  background: #ff4728;
  border-radius: 9999px;
  transition: width 0.6s ease;
}

/* --------------------------------------------------------------------------
   8. SECTION 3: EDITORIAL SELECTED WORKS / PROJECTS
   -------------------------------------------------------------------------- */
.projects-section {
  padding: 7rem 2.5rem 6rem;
  background-color: #fafafc;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.projects-container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.projects-title-row {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

/* Filter Pills */
.project-filters {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}

.filter-pill {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 0.6rem 1.35rem;
  border-radius: 9999px;
  background: #ffffff;
  border: 1.5px solid rgba(0, 0, 0, 0.12);
  color: #444444;
  cursor: pointer;
  transition: all 0.25s ease;
}

.filter-pill:hover {
  border-color: #000000;
  color: #000000;
  transform: translateY(-1px);
}

.filter-pill.active {
  background: #000000;
  border-color: #000000;
  color: #ffffff;
  font-weight: 700;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
}

/* Projects Grid (3 in Row 1, 2 Centered in Row 2) */
.project-bento-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.75rem;
  margin-top: 1.25rem;
  width: 100%;
}

.project-card {
  width: calc(33.333% - 1.25rem);
  max-width: 385px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.project-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
}

.project-card-image {
  position: relative;
  width: 100%;
  height: 205px;
  background: #0d1a2d;
  overflow: hidden;
}

.project-card-image img,
.project-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.project-card:hover .project-card-image img,
.project-card:hover .project-img {
  transform: scale(1.04);
}

.card-status-badge {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  z-index: 2;
  background: #ffffff;
  color: #111111;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  padding: 0.3rem 0.72rem;
  border-radius: 9999px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.12);
  text-transform: uppercase;
}

.project-card-content {
  padding: 1.35rem 1.4rem 1.45rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  background: #ffffff;
}

.card-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.45rem;
}

.card-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
  color: #111111;
  letter-spacing: -0.02em;
  margin: 0;
}

.card-corner-arrow {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #f1f3f7;
  color: #334155;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.25s ease;
}

.project-card:hover .card-corner-arrow {
  background: #000000;
  color: #ffffff;
  transform: translate(2px, -2px);
}

.card-summary {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.84rem;
  color: #555555;
  line-height: 1.5;
  margin: 0 0 1rem;
  flex: 1;
}

.tech-stack-pills {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
  margin-bottom: 1.25rem;
}

.tech-stack-pills span {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  color: #4b5563;
  background: #f3f4f6;
  border: 1px solid #e5e7eb;
  padding: 0.25rem 0.6rem;
  border-radius: 6px;
}

.card-action-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 0.35rem;
  gap: 0.75rem;
}

.card-btn-view {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 1.15rem;
  border-radius: 8px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
}

.card-btn-view svg {
  transition: transform 0.2s ease;
}

.card-btn-view:hover svg {
  transform: translateX(3px);
}

/* Card-specific pastel themes matching screenshot */
.card-theme-red .card-btn-view {
  background: #fee2e2;
  color: #dc2626;
}

.card-theme-red .card-btn-view:hover {
  background: #fecaca;
  color: #b91c1c;
}

.card-theme-blue .card-btn-view {
  background: #dbeafe;
  color: #2563eb;
}

.card-theme-blue .card-btn-view:hover {
  background: #bfdbfe;
  color: #1d4ed8;
}

.card-theme-orange .card-btn-view {
  background: #ffedd5;
  color: #ea580c;
}

.card-theme-orange .card-btn-view:hover {
  background: #fed7aa;
  color: #c2410c;
}

.card-theme-green .card-btn-view {
  background: #d1fae5;
  color: #059669;
}

.card-theme-green .card-btn-view:hover {
  background: #a7f3d0;
  color: #047857;
}

.card-theme-purple .card-btn-view {
  background: #ede9fe;
  color: #7c3aed;
}

.card-theme-purple .card-btn-view:hover {
  background: #ddd6fe;
  color: #6d28d9;
}

/* Live Site Link matching screenshot */
.card-link-live {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.84rem;
  font-weight: 700;
  color: #2563eb;
  text-decoration: none;
  transition: all 0.2s ease;
}

.card-link-live:hover {
  color: #1d4ed8;
  text-decoration: underline;
}

.card-link-live svg {
  flex-shrink: 0;
}

/* Bottom "View All Projects ->" Action Pill Dock */
.projects-bottom-dock {
  display: flex;
  justify-content: center;
  margin-top: 2.75rem;
  width: 100%;
}

.btn-view-all-projects {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: #0f172a;
  color: #ffffff;
  border: 1.5px solid #0f172a;
  padding: 0.78rem 1.85rem;
  border-radius: 9999px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.18);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-view-all-projects:hover {
  background: #ff4728;
  border-color: #ff4728;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(255, 71, 40, 0.35);
}

.btn-view-all-projects svg {
  transition: transform 0.25s ease;
}

.btn-view-all-projects:hover svg {
  transform: translateX(4px);
}

/* --------------------------------------------------------------------------
   9. SECTION 4: EDITORIAL SERVICES // "TAKE WHAT YOU NEED" FLYER
   -------------------------------------------------------------------------- */
.services-section {
  position: relative;
  min-height: 100vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 7rem 2.5rem 6rem;
  background-color: #fafafc;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

/* Contained Ambient Wall Lighting */
.services-ambient-wall {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 20%, rgba(255, 71, 40, 0.04) 0%, transparent 45%),
    radial-gradient(circle at 90% 80%, rgba(0, 0, 0, 0.025) 0%, transparent 55%),
    #fafafc;
}

.services-palm-shadow {
  position: absolute;
  filter: blur(28px);
  opacity: 0.08;
  pointer-events: none;
  background: #111827;
}

.services-palm-shadow-left {
  top: -80px;
  left: -70px;
  width: 440px;
  height: 600px;
  border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  transform: rotate(-25deg);
  animation: palmBreezeLeft 20s ease-in-out infinite alternate;
}

.services-palm-shadow-right {
  bottom: -100px;
  right: -80px;
  width: 460px;
  height: 560px;
  border-radius: 60% 40% 30% 70% / 50% 40% 60% 50%;
  transform: rotate(32deg);
  animation: palmBreezeRight 22s ease-in-out infinite alternate-reverse;
}

@keyframes palmBreezeLeft {
  0% { transform: rotate(-25deg) translateY(0); }
  100% { transform: rotate(-22deg) translateY(12px); }
}

@keyframes palmBreezeRight {
  0% { transform: rotate(32deg) translateY(0); }
  100% { transform: rotate(29deg) translateY(-10px); }
}

.services-light-leak {
  position: absolute;
  top: 0;
  right: 18%;
  width: 320px;
  height: 400px;
  background: radial-gradient(ellipse at 50% 0%, rgba(255, 255, 255, 0.8) 0%, transparent 70%);
  pointer-events: none;
}

.services-container {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
}

.services-title-row {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

/* Bulletin Toolbar */
.services-bulletin-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 820px;
  margin-top: 0.25rem;
  padding: 0 0.5rem;
}

.bulletin-brand-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: #333333;
  background: rgba(255, 255, 255, 0.9);
  padding: 0.45rem 1rem;
  border-radius: 9999px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.bulletin-pulse-dot {
  width: 7px;
  height: 7px;
  background-color: #ff4728;
  border-radius: 50%;
  animation: bulletinDotPulse 2s infinite ease-in-out;
}

@keyframes bulletinDotPulse {
  0%, 100% { transform: scale(0.9); opacity: 0.8; }
  50% { transform: scale(1.3); opacity: 1; box-shadow: 0 0 8px #ff4728; }
}

.bulletin-toolbar-actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.bulletin-action-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.12);
  padding: 0.45rem 0.95rem;
  border-radius: 8px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  color: #222222;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}

.bulletin-action-btn:hover {
  border-color: #000000;
  color: #000000;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.bulletin-action-btn strong {
  color: #ff4728;
}

.bulletin-action-btn .sound-off-icon.hidden,
.bulletin-action-btn .sound-on-icon.hidden {
  display: none !important;
}

/* Studio Perspective Wrapper & Paper Flyer */
.flyer-perspective-wrapper {
  perspective: 1600px;
  display: flex;
  justify-content: center;
  width: 100%;
}

.paper-flyer {
  position: relative;
  width: 100%;
  max-width: 820px;
  background-color: #ffffff;
  border-radius: 4px;
  box-shadow:
    0 2px 6px rgba(0, 0, 0, 0.04),
    0 20px 48px -12px rgba(40, 30, 20, 0.13),
    0 45px 85px -25px rgba(30, 20, 15, 0.1);
  padding-top: 50px;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.paper-texture-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: 4px;
  background-image: radial-gradient(rgba(0, 0, 0, 0.025) 1px, transparent 0);
  background-size: 24px 24px;
  opacity: 0.65;
}

/* Realistic Masking / Washi Tape */
.washi-tape {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%) rotate(-0.5deg);
  width: 175px;
  height: 42px;
  background-color: rgba(234, 224, 206, 0.9);
  box-shadow: 0 4px 12px rgba(60, 45, 30, 0.12);
  z-index: 15;
  backdrop-filter: blur(4px);
  border-left: 2px dashed rgba(175, 155, 125, 0.5);
  border-right: 2px dashed rgba(175, 155, 125, 0.5);
}

.washi-tape::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    90deg,
    transparent,
    transparent 12px,
    rgba(255, 255, 255, 0.28) 13px,
    rgba(0, 0, 0, 0.02) 14px
  );
  opacity: 0.75;
}

.tape-crease {
  position: absolute;
  top: 50%;
  left: 10%;
  width: 80%;
  height: 1px;
  background: rgba(255, 255, 255, 0.45);
}

/* Flyer Header */
.flyer-header {
  text-align: center;
  padding: 10px 30px 20px;
  user-select: none;
}

.flyer-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0;
  line-height: 0.9;
}

.title-our {
  font-family: 'Syne', var(--font-editorial);
  font-weight: 900;
  font-size: clamp(3rem, 7.5vw, 4.8rem);
  color: #000000;
  letter-spacing: -0.035em;
  text-transform: uppercase;
}

.title-services {
  font-family: 'Syne', var(--font-editorial);
  font-weight: 900;
  font-size: clamp(3.4rem, 9vw, 5.6rem);
  color: #ff4728;
  letter-spacing: -0.025em;
  text-transform: uppercase;
  margin-top: 4px;
}

.flyer-accent-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  max-width: 220px;
  margin: 20px auto 12px;
}

.divider-line {
  flex: 1;
  height: 1.5px;
  background-color: #ff4728;
  opacity: 0.85;
}

.divider-diamond {
  width: 6px;
  height: 6px;
  background-color: #ff4728;
  transform: rotate(45deg);
}

.flyer-tagline {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(0.78rem, 1.6vw, 0.92rem);
  font-weight: 800;
  letter-spacing: 0.3em;
  color: #111111;
  text-transform: uppercase;
  margin-top: 6px;
}

/* Perforation Row & Scissors */
.perforation-row {
  position: relative;
  display: flex;
  align-items: center;
  margin-top: 20px;
  padding: 0 10px;
}

.scissors-wrapper {
  position: absolute;
  left: 8px;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  z-index: 8;
  cursor: pointer;
  transition: transform 0.25s ease;
}

.scissors-wrapper:hover {
  transform: translateY(-50%) rotate(-12deg) scale(1.15);
}

.scissors-svg {
  width: 20px;
  height: 20px;
  color: #4b5563;
}

.perforated-cut-line {
  flex: 1;
  height: 0;
  border-top: 2px dashed #cbd5e1;
  margin-left: 28px;
}

/* Tear-Away Vertical Slips Container */
.tear-slips-container {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  width: 100%;
  position: relative;
  background: transparent;
  padding-bottom: 24px;
}

.tear-slip {
  position: relative;
  background-color: #ffffff;
  border-right: 1px solid rgba(0, 0, 0, 0.07);
  border-left: 1px solid rgba(255, 255, 255, 0.9);
  padding: 18px 6px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  user-select: none;
  transition:
    transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    background-color 0.25s ease,
    opacity 0.4s ease;
  transform-origin: top center;
  outline: none;
}

.tear-slip:first-child {
  border-left: none;
}

.tear-slip:last-child {
  border-right: none;
}

.slip-perforation-edge {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: repeating-linear-gradient(
    90deg,
    #cbd5e1 0px,
    #cbd5e1 3px,
    transparent 3px,
    transparent 7px
  );
  opacity: 0.9;
}

.slip-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  position: relative;
}

.slip-icon-box {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ff4728;
  margin-bottom: 24px;
  flex-shrink: 0;
  z-index: 2;
  transition: transform 0.3s ease;
}

.service-icon {
  width: 24px;
  height: 24px;
}

.slip-vertical-label {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: clamp(0.75rem, 1.02vw, 0.86rem);
  color: #18181b;
  letter-spacing: 0.02em;
  text-align: center;
  white-space: nowrap;
  padding: 10px 0;
  margin: 12px 0;
  transition: color 0.25s ease;
}

.slip-hover-cue {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  margin-top: 14px;
  flex-shrink: 0;
  opacity: 0;
  transform: translateY(-6px);
  transition: all 0.25s ease;
}

.rip-arrow {
  color: #ff4728;
  font-size: 1.1rem;
  font-weight: 900;
  animation: bounceDownRip 1.4s infinite;
}

.rip-text {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: #ff4728;
}

@keyframes bounceDownRip {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(4px); }
}

.jagged-tear-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 16px;
  background-color: #ffffff;
  clip-path: polygon(
    0% 0%,
    100% 0%,
    100% 40%,
    93% 100%,
    87% 35%,
    80% 90%,
    72% 30%,
    64% 95%,
    57% 45%,
    50% 100%,
    42% 30%,
    35% 85%,
    28% 40%,
    20% 95%,
    14% 35%,
    7% 90%,
    0% 40%
  );
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.08);
}

/* Organic Slip Heights - Balanced to give ample breathing room above and below text */
.tear-slip:nth-child(1) { height: 465px; }
.tear-slip:nth-child(2) { height: 480px; }
.tear-slip:nth-child(3) { height: 460px; }
.tear-slip:nth-child(4) { height: 475px; }
.tear-slip:nth-child(5) { height: 470px; }

/* Interactive Hover State: 3D Paper Swing & Lift */
.tear-slip:hover:not(.torn) {
  transform: translateY(8px) rotateX(8deg) scale(1.02);
  z-index: 10;
  background-color: #ffffff;
  box-shadow: 0 15px 30px -5px rgba(255, 71, 40, 0.18), 0 10px 20px -8px rgba(0, 0, 0, 0.12);
}

.tear-slip:hover:not(.torn) .slip-icon-box {
  transform: scale(1.15) rotate(-6deg);
}

.tear-slip:hover:not(.torn) .slip-vertical-label {
  color: #ff4728;
}

.tear-slip:hover:not(.torn) .slip-hover-cue {
  opacity: 1;
  transform: translateY(0);
}

.tear-slip:focus-visible {
  outline: 2px solid #ff4728;
  outline-offset: 2px;
}

/* Torn State & Animations */
.tear-slip.torn {
  pointer-events: none;
  opacity: 0.18;
  filter: grayscale(0.8);
  transform: translateY(12px) rotate(3deg);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.tear-slip.torn::after {
  content: 'TAKEN';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
  font-family: 'Syne', var(--font-editorial);
  font-weight: 900;
  font-size: 1.1rem;
  letter-spacing: 0.15em;
  color: #dc2626;
  border: 2px dashed #dc2626;
  padding: 4px 10px;
  border-radius: 4px;
  opacity: 0.9;
}

.is-tearing {
  animation: paperRipRip 0.65s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  z-index: 30 !important;
}

@keyframes paperRipRip {
  0% { transform: translateY(0) rotate(0deg); }
  25% { transform: translateY(15px) rotate(4deg) skewX(2deg); }
  55% { transform: translateY(60px) rotate(-8deg) scale(1.05); opacity: 0.9; }
  100% { transform: translateY(140px) rotate(-16deg) scale(0.9); opacity: 0; }
}

/* Floating Collected Services Tray */
.collected-tray {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(0);
  width: 90%;
  max-width: 780px;
  background: rgba(18, 18, 24, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 100px;
  padding: 10px 14px 10px 22px;
  z-index: 1050;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.35s ease;
}

.collected-tray.hidden {
  transform: translateX(-50%) translateY(100px);
  opacity: 0;
  pointer-events: none;
}

.tray-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.tray-left {
  display: flex;
  align-items: center;
  gap: 12px;
  overflow: hidden;
  flex: 1;
}

.tray-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 100px;
  white-space: nowrap;
}

.badge-dot {
  width: 8px;
  height: 8px;
  background-color: #ff4728;
  border-radius: 50%;
  animation: trayPulse 1.8s infinite;
}

@keyframes trayPulse {
  0%, 100% { transform: scale(0.9); opacity: 0.8; }
  50% { transform: scale(1.3); opacity: 1; }
}

.tray-chips-scroll {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
}

.tray-chips-scroll::-webkit-scrollbar {
  display: none;
}

.service-chip {
  background: rgba(255, 255, 255, 0.14);
  color: #f4f4f5;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 100px;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 6px;
}

.chip-remove {
  background: none;
  border: none;
  color: #a1a1aa;
  cursor: pointer;
  font-size: 0.95rem;
  line-height: 1;
  padding: 0;
  transition: color 0.2s ease;
}

.chip-remove:hover {
  color: #ffffff;
}

.tray-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ff4728;
  color: #ffffff;
  border: none;
  padding: 10px 22px;
  border-radius: 100px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s ease;
  box-shadow: 0 4px 14px rgba(255, 71, 40, 0.35);
}

.tray-cta-btn:hover {
  background: #e63d20;
  transform: scale(1.03);
}

/* Service Detail Modal Card */
.service-modal-card {
  max-width: 580px;
  width: 100%;
}

.modal-service-icon-badge {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(255, 71, 40, 0.1);
  color: #ff4728;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.modal-service-icon-badge svg {
  width: 26px;
  height: 26px;
}

.modal-service-category {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: #ff4728;
  text-transform: uppercase;
  display: block;
}

.service-modal-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
  color: #000000;
  margin: 0.15rem 0 0;
}

.service-modal-body {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.service-modal-description {
  font-size: 0.94rem;
  color: #4b5563;
  line-height: 1.6;
}

.modal-deliverables-box {
  background: #fafafc;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 12px;
  padding: 1.15rem;
}

.deliverables-heading {
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: #111111;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.deliverables-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  padding: 0;
}

.deliverables-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.86rem;
  color: #444444;
}

.deliverables-list li svg {
  width: 16px;
  height: 16px;
  color: #ff4728;
  flex-shrink: 0;
  margin-top: 2px;
}

.modal-metrics-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

.metric-card {
  background: #f4f4f7;
  padding: 0.75rem 1rem;
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.metric-value {
  font-family: 'Syne', var(--font-editorial);
  font-size: 1.25rem;
  font-weight: 800;
  color: #000000;
}

.metric-label {
  font-size: 0.72rem;
  font-weight: 600;
  color: #6b7280;
}

.service-modal-footer {
  display: flex;
  gap: 0.75rem;
}

.service-tear-btn {
  flex: 1;
  background: #ff4728;
  color: #ffffff;
}

.service-tear-btn:hover {
  background: #e63d20;
}

.whatsapp-cta-btn {
  background: #25d366;
  color: #ffffff;
  border-color: #25d366;
}

.whatsapp-cta-btn:hover {
  background: #1ebe5d;
  border-color: #1ebe5d;
  color: #ffffff;
}

/* --------------------------------------------------------------------------
   10. SECTION 5: EDITORIAL CONTACT & INQUIRIES
   -------------------------------------------------------------------------- */
.contact-section {
  padding: 7rem 2.5rem 4rem;
  background-color: #ffffff;
}

.contact-layout {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.contact-header-wrap {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.contact-columns-grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 3.5rem;
  align-items: start;
  margin-top: 1rem;
}

/* Contact Left Column */
.contact-left-col {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.editorial-contact-card {
  background: #000000;
  color: #ffffff;
  border-radius: 20px;
  padding: 2.2rem 2rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  position: relative;
  overflow: hidden;
}

.editorial-contact-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 44px rgba(255, 71, 40, 0.28);
  background: #111111;
}

.contact-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.contact-label {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: #888888;
  text-transform: uppercase;
}

.contact-action-tag {
  background: #ff4728;
  color: #ffffff;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.25rem 0.65rem;
  border-radius: 9999px;
  letter-spacing: 0.05em;
  transition: all 0.2s ease;
}

.contact-email-val {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(1.25rem, 1.8vw, 1.55rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #ffffff;
  margin: 1rem 0 0.35rem;
}

.contact-card-sub {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.82rem;
  color: #aaaaaa;
}

.editorial-info-card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 18px;
  padding: 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

.info-item-row {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
}

.info-item-icon {
  font-size: 1.2rem;
  line-height: 1;
  margin-top: 2px;
}

.info-item-text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.info-item-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  color: #888888;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.info-item-detail {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  color: #111111;
}

.info-item-link {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  color: #111111;
  text-decoration: none;
  transition: color 0.2s ease;
}

.info-item-link:hover {
  color: #ff4728;
}

.status-open {
  color: #10b981;
  font-weight: 700;
}

.contact-channels-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.contact-channel-item {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  padding: 0.9rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-decoration: none;
  color: #111111;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  transition: all 0.25s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}

.contact-channel-item:hover {
  border-color: #ff4728;
  color: #ff4728;
  transform: translateX(4px);
  box-shadow: 0 4px 16px rgba(255, 71, 40, 0.12);
}

.channel-brand-group {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.channel-name {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
}

.channel-arrow {
  font-size: 1rem;
  color: #888888;
  transition: transform 0.2s ease, color 0.2s ease;
}

.contact-channel-item:hover .channel-arrow {
  color: #ff4728;
  transform: translate(2px, -2px);
}

/* Contact Right Column: Form */
.contact-right-col {
  display: flex;
  flex-direction: column;
}

.editorial-form-card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 20px;
  padding: 2.25rem 2rem;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.03);
}

.form-card-header {
  margin-bottom: 1.5rem;
}

.form-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.55rem;
  font-weight: 800;
  color: #000000;
  letter-spacing: -0.02em;
}

.form-desc {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.9rem;
  color: #666666;
  margin-top: 0.25rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.form-group label {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #333333;
  text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: #f8f8fa;
  border: 1.5px solid rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  padding: 0.85rem 1rem;
  color: #000000;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.95rem;
  outline: none;
  transition: all 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #ff4728;
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(255, 71, 40, 0.12);
}

.form-group select option {
  background: #ffffff;
  color: #000000;
}

.field-error-msg {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.75rem;
  color: #ef4444;
  font-weight: 600;
  display: none;
}

.form-group.has-error input,
.form-group.has-error textarea {
  border-color: #ef4444;
}

.form-group.has-error .field-error-msg {
  display: block;
}

.form-action-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 0.5rem;
}

.editorial-submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  background: #000000;
  color: #ffffff;
  border: 1.5px solid #000000;
  border-radius: 8px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0.85rem 1.85rem;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
}

.editorial-submit-btn:hover {
  background: #ff4728;
  border-color: #ff4728;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 71, 40, 0.35);
}

.editorial-reset-btn {
  background: transparent;
  border: 1.5px solid rgba(0, 0, 0, 0.12);
  color: #555555;
  border-radius: 8px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.85rem 1.4rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.editorial-reset-btn:hover {
  border-color: #000000;
  color: #000000;
}

.btn-spinner {
  width: 14px;
  height: 14px;
  border: 2px solid #ffffff;
  border-top-color: transparent;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  display: none;
}

.editorial-submit-btn.is-submitting .btn-spinner {
  display: block;
}

.editorial-submit-btn.is-submitting .btn-arrow {
  display: none;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Minimalist Editorial Footer */
.editorial-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2.5rem 0 1rem;
  margin-top: 3.5rem;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  width: 100%;
}

.footer-left {
  display: flex;
  align-items: baseline;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer-brand {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: #000000;
}

.footer-copyright {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.85rem;
  color: #888888;
}

.footer-top-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: #f8f8fa;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 9999px;
  padding: 0.55rem 1.25rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: #333333;
  cursor: pointer;
  transition: all 0.2s ease;
}

.footer-top-btn:hover {
  background: #000000;
  color: #ffffff;
  border-color: #000000;
  transform: translateY(-2px);
}

/* --------------------------------------------------------------------------
   10. MODALS & DIALOGS (OPTIONS, SPECS, EXIT) - CLEAN EDITORIAL DESIGN
   -------------------------------------------------------------------------- */
.hud-modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  animation: fadeInModal 0.25s ease forwards;
}

@keyframes fadeInModal {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.hud-modal-window {
  width: 100%;
  max-width: 580px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 20px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.18);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transform: scale(0.96);
  animation: popInModal 0.25s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  color: #000000;
}

.hud-modal-window.modal-wide {
  max-width: 760px;
}

.hud-modal-window.modal-compact {
  max-width: 440px;
}

@keyframes popInModal {
  to {
    transform: scale(1);
  }
}

.modal-header {
  padding: 1.25rem 1.75rem;
  background: #f8f8fa;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.modal-title-wrap {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.modal-icon {
  font-size: 1.15rem;
}

.modal-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1rem;
  letter-spacing: 0.04em;
  font-weight: 800;
  color: #000000;
}

.modal-close-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.05);
  color: #444444;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.modal-close-btn:hover {
  background: #000000;
  color: #ffffff;
}

.modal-body {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  max-height: 70vh;
  overflow-y: auto;
  color: #333333;
}

.modal-footer {
  padding: 1.25rem 1.75rem;
  background: #f8f8fa;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.75rem;
}

/* Spec Inspector Modal Contents */
.spec-grid-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  padding-bottom: 1.25rem;
}

.spec-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.45rem;
  font-weight: 800;
  color: #000000;
  letter-spacing: -0.02em;
}

.spec-category-badge {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  color: #ffffff;
  background: #000000;
  padding: 0.3rem 0.75rem;
  border-radius: 9999px;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.spec-narrative {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.95rem;
  color: #555555;
  line-height: 1.6;
}

.spec-details-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  background: #f8f8fa;
  padding: 1.25rem;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.spec-detail-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.spec-detail-key {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  color: #ff4728;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.spec-detail-val {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  color: #000000;
}

.action-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: #000000;
  color: #ffffff !important;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  padding: 0.75rem 1.4rem;
  border-radius: 8px;
  border: 1.5px solid #000000;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.action-btn-primary:hover {
  background: #ff4728;
  border-color: #ff4728;
  color: #ffffff !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(255, 71, 40, 0.35);
}

.action-btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: #ffffff;
  color: #000000 !important;
  border: 1.5px solid rgba(0, 0, 0, 0.15);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  padding: 0.75rem 1.4rem;
  border-radius: 8px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.25s ease;
}

.action-btn-secondary:hover {
  border-color: #000000;
  background: #000000;
  color: #ffffff !important;
  transform: translateY(-1px);
}

/* Options Rows */
.setting-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.setting-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.setting-info {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.setting-label {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: #000000;
}

.setting-desc {
  font-size: 0.82rem;
  color: #666666;
}

/* Modern Switch */
.hud-switch {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 24px;
  flex-shrink: 0;
}

.hud-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.switch-slider {
  position: absolute;
  cursor: pointer;
  inset: 0;
  background-color: #e2e8f0;
  border-radius: 9999px;
  transition: 0.2s ease;
}

.switch-slider::before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background-color: #ffffff;
  border-radius: 50%;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
  transition: 0.2s ease;
}

.hud-switch input:checked+.switch-slider {
  background-color: #ff4728;
}

.hud-switch input:checked+.switch-slider::before {
  transform: translateX(20px);
}

/* Color Swatches */
.color-picker-row {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.color-swatch-btn {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
}

.color-swatch-btn.cyan {
  background: #ff4728;
}

.color-swatch-btn.emerald {
  background: #10b981;
}

.color-swatch-btn.violet {
  background: #8b5cf6;
}

.color-swatch-btn.amber {
  background: #f59e0b;
}

.color-swatch-btn.active {
  border-color: #000000;
  transform: scale(1.15);
}

/* Exit Prompt */
.modal-prompt-text {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.95rem;
  color: #555555;
  line-height: 1.55;
}

.exit-actions-column {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1rem;
}

.text-link-btn {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.85rem;
  color: #777777;
  text-align: center;
  padding: 0.5rem;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: color 0.2s ease;
}

.text-link-btn:hover {
  color: #000000;
  text-decoration: underline;
}

/* --------------------------------------------------------------------------
   11. FLOATING EDITORIAL TOAST NOTIFICATION
   -------------------------------------------------------------------------- */
.hud-toast {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 2100;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: #000000;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.25);
  padding: 0.85rem 1.35rem;
  border-radius: 10px;
  transform: translateY(120%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.35s ease;
}

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

.toast-indicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ff4728;
  box-shadow: 0 0 10px #ff4728;
}

.toast-message {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.88rem;
  font-weight: 500;
  color: #ffffff;
  letter-spacing: -0.01em;
}

/* --------------------------------------------------------------------------
   12. RESPONSIVE MEDIA QUERIES
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .profile-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .profile-left-col {
    max-width: 480px;
    margin: 0 auto;
    width: 100%;
  }

  .project-bento-grid {
    gap: 1.5rem;
  }

  .project-card {
    width: calc(50% - 0.85rem);
    max-width: 440px;
  }

  .contact-columns-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .contact-left-col {
    max-width: 540px;
    width: 100%;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .screen-section {
    min-height: auto;
    height: auto;
    padding: 3.5rem 1.25rem 2.75rem;
  }

  .profile-section,
  .projects-section,
  .services-section,
  .contact-section {
    padding: 3.5rem 1.25rem 2.75rem;
  }

  .services-bulletin-toolbar {
    flex-direction: column;
    gap: 0.75rem;
    align-items: stretch;
  }

  .bulletin-toolbar-actions {
    justify-content: space-between;
  }

  .paper-flyer {
    padding-top: 36px;
  }

  .flyer-header {
    padding: 8px 16px 16px;
  }

  .title-our {
    font-size: 2.7rem;
  }

  .title-services {
    font-size: 3.1rem;
  }

  .flyer-tagline {
    font-size: 0.72rem;
    letter-spacing: 0.22em;
  }

  .tear-slip {
    padding: 12px 3px 20px;
  }

  .slip-icon-box {
    width: 32px;
    height: 32px;
    margin-bottom: 16px;
  }

  .service-icon {
    width: 20px;
    height: 20px;
  }

  .slip-vertical-label {
    font-size: 0.72rem;
    padding: 6px 0;
    margin: 8px 0;
  }

  .tear-slip:nth-child(1) { height: 390px; }
  .tear-slip:nth-child(2) { height: 405px; }
  .tear-slip:nth-child(3) { height: 385px; }
  .tear-slip:nth-child(4) { height: 400px; }
  .tear-slip:nth-child(5) { height: 395px; }

  .collected-tray {
    width: 94%;
    bottom: 16px;
    padding: 8px 12px;
    border-radius: 20px;
  }

  .tray-inner {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }

  .tray-cta-btn {
    width: 100%;
    justify-content: center;
    padding: 8px 16px;
  }

  .profile-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .editorial-profile-card {
    padding: 1.75rem 1.25rem;
    gap: 1rem;
  }

  .profile-meta-grid {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }

  .meta-card-full {
    grid-column: span 1;
  }

  .projects-container {
    gap: 1.5rem;
  }

  .project-bento-grid {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }

  .project-card {
    width: 100%;
    max-width: 100%;
  }

  .contact-columns-grid {
    gap: 2rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .spec-details-list {
    grid-template-columns: 1fr;
  }

  .editorial-footer {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.25rem;
    padding: 2.25rem 1.25rem 2rem;
  }

  .footer-left {
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
  }

  .hud-toast {
    left: 1.25rem;
    right: 1.25rem;
    bottom: 1.25rem;
  }
}

@media (max-width: 480px) {
  .services-section {
    padding: 2.75rem 0.75rem 2.25rem;
  }

  .title-our {
    font-size: 2.1rem;
  }

  .title-services {
    font-size: 2.4rem;
  }

  .slip-icon-box {
    width: 26px;
    height: 26px;
    margin-bottom: 12px;
  }

  .service-icon {
    width: 16px;
    height: 16px;
  }

  .slip-vertical-label {
    font-size: 0.64rem;
    padding: 4px 0;
    margin: 6px 0;
  }

  .tear-slip:nth-child(1) { height: 340px; }
  .tear-slip:nth-child(2) { height: 355px; }
  .tear-slip:nth-child(3) { height: 335px; }
  .tear-slip:nth-child(4) { height: 350px; }
  .tear-slip:nth-child(5) { height: 345px; }

  .modal-metrics-row {
    grid-template-columns: 1fr;
  }

  .service-modal-footer {
    flex-direction: column;
  }
}