/* --------------------------------------------------
   Google Font
-------------------------------------------------- */

@import url('https://fonts.googleapis.com/css2?family=Play:wght@400;700&display=swap');

/* --------------------------------------------------
   Base Reset & Typography
-------------------------------------------------- */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
}

body {
  font-family: "Play", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #e8f7ff;
  background: #000000;
  line-height: 1.5;
  opacity: 0;
  animation: fadeIn 0.4s ease-out forwards;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* --------------------------------------------------
   Layout
-------------------------------------------------- */

.page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero {
  max-width: 960px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 3rem;
}

.hero-logo-wrap {
  flex: 0 0 360px;
  display: flex;
  justify-content: center;
}

.hero-logo {
  max-width: 360px;
  height: auto;
  transition: transform 0.25s ease;
}

.hero-logo:hover {
  transform: translateY(-6px);
}

/* --------------------------------------------------
   Typography
-------------------------------------------------- */

.hero-text {
  flex: 1 1 280px;
  text-align: left;
}

.hero-title {
  margin: 0 0 0.25rem;
  font-size: 3.4rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: none; /* Sentence case */
}

.hero-subtitle {
  margin: 0 0 1.5rem;
  font-size: 1.5rem;
  font-weight: 400;
  color: #00FFDC;
  letter-spacing: 0.04em;
  text-shadow: 0 0 8px #00FFDC, 0 0 12px rgba(0,255,220,0.4);
}

.hero-body {
  margin: 0 0 1rem;
  font-size: 1.05rem;
  max-width: 32rem;
}

.hero-since {
  margin: 0 0 1.5rem;
  font-size: 1.2rem;
  color: #00FFDC;
  text-shadow: 0 0 8px #00FFDC, 0 0 12px rgba(0,255,220,0.4);
}

.hero-solve {
  margin: 0 0 1.5rem;
  font-size: 1.2rem;
  color: #00FFDC;
  text-shadow: 0 0 8px #00FFDC, 0 0 12px rgba(0,255,220,0.4);
}

/* --------------------------------------------------
   Momentum Burst Spin (Eased + 3s cycle)
-------------------------------------------------- */

.logo-spin {
  animation: coinSpin 6s cubic-bezier(0.25, 0.1, 0.25, 1) infinite;  /* total cycle = spin time + pause */
  animation-delay: 0.8s;
  transform-style: preserve-3d;
  /* optional: backface-visibility: hidden; */
}

@keyframes coinSpin {
  0%         { transform: rotateY(0deg);    }
  66.666%    { transform: rotateY(2160deg); }   /* ~4s of spinning (66.67% of 6s) */
  100%       { transform: rotateY(2160deg); }   /* holds still for the remaining ~2s */
}

/* --------------------------------------------------
   Contact
-------------------------------------------------- */
.hero-contact {
  margin-top: 0.5rem;
  font-size: 1.1rem;
  color: #e8f7ff;
  letter-spacing: 0.03em;
  line-height: 1.6;
}
/* --------------------------------------------------
   Contact Reveal
-------------------------------------------------- */

.contact-reveal {
  margin: 1rem 0 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.reveal-label {
  font-size: 1rem;
  letter-spacing: 0.05em;
  color: #00FFDC;
  text-shadow: 0 0 8px #00FFDC, 0 0 12px rgba(0,255,220,0.4);
}

.reveal-input {
  width: 4rem;
  padding: 0.45rem 0.6rem;
  border-radius: 6px;
  border: 1px solid #00FFDC;
  background: #0d0d0d; /* slightly lighter than #05070b */
  color: #e8f7ff;
  font-size: 1.1rem;
  text-align: center;
  box-shadow: 0 0 10px rgba(0,255,220,0.25);
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.reveal-input:focus {
  outline: none;
  border-color: #00FFDC;
  background: #111820; /* subtle lift */
  box-shadow: 0 0 14px rgba(0,255,220,0.45);
}

#contact-info {
  opacity: 0;
  transition: opacity 0.4s ease;
}

#contact-info.show {
  opacity: 1;
}

.contact-link {
  color: #00FFDC;
  text-decoration: none;
  text-shadow: 0 0 8px #00FFDC, 0 0 12px rgba(0,255,220,0.4);
}

.contact-link:hover {
  text-decoration: underline;
}


