/* Base & Variables */
:root {
  --background: #09090b;
  --foreground: #fafafa;
  --primary: #fafafa;
  --primary-foreground: #18181b;
  --muted-foreground: #a1a1aa;
  --border: #27272a;
  --font-sans:
    ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif,
    "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}

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

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--background);
  color: var(--foreground);
  font-family: var(--font-sans);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.5;
}

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

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

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

/* Utilities */
.container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

@media (min-width: 640px) {
  .container {
    max-width: 640px;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 768px;
  }
}
@media (min-width: 1024px) {
  .container {
    max-width: 1024px;
  }
}
@media (min-width: 1280px) {
  .container {
    max-width: 1280px;
  }
}

.max-w-5xl {
  max-width: 64rem;
}
.max-w-7xl {
  max-width: 80rem;
}
.mx-auto {
  margin-left: auto;
  margin-right: auto;
}
.text-center {
  text-align: center;
}
.relative {
  position: relative;
}
.absolute {
  position: absolute;
}
.fixed {
  position: fixed;
}
.inset-0 {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.z-10 {
  z-index: 10;
}
.z-50 {
  z-index: 50;
}
.hidden {
  display: none;
}
.flex {
  display: flex;
}
.flex-col {
  flex-direction: column;
}
.items-center {
  align-items: center;
}
.justify-center {
  justify-content: center;
}
.justify-between {
  justify-content: space-between;
}
.gap-4 {
  gap: 1rem;
}
.gap-12 {
  gap: 3rem;
}
.w-full {
  width: 100%;
}
.h-full {
  height: 100%;
}
.overflow-hidden {
  overflow: hidden;
}

/* Header */
.header {
  top: 0;
  width: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background-color: rgba(9, 9, 11, 0.5);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  z-index: 50;
}

.header-inner {
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-area {
  display: flex;
  align-items: center;
  gap: 3rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: white;
  font-weight: 700;
  font-size: 1.125rem;
}

.logo-img {
  height: 32px;
  width: auto;
}

.nav-menu {
  display: none;
  gap: 2rem;
  font-size: 0.875rem;
  list-style: none;
}

@media (min-width: 1024px) {
  .nav-menu {
    display: flex;
  }
}

.nav-link {
  color: var(--muted-foreground);
  transition: color 0.2s;
}

.nav-link:hover {
  color: white;
}

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

.auth-buttons {
  display: none;
  align-items: center;
  gap: 1rem;
}

@media (min-width: 640px) {
  .auth-buttons {
    display: flex;
  }
}

.btn-signin {
  font-size: 0.875rem;
  font-weight: 500;
  color: white;
  transition: color 0.2s;
}

.btn-signin:hover {
  color: rgba(255, 255, 255, 0.8);
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.375rem;
  background-color: white;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: black;
  position: relative;
  overflow: hidden;
  transition: color 0.35s ease;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.375rem;
  background-color: white;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: black;
  position: relative;
  overflow: hidden;
  transition: color 0.35s ease;
}

/* Shared radial fill: Get Started + Start Free Trial (single place for animation) */
.btn-primary::before,
.btn-mobile-start::before,
.btn-hero-primary::before {
  content: "";
  position: absolute;
  left: var(--mouse-x, 50%);
  top: var(--mouse-y, 50%);
  width: 300px;
  height: 300px;
  margin-left: -150px;
  margin-top: -150px;
  border-radius: 50%;
  background: #18181b;
  transform: scale(0);
  transition: transform 0.45s ease; /* fast unfill when leaving */
  z-index: 0;
}

/* Slower fill when hovering */
.btn-primary.btn-fill-active::before,
.btn-mobile-start.btn-fill-active::before,
.btn-hero-primary.btn-fill-active::before {
  transition: transform 2s ease;
}

.btn-primary:hover::before,
.btn-mobile-start:hover::before,
.btn-hero-primary:hover::before {
  transform: scale(4);
}

.btn-primary:hover,
.btn-mobile-start:hover,
.btn-hero-primary:hover {
  color: white;
}

.btn-primary-text,
.btn-hero-primary-text {
  position: relative;
  z-index: 1;
}

.mobile-menu-btn {
  color: white;
}

@media (min-width: 1024px) {
  .mobile-menu-btn {
    display: none;
  }
}

/* Mobile Menu */
.mobile-menu {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background-color: rgba(9, 9, 11, 0.95);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
}

.mobile-menu-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mobile-nav-link {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted-foreground);
  transition: color 0.2s;
}

.mobile-nav-link:hover {
  color: white;
}

.mobile-auth-actions {
  padding-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.btn-mobile-signin {
  display: block;
  width: 100%;
  text-align: center;
  border-radius: 0.375rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background-color: rgba(255, 255, 255, 0.05);
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: white;
  transition: background-color 0.2s;
}

.btn-mobile-signin:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.btn-mobile-start {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  text-align: center;
  border-radius: 0.375rem;
  background-color: white;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: black;
  position: relative;
  overflow: hidden;
  transition: color 0.35s ease;
}

/* Hero Section */
.hero-section {
  position: relative;
  padding-top: 8rem;
  padding-bottom: 5rem;
  overflow: hidden;
}

.hero-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1;
}

@media (min-width: 1024px) {
  .hero-section {
    padding-top: 10rem;
    padding-bottom: 7rem;
  }
}

.hero-bg {
  background: radial-gradient(
    125% 125% at 50% 100%,
    transparent 0%,
    #09090b 75%
  );
  z-index: -10;
}

.hero-content {
  max-width: 48rem; /* max-w-3xl */
  margin-top: 2rem;
}

@media (min-width: 1024px) {
  .hero-content {
    margin-top: 4rem;
  }
}

.hero-title {
  font-size: 3rem; /* text-5xl */
  line-height: 1;
  font-weight: 500;
  letter-spacing: -0.025em;
  color: white;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 3.75rem; /* text-6xl */
  }
}

.hero-description {
  margin-top: 2rem;
  max-width: 42rem; /* max-w-2xl */
  font-size: 1.125rem; /* text-lg */
  color: var(--muted-foreground);
}

.hero-actions {
  margin-top: 3rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.btn-hero-primary-wrapper {
  border-radius: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background-color: rgba(255, 255, 255, 0.05);
  padding: 0.25rem;
}

.btn-hero-primary {
  display: inline-flex;
  height: 2.75rem;
  align-items: center;
  justify-content: center;
  border-radius: 0.5rem;
  background-color: white;
  padding-left: 2rem;
  padding-right: 2rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: black;
  position: relative;
  overflow: hidden;
  transition: color 0.35s ease;
}

.btn-hero-secondary {
  display: inline-flex;
  height: 2.75rem;
  align-items: center;
  justify-content: center;
  border-radius: 0.5rem;
  padding-left: 2rem;
  padding-right: 2rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: white;
  transition: background-color 0.2s;
}

.btn-hero-secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

/* Mobile App Section */
.mobile-app-section {
  padding: 8rem 0;
  background-color: var(--background);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.mobile-app-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .mobile-app-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.mobile-app-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.section-title {
  font-size: 2.25rem;
  font-weight: 500;
  letter-spacing: -0.025em;
  color: white;
  margin-bottom: 1rem;
}

.section-description {
  color: var(--muted-foreground);
  font-size: 1.125rem;
  margin-bottom: 2.5rem;
  max-width: 32rem;
}

.mobile-app-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mobile-app-features li {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.125rem;
  color: white;
}

.check-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
}

.mobile-app-visual {
  display: flex;
  justify-content: center;
  padding: 2rem;
}

.phone-mockup {
  width: 300px;
  height: 620px;
  background: #000;
  border-radius: 40px;
  border: 8px solid #27272a;
  position: relative;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  overflow: hidden;
}

.phone-screen {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
}

/* Coach Sessions Section – manage sessions in the app */
.coach-sessions-section {
  padding: 8rem 0;
  background-color: var(--background);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.coach-sessions-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .coach-sessions-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.coach-sessions-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.coach-sessions-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  min-height: 320px;
}

.coach-sessions-floating {
  position: relative;
  width: 100%;
  max-width: 520px;
  aspect-ratio: 1;
}

.coach-sessions-floating .coach-screenshot {
  position: absolute;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  object-fit: contain;
  max-width: 72%;
}

.coach-screenshot-wed {
  left: 0;
  top: 50%;
  transform: translateY(-50%) rotate(-3deg);
  z-index: 1;
}

.coach-screenshot-thu {
  right: 0;
  top: 50%;
  transform: translateY(-50%) rotate(3deg);
  z-index: 0;
}

@media (min-width: 640px) {
  .coach-sessions-floating .coach-screenshot {
    max-width: 280px;
  }
}

.hero-image-container {
  margin-top: 5rem;
  position: relative;
}

.hero-image-frame {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  background-color: rgba(24, 24, 27, 0.5);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.hero-image-inner {
  overflow: hidden;
  border-radius: 1rem;
  background-color: #18181b;
}

/* Customers Section */
.customers-section {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  background-color: rgba(0, 0, 0, 0.2);
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.customers-link {
  margin-bottom: 3rem;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
  transition: color 0.2s;
}

.customers-link:hover {
  color: white;
}

.customers-grid {
  display: grid;
  width: 100%;
  max-width: 56rem; /* max-w-4xl */
  grid-template-columns: repeat(2, 1fr);
  column-gap: 3rem;
  row-gap: 3rem;
  opacity: 0.5;
  filter: grayscale(100%);
  transition: all 0.5s;
}

.customers-grid:hover {
  opacity: 1;
  filter: grayscale(0);
}

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

.customer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
}

.customer-logo img {
  height: 1.5rem; /* h-6 */
  width: auto;
  filter: invert(1);
}

.customer-logo img.h-5 {
  height: 1.25rem;
}
.customer-logo img.h-7 {
  height: 1.75rem;
}
.customer-logo img.h-8 {
  height: 2rem;
}

/* Features Section */
.features-section {
  padding-top: 20rem;
  padding-bottom: 20rem;
  background-color: var(--background);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  overflow: visible;
}

.features-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
  grid-template-columns: 1fr;
}

/* Desktop: text left, image right */
@media (min-width: 1024px) {
  .features-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
  }
}

.features-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 36rem;
  margin: 0 auto;
}

@media (min-width: 1024px) {
  .features-content {
    text-align: left;
    margin-left: 0;
    margin-right: 0;
  }
}

.features-title {
  font-size: 1.875rem; /* text-3xl */
  font-weight: 500;
  letter-spacing: -0.025em;
  color: white;
  margin-bottom: 1rem;
}

@media (min-width: 640px) {
  .features-title {
    font-size: 2.25rem; /* text-4xl */
  }
}

.features-description {
  color: var(--muted-foreground);
  font-size: 1.125rem;
  margin-bottom: 2.5rem;
}

@media (min-width: 1024px) {
  .features-content .features-description {
    margin-left: 0;
    margin-right: 0;
  }
}

.features-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .features-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem 2rem;
    justify-items: start;
    max-width: 32rem;
    margin: 0 auto;
  }
}

@media (min-width: 1024px) {
  .features-list {
    justify-items: start;
    margin-left: 0;
    margin-right: 0;
  }
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.feature-item.border-b {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding-bottom: 1.5rem;
}

.feature-icon-box {
  display: flex;
  height: 2.5rem;
  width: 2.5rem;
  align-items: center;
  justify-content: center;
  border-radius: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background-color: rgba(255, 255, 255, 0.05);
  flex-shrink: 0;
}

.feature-text {
  font-size: 1.125rem;
  font-weight: 500;
  color: white;
}

.features-image {
  position: relative;
  width: 100%;
}

@media (min-width: 1024px) {
  .features-image {
    transform: scale(1.85);
    transform-origin: left center;
  }
}

/* Screenshot container – clean gray border */
.mac-window {
  margin: 0 auto;
  max-width: 100%;
  border-radius: 12px;
  overflow: visible;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: #18181b;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

@media (min-width: 768px) {
  .mac-window {
    max-width: 92%;
  }
}

/* Image frame */
.features-image-frame {
  overflow: hidden;
  border-radius: 12px;
  border: none;
  background-color: #18181b;
  box-shadow: none;
  margin: 0;
  max-width: none;
}

.features-image-frame img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

/* Overlay row (Pam) – on top of clients screenshot with border and background */
.features-row-overlay {
  position: absolute;
  top: 38%;
  left: 50%;
  transform: translate(-50%, 0) scale(1.15);
  transform-origin: center center;
  width: 100%;
  max-width: none;
  z-index: 2;
  background: #000;
  border: 2px solid rgba(255, 255, 255, 0.12);
  border-radius: 4px;
  overflow: hidden;
}

.features-row-overlay img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

@media (min-width: 768px) {
  .features-row-overlay {
    width: 100%;
    top: 47%;
    left: 60%;
    transform: translate(-50%, 0) scale(1.3);
    transform-origin: center center;
  }
}

/* Isometric Section */
.isometric-section {
  padding-top: 8rem;
  padding-bottom: 8rem; /* py-32 */
  overflow: hidden;
  background-color: #09090b; /* zinc-950 */
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
}

.isometric-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background-color: rgba(99, 102, 241, 0.1); /* indigo-500/10 */
  border-radius: 9999px;
  filter: blur(120px);
  pointer-events: none;
}

.isometric-content {
  margin-bottom: 6rem;
  text-align: center;
  position: relative;
  z-index: 10;
}

.isometric-title {
  font-size: 1.875rem;
  font-weight: 500;
  letter-spacing: -0.025em;
  color: white;
  margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
  .isometric-title {
    font-size: 2.25rem;
  }
}

.isometric-description {
  color: var(--muted-foreground);
  font-size: 1.125rem;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}

.isometric-viewport {
  position: relative;
  margin-left: auto;
  margin-right: auto;
  max-width: 1000px;
  height: 400px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: -2.5rem;
}

/* Animations & Custom Styles from original file */
.fade-in-up {
  animation: fadeInUp 1s ease-out forwards;
  opacity: 0;
  transform: translateY(20px);
}

.delay-100 {
  animation-delay: 0.1s;
}
.delay-200 {
  animation-delay: 0.2s;
}
.delay-300 {
  animation-delay: 0.3s;
}

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

.image-fade-overlay {
  background: linear-gradient(to bottom, transparent 0%, #09090b 100%);
}

.isometric-container {
  perspective: 2000px;
  transform-style: preserve-3d;
}

.isometric-grid {
  transform: rotateX(0deg) rotateY(4deg) rotateZ(0deg) scale(1);
  transform-style: preserve-3d;
  transition: transform 0.5s ease-out;
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.isometric-card {
  box-shadow:
    0 25px 50px -12px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(255, 255, 255, 0.05) inset;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transform-origin: center center;
  backface-visibility: hidden;
  position: absolute;
  width: 700px;
  height: 80px;
  border-radius: 0.75rem;
  overflow: hidden;
}

.glass-panel {
  background: linear-gradient(
    135deg,
    rgba(24, 24, 27, 0.8) 0%,
    rgba(24, 24, 27, 0.6) 100%
  );
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.card-image {
  width: 100%;
  height: 100%;
  object-fit: fill;
}

.opacity-50 {
  opacity: 0.5;
}
.opacity-75 {
  opacity: 0.75;
}
.hover-opacity-100:hover {
  opacity: 1;
}
.transition-opacity {
  transition-property: opacity;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 300ms;
}

.iso-card-1 {
  transform: translateZ(-80px) translateY(-60px) translateX(-40px)
    rotateY(30deg);
  z-index: 1;
}
.iso-card-1:hover {
  transform: translateZ(-80px) translateY(-80px) translateX(-40px)
    rotateY(30deg);
  z-index: 4;
}

.iso-card-2 {
  transform: translateZ(0px) translateY(0px) translateX(0px) rotateY(30deg);
  z-index: 2;
}
.iso-card-2:hover {
  transform: translateZ(0px) translateY(-20px) translateX(0px) rotateY(30deg);
  z-index: 4;
}

.iso-card-3 {
  transform: translateZ(80px) translateY(60px) translateX(40px) rotateY(30deg);
  z-index: 3;
}
.iso-card-3:hover {
  transform: translateZ(80px) translateY(40px) translateX(40px) rotateY(30deg);
  z-index: 4;
}

/* Footer */
.footer {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  background-color: #09090b;
  padding-top: 4rem;
  padding-bottom: 2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

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

.footer-brand {
  grid-column: span 1;
}

@media (min-width: 1024px) {
  .footer-brand {
    grid-column: span 1;
  }
}

.footer-desc {
  margin-top: 1rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.5;
}

.footer-links-col {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-heading {
  font-size: 0.875rem;
  font-weight: 600;
  color: white;
  margin-bottom: 0.5rem;
}

.footer-link {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  transition: color 0.2s;
}

.footer-link:hover {
  color: white;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

@media (min-width: 640px) {
  .footer-bottom {
    flex-direction: row;
  }
}

.copyright {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.social-links {
  display: flex;
  gap: 1.5rem;
}

.social-link {
  color: var(--muted-foreground);
  transition: color 0.2s;
}

.social-link:hover {
  color: white;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg-primary: #000000;
  --bg-secondary: #0a0a0a;
  --bg-tertiary: #141414;
  --text-primary: #ffffff;
  --text-secondary: #888888;
  --text-tertiary: #444444;
  --accent-primary: #ffffff;
  --accent-secondary: #e0e0e0;
  --border-color: #1a1a1a;
  --gradient-start: #ffffff;
  --gradient-end: #888888;
}

body {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    sans-serif;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-color);
}

.nav-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 18px;
  color: var(--text-primary);
}

.logo svg {
  color: var(--text-primary);
}

.logo-img {
  height: 32px;
  width: auto;
}

.nav-links {
  display: flex;
  gap: 32px;
}

.nav-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}

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

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

/* Buttons */
.btn-primary,
.btn-secondary,
.btn-outline {
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
  font-family: inherit;
}

.btn-primary {
  background: var(--text-primary);
  color: var(--bg-primary);
}

.btn-primary:hover {
  color: white;
  transform: none;
  box-shadow: none;
  background: transparent;
}

.btn-secondary {
  background: transparent;
  color: var(--text-secondary);
}

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

.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-color);
}

.btn-outline:hover {
  border-color: var(--text-primary);
  background: rgba(255, 255, 255, 0.05);
}

.btn-primary.large,
.btn-outline.large {
  padding: 14px 28px;
  font-size: 16px;
}

/* Hero Section */
.hero {
  padding: 120px 0 80px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  background-image: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.15) 1.5px,
    transparent 1.5px
  );
  background-size: 40px 40px;
  background-position: 0 0;
}

.hero-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
  position: relative;
  z-index: 1;
}

.hero-title {
  font-size: 72px;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.gradient-text {
  color: var(--text-primary);
}

.hero-description {
  font-size: 20px;
  color: var(--text-secondary);
  margin-bottom: 40px;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-bottom: 60px;
}

.hero-stats {
  display: flex;
  gap: 48px;
  justify-content: center;
}

.stat {
  text-align: center;
}

.stat-value {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--text-primary);
}

.stat-label {
  font-size: 14px;
  color: var(--text-tertiary);
}

/* Isometric App Mockup Hero */
.hero-visual {
  margin-top: 40px;
  position: relative;
  z-index: 1;
  perspective: 2500px;
  perspective-origin: 50% 0%;
  /* Break out of container constraints */
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.app-mockup-wrapper {
  position: relative;
  max-width: 1600px;
  height: auto;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  transform-style: preserve-3d;
}

/* The main app mockup container */
.app-mockup {
  width: 100%;
  max-width: 1400px;
  position: relative;
  transform: rotateX(40deg) rotateZ(-25deg) rotateY(10deg);
  transform-style: preserve-3d;
  transition: transform 0.5s ease;

  /* Replaces image background */
  background: #0a0a0a;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  box-shadow:
    0 50px 100px rgba(0, 0, 0, 0.5),
    0 10px 20px rgba(0, 0, 0, 0.3);
  min-height: 600px;
  display: flex;
}

.mockup-content-layer {
  width: 100%;
  height: 100%;
  display: flex;
  transform-style: preserve-3d;
  padding: 24px;
}

/* Sidebar Overlay */
.sidebar-overlay {
  width: 20%; /* Adjusted width */
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 20px 10px;
  gap: 15px;
  transform-style: preserve-3d;
}

.sidebar-logo {
  width: 80%;
  margin-bottom: 10px;
  margin-left: 10px;
  opacity: 0;
  animation: fadeIn 0.8s ease-out 0.5s forwards;
}

.sidebar-menu {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.sidebar-link {
  width: 100%;
  height: auto;
  opacity: 0;
  transform: translateX(-20px);
  animation: slideInLeft 0.5s ease-out forwards;
}

.sidebar-link.active {
  transform: translateX(0) translateZ(10px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Stagger sidebar animations */
.sidebar-link:nth-child(1) {
  animation-delay: 0.6s;
}
.sidebar-link:nth-child(2) {
  animation-delay: 0.65s;
}
.sidebar-link:nth-child(3) {
  animation-delay: 0.7s;
}
.sidebar-link:nth-child(4) {
  animation-delay: 0.75s;
}
.sidebar-link:nth-child(5) {
  animation-delay: 0.8s;
}
.sidebar-link:nth-child(6) {
  animation-delay: 0.85s;
}
.sidebar-link:nth-child(7) {
  animation-delay: 0.9s;
}
.sidebar-link:nth-child(8) {
  animation-delay: 0.95s;
}
.sidebar-link:nth-child(9) {
  animation-delay: 1s;
}
.sidebar-link:nth-child(10) {
  animation-delay: 1.05s;
}
.sidebar-link:nth-child(11) {
  animation-delay: 1.1s;
}
.sidebar-link:nth-child(12) {
  animation-delay: 1.15s;
}
.sidebar-link:nth-child(13) {
  animation-delay: 1.2s;
}

/* Main Content Overlay */
.main-overlay {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 20px 30px;
  transform-style: preserve-3d;
}

.main-header-area {
  margin-bottom: 20px;
  transform-style: preserve-3d;
}

.header-top-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 15px;
}

.header-title-img {
  height: 40px;
  width: auto;
  display: block;
  opacity: 0;
  transform: translateY(-20px);
  animation: fadeInDown 0.6s ease-out 0.8s forwards;
}

.header-actions {
  display: flex;
  gap: 10px;
}

.header-btn {
  height: 32px;
  width: auto;
  opacity: 0;
  animation: fadeIn 0.6s ease-out 1s forwards;
}

.header-week-img {
  height: 30px;
  width: auto;
  display: block;
  opacity: 0;
  transform: translateY(-20px);
  animation: fadeInDown 0.6s ease-out 0.9s forwards;
}

/* Kanban Board */
.kanban-board {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  flex: 1;
  transform-style: preserve-3d;
}

.kanban-column {
  display: flex;
  flex-direction: column;
  transform-style: preserve-3d;
}

.day-background {
  /* Lighter background to be visible on dark bg */
  background: rgba(30, 30, 30, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 12px;
  height: 100%;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transform-style: preserve-3d;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.6s ease-out 1s forwards;
  box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.2);
}

.kanban-column:nth-child(2) .day-background {
  animation-delay: 1.1s;
}
.kanban-column:nth-child(3) .day-background {
  animation-delay: 1.2s;
}
.kanban-column:nth-child(4) .day-background {
  animation-delay: 1.3s;
}

.day-header-text {
  display: flex;
  align-items: center;
  color: #fff;
  font-size: 14px;
  padding: 0 4px;
  margin-bottom: 4px;
}

.day-name {
  font-weight: 600;
}

.day-dot {
  margin: 0 6px;
  color: #444;
  font-size: 8px;
}

.day-reps {
  color: #888;
  font-size: 13px;
}

.day-options {
  margin-left: auto;
  color: #666;
  cursor: pointer;
}

.day-cards-container {
  display: flex;
  flex-direction: column;
  gap: 10px;
  transform-style: preserve-3d;
}

.kanban-card {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;

  /* Initial state for animation */
  opacity: 0;
  transform: translateZ(150px) translateY(-300px) rotateX(-15deg);
}

.kanban-card:hover {
  transform: translateZ(30px) scale(1.05) !important;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  z-index: 10;
}

/* Card Drop Animations */
.kanban-column:nth-child(1) .kanban-card {
  animation: cardDrop 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

.kanban-column:nth-child(2) .kanban-card {
  animation: cardDrop 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

.kanban-column:nth-child(3) .kanban-card {
  animation: cardDrop 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

/* Stagger delays */
.kanban-column:nth-child(1) .kanban-card:nth-child(1) {
  animation-delay: 1.4s;
}
.kanban-column:nth-child(1) .kanban-card:nth-child(2) {
  animation-delay: 1.5s;
}
.kanban-column:nth-child(1) .kanban-card:nth-child(3) {
  animation-delay: 1.6s;
}

.kanban-column:nth-child(2) .kanban-card:nth-child(1) {
  animation-delay: 1.5s;
}
.kanban-column:nth-child(2) .kanban-card:nth-child(2) {
  animation-delay: 1.6s;
}
.kanban-column:nth-child(2) .kanban-card:nth-child(3) {
  animation-delay: 1.7s;
}

.kanban-column:nth-child(3) .kanban-card:nth-child(1) {
  animation-delay: 1.6s;
}
.kanban-column:nth-child(3) .kanban-card:nth-child(2) {
  animation-delay: 1.7s;
}

@keyframes cardDrop {
  0% {
    opacity: 0;
    transform: translateZ(150px) translateY(-300px) rotateX(-15deg);
  }
  70% {
    opacity: 1;
    transform: translateZ(10px) translateY(10px) rotateX(5deg);
  }
  100% {
    opacity: 1;
    transform: translateZ(0) translateY(0) rotateX(0);
  }
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

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

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

@keyframes slideInLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Mobile Responsive Adjustments */
@media (max-width: 768px) {
  .hero-visual {
    perspective: 1000px;
    overflow: hidden;
  }

  .app-mockup {
    transform: rotateX(20deg) rotateY(0) rotateZ(0);
    max-width: 100%;
    margin-left: -10%;
    width: 120%;
  }

  .mockup-bg {
    width: 100%;
  }

  .sidebar-overlay {
    display: none;
  }

  .main-overlay {
    padding: 10px;
  }

  .kanban-board {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .day-background {
    min-height: auto;
  }

  .kanban-card {
    transform: none;
    animation: simpleFadeIn 0.5s ease forwards;
  }

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

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

.bento-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  height: 480px;
  transition:
    transform 0.3s ease,
    border-color 0.3s ease;
}

.bento-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.15);
}

.bento-visual {
  flex: 1;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(
    circle at center,
    rgba(255, 255, 255, 0.03) 0%,
    transparent 70%
  );
}

.bento-content {
  padding: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(0, 0, 0, 0.2);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.bento-content h3 {
  font-size: 18px;
  font-weight: 500;
  color: var(--text-primary);
}

.bento-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-primary);
  font-size: 18px;
  cursor: pointer;
  transition: background 0.2s;
}

.bento-card:hover .bento-btn {
  background: rgba(255, 255, 255, 0.2);
}

/* Card 1: Layers (Deconstructed) */
.deconstructed-wrapper {
  position: relative;
  width: 220px;
  height: 220px;
  transform-style: preserve-3d;
  perspective: 1000px;
}

.card-layer {
  position: absolute;
  width: 100%;
  height: auto;
  min-height: 140px;
  background: #141414;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  transition:
    transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1),
    opacity 0.5s ease;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.card-layer.layer-bottom {
  transform: translateZ(0) translateY(0) rotateX(50deg) rotateZ(-30deg);
  opacity: 0.4;
  z-index: 1;
  background: #0a0a0a;
}

.card-layer.layer-middle {
  transform: translateZ(40px) translateY(-40px) rotateX(50deg) rotateZ(-30deg);
  opacity: 0.7;
  z-index: 2;
  background: #111;
}

.card-layer.layer-top {
  transform: translateZ(80px) translateY(-80px) rotateX(50deg) rotateZ(-30deg);
  z-index: 3;
  background: #1a1a1a;
  border-color: rgba(255, 255, 255, 0.2);
}

/* Hover Effects */
.bento-card:hover .card-layer.layer-bottom {
  transform: translateZ(0) translateY(40px) rotateX(50deg) rotateZ(-30deg);
  opacity: 0.6;
}

.bento-card:hover .card-layer.layer-middle {
  transform: translateZ(60px) translateY(-40px) rotateX(50deg) rotateZ(-30deg);
  opacity: 0.9;
}

.bento-card:hover .card-layer.layer-top {
  transform: translateZ(120px) translateY(-120px) rotateX(50deg) rotateZ(-30deg);
}

/* Layer Content Styling */
.layer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 4px;
}

.layer-title {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
}

.layer-icon {
  color: #666;
  font-size: 14px;
}

.layer-tags {
  display: flex;
  gap: 8px;
}

.tag {
  font-size: 11px;
  color: #aaa;
  background: rgba(255, 255, 255, 0.1);
  padding: 2px 6px;
  border-radius: 4px;
}

.layer-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #666;
  margin-bottom: 4px;
}

.layer-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 6px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.set-idx {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: #aaa;
}

.set-val {
  font-size: 13px;
  color: #ddd;
  font-family: monospace;
}

/* Card 2: Speed */
.speed-visual {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.speed-lines {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-15deg);
  width: 300px;
  height: 200px;
  background: repeating-linear-gradient(
    90deg,
    transparent,
    transparent 20px,
    rgba(255, 255, 255, 0.03) 20px,
    rgba(255, 255, 255, 0.03) 40px
  );
  mask-image: linear-gradient(to right, transparent, black, transparent);
  -webkit-mask-image: linear-gradient(
    to right,
    transparent,
    black,
    transparent
  );
}

.speed-card {
  width: 180px;
  height: auto;
  border-radius: 8px;
  transform: rotate(-15deg) translateX(-20px);
  box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.5);
  transition: transform 0.4s ease;
}

.bento-card:hover .speed-card {
  transform: rotate(-15deg) translateX(20px);
}

/* Card 3: Precision */
.precision-visual {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.precision-img {
  width: 80%;
  height: auto;
  opacity: 0.9;
}

.precision-guides {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.guide-line {
  position: absolute;
  background: rgba(255, 255, 255, 0.3);
}

.guide-line.v {
  top: 10%;
  bottom: 10%;
  left: 50%;
  width: 1px;
  border-left: 1px dashed rgba(255, 255, 255, 0.3);
  background: none;
}

.guide-line.h {
  left: 10%;
  right: 10%;
  top: 50%;
  height: 1px;
  border-top: 1px dashed rgba(255, 255, 255, 0.3);
  background: none;
}

.guide-point {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  background: #fff;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

/* Feature Spotlight (Ideate) */
.feature-spotlight {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 64px;
  align-items: center;
  margin-top: 80px;
}

.spotlight-content h2 {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 40px;
  background: linear-gradient(to right, #fff, #888);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.spotlight-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.spotlight-list li {
  font-size: 18px;
  color: var(--text-tertiary);
  padding-left: 16px;
  border-left: 2px solid rgba(255, 255, 255, 0.1);
  cursor: pointer;
  transition: all 0.3s;
}

.spotlight-list li.active {
  color: var(--text-primary);
  border-left-color: var(--text-primary);
  font-weight: 500;
}

.spotlight-visual {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 40px;
  height: 500px;
  position: relative;
  overflow: hidden;
}

.spotlight-card-container {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.spotlight-day {
  width: 300px;
  height: auto;
  min-height: 400px;
  background: #111;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  transform: rotate(-5deg);
  position: relative;
}

.comment-bubble {
  position: absolute;
  right: -40px;
  top: 120px;
  width: 240px;
  background: #1a1a1a;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  padding: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  z-index: 10;
  animation: float 4s ease-in-out infinite;
}

.comment-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.comment-avatar {
  width: 20px;
  height: 20px;
  background: #4a9eff;
  border-radius: 50%;
  font-size: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
}

.comment-name {
  font-size: 12px;
  font-weight: 600;
  color: #fff;
}

.comment-time {
  font-size: 11px;
  color: #666;
}

.comment-text {
  font-size: 13px;
  color: #ccc;
  line-height: 1.4;
}

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

@media (max-width: 900px) {
  .bento-grid {
    grid-template-columns: 1fr;
  }

  .feature-spotlight {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .spotlight-visual {
    height: 400px;
  }
}

/* Testimonials Section */
.testimonials {
  padding: 120px 0;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  position: relative;
}

.testimonials::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}

.testimonial-card {
  padding: 32px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(30px) saturate(180%);
  -webkit-backdrop-filter: blur(30px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  transition: all 0.3s;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  border-color: var(--text-primary);
}

.testimonial-text {
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 24px;
  font-style: italic;
}

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

.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 16px;
  color: var(--bg-primary);
}

.author-name {
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 4px;
}

.author-role {
  color: var(--text-tertiary);
  font-size: 12px;
}

/* App Showcase Section - Mobile */
.app-showcase {
  padding: 120px 0;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  position: relative;
  overflow: hidden;
}

.app-showcase::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
}

.mobile-showcase {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 24px;
  padding: 40px 0;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
}

.mobile-phone {
  flex-shrink: 0;
  text-align: center;
  scroll-snap-align: center;
  transition: transform 0.3s ease;
}

.mobile-phone:hover {
  transform: translateY(-8px);
}

.mobile-phone.featured-phone {
  transform: scale(1.1);
}

.mobile-phone.featured-phone:hover {
  transform: scale(1.1) translateY(-8px);
}

.phone-frame {
  width: 200px;
  height: 420px;
  background: rgba(0, 0, 0, 0.8);
  border: 3px solid rgba(255, 255, 255, 0.2);
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  position: relative;
}

.phone-frame::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 6px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
  z-index: 10;
}

.phone-screen {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.phone-caption {
  margin-top: 16px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
}

.secondary-showcase {
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* Coach Showcase Section - Desktop */
.coach-showcase {
  padding: 120px 0;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  position: relative;
}

.coach-showcase::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
}

.desktop-showcase {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 32px;
  margin-top: 48px;
}

.desktop-item {
  text-align: center;
}

.desktop-frame {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(30px) saturate(180%);
  -webkit-backdrop-filter: blur(30px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  transition: all 0.3s ease;
}

.desktop-frame:hover {
  transform: translateY(-8px);
  border-color: var(--text-primary);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.6);
}

.desktop-header {
  display: flex;
  gap: 8px;
  padding: 12px 16px;
  background: rgba(0, 0, 0, 0.3);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.desktop-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--text-tertiary);
}

.desktop-dot:nth-child(1) {
  background: #ff5f56;
}

.desktop-dot:nth-child(2) {
  background: #ffbd2e;
}

.desktop-dot:nth-child(3) {
  background: #27c93f;
}

.desktop-screen {
  width: 100%;
  height: 250px;
  object-fit: cover;
  object-position: top;
}

.desktop-title {
  font-size: 20px;
  font-weight: 600;
  margin-top: 20px;
  margin-bottom: 8px;
}

.desktop-description {
  color: var(--text-secondary);
  font-size: 15px;
}

/* Integrations Section */
.integrations {
  padding: 120px 0;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  position: relative;
}

.integrations::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
}

.integrations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 24px;
}

.integration-card {
  padding: 24px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(30px) saturate(180%);
  -webkit-backdrop-filter: blur(30px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.integration-card:hover {
  transform: translateY(-4px);
  border-color: var(--text-primary);
  box-shadow: 0 12px 40px rgba(255, 255, 255, 0.05);
}

.integration-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 14px;
  color: var(--text-primary);
}

.integration-name {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
}

.integration-description {
  color: var(--text-secondary);
  font-size: 13px;
}

/* How It Works Section */
.how-it-works {
  padding: 120px 0;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  position: relative;
}

.how-it-works::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 48px;
  max-width: 1000px;
  margin: 0 auto;
}

.step-item {
  text-align: center;
}

.step-number {
  font-size: 64px;
  font-weight: 700;
  color: var(--text-secondary);
  margin-bottom: 16px;
  opacity: 0.4;
}

.step-title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 12px;
}

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

/* Pricing Section */
.pricing {
  padding: 120px 0;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  position: relative;
}

.pricing::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.pricing-grid.coach-pricing {
  grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 1100px) {
  .pricing-grid.coach-pricing {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .pricing-grid.coach-pricing {
    grid-template-columns: 1fr;
  }
}

.pricing-card {
  padding: 40px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(30px) saturate(180%);
  -webkit-backdrop-filter: blur(30px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  position: relative;
  transition: all 0.3s;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.pricing-card:hover {
  transform: translateY(-4px);
  border-color: var(--text-primary);
}

.pricing-card.featured {
  border-color: rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(35px) saturate(180%);
  -webkit-backdrop-filter: blur(35px) saturate(180%);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 6px 16px;
  background: var(--text-primary);
  color: var(--bg-primary);
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

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

.pricing-name {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 8px;
}

.pricing-clients {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 16px;
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  display: inline-block;
}

.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.price-amount {
  font-size: 48px;
  font-weight: 700;
  color: var(--text-primary);
}

.price-period {
  color: var(--text-secondary);
  font-size: 16px;
}

.pricing-features {
  list-style: none;
  margin-bottom: 32px;
}

.pricing-features li {
  padding: 12px 0;
  color: var(--text-secondary);
  font-size: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  padding-left: 24px;
}

.pricing-features li:last-child {
  border-bottom: none;
}

.pricing-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--text-primary);
  font-weight: 600;
}

.btn-primary.full-width,
.btn-outline.full-width {
  width: 100%;
}

/* Customers Section */
.customers {
  padding: 80px 0;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  position: relative;
}

.customers::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
}

.customers-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 48px;
  opacity: 0.6;
}

.customer-logo {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-secondary);
  transition: all 0.2s;
}

.customer-logo:hover {
  color: var(--text-primary);
  opacity: 1;
}

/* CTA Section */
.cta {
  padding: 120px 0;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(25px) saturate(180%);
  -webkit-backdrop-filter: blur(25px) saturate(180%);
  position: relative;
}

.cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
}

.cta-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.cta-title {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.cta-description {
  font-size: 18px;
  color: var(--text-secondary);
  margin-bottom: 40px;
}

.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
}

/* Footer */
.footer {
  padding: 80px 0 40px;
  border-top: 1px solid var(--border-color);
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 64px;
  margin-bottom: 48px;
}

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

.footer-tagline {
  color: var(--text-secondary);
  margin-top: 12px;
  font-size: 14px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.footer-column h4 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--text-primary);
}

.footer-column a {
  display: block;
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 14px;
  margin-bottom: 12px;
  transition: color 0.2s;
}

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

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid var(--border-color);
  text-align: center;
}

.footer-bottom p {
  color: var(--text-tertiary);
  font-size: 14px;
}

/* Legal Pages (Privacy Policy, Terms of Service) */
.legal-page {
  padding: 120px 0 80px;
  min-height: 100vh;
}

/* Legal Hero Header */
.legal-hero {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 72px;
  padding-top: 40px;
}

.legal-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--text-tertiary);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 32px;
  transition: color 0.2s;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.legal-back:hover {
  color: var(--text-primary);
}

.legal-title {
  font-size: 56px;
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
  line-height: 1.1;
}

.legal-subtitle {
  font-size: 18px;
  color: var(--text-secondary);
  margin-bottom: 24px;
  line-height: 1.5;
}

.legal-meta {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.legal-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--text-tertiary);
  font-weight: 400;
}

.legal-meta-item svg {
  opacity: 0.6;
}

/* Legal Layout - TOC + Content */
.legal-layout {
  display: flex;
  gap: 64px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: flex-start;
}

/* Table of Contents */
.legal-toc {
  position: sticky;
  top: 100px;
  width: 220px;
  flex-shrink: 0;
}

.legal-toc-inner {
  padding: 20px 0;
}

.legal-toc-title {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-tertiary);
  margin-bottom: 16px;
}

.legal-toc-nav {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.legal-toc-nav a {
  display: block;
  padding: 7px 12px;
  font-size: 13px;
  color: var(--text-tertiary);
  text-decoration: none;
  border-radius: 6px;
  transition: all 0.2s;
  line-height: 1.4;
  border-left: 2px solid transparent;
}

.legal-toc-nav a:hover {
  color: var(--text-secondary);
  background: rgba(255, 255, 255, 0.03);
}

.legal-toc-nav a.active {
  color: var(--text-primary);
  border-left-color: var(--text-primary);
  background: rgba(255, 255, 255, 0.04);
}

/* Legal Content */
.legal-content {
  flex: 1;
  min-width: 0;
  max-width: 720px;
}

.legal-section {
  padding: 40px;
  margin-bottom: 20px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  position: relative;
  transition: border-color 0.3s;
}

.legal-section:hover {
  border-color: rgba(255, 255, 255, 0.1);
}

.legal-section-number {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-tertiary);
  margin-bottom: 8px;
  letter-spacing: 0.05em;
  font-variant-numeric: tabular-nums;
}

.legal-section h2 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--text-primary);
  letter-spacing: -0.01em;
  line-height: 1.3;
}

.legal-subsection {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.legal-subsection:first-of-type {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.legal-section h3 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--text-secondary);
  letter-spacing: 0.01em;
}

.legal-section p {
  font-size: 15px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 14px;
}

.legal-section p:last-child {
  margin-bottom: 0;
}

.legal-section ul {
  list-style: none;
  padding: 0;
  margin: 0 0 14px 0;
}

.legal-section ul:last-child {
  margin-bottom: 0;
}

.legal-section ul li {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.55);
  padding: 8px 0 8px 20px;
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.legal-section ul li:last-child {
  border-bottom: none;
}

.legal-section ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 17px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
}

.legal-section ul li strong {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
}

.legal-section a {
  color: var(--text-primary);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  transition:
    border-color 0.2s,
    color 0.2s;
}

.legal-section a:hover {
  border-bottom-color: var(--text-primary);
}

/* Callout box */
.legal-callout {
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.05);
  border-left: 3px solid rgba(255, 255, 255, 0.3);
  border-radius: 0 8px 8px 0;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 20px;
  line-height: 1.5;
}

/* Note text */
.legal-note {
  font-size: 13px !important;
  color: var(--text-tertiary) !important;
  font-style: italic;
  margin-top: 16px;
}

/* Security grid */
.legal-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 20px 0;
}

.legal-grid-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  transition: border-color 0.2s;
}

.legal-grid-item:hover {
  border-color: rgba(255, 255, 255, 0.12);
}

.legal-grid-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  flex-shrink: 0;
  color: var(--text-secondary);
}

.legal-grid-item strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 4px;
}

.legal-grid-item p {
  font-size: 13px !important;
  line-height: 1.5 !important;
  color: var(--text-tertiary) !important;
  margin-bottom: 0 !important;
}

/* Contact card */
.contact-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  margin-top: 16px;
  transition: border-color 0.2s;
}

.contact-card:hover {
  border-color: rgba(255, 255, 255, 0.15);
}

.contact-card-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  flex-shrink: 0;
  color: var(--text-secondary);
}

.contact-card-body {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.contact-card-body strong {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
}

.contact-card-body a {
  font-size: 14px;
  color: var(--text-secondary);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  transition:
    color 0.2s,
    border-color 0.2s;
  display: inline-block;
  width: fit-content;
}

.contact-card-body a:hover {
  color: var(--text-primary);
  border-bottom-color: var(--text-primary);
}

/* Responsive */
@media (max-width: 768px) {
  .hero-canvas {
    display: none;
  }

  .nav-links {
    display: none;
  }

  .hero-title {
    font-size: 48px;
  }

  .hero-description {
    font-size: 18px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-stats {
    flex-direction: column;
    gap: 24px;
  }

  .section-title {
    font-size: 36px;
  }

  .cta-title {
    font-size: 36px;
  }

  .cta-actions {
    flex-direction: column;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .footer-links {
    grid-template-columns: 1fr;
    gap: 32px;
  }

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

  .dashboard-content {
    flex-direction: column;
  }

  .dashboard-sidebar {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid var(--border-color);
  }

  .hero-visual {
    perspective: 1200px;
    margin-top: 20px;
    overflow-x: hidden;
  }

  .app-mockup-wrapper {
    height: auto;
    padding: 20px 0;
  }

  .app-mockup {
    transform: rotateX(45deg) rotateZ(-25deg) scale(0.7);
    max-width: 100%;
  }

  .mockup-header {
    transform: translateZ(40px) translateY(0);
    animation: fallFromSkyMobile 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0.1s
      forwards;
  }

  .mockup-sidebar {
    transform: translateZ(30px) translateY(0) translateX(0);
    animation: fallFromSkyMobile 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0.2s
      forwards;
  }

  .mockup-main {
    transform: translateZ(20px) translateY(0) translateX(0);
    animation: fallFromSkyMobile 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0.3s
      forwards;
  }

  @keyframes fallFromSkyMobile {
    0% {
      opacity: 0;
      transform: translateZ(100px) translateY(-200px);
    }
    100% {
      opacity: 1;
      transform: translateZ(20px) translateY(0);
    }
  }

  .mockup-body {
    flex-direction: column;
    min-height: auto;
  }

  .mockup-sidebar {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    padding: 8px;
    gap: 4px;
    border-radius: 0;
  }

  .mockup-sidebar .sidebar-item {
    width: auto;
    height: 28px;
  }

  .mockup-main {
    padding: 12px;
    border-radius: 0 0 16px 16px;
  }

  .mockup-days-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .day-column .exercise-card {
    max-width: 280px;
    animation-delay: 0.8s !important;
  }

  .mockup-content-header .stat-badges {
    flex-wrap: wrap;
  }

  /* Disable 3D hover effects on mobile */
  .mockup-sidebar .sidebar-item:hover,
  .mockup-header:hover,
  .mockup-content-header .week-badge:hover,
  .mockup-content-header .stat-badge:hover,
  .day-column .day-header:hover,
  .day-column .day-header-img:hover,
  .mockup-content-header .content-title:hover,
  .day-column .exercise-card:hover {
    transform: none;
  }

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

  .integrations-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .mobile-showcase {
    gap: 16px;
    padding: 20px;
  }

  .phone-frame {
    width: 160px;
    height: 340px;
  }

  .mobile-phone.featured-phone {
    transform: scale(1.05);
  }

  .mobile-phone.featured-phone:hover {
    transform: scale(1.05) translateY(-8px);
  }

  .desktop-showcase {
    grid-template-columns: 1fr;
  }

  .desktop-screen {
    height: 200px;
  }

  .steps {
    grid-template-columns: 1fr;
    gap: 32px;
  }

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

  .customers-logos {
    gap: 32px;
  }

  .legal-hero {
    margin-bottom: 40px;
    padding-top: 24px;
  }

  .legal-title {
    font-size: 36px;
  }

  .legal-subtitle {
    font-size: 16px;
  }

  .legal-page {
    padding: 100px 0 60px;
  }

  .legal-layout {
    flex-direction: column;
    gap: 0;
  }

  .legal-toc {
    position: relative;
    top: 0;
    width: 100%;
    margin-bottom: 32px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
  }

  .legal-toc-nav {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 4px;
  }

  .legal-toc-nav a {
    font-size: 12px;
    padding: 5px 10px;
    border-left: none;
    border-radius: 6px;
  }

  .legal-toc-nav a.active {
    border-left: none;
    background: rgba(255, 255, 255, 0.08);
  }

  .legal-section {
    padding: 24px;
    margin-bottom: 12px;
  }

  .legal-section h2 {
    font-size: 19px;
  }

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

  .legal-meta {
    gap: 16px;
  }

  /* Isometric Section Mobile */
  .isometric-viewport {
    height: 450px;
    margin-top: 0;
    justify-content: flex-start;
    overflow-x: auto;
    padding-left: 1.5rem;
    scrollbar-width: none;
  }

  .isometric-viewport::-webkit-scrollbar {
    display: none;
  }

  .isometric-grid {
    justify-content: flex-start;
    min-width: 800px;
    transform: scale(0.9);
    transform-origin: left center;
  }
}
