/*
Theme Name: 1 in 100 Club Launch
Theme URI: https://1in100.club
Author: Mark Smillie
Author URI: https://marksmillie.co.uk
Description: Launch / coming-soon landing page for the 1 in 100 Club, with built-in email signup collection (stored in WordPress and exportable as CSV). Dark, editorial branding matching Before the Wave.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: one-in-100-club
*/

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

html, body { height: 100%; }

body {
  font-family: 'Source Serif 4', Georgia, serif;
  color: #dcd8d0;
  background: #0b0e12;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

a { color: #dfa72f; text-decoration: none; }
a:hover { opacity: 0.85; }

input::placeholder { color: #6a665e; }

@keyframes o1c-pulse { 0%, 100% { opacity: 0.9; } 50% { opacity: 0.5; } }

.o1c-page {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: linear-gradient(180deg, #0b0e12 0%, #101721 60%, #0d1219 100%);
}

.o1c-glow-a {
  position: absolute; top: -30%; right: -15%;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(58, 90, 120, 0.25) 0%, transparent 65%);
  border-radius: 50%; pointer-events: none;
}
.o1c-glow-b {
  position: absolute; bottom: -40%; left: -10%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(223, 167, 47, 0.07) 0%, transparent 70%);
  border-radius: 50%; pointer-events: none;
}

.o1c-inner {
  position: relative; flex: 1;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  max-width: 760px; margin: 0 auto;
  padding: 60px 40px;
}

.o1c-logo { height: 150px; width: auto; margin-bottom: 48px; }

.o1c-badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 10px 22px;
  border: 1px solid rgba(223, 167, 47, 0.4);
  border-radius: 100px; margin-bottom: 40px;
}
.o1c-badge .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #dfa72f; animation: o1c-pulse 2s ease-in-out infinite;
}
.o1c-badge span.label {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 13px; letter-spacing: 3px; text-transform: uppercase;
  color: #dfa72f; font-weight: 600;
}

.o1c-h1 {
  font-size: 60px; font-weight: 700; line-height: 1.1;
  margin-bottom: 28px; color: #f5f2ec; letter-spacing: -2px;
}

.o1c-lead {
  font-size: 19px; color: #a09c93; margin-bottom: 20px;
  line-height: 1.9; max-width: 620px;
}

.o1c-watch {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 16px; color: #dfa72f; font-style: italic;
  margin-bottom: 48px;
}

.o1c-form-wrap { width: 100%; max-width: 440px; }
.o1c-form-label {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 14px; color: #7a766e; margin-bottom: 14px;
  letter-spacing: 0.5px;
}
.o1c-form { display: flex; gap: 12px; }
.o1c-form input[type="email"] {
  flex: 1; padding: 16px 18px;
  background: #0b0e12; border: 1px solid rgba(223, 167, 47, 0.4);
  color: #f5f2ec; font-family: 'Source Sans 3', sans-serif;
  font-size: 15px; outline: none;
}
.o1c-form input[type="email"]:focus { border-color: #dfa72f; }
.o1c-form button {
  padding: 16px 28px; background: #dfa72f; color: #0b0e12;
  border: none; border-radius: 3px;
  font-family: 'Source Sans 3', sans-serif; font-weight: 700;
  font-size: 15px; cursor: pointer; white-space: nowrap;
}
.o1c-form button:disabled { opacity: 0.6; cursor: default; }

.o1c-success {
  font-family: 'Source Sans 3', sans-serif; font-size: 16px;
  color: #dfa72f; padding: 18px;
  border: 1px solid rgba(223, 167, 47, 0.4);
}
.o1c-error {
  font-family: 'Source Sans 3', sans-serif; font-size: 14px;
  color: #c47a6a; margin-top: 12px; min-height: 18px;
}

.o1c-footer {
  position: relative; padding: 36px 48px;
  border-top: 1px solid rgba(223, 167, 47, 0.15);
  font-family: 'Source Sans 3', sans-serif;
}
.o1c-footer .row {
  max-width: 1100px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 20px;
}
.o1c-footer .muted { color: #6a665e; font-size: 14px; }
.o1c-footer .light { color: #a09c93; font-size: 14px; }

@media (max-width: 640px) {
  .o1c-h1 { font-size: 40px; letter-spacing: -1px; }
  .o1c-logo { height: 110px; }
  .o1c-form { flex-direction: column; }
  .o1c-form button { width: 100%; }
}
