* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  color: #ffd700;
  background-color: #0a1a33;
}

header {
  background: #13294b;
  padding: 1px 100px;
  border-bottom: 1px solid #ffd70033;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.logo {
  font-size: 2.6rem;
  font-weight: 700;
  color: #ffd700;
}

.logo-img {
  height: 130px;
  width: auto;
  display: block;
  max-width: 180px;
}

ul {
  list-style: none;
  display: flex;
  gap: 2.5rem;
}

a {
  color: #ffd700;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

a:hover {
  color: #e6c300;
}

/* ────────────────────── Hero ────────────────────── */.hero {
  text-align: center;
  padding: 7rem 1rem 1rem;
  background: linear-gradient(to bottom, #13294b, #0a1a33);
}

.hero h3 {
  font-size: 2.8rem;   /* or whatever size you want */
  margin: 0.1rem 0;    /* optional: small spacing */
  color: #ffd700;
}

.hero h1 {
  font-size: 1rem;       /* adjust this number: 3rem = smaller, 4rem = bigger */
  font-weight: 800;
  max-width: 800px;
  padding: auto;
  color: #ffd700cc;
  margin: 1rem auto 1rem auto;
  text-align: center;
  line-height: 1.1;
}

.welcome {
  font-size: 1.7rem;
  font-weight: 400;
  color: #ffd700aa;
  margin-bottom: 0.1rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.brand-name {
  font-size: 4.2rem;
  font-weight: 800;
  color: #ffd700;
  margin: 0.4rem 0 1.2rem;
  line-height: 1.05;
  letter-spacing: 1px;
}

.tagline {
  font-size: 2rem;
  font-weight: 600;
  color: #ffd700cc;
  margin-bottom: 0.1rem;
}

.hero p {
  font-size: 1rem;
  max-width: 720px;
  margin: 0 auto;
  color: #ffd700cc;
}

/* ────────────────────── Signup / waitlist section ────────────────────── */
.signup {
  padding: 0.1rem 2rem 5rem;
  text-align: center;
  background: #0a1a33;
}

.signup-content {
  max-width: 720px;
  margin: 0 auto;
}

.signup h3 {
  font-size: 1.95rem;
  margin-bottom: 1rem;
  color: #ffd700;
}

.signup > .signup-content > p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: #ffd700bb;
}

.google-form-wrapper {
  width: 100%;
  max-width: 680px;
  margin: 0 auto 1.5rem;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.35);
}

.google-form-wrapper iframe {
  display: block;
  width: 100%;
  height: 440px;
  border: none;
}

.signup small {
  display: block;
  margin-top: 1rem;
  font-size: 0.95rem;
  color: #ffd70099;
}

.signup small a {
  color: #ffd700cc;
  text-decoration: underline;
}

.signup small a:hover {
  color: #e6c300;
}

/* ────────────────────── Features / Cards ────────────────────── */
.features {
  padding: 1rem 2rem 1rem;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
}

.features h2 {
  font-size: 2.2rem;
  margin-bottom: 3rem;
  color: #ffd700;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  padding-bottom: 1rem;
}

.card {
  background: #13294b;
  padding: 2.5rem;
  border-radius: 10px;
  border: 1px solid #ffd70033;
  box-shadow: 0 0 20px #ffd70022;
  transition: transform 0.3s, box-shadow 0.3s;
  min-height: 280px;
  display: flex;
  flex-direction: column;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 30px #ffd70044;
}

.card h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: #ffd700;
}

.card p {
  color: #ffd700cc;
  margin-bottom: 1rem;
  margin-top: 1rem;
}

.card .btn {
  margin-top: auto;
}

.btn {
  display: inline-block;
  padding: 1rem 1.8rem;
  background: #ffd700;
  color: #0a1a33;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s;
}

.btn:hover {
  background: #e6c300;
}

footer {
  text-align: center;
  padding: 2.5rem;
  background: #13294b;
  color: #ffd70099;
  border-top: 1px solid #ffd70033;
}

.footer-note {
  margin-top: 0.6rem;
  font-size: 0.9rem;
  color: #ffd70088;
  font-style: italic;
}

.btn.disabled {
  background: #ffd70044;          
  color: #ffd70088;               
  cursor: not-allowed;         
  pointer-events: none;           
}

.about, .contact {
  max-width: 800px;
  margin: 0 auto;
  padding: 2.5rem 2rem;
  text-align: center;
}

.about h1 {
  font-size: 2.0rem;
  margin-bottom: 0.5rem;          
  color: #ffd700;
  text-align: center;
}

.about h2 {
  font-size: 2.6rem;
  font-weight: 600;
  margin-bottom: 2rem;
  color: #ffd700;             
  text-align: center;
}

.about p {
  font-size: 15.5px;
  padding-top: 10px;
  padding-bottom: 20px;
}

.form-group {
  margin-bottom: 1rem;
  text-align: left;
}

.contact h2 {
  font-size: 2.3rem;
  margin-bottom: 1rem;
  color: #ffd700;
  text-align: center;
  font-weight: 700;
  letter-spacing: 1px;
}

.contact small {
  display: block;
  margin-top: 1rem;
  font-size: 0.95rem;
  color: #ffd70099;
}

.contact small a {
  color: #ffd700cc;
  text-decoration: underline;
}

.contact small a:hover {
  color: #e6c300;
}

label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #ffd700;
}

input[type="text"], input[type="email"], textarea {
  width: 100%;
  padding: 1rem;
  border: 1px solid #ffd700;
  border-radius: 5px;
  background: #13294b;
  color: #ffd700;
  font-size: 1rem;
}

textarea {
  resize: vertical;
}

.note {
  margin-top: 1.5rem;
  font-size: 0.95rem;
  color: #ffd70099;
}

/* Tools hub page specific */
.tools-hero {
  text-align: center;
  padding: 5rem 1rem 3rem;
  background: linear-gradient(to bottom, #13294b, #0a1a33);
}

.tools-hero h1 {
  font-size: 3.2rem;
  margin-bottom: 1rem;
  color: #ffd700;
}

.tools-hero .intro {
  font-size: 1.35rem;
  color: #ffd700cc;
  max-width: 760px;
  margin: 0 auto 1rem;
}

/* Slightly larger cards on tools page if you want */
.tools-grid .grid {
  gap: 1.1rem;
  padding-bottom: 1.1rem;
}

.tools-grid .card {
  padding: 2rem;
}

/* Coming soon cards styling */
.card.coming-soon {
  opacity: 0.92;
  border: 1px dashed #ffd70055;
}

/* ────────────────────── Mobile adjustments ────────────────────── */
@media (max-width: 768px) {
  .brand-name   { font-size: 3.4rem; }
  .tagline      { font-size: 1.9rem; }
  .hero         { padding: 5rem 1.5rem 4rem; }
  .signup       { padding: 3.5rem 1.5rem 5rem; }
  .features     { padding: 3.5rem 1.5rem 5rem; }
  .google-form-wrapper iframe { height: 520px; }
}

/* Side banners - 300x600 with internal subscribe button */
.side-banners {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}

.banner-left,
.banner-right {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 200px;
  height: auto;
  background: #000000;
  border: 2px solid #ffd70044;
  border-radius: 1px;
  overflow: hidden;
  pointer-events: auto;
}

.banner-left { left: 0; }
.banner-right { right: 0; }

.banner-content {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  box-sizing: border-box;
}

.ad-image {
  width: 100%;
  height: auto;
  flex: 1;
  object-fit: contain;
  margin-bottom: 10px;
}

.youtube-sub-btn {
  width: 100%;
  max-width: 280px;
  display: block;
  margin: 0 auto 10px;
  transition: transform 0.2s;
}

.youtube-sub-btn:hover {
  transform: scale(1.05);
}

/* Hide on small screens */
@media (max-width: 1400px) {
  .side-banners {
    display: none;
  }
}









