/* 
  Enciera Redesign Style - Phase 5 (Bug Fixes & Hover Effects)
*/

:root {
  --bg-main: #e8e5df;
  /* Luxurious warm greige / pale sand */
  --text-primary: #1d1d1f;
  /* Deep charcoal with a touch of elegance */
  --text-secondary: #58534e;
  /* Softened warm grey for atmosphere */
  --enciera-orange: #f29c7d;
  /* Softened for champagne blend */
  --ideza-red: #da3e3e;
  --enciera-dark: #1d1d1f;

  --liquid-champagne: linear-gradient(135deg, #fceabb 0%, #f8b500 50%, #fceabb 100%);
  --pearl-glass: linear-gradient(135deg, rgba(255, 255, 255, 0.7) 0%, rgba(255, 248, 240, 0.4) 50%, rgba(255, 255, 255, 0.7) 100%);

  --glass-bg: rgba(255, 255, 255, 0.25);
  --glass-border: rgba(255, 255, 255, 0.05);

  --space-section: 320px;
  --radius-pill: 50px;
  --radius-card: 48px;
}

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

body {
  font-family: 'Inter', 'Zen Kaku Gothic New', sans-serif;
  background-color: var(--bg-main);
  color: var(--text-primary);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  position: relative;
  letter-spacing: 0.04em;
}

/* Premium Noise Texture */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-image: url('data:image/svg+xml;utf8,%3Csvg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"%3E%3Cfilter id="noiseFilter"%3E%3CfeTurbulence type="fractalNoise" baseFrequency="0.85" numOctaves="3" stitchTiles="stitch"/%3E%3C/filter%3E%3Crect width="100%25" height="100%25" filter="url(%23noiseFilter)"/%3E%3C/svg%3E');
  opacity: 0.03;
  z-index: 9999;
  pointer-events: none;
  mix-blend-mode: overlay;
}

/* Background Aurora Blobs */
@keyframes float {
  0% {
    transform: translate(0vw, 0vh) scale(1);
  }

  33% {
    transform: translate(5vw, -10vh) scale(1.1);
  }

  66% {
    transform: translate(-5vw, 15vh) scale(0.9);
  }

  100% {
    transform: translate(0vw, 0vh) scale(1);
  }
}

@keyframes floatReverse {
  0% {
    transform: translate(0vw, 0vh) scale(1);
  }

  33% {
    transform: translate(-10vw, 10vh) scale(1.2);
  }

  66% {
    transform: translate(5vw, -5vh) scale(0.8);
  }

  100% {
    transform: translate(0vw, 0vh) scale(1);
  }
}

.blobs-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
  background-color: var(--bg-main);
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.8;
  mix-blend-mode: multiply;
  /* Works beautifully on the greige background */
}

.blob-1 {
  width: 60vw;
  height: 60vw;
  max-width: 800px;
  max-height: 800px;
  background-color: rgba(238, 143, 76, 0.45);
  top: -10%;
  right: -10%;
  animation: float 25s ease-in-out infinite;
}

.blob-2 {
  width: 50vw;
  height: 50vw;
  max-width: 700px;
  max-height: 700px;
  background-color: rgba(41, 173, 227, 0.35);
  bottom: -10%;
  left: -10%;
  animation: floatReverse 30s ease-in-out infinite;
}

.blob-3 {
  width: 45vw;
  height: 45vw;
  max-width: 600px;
  max-height: 600px;
  background-color: rgba(218, 62, 62, 0.3);
  top: 30%;
  left: 20%;
  animation: float 28s ease-in-out infinite;
}

.blob-4 {
  width: 40vw;
  height: 40vw;
  max-width: 500px;
  max-height: 500px;
  background-color: rgba(142, 68, 173, 0.3);
  bottom: 20%;
  right: 10%;
  animation: floatReverse 24s ease-in-out infinite;
}

.blob-5 {
  width: 35vw;
  height: 35vw;
  max-width: 450px;
  max-height: 450px;
  background-color: rgba(241, 196, 15, 0.3);
  top: 10%;
  left: 40%;
  animation: float 20s ease-in-out infinite;
}

/* Subtle Champagne Bokeh Animation */
.bubbles-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}

.bubble {
  position: absolute;
  border-radius: 50%;
  /* Champagne Gold / Warm Sparkle */
  background: radial-gradient(circle at 30% 30%, rgba(255, 248, 230, 0.6), rgba(255, 240, 200, 0.15) 45%, rgba(255, 230, 180, 0) 80%);
  mix-blend-mode: overlay;
  /* Will be injected by JS for perfect depth */
}

@keyframes floatSway1 {

  0%,
  100% {
    transform: translate(0, 0) scale(1) rotate(0deg);
    opacity: 0.9;
  }

  33% {
    transform: translate(120px, -150px) scale(1.1) rotate(45deg);
    opacity: 0.4;
  }

  66% {
    transform: translate(-80px, 120px) scale(0.9) rotate(-30deg);
    opacity: 1;
  }
}

@keyframes floatSway2 {

  0%,
  100% {
    transform: translate(0, 0) scale(1) rotate(0deg);
    opacity: 0.7;
  }

  33% {
    transform: translate(-120px, -90px) scale(0.9) rotate(-45deg);
    opacity: 1;
  }

  66% {
    transform: translate(90px, -140px) scale(1.1) rotate(30deg);
    opacity: 0.3;
  }
}

@keyframes floatSway3 {

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

  33% {
    transform: translate(150px, 120px) scale(1.1) rotate(60deg);
    opacity: 0.4;
  }

  66% {
    transform: translate(-100px, -80px) scale(0.8) rotate(-60deg);
    opacity: 0.9;
  }
}

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

/* Typography */
h1,
h2,
h3 {
  font-family: 'Cormorant Garamond', 'Noto Serif JP', serif;
  font-weight: 700;
  color: var(--text-primary);
}

h1 {
  font-size: 72px;
  line-height: 1.2;
  letter-spacing: 0.12em;
  margin-bottom: 32px;
}

h2 {
  font-size: 52px;
  line-height: 1.4;
  letter-spacing: 0.2em;
  margin-bottom: 16px;
  text-transform: uppercase;
}

/* Balanced Presence */
h3 {
  font-size: 24px;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 12px;
}

p {
  font-size: 17px;
  color: var(--text-secondary);
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.02em;
}

/* Buttons */
.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: var(--radius-pill);
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
  border: none;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  /* Prevents text from ever wrapping */
}

.btn-primary {
  /* Sampled from Yellow/Orange aurora blobs for atmospheric blend */
  background: linear-gradient(135deg, #f1c40f 0%, #ee8f4c 100%);
  color: #fff; /* User requested comparison to white text */
  font-weight: 700;
  box-shadow: 0 10px 25px rgba(238, 143, 76, 0.25), inset 0 2px 5px rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary {
  background-color: var(--glass-bg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: var(--text-primary);
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02), inset 0 2px 0 rgba(255, 255, 255, 0.5);
}

.btn-primary::after,
.btn-secondary::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 50%, rgba(255, 255, 255, 0) 100%);
  transform: skewX(-20deg);
  transition: all 0.6s ease;
}

.btn-primary:hover::after,
.btn-secondary:hover::after {
  left: 150%;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 25px rgba(238, 143, 76, 0.4), inset 0 2px 0 rgba(255, 255, 255, 0.4);
}

.btn-secondary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 25px rgba(0, 0, 0, 0.08), inset 0 2px 0 rgba(255, 255, 255, 0.8);
  background: #fff;
}

.btn-primary.large,
.btn-secondary.large {
  padding: 24px 64px;
  font-size: clamp(16px, 4vw, 22px);
  /* Scales down on mobile automatically */
  letter-spacing: 0.2em;
  font-weight: 700;
}

@media (max-width: 480px) {

  .btn-primary.large,
  .btn-secondary.large {
    padding: 18px 32px;
    /* Smaller padding on very small screens */
  }
}

.w-full {
  width: 100%;
}

/* Navigation */
@keyframes organicNav {

  0%,
  100% {
    border-radius: 40px 80px 50px 70px / 70px 40px 80px 50px;
  }

  33% {
    border-radius: 70px 50px 80px 40px / 50px 70px 40px 80px;
  }

  66% {
    border-radius: 50px 70px 40px 80px / 80px 50px 70px 40px;
  }
}

@keyframes navSlideIn {
  0% {
    transform: translateX(-50%) translateY(-40px);
    opacity: 0;
    filter: blur(10px);
  }

  100% {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
    filter: blur(0);
  }
}

.nav-logo img {
  height: 44px !important;
  width: auto;
}

/* Optimized for container height */
.glass-nav {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: 96vw;
  max-width: none;
  background: none;
  /* Background moved to ::before */
  border: none;
  animation: organicNav 12s ease-in-out infinite, navSlideIn 1.8s cubic-bezier(0.2, 0.8, 0.2, 1) 2.5s both;
  z-index: 1000;
  padding: 8px 32px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.03);
}

.glass-nav::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--pearl-glass);
  backdrop-filter: blur(160px);
  -webkit-backdrop-filter: blur(160px);
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  z-index: -1;
  border-radius: inherit;
  /* Inherit the organic shape */
}

.nav-container {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

.nav-logo {
  justify-self: start;
}

.nav-links {
  justify-self: center;
}

.nav-cta {
  justify-self: end;
}

/* Refined I.DEZA Logo */
@keyframes heroEntrance {
  0% {
    transform: scale(0.85) translateY(40px);
    opacity: 0;
    filter: blur(20px);
  }

  100% {
    transform: scale(1) translateY(0);
    opacity: 1;
    filter: blur(0);
  }
}

.nav-logo,
.hero-logo-main {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.nav-logo img {
  height: 42px !important;
  width: auto;
}

/* Increased logo size */
.hero-logo-main {
  font-size: 7vw;
  max-font-size: 120px;
}

.hero-logo-main img {
  opacity: 0;
  animation: heroEntrance 2.5s cubic-bezier(0.2, 0.8, 0.2, 1) 0.5s forwards;
  /* Appears SECOND, after background */
}

.red {
  color: var(--ideza-red);
  font-size: 1.25em;
  vertical-align: baseline;
}

.red-dot {
  color: var(--ideza-red);
  font-size: 1.2em;
}

.nav-links {
  display: flex;
  gap: 64px;
  align-items: center;
  justify-self: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Spaced even more and ensuring no markers */
.nav-links li {
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-primary);
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 0.15em;
  /* Larger & Elegantly spaced */
  transition: all 0.3s;
  opacity: 0.8;
  white-space: nowrap;
}

.nav-links a:hover {
  color: var(--enciera-orange);
}

.nav-cta {
  padding: 12px 32px;
  font-size: clamp(13px, 2.5vw, 16px);
  /* Reliable scaling */
  font-weight: 700;
  letter-spacing: 0.1em;
}

/* Layout Sections */
main {
  padding-top: 0;
}

/* Hero handles its own spacing */
.section {
  padding: var(--space-section) 0;
}

.section-header {
  text-align: center;
  margin-bottom: 0px;
  position: relative;
}

.section-title {
  margin-bottom: 320px;
}

/* Single concept view */
.section-subtitle {
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.8;
  font-size: 18px;
  color: var(--text-secondary);
  opacity: 0.9;
}

.cta-intro {
  font-size: 19px;
  color: var(--text-secondary);
  line-height: 2;
  font-weight: 500;
  max-width: 800px;
  margin: 0 auto 40px;
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
}

.subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 400;
  font-style: italic;
  letter-spacing: 0.8em;
  color: var(--text-primary);
  text-transform: lowercase;
  margin-top: 10px;
  opacity: 0;
  animation: heroEntrance 3s cubic-bezier(0.2, 0.8, 0.2, 1) 0.8s both;
}

/* Refined Profile */
.profile-section {
  position: relative;
}

.profile-layout {
  display: flex;
  align-items: center;
  gap: 80px;
  background: var(--glass-bg);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-card);
  padding: 80px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.03);
}

.profile-image-wrapper {
  flex: 0 0 280px;
  position: relative;
}

.profile-image-wrapper::after {
  content: '';
  position: absolute;
  top: 10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  background: var(--enciera-orange);
  border-radius: 50%;
  filter: blur(30px);
  opacity: 0.3;
  z-index: -1;
}

.profile-img-large {
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 50%;
  object-fit: cover;
  border: 6px solid #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.profile-text-wrapper {
  flex: 1;
}

.profile-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 56px;
  margin-bottom: 8px;
  color: var(--enciera-orange);
  letter-spacing: 0.22em;
  font-weight: 700;
}

.profile-catchphrase {
  font-family: 'Noto Serif JP', serif;
  font-size: 40px;
  margin-bottom: 24px;
  color: var(--text-primary);
  line-height: 1.6;
}

.phrase-line {
  display: inline-block;
  white-space: nowrap;
  /* Prevents orphaned characters like 'で、' */
}

.profile-intro {
  font-size: 19px;
  color: var(--text-secondary);
  /* Balanced grey as requested */
  line-height: 2;
  font-weight: 500;
}

@media (max-width: 768px) {
  .profile-layout {
    flex-direction: column;
    text-align: center;
    padding: 40px 24px;
    gap: 40px;
  }

  .profile-image-wrapper {
    flex: 0 0 160px;
    /* Smaller mobile icon */
    width: 160px;
    margin: 0 auto;
  }

  .profile-name {
    font-size: clamp(32px, 8vw, 52px);
    letter-spacing: 0.1em;
    white-space: normal;
    /* Allow wrap between first/last if really tight */
  }

  .profile-catchphrase {
    font-size: clamp(20px, 5.5vw, 44px);
    white-space: nowrap;
    /* Force the intentional break only */
  }
}

/* Works Grid */
.works-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 40px;
  row-gap: 200px;
  margin-top: 120px;
  /* Expanded for story focus */
  margin-bottom: 400px;
  /* Gigantic gap before next section */
}

.work-card {
  background: var(--glass-bg);
  padding: 16px;
  border-radius: var(--radius-card);
  margin: 0 auto;
  width: 100%;
  border: 1px solid var(--glass-border);
  transition: all 0.5s;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
}

.work-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 100%);
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}

.work-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  border-color: rgba(255, 255, 255, 0.3);
}

.work-card:hover::before {
  opacity: 1;
}

.work-img-container {
  width: 100%;
  height: 380px;
  background-color: var(--bg-main);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  overflow: hidden;
  position: relative;
  border-radius: 12px;
}

@keyframes imageBreathe {

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

  50% {
    transform: scale(1.04);
  }
}

.work-img-container img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  animation: imageBreathe 10s ease-in-out infinite;
  transform-origin: center;
}

.work-card:hover img {
  animation-play-state: paused;
  transform: scale(1.08);
}

.work-info {
  padding: 24px;
  text-align: center;
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.work-info h3 {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--text-primary);
  white-space: nowrap;
  /* Prevents the heading from breaking unnaturally */
  overflow: hidden;
  text-overflow: ellipsis;
  /* Ensures it stays clean if titles are very long */
}

/* Lightbox Modal */
.lightbox {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(250, 249, 246, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  flex-direction: column;
  padding: 40px 24px;
}

.lightbox.active {
  opacity: 1;
}

.close-btn {
  position: absolute;
  top: 24px;
  right: 40px;
  color: #fff;
  font-size: 48px;
  font-weight: 300;
  cursor: pointer;
  transition: transform 0.3s;
}

.close-btn:hover {
  transform: scale(1.1);
}

.lightbox-content-wrapper {
  max-width: 900px;
  width: 100%;
  border-radius: var(--radius-card);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  background: var(--bg-main);
  padding: 40px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.lightbox-content {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: 60vh;
  object-fit: contain;
  margin: 0 auto;
}

#caption {
  margin-top: 24px;
  color: var(--text-primary);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-align: center;
}

#lightbox-desc {
  margin-top: 16px;
  color: var(--text-secondary);
  font-size: 16px;
  font-weight: 400;
  max-width: 700px;
  text-align: center;
  line-height: 1.8;
  margin-left: auto;
  margin-right: auto;
}

/* Price Grid */
.glass-section {
  position: relative;
}

.glass-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(80px);
  -webkit-backdrop-filter: blur(80px);
  z-index: -1;
  /* Relaxed Mist-Edge masking - sharper boundary than before */
  mask-image: linear-gradient(to bottom, transparent, black 3%, black 97%, transparent);
  -webkit-mask-image: linear-gradient(to bottom, transparent, black 3%, black 97%, transparent);
}

.price-grid-wrapper {
  position: relative;
  margin-top: 60px;
}

/* Closer to subtitle as requested */
.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.price-card {
  position: relative;
  padding: 80px 40px;
  border-radius: var(--radius-card);
  transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
  /* Faster snappier hover */
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.03);
  z-index: 1;
}

.price-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--pearl-glass);
  border-radius: inherit;
  backdrop-filter: blur(160px);
  -webkit-backdrop-filter: blur(160px);
  z-index: -1;
  /* Removed individual mask to focus on global section mask */
}

.price-card:hover {
  transform: scale(1.05) translateY(-15px);
  /* Clear Zoom + Lift */
  box-shadow: 0 60px 150px rgba(248, 181, 0, 0.15);
  /* More obvious glow */
}

.price-card:hover::before {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 248, 240, 0.7) 50%, rgba(255, 255, 255, 0.9) 100%);
}

.price-card h3 {
  font-size: 20px;
  text-align: center;
  margin-bottom: 32px;
  color: var(--text-primary);
  white-space: normal;
}

.price-card .price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
}

.price-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 84px;
  font-weight: 500;
  font-style: italic;
  /* Even larger & more elegant weight */
  color: var(--enciera-orange);
  letter-spacing: -0.04em;
  line-height: 1;
}

.price-unit {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: var(--text-secondary);
  font-style: normal;
  white-space: nowrap;
}

.price-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.price-card ul li {
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--text-secondary);
  text-align: center;
}

.price-card ul li:last-child {
  border-bottom: none;
}

/* Monitor Badge */
.monitor-badge {
  display: inline-block;
  margin-top: 32px;
  /* Removed cursor: pointer; to prevent confusing UX (user cannot click this) */
}

.monitor-badge-text {
  font-family: 'Noto Serif JP', serif;
  font-size: 40px;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--enciera-orange);
  line-height: 1.4;
  text-align: center;
  position: relative;
  transition: all 0.4s ease;
  opacity: 1;
  /* Full opacity for better visibility */
}

.monitor-badge:hover .monitor-badge-text {
  opacity: 1;
  text-shadow: 0 0 20px rgba(242, 156, 125, 0.3);
  transform: translateY(-2px);
}

/*.monitor-badge-text::after {
  content: ''; position: absolute; bottom: -8px; left: 50%; transform: translateX(-50%);
  width: 40px; height: 1px; background: var(--enciera-orange); opacity: 0.4;
}*/
.sp-only {
  display: none;
}

/* Swipe Hints */
.price-grid-wrapper {
  position: relative;
}

.swipe-hint {
  display: none;
  /* Hidden on desktop */
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 36px;
  color: var(--enciera-orange);
  z-index: 10;
  background: rgba(255, 255, 255, 0.7);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  text-align: center;
  line-height: 36px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  pointer-events: none;
  animation: swipePulse 2s ease-in-out infinite;
}

.swipe-hint-left {
  left: 8px;
}

.swipe-hint-right {
  right: 8px;
}

@keyframes swipePulse {

  0%,
  100% {
    opacity: 0.6;
    transform: translateY(-50%) scale(1);
  }

  50% {
    opacity: 1;
    transform: translateY(-50%) scale(1.15);
  }
}

.price-card:nth-child(1):hover {
  background: rgba(238, 143, 76, 0.05);
  border-color: rgba(238, 143, 76, 0.4);
  transform: scale(1.05);
  box-shadow: 0 30px 60px rgba(238, 143, 76, 0.15);
}

.price-card:nth-child(2):hover {
  background: rgba(227, 41, 140, 0.05);
  border-color: rgba(227, 41, 140, 0.4);
  transform: scale(1.05);
  box-shadow: 0 30px 60px rgba(227, 41, 140, 0.15);
}

.price-card:nth-child(3):hover {
  background: rgba(41, 173, 227, 0.05);
  border-color: rgba(41, 173, 227, 0.4);
  transform: scale(1.05);
  box-shadow: 0 30px 60px rgba(41, 173, 227, 0.15);
}

/* CTA Section */
@keyframes ctaPop {
  0% {
    transform: scale(0.9) translateY(80px);
    opacity: 0;
  }

  60% {
    transform: scale(1.02) translateY(-10px);
    opacity: 1;
    box-shadow: 0 60px 120px rgba(229, 92, 60, 0.25);
  }

  100% {
    transform: scale(1) translateY(0);
    opacity: 1;
    box-shadow: 0 40px 80px rgba(229, 92, 60, 0.15);
  }
}

.cta-section {
  padding-top: 120px;
  padding-bottom: 120px;
}

.cta-card {
  position: relative;
  padding: 120px 60px;
  border-radius: var(--radius-card);
  max-width: 900px;
  margin: 0 auto;
  opacity: 0;
  transform: scale(0.9) translateY(80px);
  z-index: 10;
  text-align: center;
  box-shadow: 0 50px 150px rgba(0, 0, 0, 0.03);
}

.cta-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--pearl-glass);
  border-radius: inherit;
  backdrop-filter: blur(160px);
  -webkit-backdrop-filter: blur(160px);
  mask-image: radial-gradient(circle, black 60%, transparent 100%);
  -webkit-mask-image: radial-gradient(circle, black 60%, transparent 100%);
  z-index: -1;
}

.cta-section.active .cta-card {
  animation: ctaPop 1.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: 0.2s;
}

.cta-card h2 {
  color: var(--enciera-orange);
  font-size: 36px;
  margin-bottom: 24px;
  font-weight: 800;
}

.cta-card p {
  color: var(--enciera-dark);
  font-size: 18px;
  margin-bottom: 64px; /* Expanded spacing to drop the button down comfortably and give text breathing room */
  font-weight: 500;
}

/* Dedicated Forms */
.form-container {
  max-width: 700px;
  margin: 0 auto;
  background: var(--glass-bg);
  backdrop-filter: blur(24px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-card);
  padding: 60px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.03);
}

.form-group {
  margin-bottom: 24px;
  text-align: left;
}

.form-group label {
  display: block;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 16px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-family: inherit;
  font-size: 16px;
  background: #fff;
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--enciera-orange);
}

footer {
  text-align: center;
  padding: 40px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

footer p {
  font-size: 14px;
}

/* ═══════════════════════════════════════════════
   CINEMATIC REVEAL ANIMATION SYSTEM
   ═══════════════════════════════════════════════ */

/* Elements that should be hidden until scrolled into view MUST have the .reveal class in HTML */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  filter: blur(12px);
  /* Premium mild blur reveal for faster performance */
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

/* Staggered delay for elements within the same view */
.section-subtitle.active {
  transition-delay: 0.3s;
}

.works-grid.active {
  transition-delay: 0.1s; /* Reduced to prevent empty space on mobile */
}

.price-grid-wrapper.active {
  transition-delay: 0.6s;
}

.monitor-badge.active {
  transition-delay: 0.3s;
}

/* Profile Staggered Entry (Only triggers when .profile-layout.active) */
.profile-image-wrapper {
  opacity: 0;
  transform: translateX(-40px);
  filter: blur(10px);
  transition: all 1.6s cubic-bezier(0.2, 0.8, 0.2, 1) 0.5s;
}

.profile-text-wrapper {
  opacity: 0;
  transform: translateX(40px);
  filter: blur(10px);
  transition: all 1.6s cubic-bezier(0.2, 0.8, 0.2, 1) 0.9s;
}

.reveal.active .profile-image-wrapper,
.reveal.active .profile-text-wrapper {
  opacity: 1;
  transform: translateX(0);
  filter: blur(0);
}

/* Portfolio cards: staggered blur-fade-up (set by JS) */
.work-card {
  opacity: 0;
  transform: translateY(30px) scale(0.98);
  filter: blur(6px);
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.work-card.card-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

/* Section headers: basic reveal */
.section-header.active {
  transition-delay: 0.1s;
}

/* Price cards: staggered entry from bottom */
.price-card {
  opacity: 0;
  transform: translateY(40px);
  filter: blur(8px);
  transition: all 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.price-card:nth-child(1) {
  transition-delay: 0.2s;
}

.price-card:nth-child(2) {
  transition-delay: 0.5s;
}

.price-card:nth-child(3) {
  transition-delay: 0.8s;
}

.reveal.active .price-card {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

/* ═══════════════════════════════════════════════
   RESPONSIVE DESIGN SYSTEM (REFRACTORED)
   ═══════════════════════════════════════════════ */

/* [1] Laptop/Tablet (Small Desktop) */
@media (max-width: 1200px) {
  .section-title {
    margin-bottom: 240px;
  }

  .profile-layout {
    gap: 60px;
    padding: 60px;
  }

  .works-grid {
    column-gap: 30px;
    row-gap: 120px;
  }
}

/* [2] Mid-Tablet (iPad) */
@media (max-width: 992px) {
  h1 {
    font-size: 56px;
  }

  h2 {
    font-size: 42px;
  }

  .section {
    padding: 180px 0;
  }

  .profile-layout {
    flex-direction: column;
    text-align: center;
    padding: 32px 16px;
    gap: 32px;
    max-width: 95vw;
    margin: 0 auto;
  }

  .profile-image-wrapper {
    flex: 0 0 160px;
    width: 160px;
    margin: 0 auto;
  }

  .profile-name {
    font-size: 48px;
  }

  .profile-catchphrase {
    font-size: 28px;
  }

  .profile-intro,
  .cta-intro {
    font-size: 17px;
    line-height: 1.8;
  }

  .works-grid {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 80px;
  }

  .price-grid {
    gap: 24px;
  }

  .price-card {
    padding: 40px 24px;
  }
}

/* [3] Mobile (iPhone/Pixel) */
@media (max-width: 768px) {
  h1 {
    font-size: clamp(32px, 9vw, 48px);
  }

  h2 {
    font-size: clamp(28px, 8vw, 36px);
  }

  .section {
    padding: 100px 0;
  }

  .section-title {
    margin-bottom: 120px;
  }

  /* Smart Sticky Nav */
  .glass-nav {
    width: 94vw;
    padding: 6px 12px;
    border-radius: 12px;
    /* Stable rounding for tight spaces */
  }

  .nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
  }

  .nav-logo img {
    height: 26px !important;
  }

  .nav-links {
    display: none;
  }

  /* Standard SP hide */
  .nav-cta {
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 800;
  }

  /* Hero Content */
  .hero-logo-main {
    width: 100%;
    text-align: center;
  }

  .hero-logo-main img {
    max-width: 85vw !important;
    height: auto;
  }

  .subtitle {
    font-size: 12px !important;
    letter-spacing: 0.4em !important;
    margin-top: 8px !important;
  }

  /* Profile mobile fix */
  .profile-catchphrase {
    font-size: clamp(18px, 6vw, 24px) !important;
    white-space: normal;
    line-height: 1.6;
    max-width: 100%;
    margin: 24px auto;
  }

  .phrase-line {
    display: inline-block;
    width: 100%;
    text-align: center;
    white-space: nowrap;
    /* Force the intentional split only */
  }

  .profile-name {
    font-size: clamp(32px, 10vw, 44px);
    letter-spacing: 0.05em;
  }

  .profile-intro,
  .cta-intro {
    font-size: 15px !important;
    line-height: 1.6 !important;
  }

  .section-subtitle {
    font-size: 14px;
    line-height: 1.6;
  }

  .works-grid {
    grid-template-columns: 1fr;
    row-gap: 80px;
  }

  .work-img-container {
    height: 300px;
  }

  /* Pricing Carousel for Mobile Comfort */
  .price-grid-wrapper {
    overflow: visible;
  }

  .price-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 20px;
    padding: 10px 20px 40px;
    margin: 0 -20px;
    -webkit-overflow-scrolling: touch;
  }

  .price-grid::-webkit-scrollbar {
    display: none;
  }

  .price-card {
    flex: 0 0 85%;
    scroll-snap-align: center;
    min-width: 280px;
    padding: 60px 32px;
  }

  .price-number {
    font-size: 64px;
  }

  .swipe-hint {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* Forms & CTA */
  .form-container {
    padding: 40px 20px;
    width: 100%;
  }

  .cta-card {
    padding: 80px 24px;
    width: 95%;
  }

  .cta-card h2 {
    font-size: 28px;
  }

  /* Monitor badge: elegant serif on mobile */
  .sp-only {
    display: inline;
  }

  .monitor-badge {
    margin-top: 16px;
    width: 100%;
  }

  .monitor-badge-text {
    font-size: 16px !important;
    font-family: 'Noto Serif JP', serif;
    padding: 0;
    background: none;
    border: none;
    line-height: 1.5;
    max-width: 95vw;
    margin: 0 auto;
  }
}

/* [4] Ultra-Small Mobile (Mini/SE) */
@media (max-width: 360px) {
  .nav-cta {
    padding: 6px 12px;
    font-size: 11px;
  }

  .nav-logo img {
    height: 22px !important;
  }

  .profile-catchphrase {
    font-size: 18px;
  }

  .price-card {
    flex: 0 0 90%;
    min-width: 260px;
  }

  .subtitle {
    font-size: 10px !important;
    letter-spacing: 0.3em !important;
  }

  .monitor-badge-text {
    font-size: 14px !important;
  }
}

/* ═══════════════════════════════════════════════
   FEATURED SOLUTION SHOWCASE SECTION
   ═══════════════════════════════════════════════ */
.special-feature-section {
  padding: 140px 0;
  position: relative;
}

.feature-showcase {
  display: flex;
  flex-direction: column;
  gap: 160px;
  margin-top: 100px;
}

.showcase-item {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: flex-start;
}

.showcase-item.reverse {
  grid-template-columns: 1fr 1.2fr;
}

.showcase-item.reverse .showcase-visual {
  order: 2;
}

.showcase-item.reverse .showcase-content {
  order: 1;
}

/* Visual Side & Clickable Action Wrapping */
.showcase-visual {
  display: flex;
  flex-direction: column;
  gap: 56px;
  align-items: center;
}

.clickable-visual {
  text-decoration: none;
  display: block;
  width: 100%;
  cursor: pointer;
}

.browser-frame-wrapper {
  position: relative;
  width: 100%;
}

.browser-frame {
  width: 100%;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.08), 0 4px 12px rgba(0, 0, 0, 0.04);
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.05);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.browser-frame.dark-mode-frame {
  background: #1a1a1a;
  border-color: rgba(255,255,255,0.1);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.15);
}

/* Hover lifts the image frame when linked */
.clickable-visual:hover .browser-frame {
  transform: translateY(-18px) scale(1.02);
  box-shadow: 0 60px 130px rgba(0, 0, 0, 0.15);
}

.browser-top {
  height: 36px;
  background: #f0f2f5;
  display: flex;
  align-items: center;
  padding: 0 16px;
  gap: 8px;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.dark-mode-frame .browser-top {
  background: #2d2d2d;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.frame-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.frame-dot.red { background: #ff5f56; }
.frame-dot.yellow { background: #ffbd2e; }
.frame-dot.green { background: #27c93f; }

.frame-url {
  margin-left: 20px;
  background: #ffffff;
  flex-grow: 1;
  max-width: 300px;
  height: 22px;
  border-radius: 6px;
  font-size: 12px;
  color: #888;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inter', sans-serif;
}

.dark-mode-frame .frame-url {
  background: #3d3d3d;
  color: #aaa;
}

.frame-body {
  width: 100%;
  line-height: 0;
}

.frame-body img {
  width: 100%;
  height: auto;
  display: block;
}

/* 🌟 Deep Cloud Flow Animation reserved ONLY for Final CTA 🌟 */
@keyframes cloudMorphing {
  0% {
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    transform: translate3d(0, 0, 0) rotate(0.01deg);
  }
  50% {
    border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
    transform: translate3d(0, -15px, 0) rotate(0.5deg);
  }
  100% {
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    transform: translate3d(0, 0, 0) rotate(0.01deg);
  }
}

/* ☁️ Dedicated Aura Morph Animation (NO transform to prevent double-translation drift) ☁️ */
@keyframes cloudAuraMorphing {
  0% {
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  }
  50% {
    border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
  }
  100% {
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  }
}

.dynamic-btn-group {
  width: 100%;
  text-align: center;
}

/* SPECIAL INTERNAL DEMO PILL BUTTONS (Stripped of morph, optimized elegance) */
.btn-special-float {
  display: inline-block;
  position: relative;
  overflow: hidden;
  padding: 18px 56px;
  /* Sampled from Background Blob-3 & Blob-1: Soft warm harmony */
  background: linear-gradient(135deg, #da3e3e 0%, #f29c7d 100%);
  color: #fff !important;
  text-decoration: none;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.1em;
  border-radius: 50px; /* Standard clean pill shape */
  box-shadow: 0 12px 30px rgba(218, 62, 62, 0.2);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

.btn-special-float:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 20px 50px rgba(218, 62, 62, 0.35);
}

/* Harmonized Violet/Blue gentle palette sampled from Background Blob-4 & Blob-2 */
.btn-gentle-float {
  background: linear-gradient(135deg, #8e44ad 0%, #29ade3 100%);
  box-shadow: 0 12px 30px rgba(142, 68, 173, 0.2);
}

.btn-gentle-float:hover {
  box-shadow: 0 20px 50px rgba(142, 68, 173, 0.35);
}

/* 👑 NEW CLOUD MORPH MASTER CTA BUTTON (Upgraded to Real Soft Hazy Cloud) 👑 */
.btn-cloud-morph {
  display: inline-block;
  position: relative;
  /* Removed overflow: hidden to let the beautiful hazy vapor aura expand outwards */
  padding: 24px 72px;
  /* Semi-translucent gradient base for gaseous cloud feel */
  background: linear-gradient(135deg, rgba(242, 156, 125, 0.85), rgba(255, 123, 84, 0.85)); 
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.35); /* Soft bright highlight along the mist boundary */
  color: #fff !important;
  text-decoration: none;
  font-weight: 800;
  font-size: 20px;
  letter-spacing: 0.15em;
  border-radius: 50px; 
  
  /* Highly diffused layered soft glow */
  box-shadow: 
    0 20px 50px rgba(229, 92, 60, 0.2),
    inset 0 4px 15px rgba(255, 255, 255, 0.35); /* Beautiful inner light scattering */
  
  animation: cloudMorphing 7s ease-in-out infinite; /* The magical organic vibe */
  will-change: transform, border-radius;
  transform-style: preserve-3d;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1;
}

/* ☁️ The Hazy Floating Cloud Vapor Aura (Soft, layered blur backing) ☁️ */
.btn-cloud-morph::after {
  content: '';
  position: absolute;
  top: -4px; /* Hugs the button closely to create a fuzzy boundary */
  left: -4px;
  right: -4px;
  bottom: -4px;
  background: linear-gradient(135deg, #f29c7d, #ff7b54);
  border-radius: inherit;
  filter: blur(12px); /* Tighter elite gaseous atmospheric diffusion for hazy edges */
  opacity: 0.85; /* Solidify slightly to define the cloud edge */
  z-index: -1;
  animation: cloudAuraMorphing 7s ease-in-out infinite; /* Use clean aura morph to remain perfectly center aligned */
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}

.btn-cloud-morph:hover {
  transform: scale(1.06) translate3d(0, -8px, 0) !important;
  box-shadow: 
    0 30px 70px rgba(229, 92, 60, 0.35),
    inset 0 4px 20px rgba(255, 255, 255, 0.5);
}

/* The cloud mist dynamically expands and diffuses deeper on hover */
.btn-cloud-morph:hover::after {
  top: -10px; /* Controlled expansion so it never intrudes on the text area */
  left: -10px;
  right: -10px;
  bottom: -10px;
  filter: blur(20px); /* Soft swell that remains focused around the button boundary */
  opacity: 0.95;
}

/* 🌟 Shine Reflection Overlay Effect on Hover 🌟 */
.ripple-shine::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.5) 50%, rgba(255,255,255,0) 100%);
  transform: skewX(-25deg) translate3d(0,0,0);
  transition: none;
  pointer-events: none;
}

.ripple-shine:hover::before {
  left: 160%;
  transition: left 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Content Styles */
.showcase-content {
  padding: 0 20px;
}

.showcase-headline {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(24px, 2.6vw, 32px);
  line-height: 1.5;
  margin-top: 0;
  margin-bottom: 28px;
  color: var(--text-primary);
  font-weight: 700;
}

/* (NEW) Utility class to prevent orphans */
.text-no-wrap {
  display: inline-block;
  white-space: nowrap;
}

.showcase-text {
  font-size: 17px;
  line-height: 1.9;
  color: var(--text-secondary);
  margin-bottom: 36px;
  text-align: justify;
  word-break: auto-phrase;
}

.showcase-highlights {
  list-style: none;
  padding: 0;
  margin: 0;
}

.showcase-highlights li {
  position: relative;
  padding-left: 32px;
  margin-bottom: 16px;
  font-size: 16px;
  color: var(--text-primary);
  font-weight: 500;
  line-height: 1.6;
}

.showcase-highlights li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 1px;
  color: var(--enciera-orange);
  font-weight: 900;
  font-size: 18px;
}

/* Mobile Responsive */
@media (max-width: 1024px) {
  .showcase-item, .showcase-item.reverse {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .showcase-item.reverse .showcase-visual {
    order: 1;
  }
  
  .showcase-item.reverse .showcase-content {
    order: 2;
  }
  
  .feature-showcase {
    gap: 120px;
  }
  
  .showcase-content {
    padding: 0 15px;
    text-align: center;
  }
  
  .showcase-headline {
    margin-top: 20px;
    font-size: clamp(22px, 6vw, 28px);
  }
  
  .showcase-highlights {
    display: inline-block;
    text-align: left;
    max-width: 90%;
  }
  
  .showcase-visual {
    gap: 40px;
  }
}

@media (max-width: 600px) {
  .special-feature-section {
    padding: 80px 0;
  }
  
  .feature-showcase {
    margin-top: 40px;
    gap: 80px;
  }
  
  .showcase-headline {
    font-size: clamp(20px, 5.5vw, 24px);
    line-height: 1.4;
  }
  
  .showcase-text {
    font-size: 15px;
    line-height: 1.7;
    text-align: left;
    padding: 0 5px;
  }
  
  .btn-special-float {
    padding: 16px 40px;
    font-size: 16px;
  }
  
  .btn-cloud-morph {
    padding: 18px 48px;
    font-size: 18px;
  }
  
  .showcase-visual {
    gap: 32px;
  }
}