/* src/client/styles.css */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.logo-container {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.logo-text {
  font-size: 1.5rem;
  font-weight: 700;
  background:
    linear-gradient(
      135deg,
      #ffffff 0%,
      #0066ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.025em;
}
.hero .logo-container {
  margin-bottom: 2rem;
  justify-content: center;
}
.hero .logo-text {
  font-size: 2rem;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family:
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    "Roboto",
    sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #ffffff;
  background-color: #000000;
  overflow-x: hidden;
}
.App {
  min-height: 100vh;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background:
    linear-gradient(
      135deg,
      #000000 0%,
      #1a1a1a 50%,
      #000000 100%);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(
      circle at 20% 50%,
      rgba(0, 100, 255, 0.1) 0%,
      transparent 50%),
    radial-gradient(
      circle at 80% 20%,
      rgba(0, 150, 255, 0.08) 0%,
      transparent 50%),
    radial-gradient(
      circle at 40% 80%,
      rgba(0, 200, 255, 0.06) 0%,
      transparent 50%);
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 20px;
}
.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  background:
    linear-gradient(
      135deg,
      #ffffff 0%,
      #0066ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
}
.hero-subtitle {
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  color: #cccccc;
  margin-bottom: 3rem;
  line-height: 1.5;
}
.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.cta-button {
  padding: 1rem 2rem;
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}
.cta-button.primary {
  background:
    linear-gradient(
      135deg,
      #0066ff 0%,
      #0044cc 100%);
  color: white;
}
.cta-button.primary:hover {
  background:
    linear-gradient(
      135deg,
      #0052cc 0%,
      #003399 100%);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 102, 255, 0.3);
}
.cta-button.secondary {
  background: transparent;
  color: #0066ff;
  border: 2px solid #0066ff;
}
.cta-button.secondary:hover {
  background: #0066ff;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 102, 255, 0.3);
}
section {
  padding: 5rem 0;
}
.features {
  background: #111111;
}
.benefits {
  background: #000000;
}
.newsletter {
  background:
    linear-gradient(
      135deg,
      #0066ff 0%,
      #003399 100%);
}
h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 3rem;
  color: #ffffff;
}
h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #ffffff;
}
h4 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #ffffff;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}
.feature-card {
  background: #1a1a1a;
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid #333;
}
.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 102, 255, 0.2);
  border-color: #0066ff;
}
.feature-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}
.feature-card p {
  color: #cccccc;
  line-height: 1.6;
}
.app-preview {
  background: #080808;
  padding: 6rem 0;
  border-top: 1px solid #333;
}
.app-preview h2 {
  margin-bottom: 1rem;
}
.section-subtitle {
  text-align: center;
  font-size: 1.2rem;
  color: #cccccc;
  margin-bottom: 4rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.preview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}
.preview-card {
  background: #111111;
  border-radius: 16px;
  padding: 2rem;
  border: 1px solid #333;
  transition: all 0.3s ease;
}
.preview-card:hover {
  border-color: #0066ff;
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 102, 255, 0.1);
}
.preview-header {
  text-align: center;
  margin-bottom: 2rem;
}
.preview-header h3 {
  color: #ffffff;
  margin-bottom: 0.5rem;
  font-size: 1.4rem;
}
.preview-header p {
  color: #cccccc;
  font-size: 0.95rem;
}
.mock-interface {
  background: #1a1a1a;
  border-radius: 12px;
  padding: 1.5rem;
  border: 1px solid #333;
  font-size: 0.9rem;
}
.workout-tracker .mock-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #333;
}
.mock-app-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.mock-app-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: #0066ff;
}
.mock-workout-title {
  font-weight: 600;
  color: #ffffff;
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  text-align: center;
}
.mock-title {
  font-weight: 600;
  color: #ffffff;
  font-size: 1.1rem;
}
.mock-timer {
  background: #0066ff;
  color: white;
  padding: 0.4rem 0.8rem;
  border-radius: 6px;
  font-weight: 600;
}
.mock-exercise {
  margin-bottom: 1.5rem;
}
.exercise-name {
  color: #ffffff;
  font-weight: 600;
  margin-bottom: 0.8rem;
  font-size: 1rem;
}
.sets-grid {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.set {
  padding: 0.6rem 1rem;
  border-radius: 6px;
  border: 1px solid #333;
}
.set.completed {
  background: rgba(0, 102, 255, 0.1);
  border-color: #0066ff;
  color: #ffffff;
}
.set.current {
  background: rgba(255, 255, 255, 0.05);
  border-color: #666;
  color: #ffffff;
  animation: pulse 2s infinite;
}
.set.pending {
  background: rgba(255, 255, 255, 0.02);
  color: #999;
}
@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
}
.mock-controls {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}
.mock-btn {
  padding: 0.7rem 1.2rem;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}
.mock-btn.primary {
  background: #0066ff;
  color: white;
}
.mock-btn.primary:hover {
  background: #0052cc;
}
.mock-btn.secondary {
  background: transparent;
  color: #0066ff;
  border: 1px solid #0066ff;
}
.mock-btn.secondary:hover {
  background: #0066ff;
  color: white;
}
.mock-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.stat-card {
  text-align: center;
  padding: 1rem;
  background: rgba(0, 102, 255, 0.1);
  border-radius: 8px;
  border: 1px solid rgba(0, 102, 255, 0.3);
}
.stat-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0066ff;
  margin-bottom: 0.3rem;
}
.stat-label {
  color: #cccccc;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.mock-chart {
  margin-bottom: 1.5rem;
}
.chart-title {
  color: #ffffff;
  font-weight: 600;
  margin-bottom: 1rem;
  text-align: center;
}
.chart-bars {
  display: flex;
  align-items: end;
  gap: 0.5rem;
  height: 80px;
  margin-bottom: 0.5rem;
}
.bar {
  flex: 1;
  background:
    linear-gradient(
      to top,
      #0066ff,
      #00aaff);
  border-radius: 2px 2px 0 0;
  min-height: 10px;
  transition: all 0.3s ease;
}
.bar:hover {
  opacity: 0.8;
}
.chart-labels {
  display: flex;
  justify-content: space-between;
  color: #999;
  font-size: 0.8rem;
}
.achievement-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 215, 0, 0.1);
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: 8px;
  padding: 0.8rem;
  color: #ffd700;
  font-weight: 600;
}
.badge-icon {
  font-size: 1.2rem;
}
.mock-search {
  margin-bottom: 1.5rem;
}
.search-bar {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid #333;
  border-radius: 8px;
  padding: 0.8rem 1rem;
  color: #999;
  margin-bottom: 1rem;
}
.filter-tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.tag {
  padding: 0.4rem 0.8rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid #333;
  border-radius: 20px;
  color: #cccccc;
  font-size: 0.8rem;
  cursor: pointer;
  transition: all 0.3s ease;
}
.tag.active {
  background: #0066ff;
  border-color: #0066ff;
  color: white;
}
.workout-cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.workout-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid #333;
  border-radius: 8px;
  padding: 1rem;
  transition: all 0.3s ease;
}
.workout-card.featured {
  border-color: #0066ff;
  background: rgba(0, 102, 255, 0.05);
}
.workout-card:hover {
  border-color: #666;
  background: rgba(255, 255, 255, 0.05);
}
.workout-author {
  color: #999;
  font-size: 0.8rem;
  margin-bottom: 0.3rem;
}
.workout-title {
  color: #ffffff;
  font-weight: 600;
  margin-bottom: 0.8rem;
}
.workout-stats {
  display: flex;
  gap: 1rem;
  font-size: 0.8rem;
  color: #cccccc;
}
.mock-btn-group {
  display: flex;
  gap: 1rem;
}
.benefits-list {
  max-width: 600px;
  margin: 0 auto;
}
.benefit-item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: #111111;
  border-radius: 12px;
  border: 1px solid #333;
  transition: all 0.3s ease;
}
.benefit-item:hover {
  border-color: #0066ff;
  background: #1a1a1a;
}
.benefit-icon {
  font-size: 2rem;
  min-width: 60px;
  text-align: center;
}
.benefit-text p {
  color: #cccccc;
  margin: 0;
}
.newsletter h2 {
  color: #ffffff;
}
.newsletter p {
  text-align: center;
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.9);
}
.newsletter-form {
  max-width: 500px;
  margin: 0 auto;
}
.form-group {
  display: flex;
  gap: 1rem;
  align-items: stretch;
}
.email-input {
  flex: 1;
  padding: 1rem 1.5rem;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.email-input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}
.email-input:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.15);
}
.subscribe-button {
  padding: 1rem 2rem;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  background: #ffffff;
  color: #0066ff;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.subscribe-button:hover:not(:disabled) {
  background: #f0f0f0;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}
.subscribe-button:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}
.success-message {
  text-align: center;
  background: rgba(255, 255, 255, 0.1);
  padding: 2rem;
  border-radius: 12px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  max-width: 400px;
  margin: 0 auto;
}
.success-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}
.success-message h3 {
  margin-bottom: 1rem;
  color: white;
}
.success-message p {
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}
.footer {
  background: #111111;
  padding: 2rem 0;
  text-align: center;
  border-top: 1px solid #333;
}
.footer p {
  color: #888888;
  margin: 0;
}
.iphone-frame {
  position: relative;
  width: 280px;
  height: 560px;
  margin: 0 auto;
  background:
    linear-gradient(
      135deg,
      #1f1f1f 0%,
      #2a2a2a 50%,
      #1f1f1f 100%);
  border-radius: 36px;
  padding: 8px;
  box-shadow:
    0 0 0 2px #333,
    0 8px 32px rgba(0, 0, 0, 0.6),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}
.iphone-frame::before {
  content: "";
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 24px;
  background: #000;
  border-radius: 12px;
  z-index: 2;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
}
.iphone-frame::after {
  content: "";
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 4px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 2px;
}
.iphone-screen {
  width: 100%;
  height: 100%;
  background: #000;
  border-radius: 28px;
  overflow: hidden;
  position: relative;
}
.iphone-content {
  width: 100%;
  height: 100%;
  padding: 36px 16px 20px 16px;
  overflow-y: auto;
  box-sizing: border-box;
}
.iphone-content::-webkit-scrollbar {
  width: 0px;
  background: transparent;
}
.iphone-frame .mock-interface {
  background: #000;
  border-radius: 0;
  padding: 1rem;
  border: none;
  font-size: 0.8rem;
  height: 100%;
}
.iphone-frame .mock-header {
  margin-bottom: 1rem;
  padding-bottom: 0.8rem;
}
.iphone-frame .mock-title {
  font-size: 0.9rem;
}
.iphone-frame .exercise-name {
  font-size: 0.85rem;
  margin-bottom: 0.6rem;
}
.iphone-frame .mock-btn {
  font-size: 0.75rem;
  padding: 0.4rem 0.8rem;
}
.iphone-frame .stat-value {
  font-size: 1.2rem;
}
.iphone-frame .stat-label {
  font-size: 0.7rem;
}
.iphone-frame .workout-title {
  font-size: 0.8rem;
}
.iphone-frame .workout-stats {
  font-size: 0.7rem;
}
.iphone-frame .tag {
  font-size: 0.7rem;
  padding: 0.3rem 0.6rem;
}
.iphone-frame .mock-stats {
  margin-bottom: 1rem;
}
.iphone-frame .mock-chart {
  margin-bottom: 1rem;
}
.iphone-frame .workout-cards {
  margin-bottom: 1rem;
}
@media (max-width: 768px) {
  .form-group {
    flex-direction: column;
  }
  .features-grid {
    grid-template-columns: 1fr;
  }
  .benefit-item {
    flex-direction: column;
    text-align: center;
  }
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  .cta-button {
    width: 100%;
    max-width: 300px;
  }
  .preview-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .mock-stats {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }
  .mock-controls,
  .mock-btn-group {
    flex-direction: column;
  }
  .chart-bars {
    height: 60px;
  }
  .iphone-frame {
    width: 240px;
    height: 480px;
  }
  .iphone-frame .iphone-content {
    padding: 32px 12px 16px 12px;
  }
  .iphone-frame .mock-interface {
    padding: 0.8rem;
    font-size: 0.7rem;
  }
}
/*# sourceMappingURL=index.css.map */
