* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Color Palette */
  --primary: #351904;
  --secondary: #f8f2eb;
  --accent: #fade7b;
  --white: #ffffff;
  --dark: #2c2c2c;
  --gray: #666666;
  --light-gray: #f5f5f5;

  /* Gradients */
  --gradient-gold: linear-gradient(135deg, #fade7b, #f0c814);
  --gradient-primary: linear-gradient(135deg, #351904, #4a2508);
  /* --gradient-hero: linear-gradient(135deg, #f8f2eb 0%, #fade7b 100%); */
  --gradient-hero: linear-gradient(135deg, #351904 0%, #4a2508 100%);

  /* Shadows */
  --shadow-gold: 0 10px 40px -10px rgba(250, 222, 123, 0.3);
  --shadow-elegant: 0 20px 60px -10px rgba(53, 25, 4, 0.1);
  --shadow-card: 0 4px 20px rgba(0, 0, 0, 0.1);

  /* Typography */
  --font-primary: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    sans-serif;

  /* Spacing */
  --container-max-width: 1200px;
  --section-padding: 80px 0;
  --border-radius: 12px;
}

body {
  font-family: var(--font-primary);
  line-height: 1.6;
  color: var(--primary);
  background-color: var(--secondary);
}

.container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* Header Styles */
.header {
  background: rgba(248, 242, 235, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(53, 25, 4, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav {
  display: none;
  gap: 32px;
}

.nav a {
  text-decoration: none;
  color: var(--primary);
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav a:hover {
  color: var(--accent);
}

@media (min-width: 768px) {
  .nav {
    display: flex;
  }
}

/* Button Styles */
.btn {
  padding: 12px 24px;
  border: none;
  border-radius: var(--border-radius);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 14px;
  text-decoration: none;
  display: inline-block;
  text-align: center;
}

.btn-primary {
  background: var(--primary);
  color: var(--secondary);
}

.btn-primary:hover {
  background: #4a2508;
  transform: translateY(-2px);
}

.btn-gold {
  background: var(--gradient-gold);
  color: var(--primary);
  box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 50px -10px rgba(250, 222, 123, 0.4);
}

.btn-large {
  padding: 16px 32px;
  font-size: 16px;
}

/* Hero Section */
.hero {
  padding: var(--section-padding);
  background: var(--gradient-hero);
  min-height: 80vh;
  display: flex;
  align-items: center;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

@media (min-width: 768px) {
  .hero-content {
    grid-template-columns: 1fr 1fr;
  }
}

.hero-title {
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--secondary);
  line-height: 1.2;
  margin-bottom: 24px;
}

.highlight {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
}

.hero-description {
  font-size: 1.125rem;
  color: var(--gray);
  margin-bottom: 32px;
  line-height: 1.6;
}

.hero-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.checkmark {
  width: 20px;
  height: 20px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-weight: bold;
  font-size: 12px;
}

.hero-cta {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.email-signup {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.email-input {
  flex: 1;
  min-width: 250px;
  padding: 14px 16px;
  border: 2px solid rgba(53, 25, 4, 0.1);
  border-radius: var(--border-radius);
  font-size: 14px;
  background: var(--white);
}

.email-input:focus {
  outline: none;
  border-color: var(--accent);
}

.coming-soon {
  color: var(--gray);
  font-size: 14px;
  font-weight: 500;
}

.hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.phone-mockup {
  max-width: 300px;
  width: 100%;
  height: auto;
  border-radius: 24px;
  box-shadow: var(--shadow-elegant);
}

/* Features Section */
.features {
  padding: var(--section-padding);
  background: var(--white);
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-title {
  font-size: 2.25rem;
  font-weight: bold;
  color: var(--primary);
  margin-bottom: 16px;
}

.section-description {
  font-size: 1.125rem;
  color: var(--gray);
  max-width: 600px;
  margin: 0 auto;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

@media (min-width: 768px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.feature-card {
  background: var(--white);
  padding: 32px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-card);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-elegant);
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 24px;
}

.feature-title {
  font-size: 1.25rem;
  font-weight: bold;
  color: var(--primary);
  margin-bottom: 16px;
}

.feature-description {
  color: var(--gray);
  line-height: 1.6;
}

/* CTA Section */
.cta-section {
  padding: var(--section-padding);
  background: var(--secondary);
}

.cta-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

@media (min-width: 768px) {
  .cta-content {
    grid-template-columns: 1fr 1fr;
  }
}

.cta-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-elegant);
}

.cta-title {
  font-size: 2rem;
  font-weight: bold;
  color: var(--primary);
  margin-bottom: 24px;
}

.cta-description {
  font-size: 1.125rem;
  color: var(--gray);
  margin-bottom: 32px;
  line-height: 1.6;
}

.cta-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}

.cta-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
  color: var(--primary);
}

.cta-icon {
  font-size: 1.25rem;
}

.cta-button-group {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}

.launch-date {
  color: var(--gray);
  font-size: 14px;
  font-weight: 500;
}

/* Footer */
.footer {
  background: var(--primary);
  color: var(--secondary);
  padding: var(--section-padding);
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

@media (min-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr 2fr;
  }
}

.footer-brand .logo-text,
.footer-brand .logo-icon span {
  color: var(--secondary);
}

.footer-description {
  margin-top: 16px;
  color: rgba(248, 242, 235, 0.8);
  line-height: 1.6;
}

.footer-links {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

@media (min-width: 768px) {
  .footer-links {
    grid-template-columns: repeat(3, 1fr);
  }
}

.footer-title {
  font-size: 1.125rem;
  font-weight: bold;
  color: var(--secondary);
  margin-bottom: 16px;
}

.footer-list {
  list-style: none;
}

.footer-list li {
  margin-bottom: 8px;
}

.footer-list a {
  color: rgba(248, 242, 235, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-list a:hover {
  color: var(--accent);
}

.footer-bottom {
  border-top: 1px solid rgba(248, 242, 235, 0.2);
  padding-top: 32px;
  text-align: center;
}

.copyright {
  color: var(--secondary);
  margin-bottom: 8px;
}

.disclaimer {
  color: rgba(248, 242, 235, 0.6);
  font-size: 14px;
}

/* Responsive Design */
@media (max-width: 767px) {
  .hero-title {
    font-size: 2rem;
  }

  .section-title {
    font-size: 1.75rem;
  }

  .cta-title {
    font-size: 1.75rem;
  }

  .email-signup {
    flex-direction: column;
  }

  .email-input {
    min-width: auto;
  }

  .feature-card {
    padding: 24px;
  }
}

/* Animation and Interactions */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-text,
.hero-image {
  animation: fadeInUp 0.8s ease-out;
}

.feature-card {
  animation: fadeInUp 0.8s ease-out;
  animation-delay: calc(var(--animation-order) * 0.1s);
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

.phone-mockup {
  width: 300px;
  height: 600px;
  background: linear-gradient(145deg, #351904, #fade7b);
  border-radius: 30px;
  margin: 3rem auto;
  position: relative;
  box-shadow: 0 20px 40px rgba(53, 25, 4, 0.3);
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

.phone-screen {
  width: 260px;
  height: 520px;
  background: #f8f2eb;
  border-radius: 20px;
  position: absolute;
  top: 40px;
  left: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.app-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(45deg, #fade7b, #351904);
  border-radius: 20px;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  animation: rotate 4s linear infinite;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .phone-mockup {
    width: 250px;
    height: 500px;
  }

  .phone-screen {
    width: 210px;
    height: 420px;
  }

  .email-form {
    flex-direction: column;
    gap: 1rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }
}
.coming-soon {
  background: linear-gradient(45deg, #351904, #fade7b);
  color: white;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-size: 1.2rem;
  font-weight: bold;
  display: inline-block;
  margin: 2rem 0;
  position: relative;
  overflow: hidden;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(250, 222, 123, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(250, 222, 123, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(250, 222, 123, 0);
  }
}

.countdown-title {
  font-size: 1.5rem;
  color: #fade7b;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.countdown {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.time-box {
  background: rgba(248, 242, 235, 0.1);
  border: 2px solid #fade7b;
  border-radius: 15px;
  padding: 1.5rem 1rem;
  min-width: 120px;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.time-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(250, 222, 123, 0.2),
    transparent
  );
  transition: left 0.6s;
}

.time-box:hover::before {
  left: 100%;
}

.time-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(250, 222, 123, 0.3);
}

.time-number {
  font-size: 3rem;
  font-weight: bold;
  color: #fade7b;
  display: block;
  line-height: 1;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.time-label {
  font-size: 0.9rem;
  color: #f8f2eb;
  margin-top: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
}

.launch-message {
  margin-top: 3rem;
  padding: 1rem;
  background: rgba(250, 222, 123, 0.1);
  border-radius: 10px;
  border-left: 4px solid #fade7b;
  display: none;
}

.launch-message.show {
  display: block;
  animation: fadeIn 1s ease-in;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .coming-soon {
    font-size: 2rem;
  }

  .rocket {
    font-size: 3rem;
  }

  .time-box {
    min-width: 80px;
    padding: 1rem 0.5rem;
  }

  .time-number {
    font-size: 2rem;
  }

  .countdown {
    gap: 0.5rem;
  }
}
