/* ==========================================================================
   FOCUS FLOW — Premium Design System & Apple-Inspired Stylesheet
   ========================================================================== */

/* Design Tokens & Theme Variables */
:root {
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  
  /* Monochrome Premium Dark Theme (Absolute Black & Pure White) */
  --bg-primary: #000000; /* Pitch black */
  --bg-secondary: #0A0A0A; /* Midnight matte obsidian */
  --bg-card: rgba(18, 18, 18, 0.6); /* Frosted deep charcoal glass */
  --border-glass: rgba(255, 255, 255, 0.08); /* Paper-thin white glass borders */
  --border-focus: rgba(255, 255, 255, 0.4); /* High contrast focus edge */
  
  --accent: #FFFFFF; /* Stark pure white */
  --accent-glow: rgba(255, 255, 255, 0.06); /* Soft white atmospheric halo */
  --accent-light: #E5E5E5; /* Polished metallic silver-white */
  
  --text-primary: #FFFFFF; /* High-purity white */
  --text-secondary: #A3A3A3; /* Premium Apple muted matte-grey */
  --text-tertiary: #525252; /* Deep carbon grey */
  
  --success: #FFFFFF; /* High contrast white checks for stark premium branding */
  --success-glow: rgba(255, 255, 255, 0.12);
  --blue: #FFFFFF;
  
  --header-height: 64px;
  --transition-smooth: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset & Foundation */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html {
  scroll-behavior: smooth;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-sans);
}

body {
  overflow-x: hidden;
  line-height: 1.5;
}

/* Premium Scrollbar */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
  background: rgba(46, 52, 64, 0.15);
  border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent);
}

/* Shared Layout Containers */
.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
  z-index: 2;
}

.gradient-text {
  background: linear-gradient(135deg, var(--text-primary) 30%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.badge {
  display: inline-flex;
  padding: 6px 14px;
  background: rgba(255, 255, 255, 0.08) !important; /* Sleek dark-theme badge backing */
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  border-radius: 99px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #FFFFFF !important; /* Razor-sharp pure white text */
  margin-bottom: 24px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3) !important;
  backdrop-filter: blur(10px);
}

/* Base Glassmorphism Utility */
.glass-card {
  background: var(--bg-card);
  backdrop-filter: blur(25px) saturate(190%);
  -webkit-backdrop-filter: blur(25px) saturate(190%);
  border: 1px solid var(--border-glass);
  border-radius: 24px;
  transition: var(--transition-smooth);
}

.glass-card:hover {
  border-color: rgba(255, 255, 255, 0.16) !important;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 25px rgba(255, 255, 255, 0.02) !important;
}

/* Header & Frosted Navigation */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  background: rgba(0, 0, 0, 0.4) !important; /* Premium dark translucent frosted glass */
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06) !important;
  z-index: 1000;
  display: flex;
  align-items: center;
  transition: var(--transition-fast);
}

.main-header.scrolled {
  background: rgba(0, 0, 0, 0.8) !important;
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom-color: rgba(255, 255, 255, 0.08) !important;
}

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

.logo-area {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text-primary);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.02em;
}

.logo-icon-wrapper {
  position: relative;
  width: 22px;
  height: 22px;
  border-radius: 6px;
  background: #EBF0F5;
  border: 1px solid var(--border-glass);
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-gradient-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
  box-shadow: 0 0 8px var(--accent-glow);
}

.logo-text {
  font-weight: 600;
}

.main-nav ul {
  display: flex;
  list-style: none;
  gap: 32px;
}

.nav-link {
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  transition: var(--transition-fast);
}

.nav-link:hover {
  color: var(--text-primary);
}

/* Nav Action Buttons */
.btn-primary-sm {
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  color: #000000 !important; /* Pitch black text */
  background-color: #FFFFFF !important; /* Solid pure white capsule background */
  padding: 8px 18px;
  border-radius: 22px;
  transition: var(--transition-fast);
}

.btn-primary-sm:hover {
  background-color: #F5F5F5 !important; /* Premium silver hover state */
  transform: scale(1.02) translateY(-1px);
}

.mobile-nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 4px;
}

.hamburger-bar {
  width: 18px;
  height: 2px;
  background-color: var(--text-primary);
  border-radius: 2px;
  transition: var(--transition-fast);
}

/* Buttons System */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-decoration: none;
  background-color: #FFFFFF !important; /* Stark solid white button background */
  color: #000000 !important; /* Pitch black text and Apple logo color */
  padding: 16px 28px;
  border-radius: 16px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.01em;
  transition: var(--transition-fast);
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.08) !important; /* Volumetric white aura shadow */
}

.btn-primary:hover {
  background-color: #F5F5F5 !important; /* Premium silver hover state */
  transform: translateY(-2px);
  box-shadow: 0 15px 40px rgba(255, 255, 255, 0.12) !important;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  background-color: rgba(255, 255, 255, 0.04);
  color: var(--text-primary);
  padding: 16px 28px;
  border-radius: 16px;
  font-size: 14px;
  font-weight: 600;
  border: 1px solid var(--border-glass);
  transition: var(--transition-fast);
}

.btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
}

/* Ambient Animating Background Glows */
@keyframes breathe {
  0% { transform: scale(1) translate(0, 0); opacity: 0.35; }
  50% { transform: scale(1.15) translate(-4%, 3%); opacity: 0.5; }
  100% { transform: scale(1) translate(0, 0); opacity: 0.35; }
}

.hero-bg-glow {
  position: absolute;
  top: -15%;
  left: 20%;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--accent-glow) 0%, rgba(243,246,249,0) 70%);
  filter: blur(80px);
  z-index: 1;
  animation: breathe 10s ease-in-out infinite alternate;
  pointer-events: none;
}

/* HERO SECTION */
.hero-section {
  position: relative;
  padding: calc(var(--header-height) + 80px) 0 100px 0;
  overflow: hidden;
}

.hero-container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 60px;
}

.hero-content {
  position: relative;
  z-index: 3;
}

.hero-title {
  font-size: 56px;
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.04em;
  margin-bottom: 24px;
}

.hero-subtitle {
  font-size: 18px;
  font-weight: 400;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 40px;
  max-width: 490px;
}

.hero-actions {
  display: flex;
  gap: 16px;
}

.apple-logo-icon {
  fill: currentColor;
}

/* HIGH FIDELITY CSS IPHONE MOCKUP */
.hero-showcase {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 3;
}

.iphone-frame-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  width: 100%;
  max-width: 380px;
}

.iphone-device {
  position: relative;
  width: 290px;
  height: 590px;
  border-radius: 46px;
  background: linear-gradient(135deg, #E5E9F0 0%, #D8DEE9 50%, #E5E9F0 100%); /* Polished Silver Titanium chassis */
  padding: 3px; /* Thin premium metal rim */
  box-shadow: 
    0px 30px 70px -15px rgba(0, 0, 0, 0.8), /* Pitch-black deep volumetric shadow */
    inset 0px 0px 0px 1px rgba(255, 255, 255, 0.6); /* Chamfered edge reflection */
  overflow: visible; /* Support physical protruding side keys */
  transition: var(--transition-smooth);
}

.iphone-device::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 46px;
  box-shadow: inset 0px 0px 0px 1px rgba(255, 255, 255, 0.3); /* Micro metal sheen */
  pointer-events: none;
  z-index: 10;
}

.iphone-screen-bezel {
  position: relative;
  width: 100%;
  height: 100%;
  background: #0C0D0E; /* Deep black glass bezel */
  border-radius: 43px;
  padding: 8px; /* Standard screen bezel width */
  box-shadow: 
    0px 0px 0px 1px rgba(0, 0, 0, 0.9), /* Depth separator between glass and metal */
    inset 0px 0px 4px rgba(255, 255, 255, 0.1);
}

.iphone-button {
  position: absolute;
  background: #A6B4C9; /* Premium cold silver metal button */
  border-radius: 3px 0 0 3px;
  width: 3px;
  z-index: 1;
  box-shadow: inset 1px 0px 1px rgba(255, 255, 255, 0.4);
  transition: var(--transition-fast);
}

.iphone-button.silent {
  height: 16px;
  left: -4px;
  top: 90px;
}

.iphone-button.volume-up {
  height: 32px;
  left: -4px;
  top: 125px;
}

.iphone-button.volume-down {
  height: 32px;
  left: -4px;
  top: 170px;
}

.iphone-button.power {
  height: 48px;
  right: -4px;
  top: 140px;
  border-radius: 0 3px 3px 0;
  box-shadow: inset -1px 0px 1px rgba(255, 255, 255, 0.4);
}

.iphone-screen {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 35px; /* Display screen corner radius */
  background-color: #000000;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(0, 0, 0, 0.4); /* Premium inner bezel border */
}

.active-screen-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1), transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  transform: scale(1);
}

.active-screen-img.switching {
  opacity: 0;
  transform: scale(0.96); /* Dynamic native scale switch transition */
}

/* Skeleton Shimmer Loader */
.skeleton-shimmer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #0D0D0D;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}

.skeleton-shimmer.active {
  opacity: 1;
  pointer-events: auto;
}

/* Moving Shimmer Light Line */
.skeleton-shimmer::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  transform: translateX(-100%);
  background-image: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.03) 20%,
    rgba(255, 255, 255, 0.08) 60%,
    rgba(255, 255, 255, 0) 100%
  );
  animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
  100% {
    transform: translateX(100%);
  }
}

.iphone-dynamic-island {
  position: absolute;
  top: 15px; /* Perfectly aligned inside bezel */
  left: 50%;
  transform: translateX(-50%);
  width: 85px;
  height: 24px;
  border-radius: 12px;
  background-color: #000000;
  z-index: 12;
  box-shadow: inset 0 0 1px rgba(255, 255, 255, 0.15);
}

.iphone-glare {
  display: none;
}

/* Apple-Style Floating Feature Spotlight Callouts */
.mockup-feature-callout {
  position: absolute;
  background: rgba(15, 15, 15, 0.75) !important; /* Frosted deep black glass */
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  padding: 14px 18px;
  border-radius: 20px;
  box-shadow: 
    0 15px 35px rgba(0, 0, 0, 0.5),
    inset 0 0 1px rgba(255, 255, 255, 0.1);
  max-width: 190px;
  z-index: 5;
  transition: var(--transition-smooth);
}

.mockup-feature-callout:hover {
  transform: translateY(-4px);
  box-shadow: 
    0 20px 45px rgba(0, 0, 0, 0.7),
    inset 0 0 1px rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.3) !important;
}

.mockup-feature-callout h4 {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 4px 0 2px 0;
  letter-spacing: -0.01em;
}

.mockup-feature-callout p {
  font-size: 11px;
  color: var(--text-secondary);
  line-height: 1.4;
}

.mockup-feature-callout .callout-badge {
  font-size: 8px;
  font-weight: 800;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: rgba(255, 255, 255, 0.08) !important;
  padding: 2px 6px;
  border-radius: 4px;
}

/* Position callouts relative to the phone */
.mockup-feature-callout.left-top {
  left: -125px;
  top: 100px;
}

.mockup-feature-callout.right-bottom {
  right: -125px;
  bottom: 140px;
}

@media (max-width: 1024px) {
  .mockup-feature-callout.left-top {
    left: -80px;
  }
  .mockup-feature-callout.right-bottom {
    right: -80px;
  }
}

@media (max-width: 900px) {
  .mockup-feature-callout {
    display: none; /* Hide floating labels on tablet/mobiles to prevent column clipping */
  }
}

/* Phone Screen Tabs Selector */
.screen-selector-tabs {
  display: flex;
  background: rgba(255, 255, 255, 0.03) !important;
  border: 1px solid rgba(255, 255, 255, 0.06) !important;
  border-radius: 99px;
  padding: 4px;
  gap: 2px;
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4) !important;
}

.tab-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px 14px;
  border-radius: 99px;
  color: var(--text-secondary);
  font-size: 11px;
  font-weight: 600;
  transition: var(--transition-fast);
}

.tab-btn:hover {
  color: var(--text-primary);
}

.tab-btn.active {
  background-color: rgba(255, 255, 255, 0.1) !important;
  color: #FFFFFF !important;
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.05);
}

/* CORE FEATURES SECTION */
.features-section {
  position: relative;
  padding: 100px 0;
  background-color: var(--bg-primary);
}

.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 64px auto;
}

.section-title {
  font-size: 40px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}

.section-description {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* Bento Grid System */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.bento-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  min-height: 380px;
}

.col-span-1 {
  grid-column: span 1;
}

.col-span-2 {
  grid-column: span 2;
}

.card-content {
  padding: 32px;
  position: relative;
  z-index: 5;
}

.card-category {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
  margin-bottom: 8px;
  display: block;
}

.card-title {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 10px;
  color: var(--text-primary);
}

.card-text {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.5;
  max-width: 320px;
}

.card-visual {
  position: relative;
  flex-grow: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  padding-bottom: 32px;
}

/* Shield Feature Visual */
.visual-shield {
  justify-content: center;
}

.shield-graphic-container {
  position: relative;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@keyframes shieldGlow {
  0% { transform: scale(1); opacity: 0.3; }
  100% { transform: scale(1.6); opacity: 0; }
}

.shield-pulse {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 1px solid var(--accent);
  animation: shieldGlow 2.5s infinite cubic-bezier(0.16, 1, 0.3, 1);
}

.shield-icon-box {
  width: 68px;
  height: 68px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%) !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent) !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), inset 0 0 1px rgba(255, 255, 255, 0.2) !important;
}

/* iOS Lock Screen Live Activity Replica */
.live-activity-box {
  width: 250px;
  background: rgba(10, 10, 10, 0.85) !important; /* Pitch-black translucent glass backing */
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-radius: 18px;
  padding: 16px;
  box-shadow: 
    0 15px 30px rgba(0, 0, 0, 0.5),
    inset 0 0 1px rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  transition: var(--transition-smooth);
}

.la-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.la-logo-side {
  display: flex;
  align-items: center;
  gap: 6px;
}

.la-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: var(--accent);
  box-shadow: 0 0 4px var(--accent);
}

.la-name {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--text-primary);
}

.la-tag {
  font-size: 8px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-secondary);
  padding: 3px 6px;
  background-color: rgba(255, 255, 255, 0.06);
  border-radius: 6px;
}

.la-body {
  margin-bottom: 14px;
}

.la-timer-container {
  display: flex;
  flex-direction: column;
}

.la-checkmark-container {
  display: none;
  align-items: center;
  gap: 10px;
  animation: fadeIn 0.4s ease-out;
}

.la-success-msg {
  font-size: 13px;
  color: var(--success);
  letter-spacing: -0.01em;
}

.la-timer-label {
  font-size: 8px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-secondary);
  margin-bottom: 2px;
}

.la-timer-val {
  font-size: 26px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}

.la-progress-bar {
  width: 100%;
  height: 4px;
  background-color: rgba(255, 255, 255, 0.15) !important; /* Visible translucent white progress track */
  border-radius: 2px;
  overflow: hidden;
}

.la-progress-fill {
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--accent) 0%, var(--accent-light) 100%);
  border-radius: 2px;
  transition: width 1s linear, background 0.4s ease, box-shadow 0.4s ease;
}

/* Premium Complete State Indicators */
.live-activity-box.completed {
  border-color: rgba(48, 209, 88, 0.45) !important; /* Premium iOS green glass border */
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.6),
    0 0 20px rgba(48, 209, 88, 0.15),
    inset 0 0 1px rgba(255, 255, 255, 0.15) !important;
}

.live-activity-box.completed .la-dot {
  background-color: #30D158 !important; /* Status dot glows green on completion */
  box-shadow: 0 0 8px #30D158 !important;
}

.live-activity-box.completed .la-success-msg {
  color: #30D158 !important; /* True high contrast iOS success green text */
  text-shadow: 0 0 8px rgba(48, 209, 88, 0.3);
}

/* iOS Live Activity State Keyframes */
@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

/* Widget Card styling */
.widget-preview {
  width: 160px;
  height: 160px;
  border-radius: 22px;
  background: rgba(12, 12, 12, 0.8) !important; /* Frosted obsidian glass widget */
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  backdrop-filter: blur(20px);
  padding: 14px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.4) !important;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.widget-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.widget-tag {
  font-size: 9px;
  font-weight: 700;
  color: var(--accent);
}

.widget-streak {
  font-size: 8px;
  color: var(--text-primary);
  font-weight: 600;
  background: rgba(255, 255, 255, 0.08) !important;
  padding: 2px 5px;
  border-radius: 6px;
}

.widget-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  margin-top: 8px;
}

.widget-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.03) !important;
  border: 1px solid rgba(255, 255, 255, 0.06) !important;
  border-radius: 10px;
  padding: 8px 4px;
  cursor: pointer;
  transition: var(--transition-fast);
}

.widget-item:hover {
  background: rgba(255, 255, 255, 0.08) !important;
  border-color: rgba(255, 255, 255, 0.15) !important;
  transform: scale(1.03);
}

.widget-item.active {
  background: #FFFFFF !important;
  color: #000000 !important;
  border-color: transparent !important;
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2) !important;
}

.widget-item.active .widget-item-lbl {
  color: #000000 !important; /* Ensure black label on white card */
}

.widget-item-icon {
  font-size: 16px;
  margin-bottom: 2px;
}

.widget-item-lbl {
  font-size: 7px;
  font-weight: 600;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Calendar Feature Visuals */
.visual-calendar {
  padding-bottom: 0;
  display: flex;
  align-items: flex-end;
}

.calendar-preview-container {
  width: 80%;
  background: rgba(15, 15, 15, 0.85) !important; /* Frosted dark obsidian sheet */
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  border-left: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-right: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
  padding: 20px 20px 80px 20px !important; /* Expanded bottom padding to accommodate absolute event bubble and prevent clipping */
  box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.6) !important;
  transform: translateY(10px);
  transition: var(--transition-smooth);
}

.bento-card:hover .calendar-preview-container {
  transform: translateY(0);
}

.calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.cal-month {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--text-secondary);
}

.cal-arrows {
  display: flex;
  gap: 8px;
  color: var(--text-tertiary);
  font-size: 11px;
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 8px;
  text-align: center;
}

.cal-day {
  font-size: 11px;
  font-weight: 500;
  color: var(--text-primary);
  padding: 6px 0;
  border-radius: 6px;
}

.cal-day.muted {
  color: var(--text-tertiary);
}

.cal-day.today-selected {
  position: relative;
  background-color: #FFFFFF !important; /* Premium stark solid white selection marker */
  color: #000000 !important; /* Pitch-black day text inside selection marker */
  font-weight: 700;
  border-radius: 8px;
}

.calendar-grid .cal-day:not(.muted) {
  cursor: pointer;
  transition: var(--transition-fast);
}

.calendar-grid .cal-day:not(.muted):hover:not(.today-selected) {
  background-color: rgba(255, 255, 255, 0.08) !important;
  color: var(--text-primary) !important;
}

.cal-event-bubble {
  position: absolute;
  top: 36px;
  left: 50%;
  transform: translateX(-50%);
  width: 140px;
  padding: 8px 10px;
  border-radius: 10px;
  text-align: left;
  display: flex;
  flex-direction: column;
  background: #FFFFFF !important; /* Solid premium white card backing */
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4) !important;
  z-index: 20;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  animation: slideUpFade 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Premium Slide-Up-Fade Animation for calendar event bubbles */
@keyframes slideUpFade {
  from {
    opacity: 0;
    transform: translate(-50%, 8px);
  }
  to {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}

.event-title {
  font-size: 8px;
  font-weight: 700;
  color: #000000 !important; /* Pitch-black event header for maximum legibility */
  margin-bottom: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.event-time {
  font-size: 6px;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.6) !important; /* Soft semi-transparent black event time */
}

/* SENSORY MIXER SECTION */
.sensory-mixer-section {
  padding: 100px 0;
  background-color: var(--bg-secondary);
  position: relative;
  overflow: hidden;
}

.mixer-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  padding: 48px;
}

.mixer-suite-title {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.mixer-suite-intro {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 40px;
  max-width: 420px;
}

.mixer-controls-wrapper {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-bottom: 40px;
}

.mixer-row-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.layer-title-box {
  display: flex;
  align-items: center;
  gap: 8px;
}

.layer-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
}

.layer-name {
  font-size: 13px;
  font-weight: 600;
}

.layer-val {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-secondary);
}

.mixer-slider {
  -webkit-appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.08);
  outline: none;
  transition: var(--transition-fast);
}

.mixer-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #FFFFFF;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0,0,0,0.4);
  transition: transform 0.1s ease;
}

.mixer-slider::-webkit-slider-thumb:hover {
  transform: scale(1.2);
}

.mixer-slider:disabled::-webkit-slider-thumb {
  background: var(--text-tertiary);
  cursor: not-allowed;
}

.mixer-master-actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.btn-play-sound {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background-color: var(--accent);
  color: #FFFFFF;
  border: none;
  border-radius: 16px;
  padding: 16px 28px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: var(--transition-fast);
  box-shadow: 0 8px 30px var(--accent-glow);
}

.btn-play-sound:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px var(--accent-glow);
}

.btn-play-sound:active {
  transform: translateY(0);
}

.btn-play-sound.active {
  background-color: #FFFFFF;
  color: #000000;
  box-shadow: 0 8px 30px rgba(255, 255, 255, 0.15);
}

.audio-note-disclaimer {
  font-size: 10px;
  color: var(--text-tertiary);
}

/* Screenshot frame right-side */
.screenshot-showcase-box {
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid var(--border-glass);
  border-radius: 20px;
  padding: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.sensory-suite-screenshot {
  width: 100%;
  border-radius: 12px;
  display: block;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.screenshot-caption {
  font-size: 11px;
  color: var(--text-secondary);
  text-align: center;
  margin-top: 14px;
  line-height: 1.4;
  padding: 0 8px;
}

/* FOCUS FLOW PRO / PREMIUM SECTION */
.premium-section {
  position: relative;
  padding: 100px 0;
  background-color: var(--bg-primary);
  overflow: hidden;
}

.premium-bg-glow {
  position: absolute;
  bottom: -20%;
  right: 20%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--accent-glow) 0%, rgba(243,246,249,0) 70%);
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.pro-badge {
  font-size: 9px;
  font-weight: 800;
  color: #9A7B56; /* High-contrast warm brass/bronze gold */
  letter-spacing: 0.25em;
  margin-bottom: 12px;
  display: inline-block;
  padding: 4px 10px;
  background-color: rgba(154, 123, 86, 0.08);
  border: 1px solid rgba(154, 123, 86, 0.2);
  border-radius: 6px;
}

.pricing-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
  z-index: 5;
}

.pricing-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 40px;
  min-height: 520px;
  position: relative;
}

.pricing-card.featured {
  border-color: rgba(255, 255, 255, 0.25) !important; /* Premium white glass highlighted border */
  box-shadow: 0 20px 50px rgba(255, 255, 255, 0.05) !important;
  transform: translateY(-8px);
  background: linear-gradient(180deg, rgba(25, 25, 25, 0.95) 0%, rgba(12, 12, 12, 0.95) 100%) !important;
}

.pricing-badge-accent {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--accent) !important;
  color: #000000 !important; /* Pitch-black text for high contrast readability on white pill */
  font-size: 9px;
  font-weight: 800;
  padding: 6px 14px;
  border-radius: 99px;
  letter-spacing: 0.1em;
  white-space: nowrap;
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.15) !important; /* Premium silver shadow */
}

.pricing-header {
  margin-bottom: 32px;
}

.tier-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.price-box {
  display: flex;
  align-items: baseline;
  margin-bottom: 12px;
}

.price-currency {
  font-size: 24px;
  font-weight: 600;
  color: var(--text-primary);
  margin-right: 2px;
}

.price-val {
  font-size: 48px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text-primary);
  line-height: 1;
}

.price-period {
  font-size: 14px;
  color: var(--text-secondary);
  margin-left: 4px;
}

.tier-desc {
  font-size: 12px;
  color: var(--text-secondary);
  line-height: 1.5;
}

.tier-features-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 40px;
}

.tier-features-list li {
  font-size: 13px;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 10px;
}

.checkmark-dot {
  color: var(--success); /* Intuitive green success checks */
  font-weight: 700;
}

.btn-pricing-action {
  display: block;
  width: 100%;
  padding: 16px 0;
  background-color: rgba(255, 255, 255, 0.04) !important; /* Premium translucent white glass */
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  color: var(--text-primary) !important;
  border-radius: 14px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-align: center;
  text-decoration: none;
  transition: var(--transition-fast);
}

.btn-pricing-action:hover {
  background-color: rgba(255, 255, 255, 0.08) !important;
  border-color: rgba(255, 255, 255, 0.15) !important;
}

.btn-pricing-action.featured-btn {
  background-color: var(--accent) !important; /* Solid pure white capsule background */
  color: #000000 !important; /* Pitch-black text for 100% premium readability */
  border: none !important;
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.1) !important; /* Volumetric white aura shadow */
}

.btn-pricing-action.featured-btn:hover {
  background-color: #F5F5F5 !important; /* Premium silver hover state */
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(255, 255, 255, 0.15) !important;
}

/* DOWNLOAD / FOOTER BANNER SECTION */
.download-section {
  padding: 100px 0;
}

.download-container {
  position: relative;
  padding: 80px 48px;
  text-align: center;
  overflow: hidden;
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.025) !important; /* High-end dark frosted glass plate */
  border: 1px solid rgba(255, 255, 255, 0.08) !important; /* Micro-thin silver border */
  backdrop-filter: blur(35px) saturate(190%);
  -webkit-backdrop-filter: blur(35px) saturate(190%);
  box-shadow: 
    0 40px 80px rgba(0, 0, 0, 0.8),
    inset 0 1px 0 rgba(255, 255, 255, 0.12) !important; /* Apple-grade edge light reflection bevel */
}

.download-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.01) 50%, rgba(0, 0, 0, 0) 70%) !important; /* Richer silver mesh ambient halo */
  filter: blur(70px);
  z-index: 1;
  pointer-events: none;
}

.download-content {
  position: relative;
  z-index: 3;
}

.download-title {
  font-size: 40px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
  color: #FFFFFF !important; /* Crisp high contrast white */
}

.download-desc {
  font-size: 15px;
  color: var(--text-secondary) !important; /* Apple muted silver-grey */
  max-width: 520px;
  margin: 0 auto 40px auto;
  line-height: 1.6;
}

.app-store-badge-row {
  display: flex;
  justify-content: center;
}

/* Dark-Theme Overrides for App Store Button inside Download Container */
.download-container .app-store-button {
  background-color: #FFFFFF !important;
  color: #000000 !important;
  border: 1px solid rgba(255, 255, 255, 0.8) !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4) !important;
}

.download-container .app-store-button:hover {
  background-color: #F5F5F5 !important; /* Premium silver hover state */
  transform: scale(1.02) translateY(-2px);
}

.download-container .app-store-button .apple-logo-icon {
  fill: #000000 !important; /* Pure black apple logo */
}

.download-container .app-store-button .app-btn-sub {
  color: rgba(0, 0, 0, 0.6) !important; /* Semi-transparent black label */
}

.download-container .app-store-button .app-btn-main {
  color: #000000 !important; /* Pitch-black title */
}

.app-store-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background-color: #2E3440;
  color: #FFFFFF;
  padding: 12px 24px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-decoration: none;
  transition: var(--transition-fast);
}

.app-store-button:hover {
  background-color: #3B4252;
  border-color: rgba(255, 255, 255, 0.2);
  transform: scale(1.02);
}

.app-btn-meta {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.app-btn-sub {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-secondary);
}

.app-btn-main {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.2;
}

/* APPLE FOOTER */
.main-footer {
  background-color: var(--bg-primary);
  padding: 64px 0;
  border-top: 1px solid rgba(46, 52, 64, 0.06);
}

.footer-container {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.footer-fineprint {
  font-size: 11px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.footer-divider {
  border: 0;
  height: 1px;
  background: rgba(46, 52, 64, 0.08);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-copy {
  font-size: 11px;
  color: var(--text-secondary);
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  font-size: 11px;
  color: var(--text-secondary);
  text-decoration: none;
  transition: var(--transition-fast);
}

.footer-links a:hover {
  color: var(--text-primary);
}

/* MOBILE NAV OVERLAY */
.mobile-menu-overlay {
  position: fixed;
  top: var(--header-height);
  left: 0;
  width: 100%;
  height: 0;
  background: var(--bg-primary);
  z-index: 999;
  overflow: hidden;
  transition: var(--transition-smooth);
  display: flex;
  justify-content: center;
  align-items: center;
}

.mobile-menu-overlay.active {
  height: calc(100vh - var(--header-height));
}

.mobile-nav {
  padding: 40px;
  text-align: center;
  opacity: 0;
  transform: translateY(-20px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  transition-delay: 0.1s;
}

.mobile-menu-overlay.active .mobile-nav {
  opacity: 1;
  transform: translateY(0);
}

.mobile-nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
}

.mobile-nav-link {
  text-decoration: none;
  font-size: 20px;
  font-weight: 600;
  color: var(--text-secondary);
  transition: var(--transition-fast);
}

.mobile-nav-link:hover {
  color: var(--text-primary);
}

.mobile-menu-btn {
  width: 200px;
}

/* RESPONSIVE MEDIA QUERIES */

@media (max-width: 1024px) {
  .hero-title {
    font-size: 48px;
  }
}

@media (max-width: 900px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }
  
  .hero-subtitle {
    margin: 0 auto 40px auto;
  }
  
  .hero-actions {
    justify-content: center;
  }
  
  .bento-grid {
    grid-template-columns: 1fr;
  }
  
  .col-span-2 {
    grid-column: span 1;
  }
  
  .mixer-container {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 24px;
  }
  
  .pricing-cards-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .pricing-card.featured {
    transform: none;
  }
}

@media (max-width: 600px) {
  .main-nav {
    display: none;
  }
  
  #header-download-btn {
    display: none;
  }
  
  .mobile-nav-toggle {
    display: flex;
  }
  
  .hero-title {
    font-size: 38px;
  }
  
  .hero-actions {
    flex-direction: column;
  }
  
  .section-title {
    font-size: 32px;
  }
  
  .download-container {
    padding: 48px 24px;
  }
  
  .download-title {
    font-size: 30px;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* LEGAL MODAL OVERLAYS (Privacy Policy) */
.legal-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.legal-modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.legal-modal-card {
  width: 90%;
  max-width: 640px;
  max-height: 80vh;
  background: rgba(18, 18, 18, 0.8) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-radius: 28px;
  box-shadow: 
    0 40px 100px rgba(0, 0, 0, 0.8),
    inset 0 1px 0 rgba(255, 255, 255, 0.15) !important;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transform: scale(0.95) translateY(15px);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.legal-modal-overlay.active .legal-modal-card {
  transform: scale(1) translateY(0);
}

.legal-modal-header {
  padding: 24px 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.legal-modal-title {
  font-size: 20px;
  font-weight: 700;
  color: #FFFFFF;
  letter-spacing: -0.02em;
}

.legal-modal-close {
  background: transparent;
  border: none;
  color: var(--text-secondary);
  cursor: pointer;
  padding: 8px;
  border-radius: 50%;
  transition: var(--transition-fast);
  display: flex;
  align-items: center;
  justify-content: center;
}

.legal-modal-close:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #FFFFFF;
}

.legal-modal-close svg {
  transition: transform 0.2s ease;
}

.legal-modal-close:hover svg {
  transform: rotate(90deg);
}

.legal-modal-body {
  padding: 32px;
  overflow-y: auto;
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-secondary);
  text-align: left;
}

/* Custom Scrollbar for Legal Body */
.legal-modal-body::-webkit-scrollbar {
  width: 6px;
}

.legal-modal-body::-webkit-scrollbar-track {
  background: transparent;
}

.legal-modal-body::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 3px;
}

.legal-modal-body::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.3);
}

.legal-last-updated {
  font-size: 11px;
  color: var(--text-tertiary);
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.legal-section {
  margin-bottom: 28px;
}

.legal-section h4 {
  font-size: 15px;
  font-weight: 600;
  color: #FFFFFF;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.legal-section p {
  color: var(--text-secondary);
}

.legal-section ul {
  margin-top: 10px;
  padding-left: 20px;
}

.legal-section li {
  margin-bottom: 6px;
  position: relative;
  list-style-type: disc;
  color: var(--text-secondary);
}

.legal-modal-footer {
  padding: 20px 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: flex-end;
}

/* Support Form Elements */
.form-input:focus {
  background: rgba(255, 255, 255, 0.06) !important;
  border-color: rgba(255, 255, 255, 0.25) !important;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.05) !important;
}

.form-input::placeholder {
  color: rgba(255, 255, 255, 0.3) !important;
}

/* -------------------------------------------------------------
   9. Premium Coming Soon Toast Notification
   ------------------------------------------------------------- */
.coming-soon-toast {
  position: fixed;
  bottom: -100px; /* Hidden offscreen initially */
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  background: rgba(10, 10, 10, 0.75); /* Dark translucent frosted base */
  backdrop-filter: blur(25px) saturate(180%);
  -webkit-backdrop-filter: blur(25px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 14px 24px;
  border-radius: 18px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 30px rgba(255, 255, 255, 0.02);
  transition: bottom 0.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  opacity: 0;
  pointer-events: none;
  max-width: 90%;
  width: auto;
  white-space: nowrap;
}

.coming-soon-toast.active {
  bottom: 32px; /* Smooth slide-up entry */
  opacity: 1;
  pointer-events: auto;
}

.toast-content {
  display: flex;
  align-items: center;
  gap: 16px;
  color: #FFFFFF;
}

.toast-icon {
  color: var(--text-secondary);
  animation: breathe-toast 2.5s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes breathe-toast {
  0%, 100% {
    transform: scale(0.95);
    opacity: 0.8;
  }
  50% {
    transform: scale(1.05);
    opacity: 1;
  }
}

.toast-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.toast-title {
  font-size: 14px;
  font-weight: 700;
  color: #FFFFFF;
  letter-spacing: -0.01em;
}

.toast-desc {
  font-size: 12px;
  color: var(--text-secondary);
  font-weight: 500;
}

/* Adjustments for smaller screens */
@media (max-width: 480px) {
  .coming-soon-toast {
    white-space: normal;
    padding: 12px 18px;
    border-radius: 16px;
    max-width: 92%;
  }
  .toast-content {
    gap: 12px;
  }
}
