/* --------------------------------------------------
 * Pody CSS Stylesheet
 * Calm, minimalist, and premium digital wellness theme
 * -------------------------------------------------- */

/* --- CSS Variables & Design System --- */
:root {
  /* Colors */
  --color-bg-base: #fafafa;
  --color-bg-white: #ffffff;
  --color-bg-soft: #f2f2f7;
  --color-bg-card: rgba(255, 255, 255, 0.85);
  
  --color-primary: #1e75ff;
  --color-primary-hover: #005ae6;
  --color-primary-light: #e6f0ff;
  
  --color-accent-mint: #0ea5e9;
  --color-accent-mint-light: #e0f2fe;
  --color-accent-teal: #0284c7;
  --color-accent-teal-light: #f0f9ff;
  
  --color-text-main: #111111;
  --color-text-muted: #555555;
  --color-text-light: #888888;
  
  --color-danger: #ea6b6b;
  --color-danger-light: #fdf0f0;
  --color-success: #3b8a5b;
  --color-success-light: #f5fff8;
  
  /* Shadows & Glassmorphism */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.03);
  --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.07);
  --glass-bg: rgba(255, 255, 255, 0.85);
  --glass-border: rgba(0, 0, 0, 0.08);
  --glass-backdrop: blur(16px);
  
  /* Fonts */
  --font-title: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  /* Transitions */
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.2s ease;
}

/* --- Base & Reset Styles --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

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

/* --- Core Layout & Typographic Utilities --- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}
@media (min-width: 768px) {
  .container {
    padding: 0 24px;
  }
}

h1, h2, h3, h4 {
  font-family: var(--font-title);
  font-weight: 700;
  line-height: 1.25;
}

p {
  color: var(--color-text-muted);
}

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

.text-gradient {
  background: linear-gradient(135deg, #1e75ff 0%, #0ea5e9 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-center { text-align: center; }
.text-danger { color: var(--color-danger); }
.text-success { color: var(--color-success); }
.text-muted { color: var(--color-text-light); }
.hidden { display: none !important; }

/* Grid systems */
.grid {
  display: grid;
  gap: 32px;
}
.grid-2 { grid-template-columns: 1fr; }
.grid-3 { grid-template-columns: 1fr; }
.grid-4 { grid-template-columns: 1fr; }

@media (min-width: 768px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

.items-center { align-items: center; }

/* Section layouts */
.section {
  padding: 80px 0;
}
.section-header {
  max-width: 650px;
  margin: 0 auto 56px auto;
}
.section-title {
  font-size: 2.25rem;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.section-subtitle {
  font-size: 1.125rem;
  color: var(--color-text-muted);
}

/* Background soft alternate */
.bg-soft {
  background-color: var(--color-bg-soft);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 30px;
  border: none;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.btn-primary {
  background: linear-gradient(135deg, #1e75ff 0%, #0ea5e9 100%);
  color: var(--color-bg-white);
  box-shadow: 0 4px 14px rgba(30, 117, 255, 0.15);
}
.btn-primary:hover {
  background: linear-gradient(135deg, #005ae6 0%, #0284c7 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(30, 117, 255, 0.25);
}

.btn-secondary {
  background-color: var(--color-bg-white);
  color: var(--color-primary);
  border: 1.5px solid var(--color-primary);
  box-shadow: var(--shadow-sm);
}
.btn-secondary:hover {
  background: linear-gradient(135deg, #1e75ff 0%, #0ea5e9 100%);
  color: var(--color-bg-white);
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(30, 117, 255, 0.15);
}

.btn-sm {
  padding: 8px 18px;
  font-size: 0.85rem;
}

/* Badges */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: var(--color-accent-mint-light);
  color: var(--color-accent-mint);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 24px;
  border: 1px solid rgba(136, 168, 129, 0.15);
}

/* --- Header / Navigation Bar --- */
.navbar {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 32px);
  max-width: 1152px;
  z-index: 1000;
  background-color: rgba(242, 247, 255, 0.65); /* Liquid glass tint */
  border: 1.5px solid rgba(30, 117, 255, 0.16); /* Slightly blue border all around */
  border-radius: 20px; /* Rounded capsule bar */
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  height: 70px;
  display: flex;
  align-items: center;
  box-shadow: 0 8px 32px rgba(30, 117, 255, 0.04);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--color-text-main);
}

.logo-icon {
  height: 28px;
  width: auto;
  object-fit: contain;
}

.nav-menu {
  display: none;
}

@media (min-width: 992px) {
  .nav-menu {
    display: flex;
    align-items: center;
    gap: 36px;
  }
  .nav-btn-mobile {
    display: none !important;
  }
}

.nav-link {
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--color-text-main); /* Increased contrast */
  white-space: nowrap; /* Prevent wrapping in navigation */
  position: relative;
  padding: 6px 0;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #1e75ff 0%, #0ea5e9 100%);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.nav-link:hover {
  color: var(--color-primary);
}
.nav-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-actions .btn {
  display: inline-flex;
}

@media (max-width: 480px) {
  .nav-actions .btn {
    padding: 8px 16px;
    font-size: 0.85rem;
  }
  .nav-actions {
    gap: 10px;
  }
}

.hamburger-menu {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1100;
}
@media (min-width: 992px) {
  .hamburger-menu {
    display: none;
  }
}

.hamburger-menu span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--color-text-main);
  border-radius: 2px;
  transition: var(--transition-fast);
}

/* Active Hamburger menu */
.hamburger-menu.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.hamburger-menu.active span:nth-child(2) {
  opacity: 0;
}
.hamburger-menu.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Mobile Nav Menu drawer */
.nav-menu.active {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 100vh;
  background-color: var(--color-bg-base);
  padding: 100px 32px 32px 32px;
  z-index: 1050;
  gap: 24px;
  animation: slideInMenu 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.nav-btn-mobile {
  margin-top: 16px;
  width: 100%;
}

@keyframes slideInMenu {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* --- Hero Section --- */
.hero-section {
  padding-top: 160px;
  padding-bottom: 80px;
  position: relative;
  overflow: hidden;
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  align-items: center;
}

@media (min-width: 992px) {
  .hero-container {
    grid-template-columns: 1.1fr 0.9fr;
  }
}

.hero-content {
  max-width: 580px;
}

.hero-title {
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 4rem;
  }
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--color-text-muted);
  margin-bottom: 36px;
}

/* Form Styles */
.waitlist-form {
  position: relative;
}

.input-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background-color: var(--color-bg-white);
  padding: 8px;
  border-radius: 40px;
  border: 1px solid var(--color-bg-soft);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
}

@media (min-width: 480px) {
  .input-group {
    flex-direction: row;
  }
}

.input-group:focus-within {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 4px rgba(30, 117, 255, 0.1);
}

@media (max-width: 479px) {
  .input-group {
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
    gap: 8px;
  }
  
  .form-input {
    background-color: var(--color-bg-white);
    border: 1.5px solid var(--color-bg-soft);
    border-radius: 30px;
    padding: 14px 24px;
    width: 100%;
    box-shadow: var(--shadow-sm);
  }
  
  .form-input:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 4px rgba(30, 117, 255, 0.1);
  }
  
  .waitlist-form .btn {
    width: 100%;
    border-radius: 30px;
    padding: 14px 28px;
  }
}

.form-input {
  flex-grow: 1;
  border: none;
  background: none;
  padding: 12px 24px;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-text-main);
  outline: none;
}

.form-input::placeholder {
  color: var(--color-text-light);
}

.waitlist-form .btn {
  width: 100%;
}
@media (min-width: 480px) {
  .waitlist-form .btn {
    width: auto;
  }
}

.form-helper {
  font-size: 0.8rem;
  color: var(--color-text-light);
  margin-top: 12px;
  padding-left: 20px;
}

/* Form success message */
/* Form success message - App Notification Style */
.waitlist-success {
  display: none;
  flex-direction: column;
  position: relative;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1.5px solid rgba(30, 117, 255, 0.15);
  box-shadow: 
    0 12px 32px rgba(30, 117, 255, 0.06),
    0 4px 12px rgba(0, 0, 0, 0.02),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);
  border-radius: 22px;
  padding: 18px 24px;
  margin-top: 14px;
  width: 100%;
  box-sizing: border-box;
  animation: appCardPopup 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.waitlist-success.centered {
  max-width: 500px;
  margin: 14px auto 0 auto;
}

/* Subtle notch for the widget/notification style */
.app-card-notch {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 4px;
  background-color: rgba(30, 117, 255, 0.08);
  border-radius: 0 0 4px 4px;
}

/* Top bar with logo and time */
.app-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  border-bottom: 1px solid rgba(30, 117, 255, 0.06);
  padding-bottom: 8px;
  margin-bottom: 12px;
}

.app-card-brand {
  display: flex;
  align-items: center;
  gap: 6px;
}

.app-card-logo {
  height: 16px;
  width: auto;
  object-fit: contain;
}

.app-card-name {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 0.8rem;
  color: var(--color-text-main);
  letter-spacing: -0.01em;
}

.app-card-badge {
  background-color: var(--color-primary-light);
  color: var(--color-primary);
  font-size: 0.6rem;
  font-weight: 600;
  padding: 1px 5px;
  border-radius: 5px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.app-card-time {
  font-size: 0.7rem;
  color: var(--color-text-light);
  font-weight: 500;
}

/* Content layout */
.app-card-content {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
}

@media (max-width: 480px) {
  .app-card-content {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
}

/* Animated success checkmark widget */
.app-card-icon-container {
  position: relative;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.success-ring-pulse {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: rgba(30, 117, 255, 0.1);
  animation: appSuccessPulse 2.2s infinite ease-in-out;
}

.success-icon-check {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1e75ff 0%, #0ea5e9 100%);
  color: var(--color-bg-white);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  box-shadow: 0 4px 8px rgba(30, 117, 255, 0.2);
  animation: appSuccessCheck 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

.success-icon-check svg {
  width: 16px;
  height: 16px;
}

.app-card-text {
  flex-grow: 1;
}

.app-card-text h3 {
  font-family: var(--font-title);
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-text-main);
  margin-bottom: 2px;
  letter-spacing: -0.01em;
}

.app-card-text p {
  font-size: 0.825rem;
  color: var(--color-text-muted);
  line-height: 1.4;
}

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

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

@keyframes appSuccessCheck {
  0% {
    transform: scale(0) rotate(-45deg);
  }
  100% {
    transform: scale(1) rotate(0);
  }
}

/* --- Hero Demo / Interactive Phone Widget --- */
.hero-demo-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Glowing aesthetic blobs behind the phone */
.device-glow {
  position: absolute;
  width: 320px;
  height: 480px;
  background: radial-gradient(circle, rgba(30, 117, 255, 0.12) 0%, rgba(30, 117, 255, 0.04) 60%, rgba(249, 251, 249, 0) 100%);
  filter: blur(40px);
  z-index: -1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.mockup-container {
  position: relative;
  width: 290px;
  height: 580px;
  transition: var(--transition-smooth);
}

.phone-mockup {
  position: relative;
  width: 100%;
  height: 100%;
  background: transparent;
  border-radius: 44px;
  padding: 0;
  border: none;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: var(--transition-smooth);
}

.phone-mockup:hover {
  transform: scale(1.03);
  box-shadow: 0 25px 60px rgba(30, 117, 255, 0.18);
}

/* Phone Speaker & Camera notch */
.phone-notch {
  position: absolute;
  top: 15px;
  left: 50%;
  transform: translateX(-50%);
  width: 110px;
  height: 18px;
  background-color: #1a1a1a;
  border-radius: 10px;
  z-index: 100;
}

.phone-mockup.has-video .phone-notch {
  display: none;
}

.phone-screen {
  position: relative;
  width: 100%;
  height: 100%;
  background-color: transparent;
  border-radius: 32px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: none;
}

.phone-status-bar {
  display: none;
  justify-content: space-between;
  align-items: center;
  height: 36px;
  padding: 0 24px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-text-main);
  z-index: 10;
  background-color: transparent;
}

.phone-app-body {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  padding: 8px 16px 16px 16px;
}
.phone-app-body.justify-center {
  justify-content: center;
}

/* App screens header */
.app-header {
  text-align: center;
  margin-top: 12px;
  margin-bottom: 24px;
}
.app-header-title {
  display: block;
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--color-text-main);
}
.app-header-subtitle {
  display: block;
  font-size: 0.75rem;
  color: var(--color-text-light);
}

/* Tab screens toggler visibility */
.phone-tab-content {
  display: none;
  flex-direction: column;
  height: 100%;
}
.phone-tab-content.active {
  display: flex;
}

/* --- Phone Timer Screen --- */
.timer-widget {
  position: relative;
  width: 180px;
  height: 180px;
  margin: 0 auto 28px auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.timer-progress-svg {
  position: absolute;
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.timer-track {
  fill: none;
  stroke: var(--color-bg-soft);
  stroke-width: 4px;
}

.timer-progress-bar {
  fill: none;
  stroke: var(--color-primary);
  stroke-width: 5px;
  stroke-linecap: round;
  stroke-dasharray: 283;
  stroke-dashoffset: 0;
  transition: stroke-dashoffset 1s linear;
}

.timer-text-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 2;
}

.timer-time {
  font-family: var(--font-title);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--color-text-main);
}

.timer-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-text-light);
  margin-top: 4px;
}

.timer-controls {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.btn-app-action {
  background-color: var(--color-text-main);
  color: var(--color-bg-white);
  border: none;
  padding: 10px 24px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition-fast);
}

.btn-app-action:hover {
  transform: scale(1.02);
}

.btn-app-action.running {
  background-color: var(--color-accent-mint);
}

.btn-app-reset {
  background: none;
  border: none;
  color: var(--color-text-light);
  font-size: 0.75rem;
  cursor: pointer;
}

/* --- Phone Blocker Screen --- */
.blocker-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}

.blocker-item {
  background-color: var(--color-bg-white);
  border: 1px solid rgba(0,0,0,0.03);
  padding: 12px 14px;
  border-radius: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: var(--shadow-sm);
}

.app-info {
  display: flex;
  align-items: center;
  gap: 10px;
}

.app-icon-bg {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.app-insta { background-color: #fee2e2; }
.app-tiktok { background-color: #f3e8ff; }
.app-twitter { background-color: #e0f2fe; }

.app-name {
  display: block;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--color-text-main);
}
.app-status {
  display: block;
  font-size: 0.65rem;
}

/* Switch Styles */
.switch {
  position: relative;
  display: inline-block;
  width: 38px;
  height: 22px;
}

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

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--color-bg-soft);
  transition: .3s;
  border-radius: 22px;
}

.slider:before {
  position: absolute;
  content: "";
  height: 16px;
  width: 16px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: .3s;
  border-radius: 50%;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

input:checked + .slider {
  background-color: var(--color-primary);
}

input:checked + .slider:before {
  transform: translateX(16px);
}

/* Mock open apps try section */
.blocker-try-hint {
  margin-top: auto;
  background-color: var(--color-accent-teal-light);
  border: 1px dashed rgba(95, 141, 149, 0.2);
  padding: 12px;
  border-radius: 12px;
  text-align: center;
}

.blocker-try-hint span {
  display: block;
  font-size: 0.7rem;
  color: var(--color-accent-teal);
  margin-bottom: 8px;
}

.mock-installed-apps {
  display: flex;
  justify-content: center;
}

.mock-app-button {
  background-color: var(--color-bg-white);
  border: 1px solid rgba(0,0,0,0.06);
  padding: 8px 16px;
  border-radius: 12px;
  cursor: pointer;
  font-size: 0.75rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-fast);
}
.mock-app-button:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-md);
}

/* --- Phone Stats Screen --- */
.analytics-summary-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-bottom: 20px;
}

.mini-stat-card {
  background-color: var(--color-bg-white);
  border: 1px solid rgba(0,0,0,0.03);
  padding: 12px;
  border-radius: 12px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.mini-stat-num {
  display: block;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--color-primary);
}

.mini-stat-label {
  display: block;
  font-size: 0.65rem;
  color: var(--color-text-light);
}

.analytics-chart-container {
  background-color: var(--color-bg-white);
  border: 1px solid rgba(0,0,0,0.03);
  padding: 14px;
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
}

.chart-title {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--color-text-muted);
  margin-bottom: 12px;
}

.mock-chart {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  height: 100px;
  padding: 0 4px;
}

.chart-bar-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 14%;
}

.chart-bar {
  width: 100%;
  background-color: var(--color-bg-soft);
  border-radius: 4px;
  transition: height 0.6s ease;
}

.chart-bar.highlight {
  background-color: var(--color-primary);
}

.chart-bar-day {
  font-size: 0.6rem;
  color: var(--color-text-light);
  margin-top: 6px;
}

/* --- Mindful Overlay Screen --- */
.phone-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  z-index: 200;
  padding: 36px 20px 20px 20px;
  display: flex;
  flex-direction: column;
  animation: fadeInOverlay 0.3s ease forwards;
}

@keyframes fadeInOverlay {
  from { opacity: 0; transform: scale(1.05); }
  to { opacity: 1; transform: scale(1); }
}

.overlay-close {
  position: absolute;
  top: 40px;
  right: 20px;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--color-text-light);
}

.overlay-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  height: 100%;
}

.overlay-app-alert {
  font-size: 0.65rem;
  background-color: var(--color-danger-light);
  color: var(--color-danger);
  padding: 4px 10px;
  border-radius: 10px;
  margin-bottom: 12px;
  font-weight: 600;
}

.overlay-title {
  font-size: 1.15rem;
  margin-bottom: 6px;
}

.overlay-desc {
  font-size: 0.725rem;
  color: var(--color-text-muted);
  margin-bottom: 24px;
}

/* Breathing animation circles */
.breathing-circle-wrapper {
  position: relative;
  width: 130px;
  height: 130px;
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.breathing-circle-outer {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: var(--color-accent-mint-light);
  opacity: 0.5;
}

.breathing-circle-inner {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: var(--color-accent-mint);
  transition: width 5s cubic-bezier(0.4, 0, 0.2, 1), height 5s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 12px rgba(136, 168, 129, 0.3);
}

/* JS will trigger this class on the circle for scale animation */
.breathing-circle-inner.inhale {
  width: 110px;
  height: 110px;
}

.breathing-instruction {
  position: absolute;
  font-weight: 700;
  font-size: 0.8rem;
  color: var(--color-text-main);
  z-index: 10;
}

.overlay-actions {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}

.overlay-actions .btn {
  width: 100%;
  padding: 8px;
  font-size: 0.75rem;
}

/* --- Phone Bottom Navigation Bar --- */
.phone-nav-bar {
  height: 50px;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  background-color: var(--color-bg-white);
  padding-bottom: 4px;
}

.phone-nav-item {
  flex: 1;
  background: none;
  border: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0.4;
  transition: var(--transition-fast);
}

.phone-nav-item.active {
  opacity: 1;
}

.nav-item-icon {
  font-size: 0.95rem;
  margin-bottom: 2px;
}

.nav-item-text {
  font-size: 0.6rem;
  font-weight: 600;
  color: var(--color-text-main);
}

.phone-home-indicator {
  position: absolute;
  bottom: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 4px;
  background-color: #d1d1d6;
  border-radius: 2px;
}

/* --- Features Grid Section --- */
.card {
  background-color: var(--color-bg-white);
  border: 1px solid rgba(0,0,0,0.03);
  padding: 40px;
  border-radius: 24px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(30, 117, 255, 0.08);
  border-color: rgba(30, 117, 255, 0.15);
}

.card-icon-container {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 24px;
  transition: var(--transition-smooth);
}

.card:hover .card-icon-container {
  transform: scale(1.15) rotate(5deg);
}

.bg-soft-green { background-color: var(--color-accent-mint-light); }
.bg-soft-blue { background-color: var(--color-accent-teal-light); }
.bg-soft-yellow { background-color: var(--color-primary-light); }

.card-title {
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.card-desc {
  font-size: 0.95rem;
  color: var(--color-text-muted);
}

/* --- Analytics Visualization Section --- */
.analytics-visualization {
  display: flex;
  justify-content: center;
}

.chart-wrapper {
  background-color: var(--color-bg-white);
  border: 1px solid rgba(0,0,0,0.03);
  padding: 32px;
  border-radius: 28px;
  box-shadow: var(--shadow-lg);
  width: 100%;
  max-width: 450px;
}

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

.chart-header {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.habit-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.habit-details {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  font-weight: 600;
}

.habit-bar-track {
  height: 12px;
  background-color: var(--color-bg-soft);
  border-radius: 6px;
  overflow: hidden;
}

.habit-bar {
  width: 0%;
  height: 100%;
  border-radius: 6px;
  transition: width 2.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.visible .habit-bar {
  width: var(--target-width);
}

.bg-danger { background-color: var(--color-danger); }
.bg-success { background-color: var(--color-accent-mint); }

.reclaimed-time-alert {
  display: flex;
  gap: 16px;
  background-color: var(--color-accent-teal-light);
  border: 1px solid rgba(95, 141, 149, 0.1);
  padding: 16px;
  border-radius: 16px;
  margin-top: 12px;
}

.alert-emoji {
  font-size: 1.5rem;
}

.reclaimed-time-alert strong {
  display: block;
  font-size: 0.95rem;
  color: var(--color-accent-teal);
  margin-bottom: 2px;
}

.reclaimed-time-alert p {
  font-size: 0.8rem;
}

.feature-bullets {
  list-style: none;
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.feature-bullets li {
  position: relative;
  padding-left: 28px;
  font-size: 0.95rem;
  color: var(--color-text-muted);
}

.feature-bullets li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--color-accent-mint);
  font-weight: 900;
}

/* --- How It Works Section --- */
.steps-grid {
  position: relative;
}

.step-card {
  position: relative;
  background-color: var(--color-bg-white);
  border: 1px solid rgba(0,0,0,0.03);
  padding: 32px;
  border-radius: 20px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
}

.step-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.step-num {
  width: 36px;
  height: 36px;
  background-color: var(--color-primary-light);
  color: var(--color-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.step-title {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.step-desc {
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

/* --- Testimonials Section --- */
.testimonial-card {
  background-color: var(--color-bg-white);
  border: 1px solid rgba(0,0,0,0.03);
  padding: 32px;
  border-radius: 24px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial-text {
  font-size: 0.95rem;
  font-style: italic;
  color: var(--color-text-muted);
  margin-bottom: 24px;
}

.testimonial-user {
  display: flex;
  align-items: center;
  gap: 12px;
}

.user-avatar-text {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--color-primary);
  width: 36px;
  height: 36px;
  background-color: var(--color-primary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.user-avatar-img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2.5px solid rgba(30, 117, 255, 0.12);
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  flex-shrink: 0;
}

.user-name {
  display: block;
  font-weight: 600;
  font-size: 0.85rem;
}

.user-role {
  display: block;
  font-size: 0.75rem;
}

/* --- Pricing Section --- */
.pricing-grid {
  margin-top: 48px;
}

.pricing-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 48px 32px;
  border-radius: 28px;
  position: relative;
  background-color: var(--color-bg-white);
  border: 1.5px solid rgba(0, 0, 0, 0.03);
  transition: var(--transition-smooth);
}

.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(30, 117, 255, 0.12);
}

.pricing-card.featured {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-lg), 0 10px 40px rgba(30, 117, 255, 0.05);
}

.pricing-card.featured:hover {
  box-shadow: var(--shadow-lg), 0 15px 50px rgba(30, 117, 255, 0.18);
  border-color: var(--color-primary);
}

.pricing-featured-badge {
  position: absolute;
  top: 16px;
  right: 24px;
  background-color: var(--color-accent-mint-light);
  color: var(--color-accent-mint);
  font-weight: 700;
  font-size: 0.75rem;
  padding: 6px 14px;
  border-radius: 12px;
  border: 1px solid rgba(136, 168, 129, 0.15);
}

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

.pricing-plan-title {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--color-text-main);
  margin-bottom: 16px;
}

.price-container {
  display: flex;
  align-items: flex-start;
  color: var(--color-text-main);
}

.price-currency {
  font-size: 1.5rem;
  font-weight: 700;
  margin-top: 4px;
  margin-right: 2px;
}

.price-value {
  font-size: 3.25rem;
  font-weight: 800;
  line-height: 1;
  font-family: var(--font-title);
  letter-spacing: -0.02em;
}

.price-duration {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-text-light);
  align-self: flex-end;
  margin-bottom: 8px;
  margin-left: 4px;
}

.price-sub {
  font-size: 0.8rem;
  margin-top: 6px;
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 36px;
  padding: 0;
}

.pricing-features li {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  display: flex;
  align-items: center;
  gap: 12px;
}

.pricing-features li::before {
  content: "✓";
  color: var(--color-accent-mint);
  font-weight: 900;
  font-size: 1.1rem;
}

.btn-pricing {
  width: 100%;
}

/* --- CTA Waitlist Section --- */
.section-cta {
  padding-bottom: 120px;
}

.cta-card {
  background: linear-gradient(135deg, var(--color-primary-light) 0%, var(--color-accent-mint-light) 50%, var(--color-primary-light) 100%);
  background-size: 200% 200%;
  animation: gradientShift 8s ease infinite;
  padding: 60px 24px;
  border-radius: 36px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--glass-border);
  position: relative;
  overflow: hidden;
}

.cta-badge {
  display: inline-block;
  background-color: var(--color-bg-white);
  color: var(--color-primary);
  padding: 6px 16px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.8rem;
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
}

.cta-title {
  font-size: 2.25rem;
  margin-bottom: 16px;
  color: var(--color-text-main);
  letter-spacing: -0.02em;
}

.cta-subtitle {
  font-size: 1.1rem;
  color: var(--color-text-muted);
  max-width: 580px;
  margin: 0 auto 36px auto;
}

.cta-form {
  max-width: 500px;
  margin: 0 auto;
}

/* --- Footer --- */
.footer {
  background-color: var(--color-text-main);
  color: #f7fafc;
  padding: 80px 0 40px 0;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-container {
  display: flex;
  flex-direction: column;
  gap: 48px;
  margin-bottom: 56px;
}

@media (min-width: 768px) {
  .footer-container {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer-brand {
  max-width: 320px;
}

.footer-brand .logo {
  color: var(--color-bg-white);
  margin-bottom: 16px;
}

.footer-desc {
  font-size: 0.9rem;
  color: var(--color-text-light);
}

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

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

.link-group h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--color-bg-white);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.link-group a {
  font-size: 0.85rem;
  color: var(--color-text-light);
}
.link-group a:hover {
  color: var(--color-primary-light);
}

.privacy-badge {
  font-size: 0.75rem;
  color: var(--color-accent-mint);
  margin-top: 8px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}

.copyright {
  font-size: 0.8rem;
  color: var(--color-text-light);
  text-align: center;
}

/* --- Scroll Reveal Animations --- */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.fade-in-delay {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.9) translateY(20px);
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-scale.visible {
  opacity: 1;
  transform: scale(1) translateY(0);
}

/* Staggered Transitions for Grids */
.bento-grid .card:nth-child(1) { transition-delay: 0s; }
.bento-grid .card:nth-child(2) { transition-delay: 0.15s; }
.bento-grid .card:nth-child(3) { transition-delay: 0.3s; }
.bento-grid .card:nth-child(4) { transition-delay: 0.45s; }

.steps-grid .step-card:nth-child(1) { transition-delay: 0s; }
.steps-grid .step-card:nth-child(2) { transition-delay: 0.15s; }
.steps-grid .step-card:nth-child(3) { transition-delay: 0.3s; }
.steps-grid .step-card:nth-child(4) { transition-delay: 0.45s; }

.grid-3 .testimonial-card:nth-child(1) { transition-delay: 0s; }
.grid-3 .testimonial-card:nth-child(2) { transition-delay: 0.15s; }
.grid-3 .testimonial-card:nth-child(3) { transition-delay: 0.3s; }

.pricing-grid .pricing-card:nth-child(1) { transition-delay: 0s; }
.pricing-grid .pricing-card:nth-child(2) { transition-delay: 0.15s; }

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}



@keyframes gradientShift {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

/* ============================================================
   INTERACTIVE PHONE MOCKUP — Ripple Timer Widget
   ============================================================ */

/* Phone frame */
.interactive-mockup {
  background: linear-gradient(160deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  border-radius: 44px;
  width: 290px;
  height: 580px;
  position: relative;
  box-shadow:
    0 0 0 2px rgba(255,255,255,0.08),
    0 0 0 8px rgba(0,0,0,0.6),
    0 30px 80px rgba(0,0,0,0.35),
    0 0 60px rgba(30,117,255,0.15);
  overflow: hidden;
  cursor: default;
}

.phone-frame-border {
  position: absolute;
  inset: 0;
  border-radius: 44px;
  border: 1.5px solid rgba(255,255,255,0.1);
  pointer-events: none;
  z-index: 10;
}

/* Status bar */
.phone-status-bar-interactive {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 22px 6px 22px;
  color: white;
  font-size: 0.72rem;
  font-weight: 600;
  font-family: var(--font-title);
  position: relative;
  z-index: 5;
}

.status-time {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.status-icons {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.9);
}

.battery-icon {
  display: flex;
  align-items: center;
  gap: 1px;
}

.battery-body {
  width: 20px;
  height: 10px;
  border: 1.5px solid rgba(255,255,255,0.8);
  border-radius: 2px;
  padding: 1.5px;
}

.battery-fill {
  height: 100%;
  width: 75%;
  background: rgba(255,255,255,0.9);
  border-radius: 1px;
}

.battery-cap {
  width: 2px;
  height: 5px;
  background: rgba(255,255,255,0.7);
  border-radius: 0 1px 1px 0;
}

/* App screen body */
.phone-app-interactive {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 18px 18px 18px;
  height: calc(100% - 52px);
  position: relative;
}

/* Top bar with logo */
.app-top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 10px;
}

.app-logo-mini {
  display: flex;
  align-items: center;
  gap: 6px;
  color: white;
  font-weight: 700;
  font-size: 0.9rem;
  font-family: var(--font-title);
}

.app-mode-label {
  font-size: 0.7rem;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  background: rgba(255,255,255,0.08);
  padding: 4px 10px;
  border-radius: 20px;
  letter-spacing: 0.02em;
}

/* ===== Ripple Timer Area ===== */
.ripple-timer-area {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 220px;
  height: 220px;
  margin: 8px auto 14px auto;
}

/* Ripple rings */
.ripple-ring {
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid rgba(30, 117, 255, 0.4);
  background: rgba(30, 117, 255, 0.04);
  width: 100%;
  height: 100%;
  opacity: 0;
  transform: scale(0.6);
  pointer-events: none;
}

/* Idle "breathing" pulse animation */
.ripple-ring.idle {
  animation: ringBreath 3s ease-in-out infinite;
}

#ring1.idle { animation-delay: 0s; }
#ring2.idle { animation-delay: 1s; }
#ring3.idle { animation-delay: 2s; }

@keyframes ringBreath {
  0%   { opacity: 0;    transform: scale(0.7); }
  50%  { opacity: 0.5;  transform: scale(0.92); }
  100% { opacity: 0;    transform: scale(1.1); }
}

/* Active ripple-out animation (on click/start) */
.ripple-ring.active {
  animation: ringRipple 2.4s ease-out infinite;
}

#ring1.active { animation-delay: 0s; }
#ring2.active { animation-delay: 0.7s; }
#ring3.active { animation-delay: 1.4s; }

@keyframes ringRipple {
  0%   { opacity: 0.7;  transform: scale(0.55); border-color: rgba(30,117,255,0.6); }
  60%  { opacity: 0.15; transform: scale(1.0);  border-color: rgba(30,117,255,0.2); }
  100% { opacity: 0;    transform: scale(1.15); border-color: rgba(30,117,255,0); }
}

/* Central timer circle */
.timer-circle-outer {
  position: relative;
  width: 150px;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  box-shadow:
    0 0 0 1.5px rgba(255,255,255,0.08),
    0 8px 32px rgba(0,0,0,0.4),
    inset 0 1px 0 rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  z-index: 2;
  transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1);
}

.timer-circle-outer:hover {
  transform: scale(1.04);
}

.timer-circle-outer.pulse {
  animation: timerPulse 1s ease-in-out;
}

@keyframes timerPulse {
  0%   { transform: scale(1); }
  40%  { transform: scale(1.07); }
  100% { transform: scale(1); }
}

/* SVG Progress Arc */
.timer-svg-progress {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  transform: rotate(-90deg);
}

.timer-track-outer {
  fill: none;
  stroke: rgba(255,255,255,0.07);
  stroke-width: 4;
}

.timer-progress-arc {
  fill: none;
  stroke: url(#timerGradient);
  stroke-width: 4;
  stroke-linecap: round;
  stroke-dasharray: 339.29;
  stroke-dashoffset: 0;
  transition: stroke-dashoffset 1s linear;
  filter: drop-shadow(0 0 6px rgba(30,117,255,0.6));
}

/* Timer text content */
.timer-inner-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 3;
}

.timer-display {
  font-family: var(--font-title);
  font-size: 2.2rem;
  font-weight: 800;
  color: white;
  letter-spacing: -0.04em;
  line-height: 1;
  text-shadow: 0 2px 12px rgba(30,117,255,0.4);
}

.timer-sub-label {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.5);
  margin-top: 5px;
  font-weight: 600;
}

/* Blocked apps row */
.blocked-apps-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  background: rgba(255,255,255,0.06);
  padding: 8px 12px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.08);
}

.blocked-app-chip {
  width: 26px;
  height: 26px;
  background: white;
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  flex-shrink: 0;
}

.blocked-label {
  font-size: 0.68rem;
  color: rgba(255,255,255,0.5);
  font-weight: 500;
  margin-left: 2px;
  white-space: nowrap;
}

/* Start Focus Button */
.start-focus-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 14px 24px;
  background: linear-gradient(135deg, #1e75ff 0%, #0ea5e9 100%);
  border: none;
  border-radius: 20px;
  color: white;
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  box-shadow:
    0 6px 24px rgba(30,117,255,0.4),
    0 2px 8px rgba(0,0,0,0.3);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
  letter-spacing: 0.01em;
}

.start-focus-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, transparent 60%);
  border-radius: 20px;
}

.start-focus-btn:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow:
    0 10px 32px rgba(30,117,255,0.5),
    0 4px 12px rgba(0,0,0,0.3);
}

.start-focus-btn:active {
  transform: scale(0.97);
}

.start-focus-btn.running {
  background: linear-gradient(135deg, #0f3460 0%, #16213e 100%);
  box-shadow:
    0 6px 24px rgba(0,0,0,0.4),
    0 2px 8px rgba(0,0,0,0.3),
    inset 0 1px 0 rgba(255,255,255,0.1);
}

/* Tap hint */
.tap-hint {
  font-size: 0.65rem;
  color: rgba(255,255,255,0.3);
  text-align: center;
  margin-top: 10px;
  font-weight: 400;
  transition: opacity 0.3s ease;
}

.tap-hint.hidden {
  opacity: 0;
}

/* SVG gradient definition (inject inline) */



.phone-video-demo {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 190%;
  height: 190%;
  object-fit: cover;
  display: block;
  transform: translate3d(-50%, -50%, 0);
  filter: brightness(1.05) contrast(1.15) saturate(1.1);
}

/* --- Bento Grid Layout --- */
.bento-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .bento-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .bento-col-2 {
    grid-column: span 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
  }
  .bento-col-1 {
    grid-column: span 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
}

.bento-card-content {
  flex: 1;
}

.bento-visual {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: var(--color-bg-soft);
  border-radius: 18px;
  padding: 20px;
  border: 1px solid rgba(0, 0, 0, 0.02);
  transition: var(--transition-smooth);
  margin-top: 20px;
}

@media (min-width: 768px) {
  .bento-visual {
    margin-top: 0;
  }
}

.card:hover .bento-visual {
  background-color: var(--color-bg-white);
  border-color: rgba(30, 117, 255, 0.1);
  box-shadow: var(--shadow-sm);
}

/* Scheduling Visual */
.scheduling-visual {
  width: 100%;
  max-width: 100%;
  gap: 8px;
}
@media (min-width: 768px) {
  .scheduling-visual {
    min-width: 240px;
    width: auto;
  }
}

.schedule-pill {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: var(--color-bg-white);
  padding: 8px 12px;
  border-radius: 12px;
  font-size: 0.75rem;
  font-family: var(--font-title);
  font-weight: 600;
  box-shadow: var(--shadow-sm);
  box-sizing: border-box;
}

.schedule-pill.active {
  border: 1px solid var(--color-primary);
  background-color: var(--color-primary-light);
  color: var(--color-primary);
}

.pill-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--color-text-light);
}

.schedule-pill.active .pill-dot {
  background-color: var(--color-primary);
}

.pill-dot.blink {
  animation: pillBlink 2s infinite;
}

@keyframes pillBlink {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

.pill-time {
  font-size: 0.7rem;
  opacity: 0.8;
}

.pill-status {
  margin-left: auto;
  font-size: 0.65rem;
  text-transform: uppercase;
}

/* Lock Visual */
.lock-visual {
  margin-top: 20px;
  padding: 24px;
}

.lock-shield {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--color-primary);
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 0.8rem;
}

.lock-shield svg {
  animation: shieldPulse 3s infinite;
}

@keyframes shieldPulse {
  0%, 100% { transform: scale(1); filter: drop-shadow(0 0 0px rgba(30,117,255,0)); }
  50% { transform: scale(1.08); filter: drop-shadow(0 0 8px rgba(30,117,255,0.3)); }
}

/* Breath Visual Mini */
.breath-visual-mini {
  margin-top: 20px;
  padding: 24px;
  height: 100px;
}

.mini-breath-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-accent-mint) 0%, var(--color-primary) 100%);
  animation: miniBreath 4s ease-in-out infinite;
  box-shadow: 0 0 15px rgba(30,117,255,0.2);
}

@keyframes miniBreath {
  0%, 100% { transform: scale(1); opacity: 0.7; }
  50% { transform: scale(1.6); opacity: 1; }
}

/* Whoop Visual */
.whoop-visual {
  width: 100%;
  max-width: 100%;
  padding: 24px;
  gap: 8px;
}
@media (min-width: 768px) {
  .whoop-visual {
    min-width: 240px;
    width: auto;
  }
}

.recovery-metric {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.recovery-metric .metric-value {
  font-size: 2.2rem;
  font-weight: 800;
  font-family: var(--font-title);
}

.recovery-metric .metric-label {
  font-size: 0.7rem;
  color: var(--color-text-light);
  font-weight: 600;
}

.recovery-action-status {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-success);
}

/* --- Interactive Breathing Space Section --- */
.section-breathing {
  position: relative;
  overflow: hidden;
}

.breathing-widget-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  height: 350px;
}

.breathing-circle-wrapper {
  position: relative;
  width: 220px;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.breathing-circle {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: var(--color-bg-white);
  border: 4px solid var(--color-primary-light);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: transform 4s cubic-bezier(0.4, 0, 0.2, 1), background 1.5s ease, border-color 1.5s ease, box-shadow 1.5s ease;
  user-select: none;
}

.breathing-circle.inhale {
  background: var(--color-accent-mint-light);
  border-color: var(--color-accent-mint);
  box-shadow: 0 15px 45px rgba(14, 165, 233, 0.25);
}

.breathing-circle.hold {
  background: var(--color-accent-teal-light);
  border-color: var(--color-accent-teal);
  box-shadow: 0 15px 45px rgba(2, 132, 199, 0.25);
}

.breathing-circle.exhale {
  background: var(--color-primary-light);
  border-color: var(--color-primary);
  box-shadow: 0 15px 45px rgba(30, 117, 255, 0.2);
}

.breathing-text {
  font-family: var(--font-title);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-text-main);
  transition: color 0.5s ease;
}

.breathing-circle.inhale .breathing-text { color: var(--color-accent-teal); }
.breathing-circle.hold .breathing-text { color: var(--color-accent-teal); }
.breathing-circle.exhale .breathing-text { color: var(--color-primary); }

.breathing-subtext {
  font-size: 0.8rem;
  color: var(--color-text-light);
  margin-top: 4px;
  font-weight: 500;
}

.breathing-glow-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1);
  width: 180px;
  height: 180px;
  border-radius: 50%;
  border: 1px solid rgba(30, 117, 255, 0.15);
  pointer-events: none;
  z-index: 1;
  opacity: 0;
  transition: transform 4s cubic-bezier(0.4, 0, 0.2, 1), opacity 1.5s ease;
}

.breathing-circle.inhale ~ .ring-1 {
  transform: translate(-50%, -50%) scale(1.4);
  border-color: rgba(14, 165, 233, 0.25);
  opacity: 1;
}

.breathing-circle.inhale ~ .ring-2 {
  transform: translate(-50%, -50%) scale(1.7);
  border-color: rgba(14, 165, 233, 0.15);
  opacity: 0.8;
  transition-delay: 0.5s;
}

.breathing-circle.inhale ~ .ring-3 {
  transform: translate(-50%, -50%) scale(2.0);
  border-color: rgba(14, 165, 233, 0.05);
  opacity: 0.5;
  transition-delay: 1.0s;
}

.breathing-circle.hold ~ .breathing-glow-ring {
  opacity: 1;
}
.breathing-circle.hold ~ .ring-1 { transform: translate(-50%, -50%) scale(1.35); border-color: rgba(2, 132, 199, 0.2); }
.breathing-circle.hold ~ .ring-2 { transform: translate(-50%, -50%) scale(1.6); border-color: rgba(2, 132, 199, 0.1); }
.breathing-circle.hold ~ .ring-3 { transform: translate(-50%, -50%) scale(1.85); border-color: rgba(2, 132, 199, 0.05); }

.breathing-circle.exhale ~ .breathing-glow-ring {
  transform: translate(-50%, -50%) scale(1);
  opacity: 0;
}

.breathing-controls {
  margin-top: 32px;
}

/* ============================================================
   MOBILE RESPONSIVE OPTIMIZATIONS (Screens < 768px)
   ============================================================ */
@media (max-width: 767px) {
  /* Section padding and sizing */
  .section {
    padding: 56px 0;
  }
  
  .section-header {
    margin-bottom: 36px;
  }
  
  .section-title {
    font-size: 1.95rem;
    letter-spacing: -0.015em;
  }
  
  .section-subtitle {
    font-size: 1rem;
  }
  
  /* Hero title font size scale down */
  .hero-title {
    font-size: 2.5rem;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
  }
  
  .hero-subtitle {
    font-size: 1.05rem;
    margin-bottom: 24px;
  }
  
  .hero-section {
    padding-top: 120px;
    padding-bottom: 56px;
  }
  
  /* Cards internal paddings */
  .card {
    padding: 24px;
  }
  
  .pricing-card {
    padding: 32px 20px;
  }
  
  /* Steps items layout spacing */
  .steps-grid {
    gap: 16px;
  }
  
  .step-card {
    padding: 24px;
  }
  
  /* Chart container padding adjustments */
  .chart-wrapper {
    padding: 20px;
    border-radius: 20px;
  }
  
  .reclaimed-time-alert {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 12px;
    gap: 12px;
    font-size: 0.85rem;
  }
  
  /* Breathing Circle wrapper scale */
  .breathing-circle-wrapper {
    width: 180px;
    height: 180px;
  }
  
  .breathing-circle {
    width: 150px;
    height: 150px;
  }
  
  .breathing-text {
    font-size: 1.15rem;
  }
  
  .breathing-subtext {
    font-size: 0.75rem;
  }
  
  .breathing-glow-ring {
    width: 150px;
    height: 150px;
  }
}

/* --- Binance Labs Promo Widget --- */
/* Overlay for the modal */
.promo-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(30, 117, 255, 0.05);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  z-index: 9998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.promo-overlay.show {
  opacity: 1;
  pointer-events: auto;
}

/* Modal styles - Centered on screen, larger size */
.promo-widget {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -35%) scale(0.92);
  width: 92%;
  max-width: 430px; /* Increased from 380px */
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border: 1.5px solid rgba(30, 117, 255, 0.2);
  box-shadow: 
    0 32px 80px rgba(30, 117, 255, 0.18),
    0 4px 20px rgba(0, 0, 0, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);
  border-radius: 28px;
  padding: 28px 24px; /* Increased padding */
  z-index: 9999;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  font-family: var(--font-body);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.4s ease;
}

.promo-widget.show {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
  pointer-events: auto;
}

.promo-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--color-text-light);
  cursor: pointer;
  line-height: 1;
  transition: var(--transition-fast);
}

.promo-close:hover {
  color: var(--color-text-main);
  transform: scale(1.1);
}

.promo-header {
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid rgba(30, 117, 255, 0.08);
  padding-bottom: 12px;
  margin-bottom: 16px;
}

.promo-logo {
  height: 18px;
  width: auto;
  object-fit: contain;
}

.promo-title {
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 0.9rem;
  color: var(--color-text-main);
  letter-spacing: -0.01em;
}

.promo-badge {
  background-color: rgba(30, 117, 255, 0.1);
  color: var(--color-primary);
  font-size: 0.65rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 6px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin-left: auto;
}

.promo-body {
  display: flex;
  flex-direction: column;
  gap: 14px;
  animation: fadeInPromo 0.4s ease forwards;
}

@keyframes fadeInPromo {
  from { opacity: 0; transform: translateY(4px); }
  to { opacity: 1; transform: translateY(0); }
}

.promo-text {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  line-height: 1.45;
  margin: 0;
}

.promo-text strong {
  color: var(--color-text-main);
}

.promo-actions {
  display: flex;
  gap: 12px;
}

.promo-actions .btn {
  flex: 1;
  border-radius: 14px;
  padding: 12px 16px;
  font-size: 0.85rem;
  font-weight: 600;
}

.promo-subtext {
  font-size: 0.78rem;
  color: var(--color-text-light);
  margin: 0;
  text-align: center;
  border-top: 1px dashed rgba(0, 0, 0, 0.06);
  padding-top: 10px;
}

.promo-subtext strong {
  color: var(--color-primary);
}

/* Step 2 Form with Screenshot Upload */
.promo-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.promo-field-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: left;
}

.promo-label {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--color-text-main);
  font-family: var(--font-title);
  letter-spacing: -0.01em;
}

.promo-text-input {
  border: 1.5px solid rgba(30, 117, 255, 0.15);
  background-color: var(--color-bg-white);
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 0.85rem;
  outline: none;
  font-family: var(--font-body);
  color: var(--color-text-main);
  transition: var(--transition-fast);
}

.promo-text-input:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(30, 117, 255, 0.1);
}

.screenshot-upload-container {
  border: 2px dashed rgba(30, 117, 255, 0.25);
  background-color: rgba(30, 117, 255, 0.02);
  padding: 20px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  position: relative;
  transition: var(--transition-fast);
}

.screenshot-upload-container:hover {
  border-color: var(--color-primary);
  background-color: rgba(30, 117, 255, 0.05);
}

.screenshot-upload-container.has-file {
  border-color: var(--color-success);
  background-color: var(--color-success-light);
}

.upload-icon {
  width: 32px;
  height: 32px;
  color: var(--color-primary);
  opacity: 0.8;
  transition: var(--transition-fast);
}

.screenshot-upload-container.has-file .upload-icon {
  color: var(--color-success);
}

.upload-text {
  font-size: 0.78rem;
  color: var(--color-text-light);
  text-align: center;
  font-weight: 600;
  transition: var(--transition-fast);
}

.screenshot-upload-container.has-file .upload-text {
  color: var(--color-success);
}

.promo-file-input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
  width: 100%;
  height: 100%;
}

.btn-block {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Step 3 Success */
.promo-success-check {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1e75ff 0%, #0ea5e9 100%);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  font-weight: 700;
  margin: 0 auto 8px auto;
  box-shadow: 0 4px 12px rgba(30, 117, 255, 0.25);
  animation: appSuccessCheck 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

.promo-ref-text {
  font-size: 0.825rem;
  color: var(--color-text-muted);
  margin: 6px 0 0 0;
  text-align: center;
}

.promo-copy-group {
  display: flex;
  gap: 10px;
  margin-top: 6px;
  width: 100%;
}

.promo-copy-input {
  flex-grow: 1;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background-color: var(--color-bg-soft);
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 0.85rem;
  color: var(--color-text-muted);
  outline: none;
  font-family: var(--font-body);
}

.promo-copy-group .btn {
  border-radius: 12px;
  padding: 10px 18px;
  font-size: 0.85rem;
}

/* --- Inline Referral Input Styles --- */
.referral-toggle-container {
  margin-top: 10px;
  text-align: left;
  padding-left: 20px;
}

.ref-toggle-btn {
  background: none;
  border: none;
  color: var(--color-primary);
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
  padding: 0;
  outline: none;
  transition: var(--transition-fast);
}

.ref-toggle-btn:hover {
  text-decoration: underline;
  color: var(--color-primary-hover);
}

.ref-input-wrapper {
  margin-top: 8px;
  animation: slideDown 0.3s ease;
}

.ref-input-wrapper.hidden {
  display: none;
}

.ref-sub-input {
  width: 100%;
  max-width: 340px;
  border: 1.5px solid rgba(30, 117, 255, 0.15);
  padding: 10px 16px;
  border-radius: 12px;
  font-size: 0.8rem;
  background-color: var(--color-bg-white);
  outline: none;
  transition: var(--transition-fast);
  color: var(--color-text-main);
}

.ref-sub-input:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(30, 117, 255, 0.1);
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Responsive adjustment for small screens */
@media (max-width: 480px) {
  .promo-widget {
    padding: 24px 20px;
    border-radius: 24px;
    width: calc(100% - 32px);
    max-width: 350px;
    transform: translate(-50%, -40%) scale(0.95);
  }
  
  .promo-widget.show {
    transform: translate(-50%, -50%) scale(1);
  }
  
  .referral-toggle-container {
    padding-left: 10px;
  }
}








