/* 1. Font pairing for headings */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@700&display=swap');

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: #0d0d0d;
  color: #ffffff;
}

.hero-section {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 7rem 7% 0 7%;
  gap: 4rem;
  max-width: 1400px;
  margin: 0 auto;
  min-height: 80vh;
  position: relative;
}

.hero-content {
  background: none;
  border-radius: 0;
  box-shadow: none;
  padding: 0;
  flex: 1 1 50%;
  max-width: 600px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-content h1 {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 4rem;
  font-weight: 700;
  letter-spacing: -1px;
  color: #fff;
  text-shadow: none;
  line-height: 1.08;
  margin-bottom: 2rem;
}

.subheadline {
  font-size: 1.35rem;
  color: #bbb;
  margin-bottom: 2.5rem;
  line-height: 1.5;
  font-weight: 400;
}

.cta-row {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.primary-cta {
  background: #fff;
  color: #111;
  font-weight: 600;
  font-size: 1.1rem;
  padding: 0.9rem 2.2rem;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  box-shadow: 0 2px 16px 0 #00cc9930;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s, transform 0.12s;
  white-space: nowrap;
}
.primary-cta:hover {
  background: #00cc99;
  color: #fff;
  box-shadow: 0 4px 32px 0 #00cc9950;
  transform: translateY(-2px) scale(1.04);
}

.secondary-cta {
  color: #bbb;
  font-size: 1.08rem;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.18s;
  display: flex;
  align-items: center;
}
.secondary-cta:hover {
  color: #00cc99;
}

.hero-image {
  flex: 1 1 50%;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  min-width: 320px;
  min-height: 320px;
  position: relative;
  background: none;
}

.angled-hero-image {
  max-width: 600px;
  width: 100%;
  height: auto;
  transform: rotate(-8deg) translateY(40px);
  box-shadow: 0 4px 32px 0 rgba(0,0,0,0.10);
  border-radius: 18px;
  background: none;
  object-fit: cover;
  margin-right: 0;
}

/* Subtle neutral vignette background */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse at 30% 30%, #23272f 0%, #0d0d0d 80%);
  z-index: 0;
}

.background-blobs {
  z-index: 1;
}

.hero-section, .hero-content, .hero-image {
  position: relative;
  z-index: 2;
}

/* Responsive tweaks */
@media (max-width: 900px) {
  .hero-section {
    flex-direction: column;
    align-items: flex-start;
    padding: 3rem 5% 0 5%;
    gap: 2.5rem;
    min-height: 60vh;
  }
  .hero-content h1 {
    font-size: 2.3rem;
  }
  .hero-image {
    justify-content: center;
    align-items: center;
    min-width: 0;
    min-height: 0;
  }
  .angled-hero-image {
    max-width: 95vw;
    width: 100%;
    transform: rotate(-4deg) translateY(10px);
  }
}

/* blob container */
.background-blobs {
  position: fixed;
  inset: 0;
  overflow: hidden;
  z-index: -1;
}

/* blob style */
.blob {
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, #00cc99 0%, #005544 100%);
  opacity: 0.15;
  border-radius: 50%;
  filter: blur(120px);
  animation: float 30s ease-in-out infinite;
}

/* unique positioning and timings */
.blob1 {
  top: -100px;
  left: -100px;
  animation-delay: 0s;
}

.blob2 {
  bottom: -100px;
  right: -150px;
  animation-delay: 15s;
}

/* animation definition */
@keyframes float {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(80px, 40px) scale(1.2);
  }
}

/* 5. Add a third blob */
.blob3 {
  top: 60%;
  left: 10%;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, #00e6b2 0%, #00332a 100%);
  opacity: 0.12;
  border-radius: 50%;
  filter: blur(120px);
  position: absolute;
  animation: float 30s ease-in-out infinite;
  animation-delay: 7s;
}

/* Lead form styles for email capture */
.lead-form {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.2rem;
}

.lead-form input[type="email"] {
  flex: 1 1 220px;
  min-width: 180px;
  padding: 0.85rem 1.1rem;
  font-size: 1.08rem;
  border-radius: 999px;
  border: 2px solid transparent;
  transition: border 0.2s, box-shadow 0.2s;
  background: #23272f;
  color: #fff;
}
.lead-form input[type="email"]::placeholder {
  color: #b0b6be;
  opacity: 1;
}
.lead-form input[type="email"]:focus {
  border: 2px solid #00cc99;
  box-shadow: 0 0 0 2px #00cc9940;
  outline: none;
}

.note {
  margin-top: 0.5rem;
  font-size: 1rem;
  letter-spacing: 0.01em;
  background: linear-gradient(90deg, #888 0%, #bbb 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 500;
}

/* Remove unused CTA styles */
.cta-row, .secondary-cta {
  display: none !important;
}

.main-header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 2vw 1.2rem 2vw;
  background: transparent;
  z-index: 10;
  box-sizing: border-box;
  max-width: 100vw;
  overflow-x: hidden;
  margin: 0 1vw;
}

.header-left {
  display: flex;
  align-items: center;
}

.header-logo {
  width: 40px;
  height: 40px;
  display: block;
}

.header-login-btn {
  background: transparent;
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  height: 2.2rem;
  padding: 0 1.2rem;
  border: 2px solid #fff;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: none;
  transition: background 0.18s, color 0.18s, border-color 0.18s, box-shadow 0.18s, transform 0.12s;
  cursor: pointer;
  white-space: nowrap;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}
.header-login-btn:hover {
  background: #fff;
  color: #111;
  border-color: #fff;
  box-shadow: 0 2px 16px 0 #00cc9950;
  transform: translateY(-1px) scale(1.03);
}

@media (max-width: 900px) {
  .main-header {
    padding: 0.7rem 3vw 0.7rem 3vw;
  }
}

@media (max-width: 600px) {
  .main-header {
    padding: 0.3rem 3vw 0.3rem 3vw;
  }
  .header-logo {
    width: 28px;
    height: 28px;
  }
  body {
    padding-top: 32px;
  }
}

html, body {
  width: 100vw;
  overflow-x: hidden;
  box-sizing: border-box;
}

.main-footer {
  width: 100vw;
  max-width: 100vw;
  box-sizing: border-box;
  padding: 0.5rem 2vw 0.7rem 2vw;
  background: transparent;
  color: #888;
  font-size: 0.92rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 0.1rem;
  position: relative;
  z-index: 2;
}

.footer-trademark {
  font-size: 0.85rem;
  color: #666;
}

.page-container {
  max-width: 1500px;
  margin: 0 auto;
  padding-left: 2vw;
  padding-right: 2vw;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.main-header,
.main-footer {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

/* Modal overlay */
#login-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(20, 24, 30, 0.88);
  z-index: 1000;
  transition: opacity 0.22s cubic-bezier(.4,0,.2,1);
  opacity: 0;
  pointer-events: none;
}
#login-modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

/* Modal container */
#login-modal.modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.97);
  background: #181c22;
  color: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 48px 0 #00cc9940, 0 1.5px 8px 0 #00000030;
  z-index: 1001;
  min-width: 320px;
  max-width: 95vw;
  width: 370px;
  padding: 1.4rem 2rem 1.4rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s cubic-bezier(.4,0,.2,1), transform 0.22s cubic-bezier(.4,0,.2,1);
}
#login-modal.modal.open {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
  pointer-events: auto;
}

/* Modal title */
.modal-title {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-align: center;
  letter-spacing: -0.5px;
}

/* Modal close button */
.modal-close {
  position: absolute;
  top: 1.1rem;
  right: 1.3rem;
  background: none;
  border: none;
  color: #bbb;
  font-size: 2rem;
  cursor: pointer;
  transition: color 0.18s;
  z-index: 10;
}
.modal-close:hover {
  color: #00cc99;
}

/* Modal form */
.modal-form {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.modal-form label {
  font-size: 1.05rem;
  color: #b0b6be;
  margin-bottom: 0.2rem;
  font-weight: 500;
}
.modal-form input[type="email"],
.modal-form input[type="password"] {
  padding: 0.85rem 1.1rem;
  font-size: 1.08rem;
  border-radius: 999px;
  border: 2px solid transparent;
  background: #23272f;
  color: #fff;
  transition: border 0.2s, box-shadow 0.2s;
}
.modal-form input[type="email"]:focus,
.modal-form input[type="password"]:focus {
  border: 2px solid #00cc99;
  box-shadow: 0 0 0 2px #00cc9940;
  outline: none;
}

@media (max-width: 600px) {
  #login-modal.modal {
    min-width: 0;
    width: 98vw;
    padding: 1.2rem 0.7rem 1.5rem 0.7rem;
  }
}
