@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;800&family=Ranga:wght@400;700&display=swap');

:root {
  --color-brand: #FFC636;
  --color-bg: #121212;
  --color-surface: #1E1E1E;
  --color-text-main: #FFFFFF;
  --color-text-muted: #A0A0A0;

  --font-display: 'Ranga', cursive;
  --font-body: 'Outfit', sans-serif;
}

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

body {
  background-color: var(--color-bg);
  /* Subtle grid pattern */
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  color: var(--color-text-main);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
  overflow-x: hidden;
}

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
header {
  padding: 20px 0;
  position: absolute;
  width: 100%;
  top: 0;
  z-index: 10;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  height: 48px;
}

/* Hero Section */
.hero {
  position: relative;
  overflow: hidden;
  padding-top: 140px;
  padding-bottom: 60px;
}

.hero-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 100%;
}

.hero-content {
  flex: 1;
  z-index: 2;
  padding-right: 40px;
}

/* Brand Row */
.hero-brand-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.hero-logo {
  height: 60px;
  /* adjusted size */
  width: auto;
  display: block;
}

.brand-text {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 700;
  line-height: 1;
}

.hero h1 {
  font-size: 5rem;
  margin-bottom: 24px;
  text-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
  line-height: 1.1;
}

.hero h1 span {
  color: var(--color-brand);
  display: block;
  text-shadow: 0 0 30px rgba(255, 198, 54, 0.3);
}

.hero p {
  font-size: 1.4rem;
  color: var(--color-text-muted);
  margin-bottom: 40px;
  max-width: 500px;
  font-weight: 300;
}

.store-buttons {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}

.store-btn {
  height: 50px;
  transition: transform 0.2s, box-shadow 0.2s;
  border-radius: 8px;
  /* Slight rounding for badges */
}

.store-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

/* Real Screenshot Style */
.phone-mockup-img {
  width: auto;
  height: 90%;
  max-height: 700px;
  filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.5));
  z-index: 2;
  position: relative;
  /* Add a subtle float animation */
  animation: float 6s ease-in-out infinite;
}

/* Floating Elements behind phone */
.blob {
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 198, 54, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
  animation: pulse 8s infinite ease-in-out;
}

/* Features */
.features {
  padding-bottom: 100px;
}

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

.feature-card {
  background: rgba(30, 30, 30, 0.6);
  backdrop-filter: blur(10px);
  padding: 40px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s;
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: var(--color-brand);
  background: rgba(30, 30, 30, 0.9);
}

.feature-icon {
  font-size: 2rem;
  color: var(--color-brand);
  margin-bottom: 20px;
  background: rgba(255, 198, 54, 0.1);
  border: 1px solid rgba(255, 198, 54, 0.3);
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  box-shadow: 0 0 20px rgba(255, 198, 54, 0.15);
}

/* CTA Section */
.cta-section {
  padding: 120px 0;
  text-align: center;
}

.cta-section h2 {
  font-size: 4rem;
  margin-bottom: 10px;
}

.cta-subtitle {
  font-size: 1.5rem;
  color: var(--color-text-muted);
  margin-bottom: 50px;
  font-family: var(--font-display);
}

/* Footer */
footer {
  padding: 60px 0;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  color: #666;
}

.footer-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

/* Animations */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

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

@keyframes pulse {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.5;
  }

  50% {
    transform: translate(-50%, -50%) scale(1.1);
    opacity: 0.7;
  }

  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.5;
  }
}

/* Mobile */
@media (max-width: 900px) {
  .hero {
    padding-top: 100px;
    padding-bottom: 40px;
  }

  .hero-container {
    flex-direction: column;
    text-align: center;
  }

  .hero-content {
    padding-right: 0;
    margin-bottom: 60px;
    width: 100%;
  }

  .hero-brand-row {
    justify-content: center;
  }

  .brand-text {
    font-size: 3.5rem;
  }

  .hero h1 {
    font-size: 3.5rem;
  }

  .store-buttons {
    justify-content: center;
  }

  .hero-visual {
    width: 100%;
    margin-top: 40px;
    display: flex;
    justify-content: center;
  }

  .phone-mockup-img {
    width: 80%;
    max-width: 320px;
    height: auto;
    animation: float 6s ease-in-out infinite;
  }

  .phone-mockup {
    transform: scale(0.8);
  }
}


.speczo-wrapper {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 16px;
  font-weight: 400;
}

.made-by {
  display: flex;
  align-items: center;
  gap: 0;
  color: var(--color-text-muted);
  font-size: 16px;
  font-weight: 900;
  text-decoration: none;
  font-style: italic;
}

.speczo-logo {
  width: 25px;
  height: 25px;
}