/* Modern, conversion-optimized styles */
:root {
  --bg1: #000000; /* Midnight black */
  --bg2: #dabe8f; /* Light gold */
  --bg3: #1e293b;
  --text: #ffffff; /* White */
  --muted: #dabe8f; /* Light gold */
  --accent: #dabe8f; /* Light gold */
}

* { box-sizing: border-box; }
html, body { height: 100%; margin: 0; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: #000000;
  color: #ffffff;
  line-height: 1.6;
}

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

.header {
  text-align: center;
  padding: 40px 0 20px;
}
.logo-container {
  position: relative;
  display: inline-block;
}
.logo-img {
  position: absolute;
  top: calc(50% + 2px);
  left: -18px;
  transform: translateY(-50%);
  height: 50px; /* Larger */
  z-index: -1;
}
.logo-text {
  font-size: 2.5rem;
  font-weight: 700;
  color: #FFF8E4;
  margin: 0;
  padding-left: 15px; /* Width of "I" image */
  text-shadow: 0 0 15px rgba(218, 190, 143, 0.7), 0 0 30px rgba(218, 190, 143, 0.5), 0 0 45px rgba(218, 190, 143, 0.3);
}
.tagline {
  color: var(--muted);
  font-size: 1.1rem;
  margin: 10px 0 0;
}

.hero-section { text-align: center; padding: 40px 0; }
.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  margin: 0 0 20px;
  color: #FFF8E4;
  text-shadow: 0 0 15px rgba(218, 190, 143, 0.6), 0 0 30px rgba(218, 190, 143, 0.4);
}
.hero-subtitle {
  font-size: 1.25rem;
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto 40px;
}

.benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin: 40px 0;
}
.why-section .benefits {
  margin-top: 30px;
}
.benefit {
  background: var(--bg3);
  padding: 0;
  border-radius: 12px;
  border: 2px solid var(--accent);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.3s;
}
.benefit:hover {
  border-color: #ffffff;
}
.benefit-icon {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.benefit-text {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s;
  padding: 20px;
  box-sizing: border-box;
}
.benefit:hover .benefit-text {
  opacity: 1;
}
.benefit h4 {
  color: #ffffff;
  margin: 0 0 10px;
  text-align: center;
}
.benefit p {
  color: var(--muted);
  margin: 0;
  text-align: center;
  font-size: 0.9rem;
}

.cta-section {
  text-align: center;
  margin: 40px 0;
}
.cta-button {
  padding: 16px 32px;
  border-radius: 8px;
  border: 0;
  background: var(--bg2);
  color: #052022;
  font-weight: 600;
  font-size: 1.1rem;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}
.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 15px rgba(218, 190, 143, 0.5);
}
.launch-note {
  color: var(--muted);
  font-size: 1rem;
  margin-top: 10px;
}

.story-section, .why-section, .waitlist-section {
  max-width: 800px;
  margin: 60px auto;
  padding: 40px;
  background: var(--bg3);
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.05);
}
.story-section h3, .why-section h3, .features h3, .waitlist-section h3 {
  color: #ffffff;
  text-shadow: 0 0 10px rgba(218, 190, 143, 0.5);
  text-align: center;
  text-transform: uppercase;
}
.story-section p {
  margin-bottom: 15px;
  line-height: 1.7;
}
.waitlist-section {
  text-align: center;
}
.waitlist-section p {
  margin-bottom: 20px;
}

.notify form {
  display: flex;
  gap: 12px;
  justify-content: center;
  align-items: center;
  max-width: 500px;
  margin: 0 auto;
}
.notify input[type=email] {
  flex: 1;
  padding: 14px 16px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.05);
  color: var(--text);
  font-size: 1rem;
}
.notify button {
  padding: 14px 24px;
  border-radius: 8px;
  border: 0;
  background: var(--bg2);
  color: #052022;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}
.notify button:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 15px rgba(218, 190, 143, 0.5);
}
.note {
  color: var(--muted);
  font-size: 0.9rem;
  margin-top: 15px;
}

.features {
  text-align: center;
  padding: 40px 0;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.features h3 {
  font-size: 1.5rem;
  margin: 0 0 30px;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}
.feature {
  background: var(--bg3);
  padding: 30px;
  border-radius: 12px;
  border: 2px solid var(--accent);
}
.feature .icon { font-size: 2rem; margin-bottom: 15px; }
.feature h4 { margin: 0 0 10px; font-size: 1.25rem; }
.feature p { color: var(--muted); margin: 0; }

.footer {
  position: fixed;
  left: 20px;
  bottom: 20px;
  color: var(--accent);
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .hero-title { font-size: 2.5rem; }
  .benefits { grid-template-columns: 1fr; }
  .notify form { flex-direction: column; }
  .notify input[type=email], .notify button { width: 100%; }
  .logos { flex-direction: column; gap: 10px; }
}
