/* ==========================================================================
   TURNOS. LANDING PAGE DESIGN SYSTEM
   Theme: Midnight Apple Glassmorphism with Solar Amber & Lunar Indigo Accents
   ========================================================================== */

:root {
  /* Core Color Palette */
  --bg-main: #07090E;
  --bg-surface: #0E121D;
  --bg-surface-elevated: #141A28;
  --bg-card: rgba(16, 22, 36, 0.65);
  --bg-card-hover: rgba(22, 30, 48, 0.85);
  --bg-glass: rgba(255, 255, 255, 0.03);
  --bg-glass-heavy: rgba(10, 13, 20, 0.88);

  /* Shift Colors */
  --shift-morning: #FF9F0A;
  --shift-morning-glow: rgba(255, 159, 10, 0.3);
  --shift-morning-bg: rgba(255, 159, 10, 0.12);
  
  --shift-afternoon: #0A84FF;
  --shift-afternoon-glow: rgba(10, 132, 255, 0.3);
  
  --shift-night: #7C3AED;
  --shift-night-glow: rgba(124, 58, 237, 0.3);
  --shift-night-bg: rgba(124, 58, 237, 0.12);
  
  --shift-off: #475569;
  --shift-off-bg: rgba(71, 85, 105, 0.18);

  --accent-success: #30D158;
  --accent-cyan: #38BDF8;

  /* Text Colors */
  --text-primary: #F8FAFC;
  --text-secondary: #94A3B8;
  --text-tertiary: #64748B;
  --text-inverse: #07090E;

  /* Borders & Shadows */
  --border-subtle: rgba(255, 255, 255, 0.07);
  --border-highlight: rgba(255, 255, 255, 0.14);
  --border-active: rgba(255, 159, 10, 0.45);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.5);
  --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.7);
  --shadow-glow-amber: 0 0 35px rgba(255, 159, 10, 0.15);
  --shadow-glow-purple: 0 0 35px rgba(124, 58, 237, 0.18);

  /* Typography */
  --font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Inter", "Segoe UI", Roboto, sans-serif;
  --font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;

  /* Layout */
  --container-max: 1200px;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 36px;
  --radius-full: 9999px;
  
  --transition-fast: 0.15s ease;
  --transition-normal: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-smooth: 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  font-family: var(--font-family);
  background-color: var(--bg-main);
  color: var(--text-primary);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  overflow-x: hidden;
  position: relative;
  background-color: var(--bg-main);
  background-image: 
    radial-gradient(circle at 50% 0%, rgba(255, 159, 10, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 25%, rgba(124, 58, 237, 0.08) 0%, transparent 45%);
  min-height: 100vh;
}

/* Typography Helpers */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--text-primary);
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  cursor: pointer;
  border: none;
  font-family: inherit;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

/* Section Header Shared */
.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 60px auto;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(255, 159, 10, 0.1);
  border: 1px solid rgba(255, 159, 10, 0.25);
  border-radius: var(--radius-full);
  color: var(--shift-morning);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
}

.section-tag.purple {
  background: rgba(124, 58, 237, 0.12);
  border-color: rgba(124, 58, 237, 0.3);
  color: #A78BFA;
}

.section-title {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
  margin-bottom: 16px;
  background: linear-gradient(180deg, #FFFFFF 0%, #CBD5E1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-subtitle {
  font-size: clamp(1rem, 1.3vw, 1.2rem);
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ==========================================================================
   NAVIGATION BAR
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 14px 0;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  background: var(--bg-glass-heavy);
  border-bottom: 1px solid var(--border-subtle);
  transition: var(--transition-normal);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  gap: 16px;
}

.brand-link {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.brand-logo {
  width: 38px;
  height: 38px;
  border-radius: 9px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: transform var(--transition-fast);
}

.brand-link:hover .brand-logo {
  transform: scale(1.05);
}

.brand-name {
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: #FFFFFF;
}

.brand-dot {
  color: var(--shift-morning);
}

.header-right-tools {
  display: flex;
  align-items: center;
  gap: 12px;
}

.mobile-menu-cta {
  display: none;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color var(--transition-fast);
  position: relative;
}

.nav-link:hover {
  color: #FFFFFF;
}

/* Language Selector */
.lang-switcher {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-full);
  padding: 3px;
}

.lang-btn {
  background: transparent;
  color: var(--text-secondary);
  padding: 5px 12px;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 600;
  transition: all var(--transition-fast);
  display: flex;
  align-items: center;
  gap: 5px;
}

.lang-btn:hover {
  color: #FFFFFF;
}

.lang-btn.active {
  background: var(--bg-surface-elevated);
  color: #FFFFFF;
  border: 1px solid var(--border-highlight);
  box-shadow: var(--shadow-sm);
}

/* Primary Button */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(180deg, #FFFFFF 0%, #E2E8F0 100%);
  color: var(--text-inverse);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 10px 22px;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 16px rgba(255, 255, 255, 0.2);
  transition: all var(--transition-normal);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.35);
  background: #FFFFFF;
}

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

.btn-primary svg {
  fill: currentColor;
  width: 18px;
  height: 18px;
}

/* Mobile Nav Toggle */
.mobile-toggle {
  display: none;
  background: transparent;
  color: #FFFFFF;
  font-size: 1.5rem;
  padding: 4px;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
  padding: 80px 0 100px 0;
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 60px;
  align-items: center;
}

.hero-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-highlight);
  border-radius: var(--radius-full);
  font-size: 0.88rem;
  font-weight: 600;
  color: #CBD5E1;
  margin-bottom: 24px;
  backdrop-filter: blur(12px);
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--accent-success);
  box-shadow: 0 0 10px var(--accent-success);
  animation: pulse-dot 2s infinite ease-in-out;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.85); }
}

.hero-title {
  font-size: clamp(2.5rem, 4.5vw, 4.2rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.04em;
  margin-bottom: 24px;
}

.hero-title .highlight {
  background: linear-gradient(135deg, #FFAE33 0%, #FF9500 50%, #A855F7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.hero-subtitle {
  font-size: clamp(1.1rem, 1.4vw, 1.3rem);
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 36px;
  max-width: 580px;
}

.hero-cta-group {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 32px;
}

.app-store-btn {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  background: #000000;
  color: #FFFFFF;
  padding: 14px 28px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8), 0 0 30px rgba(255, 159, 10, 0.15);
  transition: all var(--transition-normal);
  width: fit-content;
  text-decoration: none;
}

.app-store-btn:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.4);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.9), 0 0 50px rgba(255, 159, 10, 0.3);
}

.app-store-btn svg {
  width: 32px;
  height: 32px;
  fill: #FFFFFF;
}

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

.app-store-badge {
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #94A3B8;
  font-weight: 500;
}

.app-store-name {
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.hero-cta-sub {
  font-size: 0.85rem;
  color: var(--text-tertiary);
  font-weight: 500;
}

.hero-social-proof {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 20px;
  border-top: 1px solid var(--border-subtle);
  max-width: 520px;
  flex-wrap: wrap;
}

.hero-pill-mini {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 600;
  color: #CBD5E1;
  transition: all var(--transition-fast);
}

.hero-pill-mini:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--border-highlight);
  color: #FFFFFF;
}

/* Hero Device Mockup */
.hero-device-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-glow-halo {
  position: absolute;
  width: 440px;
  height: 540px;
  background: radial-gradient(circle, rgba(255, 159, 10, 0.18) 0%, rgba(124, 58, 237, 0.15) 50%, transparent 70%);
  filter: blur(60px);
  z-index: 0;
  pointer-events: none;
  animation: breathe-glow 6s infinite alternate ease-in-out;
}

@keyframes breathe-glow {
  0% { transform: scale(0.95); opacity: 0.6; }
  100% { transform: scale(1.05); opacity: 0.9; }
}

.hero-mockup-container {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 320px;
  transition: transform var(--transition-smooth);
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.75)) drop-shadow(0 0 25px rgba(255, 159, 10, 0.12));
}

.hero-mockup-container:hover {
  transform: translateY(-8px) scale(1.02);
}

.hero-mockup-img {
  width: 100%;
  height: auto;
  display: block;
}

/* Floating Badges on Hero */
.floating-chip {
  position: absolute;
  z-index: 5;
  background: rgba(16, 20, 32, 0.85);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-highlight);
  border-radius: var(--radius-md);
  padding: 12px 18px;
  box-shadow: var(--shadow-lg);
  animation: float-chip 4s infinite ease-in-out;
}

.floating-chip.top-left {
  top: 15%;
  left: -40px;
  animation-delay: 0s;
}

.floating-chip.bottom-right {
  bottom: 12%;
  right: -30px;
  animation-delay: 2s;
}

@keyframes float-chip {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

.chip-content {
  display: flex;
  align-items: center;
  gap: 12px;
}

.chip-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.chip-icon.amber {
  background: var(--shift-morning-bg);
  color: var(--shift-morning);
}

.chip-icon.purple {
  background: var(--shift-night-bg);
  color: #A78BFA;
}

.chip-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: #FFFFFF;
}

.chip-subtitle {
  font-size: 0.76rem;
  color: var(--text-secondary);
}

/* ==========================================================================
   PROFESSIONS TICKER
   ========================================================================== */
.professions-ticker {
  padding: 30px 0;
  background: rgba(255, 255, 255, 0.02);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  overflow: hidden;
}

.ticker-label {
  text-align: center;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-tertiary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}

.ticker-track {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.ticker-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-secondary);
  transition: all var(--transition-fast);
}

.ticker-item:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #FFFFFF;
  border-color: var(--border-highlight);
  transform: translateY(-2px);
}

/* ==========================================================================
   TARGET AUDIENCE SHOWCASE BANNER
   ========================================================================== */
.showcase-banner-section {
  padding: 90px 0 70px 0;
  position: relative;
  overflow: hidden;
}

.showcase-card {
  position: relative;
  background: linear-gradient(180deg, rgba(16, 22, 36, 0.85) 0%, rgba(10, 14, 24, 0.95) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  padding: 16px;
  box-shadow: var(--shadow-lg), 0 0 60px rgba(124, 58, 237, 0.12), 0 0 40px rgba(255, 159, 10, 0.08);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: border-color var(--transition-normal), transform var(--transition-normal), box-shadow var(--transition-normal);
}

.showcase-card:hover {
  border-color: rgba(255, 255, 255, 0.22);
  box-shadow: var(--shadow-lg), 0 0 80px rgba(124, 58, 237, 0.2), 0 0 50px rgba(255, 159, 10, 0.15);
}

.showcase-glow {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 250px;
  background: radial-gradient(ellipse at center, rgba(124, 58, 237, 0.25) 0%, rgba(255, 159, 10, 0.15) 50%, transparent 70%);
  filter: blur(50px);
  pointer-events: none;
  z-index: 0;
}

.showcase-media-frame {
  position: relative;
  z-index: 1;
  width: 100%;
  border-radius: calc(var(--radius-xl) - 6px);
  overflow: hidden;
  background: #FFFFFF;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.showcase-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: transform var(--transition-smooth);
}

.showcase-card:hover .showcase-img {
  transform: scale(1.012);
}

.showcase-footer-bar {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  padding: 24px 16px 12px 16px;
}

.showcase-badges {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.showcase-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-highlight);
  border-radius: var(--radius-full);
  font-size: 0.88rem;
  font-weight: 600;
  color: #CBD5E1;
  transition: all var(--transition-fast);
}

.showcase-pill:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #FFFFFF;
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}

.showcase-cta-btn {
  padding: 10px 24px;
  font-size: 0.92rem;
  white-space: nowrap;
}

@media (max-width: 900px) {
  .showcase-footer-bar {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }
  .showcase-badges {
    justify-content: center;
  }
  .showcase-cta-btn {
    text-align: center;
    justify-content: center;
  }
}

/* ==========================================================================
   FEATURES BENTO GRID
   ========================================================================== */
.features-section {
  padding: 120px 0;
  position: relative;
}

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

.bento-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 36px;
  backdrop-filter: blur(20px);
  position: relative;
  overflow: hidden;
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.bento-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-highlight);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.bento-card.span-2 {
  grid-column: span 2;
}

.bento-card.span-3 {
  grid-column: span 3;
}

.bento-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.bento-icon-wrapper {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--shift-morning);
}

.bento-icon-wrapper.purple {
  color: #A78BFA;
  background: rgba(124, 58, 237, 0.1);
}

.bento-icon-wrapper.blue {
  color: #38BDF8;
  background: rgba(10, 132, 255, 0.1);
}

.bento-icon-wrapper.green {
  color: var(--accent-success);
  background: rgba(48, 209, 88, 0.1);
}

.card-tag {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-tertiary);
  padding: 4px 10px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: var(--radius-full);
}

.bento-card h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: #FFFFFF;
}

.bento-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.bento-list {
  list-style: none;
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.bento-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: #CBD5E1;
}

.bento-list li svg {
  width: 16px;
  height: 16px;
  fill: var(--accent-success);
  flex-shrink: 0;
  margin-top: 3px;
}

/* Bento Card Visual Elements */
.bento-visual-preview {
  margin-top: 24px;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 16px;
}

.rotation-bar-preview {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
}

.rot-day-pill {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 8px 4px;
  border-radius: 8px;
  font-size: 0.75rem;
  font-weight: 700;
}

.rot-day-pill.morning {
  background: var(--shift-morning);
  color: #000000;
}

.rot-day-pill.night {
  background: var(--shift-night);
  color: #FFFFFF;
}

.rot-day-pill.off {
  background: var(--shift-off);
  color: #CBD5E1;
}

/* ==========================================================================
   INTERACTIVE ROTATION SIMULATOR SECTION
   ========================================================================== */
.simulator-section {
  padding: 120px 0;
  background: radial-gradient(circle at 50% 50%, rgba(22, 27, 44, 0.8) 0%, var(--bg-main) 100%);
  position: relative;
}

.simulator-box {
  background: var(--bg-surface);
  border: 1px solid var(--border-highlight);
  border-radius: var(--radius-xl);
  padding: 48px;
  box-shadow: var(--shadow-lg), var(--shadow-glow-amber);
  backdrop-filter: blur(20px);
}

.sim-controls {
  margin-bottom: 36px;
}

.sim-label {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 14px;
}

.presets-container {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.preset-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-full);
  padding: 10px 20px;
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 600;
  transition: all var(--transition-fast);
}

.preset-btn:hover {
  color: #FFFFFF;
  border-color: var(--border-highlight);
  background: rgba(255, 255, 255, 0.09);
}

.preset-btn.active {
  background: linear-gradient(135deg, rgba(255, 159, 10, 0.25) 0%, rgba(124, 58, 237, 0.25) 100%);
  border-color: var(--shift-morning);
  color: #FFFFFF;
  box-shadow: 0 0 20px rgba(255, 159, 10, 0.2);
}

/* Simulator Grid Display */
.sim-calendar-wrapper {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 32px;
  align-items: start;
}

.sim-calendar-card {
  background: #0D101A;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 24px;
}

.calendar-header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border-subtle);
}

.calendar-month-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: #FFFFFF;
}

.calendar-weekdays-row {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-tertiary);
  margin-bottom: 10px;
}

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

.calendar-day-cell {
  aspect-ratio: 1 / 1;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  border: 1px solid transparent;
  transition: all var(--transition-fast);
  cursor: pointer;
  position: relative;
}

.calendar-day-cell:hover {
  border-color: #FFFFFF;
  transform: scale(1.06);
  z-index: 2;
}

.calendar-day-cell.empty {
  opacity: 0.2;
  cursor: default;
  pointer-events: none;
}

.calendar-day-cell.morning {
  background: var(--shift-morning);
  color: #000000;
  box-shadow: 0 4px 12px var(--shift-morning-glow);
}

.calendar-day-cell.night {
  background: var(--shift-night);
  color: #FFFFFF;
  box-shadow: 0 4px 12px var(--shift-night-glow);
}

.calendar-day-cell.off {
  background: rgba(71, 85, 105, 0.3);
  color: #94A3B8;
}

.day-subtext {
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-top: 2px;
}

/* Stats Sidebar */
.sim-stats-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.stat-item {
  background: #0D101A;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.stat-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

.stat-icon.amber {
  background: var(--shift-morning-bg);
  color: var(--shift-morning);
}

.stat-icon.purple {
  background: var(--shift-night-bg);
  color: #A78BFA;
}

.stat-icon.slate {
  background: var(--shift-off-bg);
  color: #94A3B8;
}

.stat-value {
  font-size: 1.5rem;
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1.1;
}

.stat-label {
  font-size: 0.82rem;
  color: var(--text-secondary);
}

.sim-tip-box {
  margin-top: 24px;
  padding: 16px;
  background: rgba(255, 159, 10, 0.08);
  border: 1px solid rgba(255, 159, 10, 0.2);
  border-radius: var(--radius-md);
  font-size: 0.88rem;
  color: #FDE68A;
}

/* ==========================================================================
   WIDGETS & APPLE WATCH SHOWCASE SECTION
   ========================================================================== */
.widgets-section {
  padding: 120px 0;
  position: relative;
}

.widgets-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.widget-tabs {
  display: flex;
  gap: 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-full);
  padding: 4px;
  margin-bottom: 28px;
  width: fit-content;
}

.widget-tab-btn {
  background: transparent;
  color: var(--text-secondary);
  padding: 8px 18px;
  border-radius: var(--radius-full);
  font-size: 0.88rem;
  font-weight: 600;
  transition: all var(--transition-fast);
}

.widget-tab-btn.active {
  background: var(--bg-surface-elevated);
  color: #FFFFFF;
  border: 1px solid var(--border-highlight);
  box-shadow: var(--shadow-sm);
}

/* Interactive Widget Display Canvas */
.widget-display-canvas {
  background: linear-gradient(145deg, #182030, #0C0F17);
  border: 1px solid var(--border-highlight);
  border-radius: 36px;
  padding: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 420px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.widget-display-canvas::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 30% 20%, rgba(255, 159, 10, 0.15), transparent 60%);
  pointer-events: none;
}

/* iOS Authentic Widget Styles */
.ios-widget {
  background: #FFFFFF;
  color: #000000;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.6);
  font-family: var(--font-family);
  overflow: hidden;
  position: relative;
  transition: all var(--transition-normal);
  display: none;
}

.ios-widget.active {
  display: block;
  animation: widget-pop 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes widget-pop {
  0% { transform: scale(0.92); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

/* Small Widget */
.ios-widget.small {
  width: 160px;
  height: 160px;
  border-radius: 26px;
  padding: 16px;
  display: none;
  flex-direction: column;
  justify-content: space-between;
  background: #FFAE33;
  background: linear-gradient(135deg, #FFB340 0%, #FF9500 100%);
  color: #FFFFFF;
}

.ios-widget.small.active {
  display: flex;
}

.w-small-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  opacity: 0.9;
}

.w-small-main {
  margin: auto 0;
}

.w-small-title {
  font-size: 1.4rem;
  font-weight: 900;
  line-height: 1;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}

.w-small-time {
  font-size: 0.8rem;
  font-weight: 700;
  margin-top: 4px;
  opacity: 0.95;
}

.w-small-footer {
  font-size: 0.75rem;
  font-weight: 700;
  background: rgba(0, 0, 0, 0.2);
  padding: 4px 8px;
  border-radius: 8px;
  width: fit-content;
}

/* Medium Widget */
.ios-widget.medium {
  width: 340px;
  height: 160px;
  border-radius: 26px;
  padding: 14px;
  display: none;
  grid-template-columns: 120px 1fr;
  gap: 14px;
  background: #FFFFFF;
}

.ios-widget.medium.active {
  display: grid;
}

.w-med-left {
  background: linear-gradient(135deg, #FFB340 0%, #FF9500 100%);
  border-radius: 18px;
  padding: 12px;
  color: #FFFFFF;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.w-med-right {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 4px 0;
}

.w-med-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  font-weight: 600;
  color: #1E293B;
  border-bottom: 1px solid #F1F5F9;
  padding-bottom: 4px;
}

.w-med-row:last-child {
  border-bottom: none;
}

.w-med-day {
  color: #64748B;
  font-weight: 700;
}

.w-badge-pill {
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: 700;
}

.w-badge-pill.m { background: #FEF3C7; color: #D97706; }
.w-badge-pill.n { background: #EDE9FE; color: #6D28D9; }
.w-badge-pill.o { background: #F1F5F9; color: #64748B; }

/* Large Widget */
.ios-widget.large {
  width: 340px;
  height: 340px;
  border-radius: 32px;
  padding: 20px;
  display: none;
  flex-direction: column;
  gap: 14px;
  background: #FFFFFF;
}

.ios-widget.large.active {
  display: flex;
}

.w-large-header {
  background: linear-gradient(135deg, #FFB340 0%, #FF9500 100%);
  border-radius: 18px;
  padding: 16px;
  color: #FFFFFF;
}

.w-large-header-top {
  font-size: 0.75rem;
  font-weight: 700;
  opacity: 0.9;
  margin-bottom: 4px;
}

.w-large-header-title {
  font-size: 1.5rem;
  font-weight: 900;
  line-height: 1;
}

.w-large-header-sub {
  font-size: 0.85rem;
  font-weight: 700;
  margin-top: 4px;
}

.w-large-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.w-large-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 10px;
  border-radius: 10px;
  background: #F8FAFC;
  font-size: 0.82rem;
  font-weight: 600;
}

.w-large-item-left {
  display: flex;
  align-items: center;
  gap: 8px;
}

.w-bar {
  width: 4px;
  height: 24px;
  border-radius: 2px;
}

.w-bar.orange { background: #FF9500; }
.w-bar.purple { background: #7C3AED; }
.w-bar.grey { background: #CBD5E1; }

/* ==========================================================================
   APPLE WATCH SECTION
   ========================================================================== */
.watch-section {
  padding: 120px 0;
  position: relative;
  background: radial-gradient(circle at 75% 50%, rgba(124, 58, 237, 0.15) 0%, transparent 60%);
}

.watch-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* Realistic Apple Watch Ultra Frame */
.watch-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.apple-watch {
  position: relative;
  width: 260px;
  height: 330px;
  background: #2D3039;
  border-radius: 64px;
  padding: 14px;
  box-shadow: 
    0 0 0 3px #484B57,
    0 0 0 7px #1A1C22,
    0 25px 60px rgba(0, 0, 0, 0.9),
    0 0 40px rgba(124, 58, 237, 0.3);
  transition: transform var(--transition-smooth);
}

.apple-watch:hover {
  transform: translateY(-6px) rotate(1deg);
}

/* Digital Crown & Button */
.watch-crown {
  position: absolute;
  right: -12px;
  top: 65px;
  width: 10px;
  height: 48px;
  background: linear-gradient(90deg, #6B7280, #374151);
  border-radius: 4px;
  box-shadow: 2px 0 6px rgba(0, 0, 0, 0.6);
}

.watch-btn {
  position: absolute;
  right: -8px;
  bottom: 80px;
  width: 6px;
  height: 38px;
  background: #374151;
  border-radius: 3px;
}

.watch-screen {
  width: 100%;
  height: 100%;
  background: #000000;
  border-radius: 50px;
  overflow: hidden;
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: inset 0 0 10px rgba(255, 255, 255, 0.05);
}

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

.watch-app-title {
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--shift-morning);
  letter-spacing: 0.04em;
}

.watch-time {
  font-size: 0.85rem;
  font-weight: 700;
  color: #FFFFFF;
}

.watch-main-card {
  background: var(--shift-morning);
  border-radius: 16px;
  padding: 12px;
  color: #000000;
}

.watch-shift-name {
  font-size: 1.15rem;
  font-weight: 900;
  line-height: 1;
}

.watch-shift-hours {
  font-size: 0.75rem;
  font-weight: 700;
  margin-top: 3px;
}

.watch-countdown-pill {
  margin-top: 6px;
  font-size: 0.68rem;
  font-weight: 800;
  background: rgba(0, 0, 0, 0.2);
  padding: 2px 6px;
  border-radius: 6px;
  width: fit-content;
}

.watch-timeline-mini {
  display: flex;
  justify-content: space-between;
  gap: 4px;
}

.w-mini-day {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 0.65rem;
  font-weight: 800;
  padding: 4px 2px;
  border-radius: 6px;
  width: 28px;
}

.w-mini-day.m { background: #FF9500; color: #000000; }
.w-mini-day.n { background: #7C3AED; color: #FFFFFF; }
.w-mini-day.o { background: #334155; color: #94A3B8; }

/* Watch Features List */
.watch-features-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 36px;
}

.watch-feat-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.watch-feat-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(124, 58, 237, 0.15);
  border: 1px solid rgba(124, 58, 237, 0.3);
  color: #C084FC;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.watch-feat-item h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 4px;
}

.watch-feat-item p {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

/* ==========================================================================
   APP SCREENS GALLERY
   ========================================================================== */
.gallery-section {
  padding: 100px 0;
  text-align: center;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 60px;
}

.gallery-card {
  background: rgba(22, 27, 44, 0.4);
  border: 1px solid var(--border-subtle);
  border-radius: 32px;
  padding: 36px 20px 28px 20px;
  backdrop-filter: blur(16px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.gallery-card:hover {
  transform: translateY(-8px);
  background: rgba(28, 35, 56, 0.65);
  border-color: var(--border-highlight);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.7), var(--shadow-glow-purple);
}

.gallery-img-container {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 24px;
}

.gallery-img-container img {
  max-width: 250px;
  height: auto;
  display: block;
  filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.65));
  transition: transform var(--transition-smooth);
}

.gallery-card:hover .gallery-img-container img {
  transform: scale(1.03);
}

.gallery-caption {
  font-size: 1.15rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 6px;
}

.gallery-sub {
  font-size: 0.88rem;
  color: var(--text-secondary);
  max-width: 260px;
  line-height: 1.5;
}

/* ==========================================================================
   FAQ SECTION
   ========================================================================== */
.faq-section {
  padding: 120px 0;
}

.faq-accordion {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--transition-fast);
}

.faq-item.active {
  border-color: var(--border-highlight);
  background: var(--bg-surface-elevated);
}

.faq-question {
  width: 100%;
  text-align: left;
  background: transparent;
  padding: 22px 28px;
  font-size: 1.05rem;
  font-weight: 700;
  color: #FFFFFF;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.faq-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--text-secondary);
  transition: transform var(--transition-normal);
  flex-shrink: 0;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  background: var(--shift-morning);
  color: #000000;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.16, 1, 0.3, 1), padding 0.35s ease;
  padding: 0 28px;
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding-bottom: 24px;
}

/* ==========================================================================
   FINAL CTA BANNER
   ========================================================================== */
.cta-section {
  padding: 80px 0 120px 0;
}

.cta-banner {
  background: linear-gradient(135deg, rgba(255, 159, 10, 0.15) 0%, rgba(124, 58, 237, 0.25) 50%, rgba(16, 20, 32, 0.95) 100%);
  border: 1px solid var(--border-highlight);
  border-radius: var(--radius-xl);
  padding: 80px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg), var(--shadow-glow-amber);
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.cta-title {
  font-size: clamp(2.2rem, 3.8vw, 3.4rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 20px;
  color: #FFFFFF;
}

.cta-subtitle {
  font-size: 1.15rem;
  color: #CBD5E1;
  max-width: 620px;
  margin: 0 auto 36px auto;
  line-height: 1.6;
}

.cta-btn-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 16px;
}

.cta-footer-note {
  font-size: 0.85rem;
  color: var(--text-tertiary);
  font-weight: 500;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  padding: 60px 0 40px 0;
  background: #05060A;
  border-top: 1px solid var(--border-subtle);
}

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

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-links {
  display: flex;
  gap: 24px;
  list-style: none;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.footer-links a:hover {
  color: #FFFFFF;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.82rem;
  color: var(--text-tertiary);
  flex-wrap: wrap;
  gap: 16px;
}

/* ==========================================================================
   RESPONSIVE DESIGN (MEDIA QUERIES)
   ========================================================================== */

/* Tablet & Smaller Laptops (<= 1024px) */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }

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

  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-cta-group {
    align-items: center;
  }

  .hero-social-proof {
    justify-content: center;
  }

  .hero-device-wrapper {
    margin-top: 20px;
  }

  .sim-calendar-wrapper,
  .widgets-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  .bento-card.span-2,
  .bento-card.span-3 {
    grid-column: span 2;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    max-width: 440px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* Mobile & Tablets (<= 768px) */
@media (max-width: 768px) {
  .nav-download-desktop {
    display: none !important;
  }

  .mobile-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid var(--border-subtle);
    color: #FFFFFF;
    font-size: 1.25rem;
    cursor: pointer;
  }

  .nav-menu {
    display: none;
    position: absolute;
    top: calc(100% + 14px);
    left: 0;
    right: 0;
    width: 100%;
    background: rgba(10, 13, 20, 0.98);
    backdrop-filter: blur(28px);
    -webkit-backdrop-filter: blur(28px);
    border: 1px solid var(--border-highlight);
    border-radius: var(--radius-lg);
    padding: 20px;
    flex-direction: column;
    gap: 12px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.9);
    z-index: 1000;
  }

  .nav-menu.open {
    display: flex;
  }

  .nav-menu li {
    width: 100%;
  }

  .nav-menu .nav-link {
    display: block;
    padding: 10px 14px;
    border-radius: var(--radius-sm);
    font-size: 1rem;
    font-weight: 600;
    transition: all var(--transition-fast);
  }

  .nav-menu .nav-link:hover {
    background: rgba(255, 255, 255, 0.06);
  }

  .mobile-menu-cta {
    display: block !important;
    margin-top: 8px;
    padding-top: 12px;
    border-top: 1px solid var(--border-subtle);
  }

  .mobile-menu-cta .btn-primary {
    width: 100%;
    justify-content: center;
    padding: 12px 20px;
  }

  /* Section Spacing & Headers */
  .hero-section {
    padding: 40px 0 60px 0;
  }

  .showcase-banner-section,
  .features-section,
  .simulator-section,
  .widgets-section,
  .gallery-section,
  .faq-section,
  .cta-section {
    padding: 60px 0;
  }

  .section-header {
    margin-bottom: 36px;
  }

  .section-title {
    font-size: clamp(1.8rem, 6vw, 2.4rem);
  }

  .section-subtitle {
    font-size: 1rem;
  }

  /* Hero Mobile */
  .hero-title {
    font-size: clamp(2rem, 7.5vw, 2.7rem);
    letter-spacing: -0.03em;
  }

  .hero-subtitle {
    font-size: 1.02rem;
    line-height: 1.55;
    margin-bottom: 24px;
  }

  .hero-device-wrapper {
    width: 100%;
    max-width: 290px;
    margin: 10px auto 0 auto;
  }

  .hero-mockup-container {
    max-width: 260px;
  }

  .hero-glow-halo {
    width: 280px;
    height: 380px;
  }

  /* Floating Chips on Mobile */
  .floating-chip {
    padding: 8px 12px;
    border-radius: var(--radius-sm);
  }

  .floating-chip.top-left {
    top: 5%;
    left: -15px;
    transform: scale(0.9);
  }

  .floating-chip.bottom-right {
    bottom: 5%;
    right: -15px;
    transform: scale(0.9);
  }

  .chip-icon {
    width: 28px;
    height: 28px;
    font-size: 0.95rem;
  }

  .chip-title {
    font-size: 0.78rem;
  }

  .chip-subtitle {
    font-size: 0.68rem;
  }

  /* Target Audience Showcase Mobile */
  .showcase-card {
    padding: 10px;
    border-radius: var(--radius-lg);
  }

  .showcase-media-frame {
    border-radius: calc(var(--radius-lg) - 4px);
  }

  .showcase-footer-bar {
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 18px 6px 6px 6px;
  }

  .showcase-badges {
    justify-content: center;
    gap: 8px;
  }

  .showcase-pill {
    font-size: 0.78rem;
    padding: 6px 12px;
  }

  .showcase-cta-btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }

  /* Bento Grid Mobile */
  .bento-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .bento-card.span-2,
  .bento-card.span-3 {
    grid-column: span 1;
  }

  .bento-card {
    padding: 24px 18px;
    border-radius: var(--radius-lg);
  }

  .rotation-bar-preview {
    display: flex;
    gap: 6px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding: 8px 0;
    width: 100%;
  }

  .rot-day-pill {
    min-width: 42px;
    flex-shrink: 0;
    padding: 8px 4px;
    font-size: 0.75rem;
  }

  /* Simulator Mobile */
  .simulator-box {
    padding: 20px 14px;
    border-radius: var(--radius-lg);
  }

  .presets-container {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
  }

  .preset-btn {
    width: 100%;
    font-size: 0.82rem;
    padding: 10px 14px;
    text-align: center;
    white-space: normal;
  }

  .sim-calendar-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
  }

  .sim-calendar-card {
    padding: 18px 12px;
    width: 100%;
    box-sizing: border-box;
  }

  .calendar-weekdays-row {
    gap: 4px;
    font-size: 0.72rem;
  }

  .calendar-grid {
    gap: 4px;
  }

  .calendar-day-cell {
    padding: 6px 2px;
    min-height: 46px;
    border-radius: 8px;
    font-size: 0.72rem;
  }

  .sim-stats-card {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    padding: 16px 12px;
  }

  .stat-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 6px;
    padding: 8px 4px;
  }

  .stat-icon {
    width: 32px;
    height: 32px;
    font-size: 1rem;
  }

  .stat-value {
    font-size: 1.15rem;
  }

  .stat-label {
    font-size: 0.68rem;
  }

  .sim-tip-box {
    grid-column: span 3;
    font-size: 0.8rem;
    padding: 10px 12px;
  }

  /* Widgets Section Mobile */
  .widget-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    justify-content: center;
  }

  .widget-tab-btn {
    padding: 7px 12px;
    font-size: 0.8rem;
  }

  .widget-display-canvas {
    padding: 20px 8px;
    width: 100%;
    max-width: 330px;
    margin: 0 auto;
    box-sizing: border-box;
  }

  .ios-widget.medium {
    width: 100%;
    max-width: 320px;
    padding: 14px 12px;
    gap: 10px;
  }

  .ios-widget.large {
    width: 100%;
    max-width: 320px;
    padding: 14px 12px;
  }

  .apple-watch {
    width: 240px;
    height: 290px;
    margin: 0 auto;
  }

  /* Gallery Mobile */
  .gallery-card {
    padding: 18px 14px;
    max-width: 320px;
  }

  .gallery-img-container {
    max-height: 460px;
  }

  /* CTA Banner Mobile */
  .cta-banner {
    padding: 38px 18px;
    border-radius: var(--radius-lg);
  }

  .cta-title {
    font-size: clamp(1.6rem, 5.5vw, 2.2rem);
  }

  .cta-subtitle {
    font-size: 0.95rem;
    margin-bottom: 24px;
  }

  .app-store-btn {
    padding: 12px 22px;
  }

  .app-store-name {
    font-size: 1.15rem;
  }

  /* Footer Mobile */
  .footer-top {
    flex-direction: column;
    align-items: center;
    gap: 24px;
    text-align: center;
  }

  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 18px;
    font-size: 0.88rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }
}

/* Extra Small Mobile (<= 380px, e.g. iPhone SE, iPhone Mini) */
@media (max-width: 380px) {
  .container {
    padding-left: 14px;
    padding-right: 14px;
  }

  .hero-title {
    font-size: 1.85rem;
  }

  .floating-chip {
    display: none;
  }

  .brand-name {
    font-size: 1.15rem;
  }

  .lang-btn {
    padding: 4px 6px;
    font-size: 0.7rem;
  }

  .sim-stats-card {
    grid-template-columns: 1fr;
  }

  .sim-tip-box {
    grid-column: span 1;
  }
}
