/* ============================================================
   THE LOST KIT KOLLECTIVE â€” Landing Page CSS
   Aesthetic: Dark Tactical | Military | Rugged | 2A
   ============================================================ */

/* â”€â”€ Reset & Tokens â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black:        #070707;
  --dark:         #111010;
  --panel:        #1a1814;
  --border:       #2e2a22;
  --tan:          #c4a265;
  --tan-dim:      #8b6838;
  --cream:        #e8dfc8;
  --cream-dim:    #a89e88;
  --olive:        #4a5228;
  --olive-light:  #6b7c3d;
  --rust:         #7a3b1e;
  --rust-light:   #c1541a;
  --white:        #f0ebe0;
  --font-stencil: 'Bebas Neue', 'Impact', sans-serif;
  --font-body:    'Oswald', sans-serif;
  --font-mono:    'Share Tech Mono', monospace;
}

html { scroll-behavior: smooth; }

body {
  background-color: var(--black);
  color: var(--cream);
  font-family: var(--font-body);
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
}

/* â”€â”€ Screen reader only â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); word-break: normal; border-width: 0;
}

/* â”€â”€ Grain texture overlay â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.grain {
  pointer-events: none;
  position: fixed;
  inset: -50%;
  width: 200%; height: 200%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23noise)' opacity='0.08'/%3E%3C/svg%3E");
  opacity: 0.18;
  animation: grainShift 0.8s steps(1) infinite;
  z-index: 999;
}

@keyframes grainShift {
  0%  { transform: translate(0, 0); }
  10% { transform: translate(-3%, -5%); }
  20% { transform: translate(5%, 2%); }
  30% { transform: translate(-2%, 7%); }
  40% { transform: translate(4%, -3%); }
  50% { transform: translate(-5%, 5%); }
  60% { transform: translate(3%, -6%); }
  70% { transform: translate(-4%, 3%); }
  80% { transform: translate(6%, 2%); }
  90% { transform: translate(-3%, -4%); }
  100%{ transform: translate(2%, 6%); }
}

/* â”€â”€ Scanlines overlay â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.scanlines {
  pointer-events: none;
  position: fixed;
  inset: 0;
  background: repeating-linear-gradient(
    to bottom,
    transparent 0px,
    transparent 3px,
    rgba(0,0,0,0.07) 3px,
    rgba(0,0,0,0.07) 4px
  );
  z-index: 998;
}

/* â”€â”€ Layout â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.landing {
  display: grid;
  grid-template-rows: auto 1fr auto;
  min-height: 100vh;
  position: relative;
}

/* â”€â”€ Full-bleed hero background â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.hero-bg {
  position: fixed;
  inset: 0;
  background-image: url('images/Background.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 80% at 50% 50%, transparent 20%, rgba(7,7,7,0.65) 80%),
    linear-gradient(180deg,
      rgba(7,7,7,0.60) 0%,
      rgba(7,7,7,0.20) 20%,
      rgba(7,7,7,0.40) 50%,
      rgba(7,7,7,0.90) 85%,
      rgba(7,7,7,1.00) 100%
    );
}

/* â”€â”€ Logo Section â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.logo-section {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 3.5rem 2rem 2rem;
  position: relative;
}

.logo-section::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%; transform: translateX(-50%);
  width: 60%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), var(--tan-dim), var(--border), transparent);
}

.logo-frame {
  text-align: center;
  position: relative;
}

.logo-img {
  max-width: 560px;
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto 1.5rem;
  position: relative;
  z-index: 1;
}

@keyframes logoFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}

/* Hide the text fallback once we have the real image logo */
.logo-text-block {
  display: none;
}

.logo-tag {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  color: var(--rust-light);
  opacity: 0.7;
  text-transform: uppercase;
}

.logo-name {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: var(--font-stencil);
  font-size: clamp(3rem, 9vw, 7rem);
  line-height: 0.9;
  letter-spacing: 0.05em;
  color: var(--white);
  text-shadow:
    0 0 60px rgba(196,162,101,0.2),
    2px 2px 0px rgba(0,0,0,0.8);
}

.logo-name .accent {
  color: var(--tan);
  -webkit-text-stroke: 1px rgba(196,162,101,0.4);
}

.logo-divider {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin: 0.5rem 0;
  width: 100%;
  max-width: 340px;
}

.divider-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--tan-dim));
}

.divider-line:last-child {
  background: linear-gradient(90deg, var(--tan-dim), transparent);
}

.divider-icon {
  color: var(--tan);
  font-size: 0.75rem;
}

.logo-tagline {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--cream-dim);
  letter-spacing: 0.2em;
  opacity: 0.5;
}

/* â”€â”€ Coming Soon Section â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.coming-soon-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 3rem 0 2rem;
  width: 100%;
}

.cs-content {
  max-width: 700px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.8rem;
  text-align: center;
  padding: 0 2rem;
}

/* -- Status bar -- */
.status-bar {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  color: var(--olive-light);
  text-transform: uppercase;
}

.status-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--olive-light);
  box-shadow: 0 0 8px var(--olive-light);
  animation: dotBlink 1.4s ease-in-out infinite;
}

@keyframes dotBlink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.2; }
}

.coming-soon-text {
  font-family: var(--font-stencil);
  font-size: clamp(4rem, 15vw, 10rem);
  letter-spacing: 0.08em;
  line-height: 1;
  color: var(--white);
  position: relative;
  text-shadow: 2px 2px 0 rgba(0,0,0,0.9);
}

.coming-soon-text::before {
  content: 'COMING SOON';
  position: absolute;
  inset: 0;
  color: var(--tan);
  clip-path: polygon(0 0, 100% 0, 100% 15%, 0 15%);
  opacity: 0.2;
}

/* Animations removed to save GPU */

/* -- Ribbon marquee bar -- */
.ribbon-bar {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  background: var(--olive);
  border-top: 1px solid rgba(196,162,101,0.25);
  border-bottom: 1px solid rgba(196,162,101,0.25);
  overflow: hidden;
  padding: 0.45rem 0;
  display: flex;
}

/* We have two exact identical groups that slide left. */
.ribbon-content {
  display: flex;
  flex-shrink: 0;
  width: max-content;
  animation: ribbonScroll 30s linear infinite;
}

.ribbon-content span {
  font-family: var(--font-stencil);
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  color: var(--tan);
  white-space: nowrap;
  padding: 0 2rem;
}

@keyframes ribbonScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}

/* -- Description -- */
.coming-soon-desc {
  font-family: var(--font-body);
  font-size: clamp(0.85rem, 2vw, 1.05rem);
  font-weight: 300;
  color: var(--cream-dim);
  line-height: 1.7;
  letter-spacing: 0.04em;
  max-width: 520px;
}

.coming-soon-desc strong {
  color: var(--tan);
  font-weight: 600;
}

/* -- Email form -- */
.notify-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  width: 100%;
  max-width: 520px;
}

.input-group {
  display: flex;
  width: 100%;
  border: 1px solid var(--border);
  background: rgba(26,24,20,0.8);
  backdrop-filter: blur(4px);
  transition: border-color 0.3s;
}

.input-group:focus-within {
  border-color: var(--tan-dim);
  box-shadow: 0 0 20px rgba(196,162,101,0.1);
}

.input-group input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  padding: 0.85rem 1.2rem;
  color: var(--cream);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.input-group input::placeholder {
  color: var(--cream-dim);
  opacity: 0.4;
}

.input-group button {
  background: var(--tan);
  border: none;
  padding: 0.85rem 1.5rem;
  color: var(--black);
  font-family: var(--font-stencil);
  font-size: 0.95rem;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
  white-space: nowrap;
}

.input-group button:hover {
  background: var(--cream);
}

.input-group button:active {
  transform: scale(0.97);
}

.form-note {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  color: var(--cream-dim);
  opacity: 0.35;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* â”€â”€ Footer â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.landing-footer {
  border-top: 1px solid var(--border);
  padding: 1.2rem 2rem;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  max-width: 900px;
  margin: 0 auto;
}

.footer-left, .footer-center, .footer-right {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  color: var(--cream-dim);
  opacity: 0.35;
  text-transform: uppercase;
}

.footer-center { opacity: 0.5; }

.footer-right {
  display: flex;
  gap: 1.2rem;
}

.footer-tag {
  border: 1px solid currentColor;
  padding: 0.15rem 0.4rem;
  border-radius: 2px;
}

/* â”€â”€ Responsive â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
@media (max-width: 600px) {
  .logo-section { padding: 2rem 1.5rem 1.5rem; }
  .footer-grid  { flex-direction: column; text-align: center; }
  .footer-right { justify-content: center; }
  .input-group  { flex-direction: column; }
  .input-group button { width: 100%; }
}
