:root {
  --bg: #0a0a1a;
  --gold: #c9a84c;
  --gold-light: #e5cd85;
  --white: #fafafa;
  --text-muted: #a0a0b0;
  --glass: rgba(255, 255, 255, 0.03);
  --glass-border: rgba(201, 168, 76, 0.15);
}

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

body {
  background-color: var(--bg);
  color: var(--white);
  font-family: "Jost", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
  background-image:
    radial-gradient(
      circle at 15% 50%,
      rgba(201, 168, 76, 0.05),
      transparent 35%
    ),
    radial-gradient(
      circle at 85% 30%,
      rgba(201, 168, 76, 0.05),
      transparent 35%
    );
  background-attachment: fixed;
}

h1,
h2,
h3,
.logo-text {
  font-family: "Cormorant Garamond", serif;
}

/* Typography */
h1 {
  font-size: 4rem;
  line-height: 1.1;
  font-weight: 600;
  margin-bottom: 1.5rem;
}
h1 i {
  color: var(--gold);
  font-style: italic;
  font-weight: 400;
}
h2 {
  font-size: 2.5rem;
  color: var(--white);
  margin-bottom: 2rem;
  text-align: center;
}
p {
  font-size: 1.125rem;
  color: var(--text-muted);
  font-weight: 300;
}

/* Nav */
header {
  padding: 2rem 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
}
.logo-text {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold);
  text-decoration: none;
  letter-spacing: 1px;
}

/* Hero */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 0 5%;
  position: relative;
  padding-top: 80px;
}
.hero-content {
  flex: 1.2;
  max-width: 650px;
  z-index: 2;
}
.hero-content p {
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
}
.hero-visual {
  flex: 0.8;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
}

.badges {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.badges img {
  height: 50px;
  transition: transform 0.3s ease;
}
.badges img:hover {
  transform: translateY(-3px);
}

/* Phone Mockup */
.phone-mockup {
  width: 320px;
  height: 650px;
  border-radius: 40px;
  border: 10px solid #141414;
  background: linear-gradient(135deg, #111, #222);
  box-shadow:
    0 30px 60px -15px rgba(0, 0, 0, 0.8),
    0 0 60px rgba(201, 168, 76, 0.15),
    inset 0 0 0 2px #333;
  overflow: hidden;
  position: relative;
  /* Basic placeholder background for empty images */
  background-image: linear-gradient(180deg, #0a0a1a, #1a1a3a);
}
.hero-visual .phone-mockup {
  transform: perspective(1000px) rotateY(-15deg) rotateX(10deg);
  animation: float 6s ease-in-out infinite;
}
.phone-mockup img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 2;
  position: relative;
}
/* Notch */
.phone-mockup::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 140px;
  height: 28px;
  background: #141414;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  z-index: 3;
}
/* Placeholder text layer if no image loads */
.phone-mockup::after {
  content: "App Screenshot";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: rgba(255, 255, 255, 0.2);
  font-family: "Jost", sans-serif;
  font-weight: 500;
  font-size: 1.2rem;
  z-index: 1;
}

@keyframes float {
  0%,
  100% {
    transform: perspective(1000px) rotateY(-15deg) rotateX(10deg) translateY(0);
  }
  50% {
    transform: perspective(1000px) rotateY(-15deg) rotateX(10deg)
      translateY(-20px);
  }
}

/* Features */
.features {
  padding: 8rem 5%;
  position: relative;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}
.feature-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: 3rem 2rem;
  text-align: center;
  transition:
    transform 0.3s ease,
    background 0.3s ease,
    border-color 0.3s ease;
  backdrop-filter: blur(10px);
}
.feature-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(201, 168, 76, 0.4);
}
.feature-icon {
  width: 72px;
  height: 72px;
  background: rgba(201, 168, 76, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: var(--gold);
}
.feature-icon i {
  width: 32px;
  height: 32px;
}
.feature-card h3 {
  font-size: 1.5rem;
  color: var(--gold-light);
  margin-bottom: 1rem;
  font-weight: 500;
}

/* Screenshots Strip */
.screenshots {
  padding: 8rem 0;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(201, 168, 76, 0.03),
    transparent
  );
}
.screenshot-track {
  display: flex;
  gap: 2.5rem;
  overflow-x: auto;
  padding: 2rem 5% 4rem;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}
.screenshot-track::-webkit-scrollbar {
  display: none;
}
.screenshot-track .phone-mockup {
  flex: 0 0 auto;
  scroll-snap-align: center;
  width: 280px;
  height: 570px;
  transform: none;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
  animation: none;
}

/* CTA Section */
.cta-section {
  padding: 8rem 5%;
  text-align: center;
}
.cta-box {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 32px;
  padding: 5rem 2rem;
  max-width: 800px;
  margin: 0 auto;
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}
.cta-box::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(201, 168, 76, 0.05) 0%,
    transparent 50%
  );
  pointer-events: none;
}
.cta-box h2 {
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}
.cta-box p {
  margin-bottom: 2.5rem;
  position: relative;
  z-index: 1;
}
.btn {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold), #b3923c);
  color: #0a0a1a;
  padding: 1rem 2.8rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.125rem;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  position: relative;
  z-index: 1;
}
.btn:hover {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
  box-shadow: 0 0 25px rgba(201, 168, 76, 0.3);
}

/* Footer */
footer {
  padding: 3rem 5%;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}
.footer-links {
  display: flex;
  gap: 2rem;
}
.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.3s ease;
  font-weight: 400;
}
.footer-links a:hover {
  color: var(--gold);
}
.footer-contact {
  color: var(--text-muted);
}
.footer-contact a {
  color: var(--gold);
  text-decoration: none;
}

/* Animations */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 1s cubic-bezier(0.16, 1, 0.3, 1),
    transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 900px) {
  .hero {
    flex-direction: column;
    text-align: center;
    padding-top: 120px;
  }
  .hero-content {
    margin-bottom: 5rem;
  }
  h1 {
    font-size: 3.2rem;
  }
  .badges {
    justify-content: center;
  }
  .hero-visual .phone-mockup {
    transform: perspective(1000px) rotateY(0) rotateX(0);
    animation: float-mobile 6s ease-in-out infinite;
    margin: 0 auto;
  }
}
@media (max-width: 600px) {
  h1 {
    font-size: 2.5rem;
  }
  .phone-mockup {
    width: 280px;
    height: 570px;
  }
  footer {
    flex-direction: column;
    text-align: center;
  }
  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
  }
}
@keyframes float-mobile {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}

/* Inner Pages (Privacy, Feature Requests) */
.page-container {
  max-width: 800px;
  margin: 140px auto 6rem;
  padding: 0 5%;
}
.page-container h1 {
  font-size: 3.5rem;
  margin-bottom: 2rem;
  text-align: center;
}
.content-box {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: 4rem 3rem;
  backdrop-filter: blur(15px);
}
.content-box h3 {
  font-family: "Jost", sans-serif;
  color: var(--gold);
  font-size: 1.25rem;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 500;
}
.content-box p,
.content-box ul {
  margin-bottom: 1.5rem;
  color: var(--text-muted);
}
.content-box ul {
  padding-left: 1.5rem;
}
.content-box li {
  margin-bottom: 0.75rem;
}

/* Form Styles */
.form-group {
  margin-bottom: 1.5rem;
  text-align: left;
}
.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--gold-light);
  font-weight: 500;
}
.form-control {
  width: 100%;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.2rem;
  border-radius: 12px;
  color: var(--white);
  font-family: inherit;
  font-size: 1rem;
  transition: all 0.3s ease;
}
.form-control:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(0, 0, 0, 0.5);
  box-shadow: 0 0 10px rgba(201, 168, 76, 0.2);
}
textarea.form-control {
  resize: vertical;
  min-height: 150px;
}
