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

:root {
  --dark-bg: #0B1E33;
  --darker-bg: #081729;
  --accent-cyan: #4EC7C8;
  --text-white: #FFFFFF;
  --text-gray: #B8C5D6;
  --gradient-1: linear-gradient(135deg, #0B1E33 0%, #1a2d45 100%);
  --gradient-2: linear-gradient(135deg, #081729 0%, #0B1E33 100%);
  --gradient-3: linear-gradient(135deg, rgba(78, 199, 200, 0.1) 0%, rgba(78, 199, 200, 0) 100%);
}

html {
  height: 100%;
  width: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--dark-bg);
  color: var(--text-white);
  line-height: 1.6;
  min-height: 100vh;
}

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

h1, h2, h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  line-height: 1.2;
}

.header {
  padding: 24px 0;
  background: rgba(11, 30, 51, 0.95);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(78, 199, 200, 0.1);
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo img {
  width: 40px;
  height: 40px;
}

.logo span {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--accent-cyan);
}

.hero {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--gradient-1);
  position: relative;
  overflow: hidden;
  padding: 80px 20px;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 50%, rgba(78, 199, 200, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  margin-bottom: 24px;
  background: linear-gradient(135deg, var(--text-white) 0%, var(--accent-cyan) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: fadeInUp 0.8s ease-out;
}

.hero-subtitle {
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  color: var(--text-gray);
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

.cta-button {
  display: inline-block;
  padding: 16px 48px;
  background: var(--accent-cyan);
  color: var(--dark-bg);
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.125rem;
  transition: all 0.3s ease;
  animation: fadeInUp 0.8s ease-out 0.4s backwards;
  box-shadow: 0 10px 40px rgba(78, 199, 200, 0.3);
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 50px rgba(78, 199, 200, 0.4);
}

.section {
  padding: 100px 20px;
  text-align: center;
}

.section h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--accent-cyan);
  margin-bottom: 24px;
}

.section p {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  color: var(--text-gray);
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.8;
}

.vision-section {
  background: var(--gradient-2);
}

.purpose-section {
  background: var(--gradient-1);
}

.focus-section {
  background: var(--gradient-2);
}

.focus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 60px;
  text-align: left;
}

.focus-item {
  background: rgba(78, 199, 200, 0.05);
  border: 1px solid rgba(78, 199, 200, 0.2);
  border-radius: 16px;
  padding: 32px;
  transition: all 0.3s ease;
}

.focus-item:hover {
  transform: translateY(-5px);
  background: rgba(78, 199, 200, 0.1);
  border-color: var(--accent-cyan);
}

.focus-item .icon {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 16px;
}

.focus-item h3 {
  color: var(--accent-cyan);
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.focus-item p {
  font-size: 1rem;
  color: var(--text-gray);
  margin: 0;
}

.believe-section {
  background: var(--gradient-1);
}

.beliefs {
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.beliefs p {
  text-align: left;
  font-size: 1.125rem;
  margin-bottom: 20px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.beliefs .bullet {
  flex-shrink: 0;
  font-size: 1.5rem;
}

.subscribe-section {
  padding: 120px 20px;
  background: var(--gradient-3), var(--gradient-2);
  text-align: center;
}

.subscribe-section h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: 16px;
}

.subscribe-text {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  color: var(--text-white);
  margin-bottom: 16px;
}

.confidential-text {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--accent-cyan);
  margin-bottom: 40px;
  padding: 16px 24px;
  background: rgba(78, 199, 200, 0.15);
  border-radius: 16px;
  border: 2px solid rgba(78, 199, 200, 0.4);
  box-shadow: 0 0 30px rgba(78, 199, 200, 0.2);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.waitlist-form {
  max-width: 700px;
  margin: 0 auto;
  text-align: left;
}

.form-row {
  margin-bottom: 20px;
}

.form-row input[type="text"],
.form-row input[type="email"],
.form-row textarea,
.form-row select {
  width: 100%;
  padding: 14px 20px;
  border-radius: 50px;
  border: 2px solid rgba(78, 199, 200, 0.3);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-white);
  font-size: 1rem;
  font-family: 'Inter', sans-serif;
  transition: all 0.3s ease;
}

.form-row textarea {
  border-radius: 20px;
  resize: vertical;
  min-height: 80px;
}

.form-row select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%234EC7C8' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 20px center;
  padding-right: 45px;
}

.form-row input:focus,
.form-row textarea:focus,
.form-row select:focus {
  outline: none;
  border-color: var(--accent-cyan);
  background: rgba(255, 255, 255, 0.1);
}

.form-row input::placeholder,
.form-row textarea::placeholder {
  color: var(--text-gray);
}

.checkbox-group {
  margin-bottom: 28px;
  padding: 20px;
  background: rgba(78, 199, 200, 0.05);
  border-radius: 16px;
  border: 1px solid rgba(78, 199, 200, 0.2);
}

.checkbox-group legend {
  color: var(--text-white);
  font-size: 1.05rem;
  margin-bottom: 16px;
  padding: 0 8px;
}

.checkbox-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
}

.checkbox-grid label {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50px;
  border: 1px solid rgba(78, 199, 200, 0.15);
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 0.95rem;
}

.checkbox-grid label:hover {
  background: rgba(78, 199, 200, 0.1);
  border-color: var(--accent-cyan);
}

.checkbox-grid input[type="checkbox"] {
  accent-color: var(--accent-cyan);
  cursor: pointer;
  transform: scale(1.1);
}

.other-input {
  margin-top: 12px;
}

.form-row label:not(.consent-label) {
  display: block;
  color: var(--text-white);
  font-weight: 500;
  margin-bottom: 8px;
  font-size: 1rem;
}

.consent-label {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 20px 0;
  cursor: pointer;
  font-size: 1rem;
  color: var(--text-gray);
}

.consent-label input[type="checkbox"] {
  accent-color: var(--accent-cyan);
  cursor: pointer;
  transform: scale(1.2);
  flex-shrink: 0;
}

.consent-label span {
  flex: 1;
}

.subscribe-button {
  width: 100%;
  padding: 16px 40px;
  background: var(--accent-cyan);
  color: var(--dark-bg);
  border: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Space Grotesk', sans-serif;
  margin-top: 10px;
}

.subscribe-button:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(78, 199, 200, 0.4);
}

.subscribe-button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.form-msg {
  text-align: center;
  margin: 16px 0;
  font-size: 1rem;
  padding: 12px;
  border-radius: 12px;
  min-height: 1.2em;
}

.form-msg.success {
  color: #4EC7C8;
  background: rgba(78, 199, 200, 0.15);
  border: 1px solid rgba(78, 199, 200, 0.3);
}

.form-msg.error {
  color: #ff6b6b;
  background: rgba(255, 107, 107, 0.15);
  border: 1px solid rgba(255, 107, 107, 0.3);
}

.privacy-badge {
  margin-top: 24px;
  padding: 20px 24px;
  background: linear-gradient(135deg, rgba(78, 199, 200, 0.25) 0%, rgba(78, 199, 200, 0.15) 100%);
  border: 2px solid var(--accent-cyan);
  border-radius: 16px;
  text-align: center;
  color: var(--accent-cyan);
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  box-shadow: 0 0 40px rgba(78, 199, 200, 0.3), inset 0 0 20px rgba(78, 199, 200, 0.1);
  animation: pulse-glow 3s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%, 100% {
    box-shadow: 0 0 40px rgba(78, 199, 200, 0.3), inset 0 0 20px rgba(78, 199, 200, 0.1);
  }
  50% {
    box-shadow: 0 0 50px rgba(78, 199, 200, 0.5), inset 0 0 25px rgba(78, 199, 200, 0.2);
  }
}

.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.sr-only {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact-section {
  padding: 100px 20px;
  background: var(--gradient-1);
  text-align: center;
}

.contact-section h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 24px;
}

.contact-section p {
  font-size: 1.125rem;
  color: var(--text-gray);
  margin-bottom: 16px;
}

.contact-cta {
  font-size: 1.25rem;
  margin-top: 32px;
}

.contact-cta a {
  color: var(--accent-cyan);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.contact-cta a:hover {
  text-decoration: underline;
}

.footer {
  background: var(--darker-bg);
  padding: 60px 20px 40px;
  border-top: 1px solid rgba(78, 199, 200, 0.1);
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 30px;
}

.footer-logo img {
  width: 60px;
  height: 60px;
}

.footer-social {
  display: flex;
  gap: 20px;
}

.footer-social a {
  color: var(--text-gray);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(78, 199, 200, 0.1);
}

.footer-social a:hover {
  color: var(--accent-cyan);
  background: rgba(78, 199, 200, 0.2);
  transform: translateY(-3px);
}

.footer-info {
  text-align: center;
  color: var(--text-gray);
  font-size: 0.9rem;
}

.footer-info p {
  margin-bottom: 8px;
}

.footer-tagline {
  margin-top: 20px;
  font-weight: 500;
  color: var(--accent-cyan);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1024px) {
  .container {
    padding: 0 24px;
  }
}

@media (max-width: 768px) {
  .hero {
    min-height: 70vh;
    padding: 60px 20px;
  }

  .hero h1 {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .section {
    padding: 60px 20px;
  }

  .focus-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .focus-item {
    padding: 24px;
  }

  .subscribe-form {
    flex-direction: column;
    align-items: stretch;
  }

  .subscribe-form input {
    min-width: 100%;
  }

  .subscribe-button {
    width: 100%;
  }

  .footer-top {
    flex-direction: column;
    text-align: center;
  }

  .beliefs p {
    font-size: 1rem;
  }

  .logo img {
    width: 36px;
    height: 36px;
  }

  .logo span {
    font-size: 1.1rem;
  }

  .checkbox-grid {
    grid-template-columns: 1fr;
  }

  .confidential-text {
    font-size: 1rem;
    padding: 14px 18px;
  }

  .privacy-badge {
    font-size: 0.95rem;
    padding: 16px 18px;
  }
}

@media (max-width: 480px) {
  .hero {
    min-height: 60vh;
    padding: 40px 16px;
  }

  .hero h1 {
    font-size: clamp(1.75rem, 9vw, 2.5rem);
    margin-bottom: 16px;
  }

  .hero-subtitle {
    font-size: 1rem;
    margin-bottom: 32px;
  }

  .cta-button {
    padding: 14px 36px;
    font-size: 1rem;
  }

  .section {
    padding: 48px 16px;
  }

  .section h2 {
    font-size: 1.75rem;
    margin-bottom: 16px;
  }

  .section p {
    font-size: 1rem;
  }

  .focus-item {
    padding: 20px;
  }

  .focus-item .icon {
    font-size: 2rem;
  }

  .focus-item h3 {
    font-size: 1.1rem;
  }

  .focus-item p {
    font-size: 0.95rem;
  }

  .beliefs p {
    font-size: 0.95rem;
  }

  .subscribe-section {
    padding: 80px 16px;
  }

  .subscribe-section h2 {
    font-size: 1.5rem;
  }

  .subscribe-form input,
  .subscribe-button {
    padding: 14px 20px;
  }

  .contact-section h2 {
    font-size: 1.75rem;
  }

  .contact-cta {
    font-size: 1rem;
  }

  .footer {
    padding: 48px 16px 32px;
  }

  .footer-logo img {
    width: 50px;
    height: 50px;
  }

  .footer-social a {
    width: 36px;
    height: 36px;
  }

  .footer-info {
    font-size: 0.85rem;
  }

  .checkbox-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .checkbox-grid label {
    padding: 9px 12px;
    font-size: 0.9rem;
  }

  .checkbox-group {
    padding: 16px;
  }

  .confidential-text {
    font-size: 0.95rem;
    padding: 12px 16px;
  }

  .privacy-badge {
    font-size: 0.9rem;
    padding: 14px 16px;
  }

  .subscribe-section {
    padding: 80px 16px;
  }

  .form-row input[type="text"],
  .form-row input[type="email"],
  .form-row textarea,
  .form-row select {
    padding: 12px 18px;
    font-size: 0.95rem;
  }

  .consent-label {
    font-size: 0.95rem;
  }
}

/* --- TrigGuard polish --- */
:root{
  --tg-accent:#6EDADB;
  --tg-accent-2:#4EC7C8;
  --tg-bg-1:#0B1E33;
  --tg-bg-2:#0F1D2B;
  --tg-text:#EAEAEA;
  --tg-muted:#A9B9C9;
}

h2.section-title{
  font-family:'Space Grotesk',sans-serif;
  font-size: clamp(1.8rem, 2.5vw, 2.75rem);
  font-weight: 800;
  letter-spacing: .2px;
}

.subtle{
  font-weight:600;
  color: var(--tg-muted);
}

.copy p{
  word-break: keep-all;
}

/* --- Custom select styling --- */
.select,
select{
  appearance:none;
  -webkit-appearance:none;
  -moz-appearance:none;
  background:
    linear-gradient(180deg,rgba(255,255,255,.04),rgba(255,255,255,.02)) border-box,
    radial-gradient(8px 8px at right 16px center, var(--tg-accent), transparent 51%) no-repeat;
  background-color: rgba(255,255,255,.06);
  background-size: 16px 16px;
  background-position: right 16px center;
  border:1px solid rgba(255,255,255,.18);
  color:var(--tg-text);
  padding:14px 44px 14px 18px;
  border-radius: 12px;
  outline:none;
  transition:.25s ease;
}
select:focus{
  border-color: var(--tg-accent-2);
  box-shadow: 0 0 0 4px rgba(78,199,200,.12);
}

/* --- Other inline inputs --- */
.other-inline{
  display:flex; gap:.6rem; flex-wrap:wrap; align-items:center;
  margin-top:.7rem;
}
.other-inline input[type="text"]{
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.18);
  border-radius:12px;
  padding:12px 16px;
  color:var(--tg-text);
  min-width: 240px;
}
.other-inline input::placeholder{ color:#aabac8; }

/* --- Updated privacy badge --- */
.privacy-badge.new-style{
  margin: 28px auto 0;
  max-width: 820px;
  padding: 18px 22px;
  border-radius: 18px;
  background:
    radial-gradient(60% 140% at 50% 100%, rgba(110,218,219,.15), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
  border: 1px solid rgba(255,255,255,.10);
  display:flex; align-items:center; justify-content:center; gap:.6rem;
  color: var(--tg-text);
  font-weight: 800;
  text-align:center;
  box-shadow: 0 12px 40px rgba(0,0,0,.28);
}
.privacy-badge .lock{ filter: drop-shadow(0 0 6px rgba(110,218,219,.45)); }

/* --- Modal --- */
.modal{
  position:fixed; inset:0; display:none; place-items:center;
  background: rgba(3,8,16,.6); backdrop-filter: blur(6px); z-index:9999;
}
.modal.open{ display:grid; }
.modal-card{
  width:min(560px, 92vw);
  background: linear-gradient(160deg, #0e1a29, #0b1523);
  border:1px solid rgba(255,255,255,.08);
  border-radius: 20px;
  padding: 26px 22px;
  color: var(--tg-text);
  box-shadow: 0 14px 50px rgba(0,0,0,.35);
}
.modal-card h3{
  font-family:'Space Grotesk',sans-serif; font-weight:800;
  color: var(--tg-accent);
  font-size: clamp(1.4rem, 2.2vw, 1.8rem);
  margin: 0 0 10px 0;
}
.modal-card p{ margin: 6px 0 0 0; line-height:1.7; }
.modal-card .ok{
  margin-top:18px; border:0; cursor:pointer;
  padding:12px 18px; border-radius:12px;
  background: linear-gradient(135deg,var(--tg-accent-2),var(--tg-accent));
  color:#0B1E33; font-weight:800;
  transition: box-shadow .2s ease, transform .2s ease;
}
.modal-card .ok:hover{ 
  box-shadow: 0 0 16px rgba(110,221,213,.4); 
  transform: translateY(-1px); 
}

/* ========== POLISH & REFINEMENTS ========== */

/* Improved typography */
body, p { 
  color: rgba(255,255,255,0.88); 
}
h1, h2, h3 { 
  letter-spacing: 0.2px; 
}
.hero-subtitle { 
  line-height: 1.3; 
}

/* CTA button hover glow */
.cta-button {
  transition: box-shadow .25s ease, transform .2s ease;
}
.cta-button:hover {
  box-shadow: 0 0 20px rgba(78,199,200,0.4);
  transform: translateY(-1px);
}

/* Focus cards hover elevation */
.focus-item {
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 18px;
}
.focus-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 16px rgba(0,0,0,0.25);
  border-color: rgba(78,199,200,0.35);
}

/* Fade-in scroll animation */
.fade-in.hidden {
  opacity: 0;
  transform: translateY(20px);
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
  transition: all .6s ease;
}

/* Emoji alignment */
.emoji { 
  font-size: 1.15rem; 
  vertical-align: middle; 
}

/* Enhanced lock banner */
.lock-banner {
  margin: 8px auto 22px;
  max-width: 860px;
  text-align: center;
  padding: 14px 18px;
  border-radius: 18px;
  color: var(--tg-accent);
  border: 1px solid rgba(78,199,200,0.35);
  background: radial-gradient(90% 120% at 50% 0%, rgba(78,199,200,.10) 0%, rgba(78,199,200,0) 60%);
  box-shadow: 0 0 24px rgba(78,199,200,.08) inset, 0 4px 14px rgba(0,0,0,.25);
}
.lock-banner .locks { 
  opacity: .95; 
}

/* Custom select dropdown styling */
select.custom-select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  border: 1px solid rgba(255,255,255,0.10);
  color: var(--tg-text);
  border-radius: 16px;
  padding: 14px 44px 14px 18px;
  width: 100%;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
  cursor: pointer;
}
select.custom-select:focus {
  border-color: rgba(78,199,200,0.35);
  box-shadow: 0 0 0 6px rgba(78,199,200,.08);
}

/* Custom select arrow */
.select-wrap {
  position: relative;
}
.select-wrap::after {
  content: "▾";
  color: rgba(255,255,255,0.72);
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  font-size: 1.1rem;
}

/* Footer gradient polish */
.footer {
  background: linear-gradient(180deg, rgba(10,17,24,.7), rgba(7,12,17,.95));
}

/* Footer tagline with shield */
.footer-tagline {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  color: var(--tg-text);
}
.footer-tagline .shield {
  height: 16px; 
  width: 16px; 
  opacity: .85;
}
