:root {
  --black: #050a09;
  --black-alt: #081210;
  --teal-deep: #0a3d36;
  --teal: #0f5448;
  --teal-light: #1a6b5e;
  --cream: #f4efe2;
  --yellow: #f0d957;
  --brass: #c9a15f;
  --line: rgba(244,239,226,0.15);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--cream);
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, #0a3d36 0%, #050a09 60%);
  z-index: -1;
  opacity: 0.6;
}

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}

.display {
  font-family: 'Bebas Neue', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 0.9;
}

a { color: inherit; text-decoration: none; }

::selection { background: var(--yellow); color: var(--black); }

button, .field { font-family: inherit; }

a:focus-visible, button:focus-visible, input:focus-visible {
  outline: 2px solid var(--yellow);
  outline-offset: 3px;
}

.nav {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 50;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 1.8rem clamp(1.2rem, 4vw, 3rem);
}

.login-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  color: var(--cream);
  opacity: 0.9;
  transition: all .3s ease;
}

.login-link:hover { 
  color: var(--yellow); 
  opacity: 1;
  text-shadow: 0 0 12px rgba(240, 217, 87, 0.4);
}

.login-link svg { width: 18px; height: 18px; flex-shrink: 0; }

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
}

.hero-split {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--black-alt) 50%, var(--teal-deep) 50%);
  z-index: 0;
}

.divider {
  margin: 4rem auto;
  width: 100%;
  max-width: 600px;
  height: 1px;
  border: none;
  background: linear-gradient(90deg, transparent, rgba(244,239,226,0.25), transparent);
}

.divider-wrap { padding: 1rem 0; background: var(--black); }

.hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-content {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-title-top {
  position: absolute;
  top: 0; left: 0;
  transform: translate(-30%, -60%);
  font-size: clamp(4.5rem, 11vw, 8.5rem);
  color: var(--cream);
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.4));
  z-index: 10;
  white-space: nowrap;
}

.hero-title-bottom {
  position: absolute;
  bottom: 0; right: 0;
  transform: translate(20%, 50%);
  font-size: clamp(5rem, 13vw, 10rem);
  color: var(--cream);
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.3));
  z-index: 10;
  white-space: nowrap;
}

.hero-tagline-left {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(0.9rem, 1.5vw, 1.2rem);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  line-height: 1.8;
  position: absolute;
  top: 50%; right: 110%;
  transform: translateY(-50%);
  text-align: right;
  white-space: nowrap;
  color: rgba(244,239,226,0.85);
}

.hero-tagline-right {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(0.9rem, 1.5vw, 1.2rem);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  line-height: 1.8;
  position: absolute;
  top: 42%; left: 110%;
  transform: translateY(-50%);
  text-align: left;
  white-space: nowrap;
  color: rgba(244,239,226,0.85);
}

.hero-box-wrap {
  position: relative;
  z-index: 3;
  animation: float 6s ease-in-out infinite;
  filter: drop-shadow(0 12px 40px rgba(0,0,0,0.5)) drop-shadow(0 0 60px rgba(26,107,94,0.3));
}

.hero-box {
  width: clamp(180px, 42vw, 480px);
  height: auto;
  display: block;
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-12px) rotate(-0.5deg); }
}

.coming-soon {
  position: absolute;
  left: clamp(1.2rem, 4vw, 3rem);
  bottom: 2.4rem;
  z-index: 4;
  color: var(--yellow);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  font-size: clamp(0.9rem, 2vw, 1.15rem);
  line-height: 1.4;
  letter-spacing: 0.15em;
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.scroll-cue {
  position: absolute;
  right: clamp(1.2rem, 4vw, 3rem);
  bottom: 2.6rem;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  font-family: 'Montserrat', sans-serif;
  text-transform: uppercase;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--cream);
  opacity: 0.75;
  transition: opacity 0.3s ease;
}

.scroll-cue:hover { opacity: 1; }
.scroll-cue svg { animation: bob 2s ease-in-out infinite; }

@keyframes bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

.split-section {
  position: relative;
  padding: 8rem clamp(1.2rem, 4vw, 3rem);
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 80vh;
  background: linear-gradient(-135deg, var(--teal-deep) 50%, var(--black-alt) 50%);
}

.split-col {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 540px;
  margin: 0 auto; 
}

.split-col.left { padding-right: 3rem; }
.split-col.right { padding-left: 3rem; text-align: left; }

.split-eyebrow {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 1rem;
}

.split-h {
  font-family: 'Bebas Neue', sans-serif;
  text-transform: uppercase;
  font-size: clamp(3rem, 4.5vw, 4rem);
  line-height: 1;
  margin-bottom: 1.5rem;
  letter-spacing: 0.04em;
  color: var(--cream);
}

.split-p {
  font-size: clamp(1.05rem, 1.4vw, 1.15rem);
  line-height: 1.7;
  color: rgba(244,239,226,0.9);
}

.pillars {
  position: relative;
  background: linear-gradient(180deg, var(--teal-deep) 0%, #082d28 100%);
  padding: 7rem clamp(1.2rem, 4vw, 3rem);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3.5rem;
  border-top: 1px solid rgba(244,239,226,0.08);
  border-bottom: 1px solid rgba(244,239,226,0.08);
}

.pillar {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.4rem;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.pillar:hover { transform: translateY(-8px); }

.pillar-icon { 
  width: 46px; 
  height: 46px; 
  color: var(--yellow);
  filter: drop-shadow(0 0 8px rgba(240, 217, 87, 0.2));
}

.pillar h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 0.2rem;
}

.pillar p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(244,239,226,0.85);
  max-width: 90%;
}

.signup {
  position: relative;
  background: var(--black);
  padding: 10rem clamp(1.2rem, 4vw, 3rem) 9rem;
  text-align: center;
  overflow: hidden;
}

.signup::before {
  content: "";
  position: absolute;
  top: -40%;
  left: 50%;
  transform: translateX(-50%);
  width: 140%;
  height: 100%;
  background: radial-gradient(ellipse at center, rgba(15,84,72,0.4), transparent 60%);
  z-index: 0;
  pointer-events: none;
}

.signup-inner { position: relative; z-index: 1; max-width: 640px; margin: 0 auto; }

.signup h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3rem, 6vw, 4.5rem);
  line-height: 1.1;
  margin-bottom: 1.2rem;
  letter-spacing: 0.04em;
}

.signup p {
  font-size: 1.15rem;
  color: rgba(244,239,226,0.9);
  margin-bottom: 3rem;
  line-height: 1.6;
}

.signup-form {
  display: flex;
  gap: 0.8rem;
  justify-content: center;
  flex-wrap: wrap;
}

.field {
  flex: 1 1 260px;
  max-width: 360px;
  padding: 1.1rem 1.5rem;
  background: rgba(244,239,226,0.06);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--cream);
  font-size: 1.05rem;
  transition: all 0.3s ease;
  box-shadow: inset 0 2px 4px rgba(0,0,0,0.2);
}

.hp-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  width: 0;
  z-index: -1;
}

.field::placeholder { color: rgba(244,239,226,0.4); }

.field:focus {
  border-color: var(--yellow); 
  background: rgba(244,239,226,0.1);
  box-shadow: inset 0 2px 4px rgba(0,0,0,0.2), 0 0 15px rgba(240, 217, 87, 0.15);
}

.submit-btn {
  padding: 1.1rem 2.2rem;
  background: var(--yellow);
  color: var(--black);
  border: none;
  border-radius: 999px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.submit-btn:hover {
  transform: translateY(-3px); 
  box-shadow: 0 10px 25px rgba(240,217,87,0.35); 
  background: #fde863;
}

.submit-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.submit-btn:disabled:hover {
  background: var(--yellow);
  transform: none;
  box-shadow: none;
}

.form-note {
  margin-top: 1.4rem;
  font-size: 0.9rem;
  color: rgba(244,239,226,0.5);
}

footer {
  background: linear-gradient(180deg, #082d28 0%, #051a17 100%);
  padding: 3.5rem clamp(1.2rem, 4vw, 3rem);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  font-size: 0.95rem;
  color: rgba(244,239,226,0.55);
  border-top: 1px solid rgba(244,239,226,0.06);
}

footer .foot-mark {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--cream);
  font-size: 1.05rem;
  opacity: 0.9;
}

footer .foot-mark svg { width: 18px; height: 18px; }

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 880px) {
  .hero-title-top {
    font-size: clamp(4rem, 16vw, 6.5rem);
    top: -10%; left: 50%;
    transform: translate(-50%, -70%);
  }
  
  .hero-title-bottom {
    font-size: clamp(4.5rem, 18vw, 7.5rem);
    bottom: -8%; left: 50%; right: auto;
    transform: translate(-50%, 70%);
  }
  
  .hero-tagline-left,
  .hero-tagline-right { display: none; }
  
  .hero-box { max-width: 320px; }
  
  .coming-soon { 
    position: static; 
    margin-top: 2.5rem; 
    text-align: center; 
  }
  
  .scroll-cue { display: none; }
  
  .split-section {
    grid-template-columns: 1fr; 
    padding: 6rem clamp(1.2rem, 4vw, 3rem); 
    gap: 5rem; 
    background: linear-gradient(180deg, var(--teal-deep) 0%, var(--black-alt) 100%);
  }
  
  .split-col.left { padding-right: 0; }
  .split-col.right { padding-left: 0; }
  
  .pillars { grid-template-columns: 1fr; gap: 4.5rem; padding-top: 6rem; padding-bottom: 6rem;}
  
  .signup-form { flex-direction: column; align-items: center; }
  .field, .submit-btn { width: 100%; max-width: 400px; }
  
  footer { justify-content: center; text-align: center; flex-direction: column; }
}

@media (max-width: 480px) {
  .hero-title-top, .hero-title-bottom { font-size: clamp(3.5rem, 16vw, 4.5rem); }
}